/* =========================================
   IMPORTAÇÃO DAS 2 ÚNICAS FONTES (Google Fonts)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@400;600;700&display=swap');

/* =========================================
   VARIÁVEIS GLOBAIS (Paleta e Tipografia Simplificadas)
   ========================================= */
:root {
    /* As duas cores claras para o site */
    --color-light: #F1E7E1;     /* A mais clara (Fundo principal de todo o site) */
    --color-gray: #DDBEA9;      /* A 2ª mais clara (Para blocos secundários) */

    /* Truque: Apontei a cor antiga "gold" para a cor clara também, assim os botões não quebram! */
    --color-gold: #DDBEA9;      

    /* O tom escuro mantido APENAS para os textos e o Rodapé */
    --color-dark: #8C3C26;
    --color-white: #FFFFFF;     

    /* As 2 Fontes do Site */
    --font-ui: 'Montserrat', sans-serif; /* Para Cabeçalho, Menu, Botões e Rodapé */
    --font-texto: 'Lora', serif;         /* Para Títulos e Textos gerais (elegante e legível) */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* =========================================
   APLICAÇÃO DAS FONTES E CORES BASE
   ========================================= */
body { 
    font-family: var(--font-texto); /* Todo o corpo do site ganha a fonte de leitura */
    color: var(--color-dark); /* Texto sempre escuro para dar contraste e ler bem */
    background-color: var(--color-light); /* Fundo sempre o mais claro */
    line-height: 1.6; 
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

h1, h2, h3, h4, p { 
    font-family: var(--font-texto); /* Títulos e textos com a mesma fonte legível */
    font-weight: 400; 
    color: var(--color-dark); 
}

/* Os botões do site puxam a fonte do menu */
.btn-pill, .circle-btn, .write-review-btn, .read-more-btn {
    font-family: var(--font-ui) !important;
}

/* =========================================
   CABEÇALHO (Header) - Com a Fonte UI
   ========================================= */
header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1.5rem 5%; 
    background-color: var(--color-light); /* Fundo claro no topo */
    border-bottom: none; 
    font-family: var(--font-ui); /* Aplica a fonte reta no cabeçalho */
}
.logo img { max-height: 80px; width: auto; transition: transform 0.4s; }
.logo a:hover img { transform: scale(1.02); }

nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul li a { 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--color-dark); 
    font-weight: 600; 
    font-family: var(--font-ui); /* Fonte reta no Menu */
}
nav ul li a:hover { color: #662a1a; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--color-dark); }

/* =========================================
   CAPA (Hero) - Foto Limpa
   ========================================= */
			.hero { 
				position: relative; 
				height: 65vh; /* Altura elegante para mostrar a foto */
				width: 100%; 
				display: flex; 
				align-items: center; /* Centraliza o título no meio */
				justify-content: center; 
				text-align: center; 
				background-image: url('img/2-nascimento/1.jpg'); 
				background-attachment: fixed; 
				background-position: center 20%; 
				background-size: cover;
			}
			.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); z-index: 1; }
			.hero-content { position: relative; z-index: 2; padding: 0 20px; }
			.hero-content h1 { color: var(--color-white); font-size: 3.2rem; text-shadow: 2px 2px 15px rgba(0,0,0,0.6); margin: 0; line-height: 1.1; }

			/* =========================================
			   TEXTO E BOTÃO ABAIXO DA CAPA
			   ========================================= */
					.intro-below-hero {
						background-color: var(--color-light); 
						padding: 5rem 5% 0; 
						max-width: 900px;
						margin: 0 auto;
						
						/* A MÁGICA DO ALINHAMENTO AQUI */
						display: flex;
						flex-direction: column;
						align-items: center;
						text-align: center;
					}
					.intro-below-hero p {
						font-size: 1.3rem;
						font-family: var(--font-texto);
						font-style: italic;
						color: var(--color-dark);
						line-height: 1.6;
						margin-bottom: 2rem;
					}
					.intro-below-hero .btn-pill {
						background-color: var(--color-dark);
						color: var(--color-white) !important;
						border-color: var(--color-dark);
						/* Garante que o botão não estique a tela inteira */
						width: fit-content; 
					}
