/* ============================================
   VARIÁVEIS E RESET
   ============================================ */

:root {
    /* Cores - Index2: Bege claro (#F6F4EE) e Marrom escuro (#87593A) */
    --cor-primaria: #87593A;
    --cor-secundaria: #87593A;
    --cor-fundo: #F6F4EE;
    --cor-fundo-card: #FFFFFF;
    --cor-fundo-card-alt: #F0EDE6;
    --cor-texto: #87593A;
    --cor-texto-secundario: #6B4530;
    --cor-sucesso: #2E7D32;
    --cor-alerta: #F4A261;
    --cor-branco: #FFFFFF;
    
    /* Fontes */
    --fonte-titulo: 'Poppins', sans-serif;
    --fonte-texto: 'Open Sans', sans-serif;
    --fonte-destaque: 'Great Vibes', cursive;
    
    /* Espaçamentos */
    --espacamento-section: 80px;
    --espacamento-container: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-texto);
    font-size: 16px;
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--espacamento-container);
}

/* ============================================
   TIPOGRAFIA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-titulo);
    color: var(--cor-secundaria);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 32px;
    font-weight: 700;
}

h2 {
    font-size: 24px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.text-center {
    text-align: center;
}

.small-text {
    font-size: 14px;
    color: var(--cor-texto-secundario);
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */

.navbar {
    background-color: #F6F4EE;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-text {
    font-family: var(--fonte-destaque);
    font-size: 36px;
    font-weight: 400;
    color: var(--cor-primaria);
    background: linear-gradient(135deg, var(--cor-primaria) 0%, #6B4530 50%, var(--cor-primaria) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(135, 89, 58, 0.3));
    transition: all 0.3s ease;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.logo-text::before {
    content: 'Studioevienails';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: rgba(135, 89, 58, 0.1);
    filter: blur(8px);
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--cor-primaria) 50%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
}

.logo:hover .logo-text {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(135, 89, 58, 0.4));
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
}

.logo:hover .logo-img {
    transform: scale(1.08);
}

.logo-text-footer {
    font-family: var(--fonte-destaque);
    font-size: 28px;
    font-weight: 400;
    color: var(--cor-branco);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--cor-texto);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--cor-primaria);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cor-primaria);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    background-color: var(--cor-primaria);
    color: var(--cor-branco) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    background-color: #6B4530;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--cor-secundaria);
    transition: all 0.3s ease;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--fonte-titulo);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--cor-primaria);
    color: var(--cor-branco);
}

.btn-primary:hover {
    background-color: #6B4530;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 89, 58, 0.3);
}

.btn-secondary {
    background-color: var(--cor-secundaria);
    color: var(--cor-branco);
}

.btn-secondary:hover {
    background-color: #6B4530;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--cor-primaria);
    border: 2px solid var(--cor-primaria);
}

.btn-outline:hover {
    background-color: var(--cor-primaria);
    color: var(--cor-branco);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--cor-branco);
    font-size: 18px;
    padding: 16px 40px;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn i {
    margin-right: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 120px 0 80px;
    background-color: var(--cor-fundo);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.hero-logo {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: contain;
}

.hero-title {
    flex: 0 0 70%;
    font-size: 42px;
    color: var(--cor-secundaria);
    margin-bottom: 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--cor-texto-secundario);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-placeholder {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    color: var(--cor-branco);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-placeholder i {
    font-size: 80px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero-placeholder p {
    font-size: 18px;
    font-weight: 600;
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */

section {
    padding: var(--espacamento-section) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 32px;
    color: var(--cor-secundaria);
}

.section-subtitle {
    text-align: center;
    color: var(--cor-texto-secundario);
    margin-bottom: 2rem;
    font-size: 18px;
}

.section-subtitle a {
    color: var(--cor-primaria);
    font-weight: 600;
}

/* ============================================
   SERVIÇOS PRINCIPAIS
   ============================================ */

.servicos-principais {
    background-color: var(--cor-branco);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.servico-card {
    background-color: var(--cor-fundo-card-alt);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--cor-primaria);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background-color: var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--cor-branco);
    font-size: 32px;
}

.servico-card h3 {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    font-size: 20px;
}

.servico-card p {
    color: var(--cor-texto-secundario);
    margin-bottom: 1.5rem;
    font-size: 15px;
}

.servico-preco {
    font-family: var(--fonte-titulo);
    font-size: 18px;
    font-weight: 600;
    color: var(--cor-primaria);
}

/* ============================================
   POR QUE ESCOLHER
   ============================================ */

.porque-escolher {
    background-color: var(--cor-fundo);
}

.diferenciais-mosaico {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.diferenciais-textos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Força grid no mobile */
@media (max-width: 768px) {
    .diferenciais-textos {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        flex-direction: row !important;
    }
}

.diferenciais-textos.esquerda {
    text-align: right;
}

.diferenciais-textos.direita {
    text-align: left;
    align-items: flex-start;
}

.diferenciais-textos.direita .diferencial-card {
    text-align: left;
    align-items: flex-start;
}

.mosaico-imagens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.5rem;
    aspect-ratio: 1;
}

.mosaico-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.mosaico-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.mosaico-item:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.mosaico-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
}

.mosaico-item:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.mosaico-item:nth-child(5) {
    grid-column: 2 / 4;
    grid-row: 3 / 4;
}

.mosaico-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.mosaico-item:hover img {
    transform: scale(1.1);
}

/* Layout Alternativo do Mosaico - Divisão de Ângulos */
.mosaico-imagens-alt {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.mosaico-item-alt {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    min-height: 0;
}

/* Linha 1: Foto 1 (Horizontal/Panorâmica) - ocupa toda a largura */
.mosaico-item-alt:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
    height: 250px;
}

/* Linha 2: Fotos 2, 3 e 4 (Verticais) - lado a lado */
.mosaico-item-alt:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 300px;
}

.mosaico-item-alt:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 300px;
}

.mosaico-item-alt:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    height: 300px;
}

.mosaico-item-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.mosaico-item-alt:hover img {
    transform: scale(1.1);
}