/* =========================================
   TRÊS COLUNAS COM ÍCONES
   ========================================= */
.three-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; padding: 5rem 5%; max-width: 1200px; margin: 0 auto; text-align: center; }
.col-item { display: flex; flex-direction: column; align-items: center; }
.col-icon { width: 45px; height: 45px; color: var(--color-gold); margin-bottom: 1.5rem; }
.col-item p { font-style: italic; font-family: var(--font-heading); font-size: 1.3rem; color: #555; }

/* =========================================
   MOSAICO DE FOTOS (Adaptado para 4 slots e terroso)
   ========================================= */
.masonry {
    position: relative;
    z-index: 10;
    padding: 4rem 5%;
    background-color: var(--color-light); /* Fundo bege claro (Cor 1) */
}
.mosaic-randomized {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; /* Larger gap for Fine Art feel */
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.category-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.mosaic-randomized img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px; /* Elegant border radius */
    transition: all 0.4s ease;
}
.mosaic-randomized img:hover {
    transform: scale(1.03);
    z-index: 2;
}
.category-slot span {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    font-family: var(--font-body);
}
.fine-art-cta {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-dark);
}
.fine-art-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: var(--font-body);
}
/* =========================================
   DEPOIMENTOS (Estilo Google com Carrossel e Expansão)
   ========================================= */