.diferencial-card {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.diferenciais-textos.esquerda .diferencial-card {
    text-align: right;
}

.diferenciais-textos.direita .diferencial-card {
    text-align: left;
    align-items: flex-start;
}

.diferencial-icon {
    width: 60px;
    height: 60px;
    background-color: var(--cor-secundaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--cor-branco);
    font-size: 24px;
}

.diferenciais-textos.esquerda .diferencial-icon {
    margin-left: auto;
    margin-right: 0;
}

.diferenciais-textos.direita .diferencial-icon {
    margin-left: 0;
    margin-right: auto;
}

.diferencial-card h3 {
    color: var(--cor-secundaria);
    margin-bottom: 0.75rem;
    font-size: 18px;
}

.diferencial-card p {
    color: var(--cor-texto-secundario);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   GALERIA INSTAGRAM
   ============================================ */

.galeria-instagram {
    background-color: var(--cor-branco);
}

/* Carrossel de Galeria */
.galeria-carrossel {
    margin: 3rem 0;
    position: relative;
}

.carrossel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carrossel-track {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carrossel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrossel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carrossel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cor-primaria);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carrossel-btn:hover {
    background-color: var(--cor-branco);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carrossel-prev {
    left: 20px;
}

.carrossel-next {
    right: 20px;
}

.carrossel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carrossel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(135, 89, 58, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrossel-dots .dot.active {
    background-color: var(--cor-primaria);
    transform: scale(1.2);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instagram-post-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(135, 89, 58, 0.8) 0%, rgba(107, 69, 48, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-overlay i {
    font-size: 32px;
    color: var(--cor-branco);
}

.instagram-error {
    background-color: var(--cor-fundo-card-alt);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--cor-texto-secundario);
}

.instagram-error i {
    font-size: 60px;
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

.instagram-error p {
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.instagram-error a {
    color: var(--cor-primaria);
    font-weight: 600;
}

.instagram-error a:hover {
    text-decoration: underline;
}

/* Estilo para widget Elfsight */
.elfsight-app {
    margin: 2rem 0;
}

/* Ajustes para o widget do Instagram */
.elfsight-app iframe {
    border-radius: 15px;
}

/* Grid para embeds do Instagram */
.instagram-embeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.instagram-embed-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.instagram-embed-wrapper iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   DEPOIMENTOS
   ============================================ */

.depoimentos {
    background-color: var(--cor-fundo);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.depoimento-card {
    background-color: var(--cor-branco);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.depoimento-imagem {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Carrossel de Depoimentos */
.depoimentos-carrossel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.depoimentos-carrossel {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem 0;
    margin-right: 60px;
    width: calc(100% - 60px);
}

.depoimentos-carrossel::-webkit-scrollbar {
    display: none;
}

.depoimento-item {
    flex: 0 0 380px;
    flex-shrink: 0;
    background-color: #F6F4EE;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 500px;
    max-height: 600px;
}

.depoimento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.depoimento-header {
    font-family: var(--fonte-titulo);
    font-size: 18px;
    font-weight: 600;
    color: var(--cor-texto);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.depoimento-imagem-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 15px;
}

.depoimento-item .depoimento-imagem {
    width: 100%;
    max-width: 320px;
    max-height: 350px;
    height: auto;
    border-radius: 15px;
    object-fit: contain;
    display: block;
}

.depoimento-stars {
    font-size: 24px;
    color: var(--cor-primaria);
    letter-spacing: 4px;
    text-align: center;
    flex-shrink: 0;
    margin-top: auto;
}

.depoimentos-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--cor-primaria);
    color: var(--cor-branco);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.depoimentos-scroll-btn-left {
    left: 0;
}

.depoimentos-scroll-btn-right {
    right: 0;
}

.depoimentos-scroll-btn:hover {
    background-color: #6B4530;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   TABELA DE PREÇOS
   ============================================ */

.tabela-precos {
    background-color: var(--cor-branco);
}

.precos-categoria {
    margin-bottom: 3rem;
}

.categoria-title {
    font-size: 24px;
    color: var(--cor-primaria);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.precos-lista {
    background-color: var(--cor-fundo-card-alt);
    border-radius: 10px;
    padding: 1.5rem;
}

.preco-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(135, 89, 58, 0.1);
}

.preco-item:last-child {
    border-bottom: none;
}

.preco-nome {
    font-size: 16px;
    color: var(--cor-texto);
}

.preco-valor {
    font-family: var(--fonte-titulo);
    font-size: 18px;
    font-weight: 600;
    color: var(--cor-primaria);
}

/* Oculta só a exibição dos valores; HTML preservado para reativar depois */
#precos .preco-valor,
#servicos .servico-preco {
    display: none !important;
}

.precos-aviso {
    background-color: var(--cor-fundo);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
    color: var(--cor-texto-secundario);
    font-size: 14px;
}

/* ============================================
   TABELA COMPARATIVA (SEO)
   ============================================ */

.tabela-comparativa-seo {
    padding: var(--espacamento-section) 0;
    background-color: var(--cor-fundo);
}

.tabela-comparativa-seo .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(135, 89, 58, 0.12);
    border: 1px solid rgba(135, 89, 58, 0.12);
    background-color: var(--cor-branco);
}

.tabela-comparativa-seo table.tabela-comparativa {
    display: table;
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    background-color: var(--cor-branco);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--cor-texto);
}

.tabela-comparativa-seo .tabela-comparativa thead {
    display: table-header-group;
}

.tabela-comparativa-seo .tabela-comparativa tbody {
    display: table-row-group;
}

.tabela-comparativa-seo .tabela-comparativa tr {
    display: table-row;
}

.tabela-comparativa-seo .tabela-comparativa th,
.tabela-comparativa-seo .tabela-comparativa td {
    display: table-cell;
    padding: 0.875rem 1rem;
    text-align: left;
    vertical-align: top;
    border: 1px solid rgba(135, 89, 58, 0.18);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.tabela-comparativa-seo .tabela-comparativa thead th {
    background-color: var(--cor-primaria);
    color: var(--cor-branco);
    font-family: var(--fonte-titulo);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    vertical-align: middle;
}

.tabela-comparativa-seo .tabela-comparativa thead th:first-child {
    width: 22%;
    border-top-left-radius: 11px;
}

.tabela-comparativa-seo .tabela-comparativa thead th:last-child {
    border-top-right-radius: 11px;
}

.tabela-comparativa-seo .tabela-comparativa tbody th[scope="row"] {
    font-family: var(--fonte-titulo);
    font-weight: 600;
    color: var(--cor-primaria);
    background-color: rgba(135, 89, 58, 0.06);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .tabela-comparativa-seo .tabela-comparativa tbody th[scope="row"] {
        white-space: normal;
    }
}

.tabela-comparativa-seo .tabela-comparativa tbody tr:nth-child(even) td {
    background-color: var(--cor-fundo-card-alt);
}

.tabela-comparativa-seo .tabela-comparativa tbody tr:hover td {
    background-color: rgba(135, 89, 58, 0.07);
}

.tabela-comparativa-seo .tabela-comparativa-links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--cor-texto-secundario);
}

.tabela-comparativa-seo .tabela-comparativa-links a {
    color: var(--cor-primaria);
    font-weight: 600;
    text-decoration: none;
}

.tabela-comparativa-seo .tabela-comparativa-links a:hover {
    text-decoration: underline;
}

/* ============================================
   SOBRE O STUDIO
   ============================================ */

.sobre-studio {
    background-color: var(--cor-fundo);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image {
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.sobre-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.sobre-nome {
    position: absolute;
    bottom: -25px;
    right: 20px;
    background: linear-gradient(135deg, rgba(135, 89, 58, 0.95) 0%, rgba(107, 69, 48, 0.95) 100%);
    color: var(--cor-branco);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--fonte-titulo);
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.sobre-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--cor-texto);
}

.sobre-text p {
    margin-bottom: 1.5rem;
}

/* ============================================
   FAQ
   ============================================ */

.faq-section {
    background-color: var(--cor-branco);
    padding: var(--espacamento-section) 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--cor-fundo-card-alt);
    border-radius: 15px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--cor-primaria);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--fonte-titulo);
    color: var(--cor-secundaria);
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--cor-fundo);
    color: var(--cor-primaria);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: var(--cor-primaria);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--cor-texto);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* ============================================
   AGENDAMENTO
   ============================================ */

.agendamento {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, #6B4530 100%);
    color: var(--cor-branco);
    text-align: center;
}

.agendamento .section-title {
    color: var(--cor-branco);
}

.agendamento .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.agendamento-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ============================================
   CONTATO & LOCALIZAÇÃO
   ============================================ */

.contato-localizacao {
    background-color: var(--cor-branco);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-item i {
    font-size: 28px;
    color: var(--cor-primaria);
    margin-top: 0.5rem;
}

.info-item h3 {
    color: var(--cor-secundaria);
    margin-bottom: 0.5rem;
    font-size: 18px;
}

.info-item p {
    color: var(--cor-texto);
    margin-bottom: 0.5rem;
}

.info-item a {
    color: var(--cor-primaria);
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-referencia {
    font-size: 14px;
    color: var(--cor-texto-secundario);
    font-style: italic;
}

.contato-mapa {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contato-mapa iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.mapa-nota {
    padding: 1rem;
    background-color: var(--cor-fundo);
    text-align: center;
    font-size: 12px;
    color: var(--cor-texto-secundario);
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--cor-secundaria);
    color: var(--cor-branco);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--cor-branco);
    margin-bottom: 1rem;
    font-size: 18px;
}

.footer-col h3.logo-text-footer {
    font-size: 28px;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--cor-branco);
}

.footer-col a i {
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--cor-branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    :root {
        --espacamento-section: 60px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    .section-title {
        font-size: 26px;
    }

    /* Logo Mobile */
    .logo-text {
        font-size: 26px;
    }
    
    .logo-img {
        height: 45px;
    }

    /* Menu Mobile */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--cor-branco);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 2rem;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title-wrapper {
        flex-direction: row;
        gap: 1rem;
        text-align: left;
    }
    
    .hero-logo {
        flex: 0 0 30%;
        max-width: none;
        margin: 0;
    }
    
    .hero-logo-img {
        max-width: 100%;
    }
    
    .hero-title {
        flex: 0 0 70%;
        width: auto;
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Serviços */
    .servicos-grid {
        grid-template-columns: 1fr;
    }

    /* Diferenciais */
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    /* Mosaico Responsivo */
    .diferenciais-mosaico {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .diferenciais-textos {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        flex-direction: unset !important;
    }

    .diferenciais-textos .diferencial-card {
        width: 100%;
        margin: 0;
    }

    .diferenciais-textos.esquerda,
    .diferenciais-textos.direita {
        text-align: center;
    }

    .diferenciais-textos.esquerda .diferencial-card,
    .diferenciais-textos.direita .diferencial-card {
        text-align: center;
    }

    .diferenciais-textos.esquerda .diferencial-icon,
    .diferenciais-textos.direita .diferencial-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .diferenciais-textos .diferencial-card {
        padding: 1rem 0.75rem;
    }

    .diferenciais-textos .diferencial-card h3 {
        font-size: 15px;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }

    .diferenciais-textos .diferencial-card p {
        font-size: 13px;
        line-height: 1.4;
        margin: 0;
    }

    .diferenciais-textos .diferencial-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 0.75rem;
    }

    .mosaico-imagens {
        aspect-ratio: 1;
        max-width: 100%;
        order: 2;
        margin: 1rem 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border-radius: 15px;
        overflow: hidden;
    }
    
    .mosaico-imagens-alt {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto;
        order: 2;
        margin: 1rem 0;
        gap: 0.5rem;
    }
    
    .mosaico-imagens-alt .mosaico-item-alt:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 2;
        height: 180px;
    }
    
    .mosaico-imagens-alt .mosaico-item-alt:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        height: 200px;
    }
    
    .mosaico-imagens-alt .mosaico-item-alt:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        height: 200px;
    }
    
    .mosaico-imagens-alt .mosaico-item-alt:nth-child(4) {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
        height: 200px;
    }
    

    .diferenciais-textos.esquerda {
        order: 1;
    }

    .diferenciais-textos.direita {
        order: 3;
    }

    /* Depoimentos */
    .depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .depoimentos-carrossel {
        gap: 1.5rem;
        margin-right: 50px;
        width: calc(100% - 50px);
    }
    
    .depoimento-item {
        flex: 0 0 300px;
        flex-shrink: 0;
        padding: 1.5rem;
        min-height: 450px;
        max-height: 550px;
    }
    
    .depoimento-header {
        font-size: 16px;
        margin-bottom: 1rem;
    }
    
    .depoimento-item .depoimento-imagem {
        max-width: 280px;
        max-height: 300px;
        margin-bottom: 1rem;
    }
    
    .depoimento-stars {
        font-size: 20px;
    }
    
    .depoimentos-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Sobre */
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contato */
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Carrossel Mobile */
    .carrossel-container {
        max-width: 100%;
        border-radius: 10px;
    }
    
    .carrossel-track {
        height: 400px;
    }
    
    .carrossel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carrossel-prev {
        left: 10px;
    }
    
    .carrossel-next {
        right: 10px;
    }
    
    .carrossel-dots {
        margin-top: 1.5rem;
        gap: 8px;
    }
    
    .carrossel-dots .dot {
        width: 10px;
        height: 10px;
    }

    /* Instagram Embeds */
    .instagram-embeds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .depoimentos-carrossel {
        gap: 1rem;
        margin-right: 40px;
        width: calc(100% - 40px);
    }
    
    .depoimento-item {
        flex: 0 0 280px;
        flex-shrink: 0;
        padding: 1.5rem;
        min-height: 400px;
        max-height: 500px;
    }
    
    .depoimento-item .depoimento-imagem {
        max-width: 240px;
        max-height: 280px;
    }
    
    .depoimentos-scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title-wrapper {
        gap: 1rem;
    }
    
    .hero-logo {
        max-width: 120px;
    }
    
    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .logo-text {
        font-size: 22px;
    }
    
    .logo-img {
        height: 40px;
    }

    .logo-text-footer {
        font-size: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .servico-card,
    .depoimento-card {
        padding: 2rem 1.5rem;
    }

    /* Instagram Grid Mobile */
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* Instagram Embeds Mobile */
    .instagram-embeds-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .depoimentos-carrossel {
        gap: 1rem;
        margin-right: 40px;
        width: calc(100% - 40px);
    }
    
    .depoimento-item {
        flex: 0 0 280px;
        flex-shrink: 0;
        padding: 1.5rem;
        min-height: 400px;
        max-height: 500px;
    }
    
    .depoimento-item .depoimento-imagem {
        max-width: 240px;
        max-height: 280px;
    }
    
    .depoimentos-scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    /* Mosaico Mobile Pequeno - Cards em 1 coluna */
    .diferenciais-textos {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