.google-reviews { padding: 4rem 5%; background-color: var(--color-gray); /* Fundo Areia (Cor 2) */ font-family: sans-serif; overflow: hidden; }
.reviews-header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto 2rem; background: #fff; padding: 1.5rem; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.google-logo { display: flex; align-items: center; margin-bottom: 0.5rem; }
.rating-summary { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; color: #3c4043; margin-bottom: 0.5rem; }
.rating-summary strong { font-size: 1.4rem; color: #202124; }
.stars { color: #FBBC05; letter-spacing: 2px; font-size: 1.1rem; }
.review-count { font-size: 0.9rem; color: #70757a; }
.write-review-btn { background-color: #4285F4; color: white; padding: 10px 20px; border-radius: 4px; font-weight: bold; font-size: 0.9rem; transition: background 0.3s; }
.write-review-btn:hover { background-color: #1a73e8; color: white; }

.reviews-carousel-container { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.reviews-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 1rem; }
.reviews-track::-webkit-scrollbar { display: none; }

.review-card { min-width: 320px; max-width: 320px; background: #fff; padding: 1.5rem; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); scroll-snap-align: start; display: flex; flex-direction: column; align-items: flex-start; }
.reviewer-info { display: flex; align-items: center; gap: 15px; margin-bottom: 1rem; width: 100%; }
.avatar { width: 45px; height: 45px; border-radius: 50%; overflow: hidden; background-color: #e0e0e0; flex-shrink: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-info h4 { margin: 0 0 4px 0; font-size: 1rem; color: #202124; }

.review-content { width: 100%; position: relative; }
.review-content p { font-size: 0.95rem; color: #3c4043; line-height: 1.5; margin: 0; }
.text-full { display: none; }
.review-content.expanded .text-preview { display: none; }
.review-content.expanded .text-full { display: block; animation: fadeIn 0.3s ease; }
.read-more-btn { background: none; border: none; color: #1a73e8; font-size: 0.9rem; font-weight: 500; cursor: pointer; padding: 0; margin-top: 8px; font-family: sans-serif; }
.read-more-btn:hover { text-decoration: underline; }

.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: white; border: 1px solid #ddd; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; color: #555; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.15); z-index: 10; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.carousel-btn:hover { background: #f1f3f4; color: #000; }
.prev-btn { left: -10px; }
.next-btn { right: -10px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =========================================
   MATERNIDADES
   ========================================= */
.maternities { background-color: var(--color-dark); /* Fundo Marrom Escuro (Cor 4) */ padding: 5rem 5%; text-align: center; }
.maternities h2 { color: var(--color-gold); margin-bottom: 3rem; }
.maternities-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 3rem; max-width: 1200px; margin: 0 auto; }
.maternities-grid a { display: flex; align-items: center; justify-content: center; height: 70px; width: 180px; }
.maternities-grid img { max-height: 100%; max-width: 100%; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.7; transition: all 0.5s ease; }
.maternities-grid img:hover { filter: brightness(1) invert(0); opacity: 1; transform: scale(1.08); }

/* =========================================
   BOTÃO FLUTUANTE DO WHATSAPP (A CLARA)
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px; /* Mantivemos o tamanho que você achou bom */
    height: 60px;
    bottom: 40px;
    right: 40px;
    
    /* REMOVENDO A LINHA VERDE E AJUSTANDO O FUNDO */
    background-color: var(--color-light); /* Fundo igual ao do site, sem borda visível */
    border: none; /* Remove a linha verde indesejada */
    
    color: var(--color-dark); /* Cor do texto/ícone (se houver) */
    border-radius: 50%; /* Garante que o botão seja redondo */
    text-align: center;
    font-size: 30px;
    
    /* Sombras para dar efeito flutuante */
    box-shadow: 2px 2px 10px rgba(0,0,0,0.15),
                0 0 15px rgba(140, 60, 38, 0.2); /* Sombra suave com a nossa cor dark */
    
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Garante que a foto da Clara não saia da bolinha */
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05); /* Efeito flutuante no hover */
    box-shadow: 2px 5px 15px rgba(0,0,0,0.25),
                0 0 20px rgba(140, 60, 38, 0.3);
}

/* Garante que a foto da Clara fique redonda e preencha o botão */
.whatsapp-float img.clara-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* =========================================
   TEXTOS GERAIS DE SECÇÃO
   ========================================= */
.text-center { text-align: center; }
.section-header { max-width: 800px; margin: 0 auto 3rem; text-align: center; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--color-dark); }
.section-header p { font-size: 1.1rem; color: #555; }

/* =========================================
   NOSSA JORNADA (Cards das 7 Fases)
   ========================================= */
.nossa-jornada { padding: 5rem 5%; background-color: var(--color-light); }
.jornada-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.jornada-card { background: #fff; padding: 2rem; border-radius: 12px; border-top: 5px solid var(--color-gold); box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; display: flex; flex-direction: column; }
.jornada-img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
.jornada-card:hover { transform: translateY(-5px); }
.jornada-card h3 { font-size: 1.4rem; color: var(--color-dark); margin-bottom: 0.5rem; }
.jornada-card h3 span { font-size: 1rem; color: var(--color-gold); font-weight: normal; font-style: italic; display: block; }
.jornada-card p { font-size: 0.95rem; color: #555; margin-bottom: 1.5rem; flex-grow: 1; }
.jornada-link { font-size: 0.9rem; font-weight: bold; color: var(--color-gold); text-transform: uppercase; letter-spacing: 1px; }
.jornada-link:hover { color: var(--color-dark); text-decoration: underline; }

/* =========================================
   PORTFÓLIO (Home)
   ========================================= */
.portfolio-home { padding: 5rem 5%; background-color: var(--color-gray); }
.portfolio-home .section-header h2 { color: var(--color-dark); }

/* =========================================
   QUEM SOMOS (Home)
   ========================================= */
.quem-somos-home { padding: 6rem 5%; background-color: var(--color-light); }
.quem-somos-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.quem-somos-text h2 { font-size: 2rem; color: var(--color-dark); margin-bottom: 1.5rem; line-height: 1.2; }
.quem-somos-text p { font-size: 1.05rem; color: #444; margin-bottom: 1rem; }
.security-block { background-color: var(--color-gold); color: var(--color-white); padding: 3rem; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.security-block h3 { color: var(--color-white); font-size: 1.6rem; margin-bottom: 1rem; }
.security-block p { font-size: 1rem; margin-bottom: 1rem; opacity: 0.95; }

/* =========================================
   FALE COM A CLARA (CTA Final)
   ========================================= */
.cta-clara { padding: 6rem 5%; text-align: center; background-color: var(--color-gray); border-bottom: 2px solid var(--color-light); }
.cta-clara h2 { font-size: 2.5rem; color: var(--color-dark); margin-bottom: 1rem; }
.cta-clara p { font-size: 1.2rem; color: #444; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* =========================================
   QUEM SOMOS (Home)
   ========================================= */
.quem-somos-home { padding: 6rem 5%; background-color: var(--color-light); }
.quem-somos-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.quem-somos-text h2 { font-size: 2.2rem; color: var(--color-dark); margin-bottom: 1.5rem; line-height: 1.2; font-family: var(--font-heading); }
.quem-somos-text p { font-size: 1.1rem; color: #444; margin-bottom: 1rem; line-height: 1.6; }

/* O Bloco Destacado de Segurança */
.security-block { background-color: var(--color-gold); color: var(--color-white); padding: 3rem; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.security-block h3 { color: var(--color-white); font-size: 1.6rem; margin-bottom: 1.2rem; font-family: var(--font-heading); line-height: 1.3; }
.security-block p { font-size: 1.05rem; margin-bottom: 1rem; opacity: 0.95; line-height: 1.6; }
.security-block p:last-child { margin-bottom: 0; }
.estudio-gallery { max-width: 1200px; margin: 5rem auto 0; text-align: center; }
.estudio-title { font-size: 2rem; color: var(--color-gold); margin-bottom: 2rem; font-family: var(--font-heading); }
.estudio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.estudio-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.estudio-grid img:hover { transform: scale(1.03); z-index: 2; position: relative; }

/* =========================================
   PÁGINA DE PORTFÓLIO
   ========================================= */
.portfolio-header {
    text-align: center;
    padding: 8rem 5% 4rem;
    background-color: var(--color-light);
}
.portfolio-header {
    text-align: center;
    padding: 6rem 5% 4rem; /* Diminui um pouco o padding topo para colar melhor na linha */
    background-color: var(--color-light);
    border-top: 1px solid var(--color-gray); /* A LINHA SEPARADORA ELEGANTE AQUI */
}
.portfolio-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}
.portfolio-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.portfolio-category {
    padding: 5rem 5%;
    /* Intercala cores; por padrão é --color-light, o HTML força --color-gray em algumas */
}
.portfolio-category h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--color-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}
.portfolio-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}
.portfolio-grid img:hover {
    transform: scale(1.02);
    z-index: 2;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.portfolio-cta {
    text-align: center;
    padding: 6rem 5%;
    background-color: var(--color-light);
}

/* =========================================
   RODAPÉ (Footer)
   ========================================= */
footer { 
    background-color: var(--color-light); 
    padding: 4rem 5% 2rem; 
    text-align: center; 
    border-top: 1px solid var(--color-gray); 
}
.nap p { color: var(--color-dark); margin-bottom: 0.5rem; }
.social-icons { display: flex; justify-content: center; gap: 1.5rem; margin: 2rem 0; }
.social-icons a { color: var(--color-dark); transition: transform 0.3s ease; display: inline-block; }
.social-icons a:hover { transform: scale(1.2); color: var(--color-gold); }
.social-icons svg { width: 30px; height: 30px; }
.developer-signature { font-size: 0.85rem; color: #777; margin-top: 2rem; font-family: var(--font-ui); }
.developer-signature a { color: var(--color-gold); text-decoration: underline; font-weight: bold; }

/* =========================================
   CARROSSEL DE MATERNIDADES (Animação)
   ========================================= */
.maternities { background-color: var(--color-dark); padding: 5rem 5%; text-align: center; overflow: hidden; }
.maternities h2 { color: var(--color-gold); margin-bottom: 3rem; }
.maternities-grid { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    overflow: hidden; /* Esconde o que sai da tela */
    position: relative;
}
/* A "esteira" que vai rodar da direita para a esquerda */
.maternities-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scrollMaternities 20s linear infinite; /* Animação infinita */
}
.maternities-track:hover {
    animation-play-state: paused; /* Pausa se o cliente colocar o rato por cima */
}
.maternities-track a { display: flex; align-items: center; justify-content: center; height: 70px; }
.maternities-track img { max-height: 100%; width: auto; filter: brightness(0) invert(1); opacity: 0.7; transition: all 0.5s ease; }
.maternities-track img:hover { opacity: 1; transform: scale(1.08); }

@keyframes scrollMaternities {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Roda exatamente metade da esteira */
}

/* =========================================
   RESPONSIVO (Celulares e Tablets)
   ========================================= */
@media (max-width: 900px) {
    
    /* Cabeçalho e Menu Mobile */
    header { flex-direction: row; justify-content: space-between; padding: 1rem 5%; position: relative; }
    .logo img { max-height: 50px; margin-bottom: 0; }
    .menu-toggle { display: block; }
    
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--color-gold); box-shadow: 0 10px 15px rgba(0,0,0,0.1); z-index: 999; }
    .nav-menu.active { display: block; }
    nav ul { flex-direction: column; gap: 0; }
    nav ul li a { display: block; padding: 1.2rem 5%; border-bottom: 1px solid var(--color-gray); text-align: left; }

    /* Capa (Hero) e Colunas */
    .hero { height: 50vh; background-attachment: scroll; } 
    .hero-content h1 { font-size: 2.2rem; }
    .three-cols { grid-template-columns: 1fr; gap: 3rem; }
    
    /* Mosaico Sorteado Home */
    .masonry { grid-template-columns: repeat(2, 1fr); }
    .circles-grid { gap: 2rem; }
    .mosaic-randomized { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .mosaic-randomized img { height: 250px; }
    .category-slot span { font-size: 0.8rem; }
    
    /* Depoimentos */
    .reviews-header { flex-direction: column; gap: 15px; text-align: center; }
    .review-card { min-width: 280px; max-width: 280px; }
    .carousel-btn { display: none; }
    .reviews-carousel-container { padding: 0; }

    /* Quem Somos e Estúdio */
    .quem-somos-container { grid-template-columns: 1fr; gap: 3rem; }
    .estudio-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .estudio-grid img { height: 180px; }

    /* Portfólio (Página de Galerias) */
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid img { height: 200px; }
    .portfolio-header h1 { font-size: 2rem; }

    /* Ajustes do Botão Flutuante (Foto da Clara) para o Celular */
    .whatsapp-float { width: 60px; height: 60px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 35px; height: 35px; }
    .whatsapp-float img.clara-avatar { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        border-radius: 50%; 
    }
}

/* =========================================
   IMPRESSÃO
   ========================================= */
@media print {
    .social-icons svg { width: 24px !important; height: 24px !important; }
    .maternities-grid img { max-width: 150px !important; max-height: 50px !important; }
    .hero { height: auto !important; background-image: none !important; } 
    .hero-content h1, .hero-content p { color: var(--color-dark) !important; text-shadow: none !important; }
}

/* Destaque para os botões das galerias */
.portfolio-category .btn-pill {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--color-dark); /* Cor principal sólida */
    color: white;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    border: 2px solid var(--color-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Sombra para dar profundidade */
}

/* Efeito ao passar o mouse */
.portfolio-category .btn-pill:hover {
    background-color: transparent;
    color: var(--color-dark);
    transform: translateY(-3px); /* Pequeno pulo para cima */
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Destaque para a seção de Vídeo (Em breve) */
.video-placeholder {
    padding: 3rem;
    border: 2px dashed var(--color-dark);
    border-radius: 20px;
    background-color: rgba(221, 190, 169, 0.1); /* Tom pêssego bem leve */
    transition: background-color 0.3s;
}

/* =========================================
   CARROSSEL INFINITO DO ESTÚDIO
   ========================================= */
.estudio-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    display: flex;
}

.estudio-carousel-track {
    display: flex;
    gap: 15px; /* Espaço entre as fotos */
    width: max-content;
    animation: scrollEstudio 60s linear infinite; /* 60s é a velocidade, pode aumentar para ficar mais lento */
}

.estudio-carousel-track img {
    height: 350px; /* Altura padrão para manter a linha reta */
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

/* Pausa a animação quando passa o mouse por cima (para quem usa PC) */
.estudio-carousel-track:hover {
    animation-play-state: paused;
}

/* Um leve zoom ao passar o mouse */
.estudio-carousel-track img:hover {
    transform: scale(1.02);
}

/* A Mágica do Loop */
@keyframes scrollEstudio {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 7.5px)); 
    }
}

/* Ajuste para ecrãs mais pequenos (Celulares) */
@media (max-width: 768px) {
    .estudio-carousel-track img {
        height: 220px; /* Fica menor no celular para caber melhor */
    }
    .estudio-carousel-track {
        animation: scrollEstudio 40s linear infinite; /* Um pouco mais rápido no celular */
    }
}

/* =========================================
   BALÃO DA CLARA (WHATSAPP FLUTUANTE) - CORRIGIDO
   ========================================= */
.clara-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: flex-end; 
    gap: 12px; 
    z-index: 9999; 
    text-decoration: none;
    /* Forçando a quebra de qualquer herança maldita do CSS antigo */
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    overflow: visible !important;
    background: transparent !important;
}

.clara-chat-widget .clara-avatar {
    width: 65px; 
    height: 65px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    object-fit: cover;
}

/* Efeito ao passar o mouse */
.clara-chat-widget:hover .clara-avatar {
    transform: scale(1.1);
}

.clara-bubble {
    background-color: #ffffff;
    color: var(--color-dark); 
    padding: 12px 18px;
    border-radius: 20px 20px 0 20px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 220px;
    text-align: right;
    line-height: 1.3;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    animation: floatBubble 3s ease-in-out infinite; 
}



/* Animação do balão flutuando de leve */
@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* =========================================
   AJUSTE PARA CELULAR (SMARTPHONE)
   ========================================= */
.clara-bubble {
    background-color: #ffffff;
    color: var(--color-dark); 
    padding: 12px 18px;
    border-radius: 20px; /* Agora deixamos todos os cantos arredondados iguais */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 220px;
    text-align: center; /* <--- Texto perfeitamente centralizado */
    line-height: 1.3;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 12px; /* <--- Eleva o balão para alinhar com a mão */
    animation: floatBubble 3s ease-in-out infinite; 
}

/* O truque do CSS para criar a "pontinha" redesenhada */
.clara-bubble::after {
    content: '';
    position: absolute;
    bottom: 12px; /* <--- Posição exata da pontinha na lateral do balão */
    right: -9px; /* Joga a ponta para fora */
    width: 0;
    height: 0;
    border-left: 10px solid #ffffff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent; /* Agora forma um triângulo lateral */
}

/* =========================================
   BOTÃO DE FECHAR (X) DO BALÃO
   ========================================= */
.fechar-balao {
    position: absolute;
    top: 2px;
    right: 8px;
    font-size: 1.2rem;
    color: #b0b0b0;
    cursor: pointer;
    line-height: 1;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Fica mais escuro se a pessoa passar o mouse (no PC) */
.fechar-balao:hover {
    color: var(--color-dark);
}