:root {
    --primary: #f8f1f1; /* Off-White */
    --accent: #ec118a;  /* Dourado Rosé/Bronze */
    --text: #4a4a4a;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body { background-color: var(--primary); color: var(--text); }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 100;
}

.logo { font-weight: bold; letter-spacing: 3px; color: var(--accent); }

.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.9rem; }

.btn-agendar {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)), 
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text h1 { font-size: 3rem; color: #333; margin-bottom: 10px; }

/* Cards de Serviços */
.servicos { padding: 80px 10%; text-align: center; }
.servicos h2 { margin-bottom: 40px; color: var(--accent); text-transform: uppercase; }

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.card:hover { transform: translateY(-10px); border-color: var(--accent); }

.card i { color: var(--accent); margin-bottom: 20px; width: 40px; height: 40px; }

:root {
    --primary: #fffafa; /* Rosa bem clarinho */
    --accent: #b08d57;  /* Dourado suave */
    --dark: #333;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background-color: var(--primary); color: var(--dark); line-height: 1.6; }

/* Navbar Clean */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; background: var(--white);
    position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; }

.btn-agendar-nav {
    background: var(--accent); color: white; text-decoration: none;
    padding: 8px 18px; border-radius: 4px; font-size: 0.9rem;
}

/* Galeria */
.galeria { padding: 60px 8%; text-align: center; }
.galeria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
.galeria-item img { width: 100%; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.galeria-item p { margin-top: 10px; font-weight: bold; color: var(--accent); }

/* Preços */
.precos { background: #fff; padding: 60px 8%; }
.precos-container { max-width: 600px; margin: 0 auto; }
.lista-precos { margin-top: 30px; }
.preco-item {
    display: flex; justify-content: space-between;
    padding: 15px 0; border-bottom: 1px dashed #ddd;
}

/* Botão WhatsApp */
.whatsapp-btn {
    position: fixed; bottom: 20px; right: 20px;
    background: #25d366; color: white; padding: 12px 25px;
    border-radius: 50px; text-decoration: none; display: flex;
    align-items: center; gap: 10px; font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 1000;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2rem; }
}

.social-links-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: #4a4a4a;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(176, 141, 87, 0.2); /* Borda Rose Gold suave */
    backdrop-filter: blur(5px); /* Efeito de vidro */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-item i {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
}

/* Efeito de Hover */
.social-item:hover {
    transform: translateY(-5px);
    background: #b08d57; /* Cor Rose Gold ao focar */
    color: white;
    box-shadow: 0 10px 20px rgba(176, 141, 87, 0.2);
    border-color: transparent;
}

.social-item:hover i {
    color: white;
}

/* Responsivo para Mobile */
@media (max-width: 480px) {
    .social-item span {
        display: none; /* Deixa apenas os ícones em telas muito pequenas */
    }
    .social-item {
        padding: 15px;
        border-radius: 50%;
    }
}

.side-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.side-social a {
    background: white;
    color: #b08d57;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.side-social a:hover {
    background: #b08d57;
    color: white;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 80vh; /* Altura do carrossel */
    display: flex;
    align-items: center;
}

.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 10%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    color: white;
    text-align: center;
}

.carousel-caption h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white; /* Garante que o texto seja branco sobre a imagem */
}

/* Controles do Carrossel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.carousel-control.prev { left: 10px; }
.carousel-control.next { right: 10px; }
.carousel-control:hover { background-color: rgba(0, 0, 0, 0.6); }

/* Indicadores (Dots) */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--accent); /* Dourado Rosé para o dot ativo */
}

/* Responsividade do Carrossel */
@media (max-width: 768px) {
    .carousel-caption h1 { font-size: 1.8rem; }
    .carousel-caption p { font-size: 0.9rem; }
    .carousel-control { padding: 10px 5px; font-size: 1.5rem; }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 80vh; /* Altura do carrossel */
    display: flex;
    align-items: center;
}

.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 10%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    color: white;
    text-align: center;
}

.carousel-caption h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white; /* Garante que o texto seja branco sobre a imagem */
}

/* Controles do Carrossel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.carousel-control.prev { left: 10px; }
.carousel-control.next { right: 10px; }
.carousel-control:hover { background-color: rgba(0, 0, 0, 0.6); }

/* Indicadores (Dots) */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--accent); /* Dourado Rosé para o dot ativo */
}

/* Responsividade do Carrossel */
@media (max-width: 768px) {
    .carousel-caption h1 { font-size: 1.8rem; }
    .carousel-caption p { font-size: 0.9rem; }
    .carousel-control { padding: 10px 5px; font-size: 1.5rem; }
}

.hero-text h1 {
    font-size: 3rem;
    color: white;
    /* Sombra: x, y, desfoque, cor */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8); 
}

.hero-text p {
    color: rgb(248, 87, 200);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);

    .glass-box {
    background: rgba(255, 255, 255, 0.1); /* Fundo branco bem transparente */
    backdrop-filter: blur(10px); /* O segredo: desfoca o que está atrás */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
}
}

.hero {
    position: relative;
    /* Adicionamos um gradiente linear antes da imagem */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/img/10.jpeg') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-studio {
    background-color: #fdf8f5; /* Tom pérola suave */
    padding: 60px 8% 20px;
    border-top: 1px solid rgba(176, 141, 87, 0.2);
    color: #555;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--accent); /* Rose Gold */
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-column h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin-top: 5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    color: var(--accent);
    transition: 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    color: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.8rem;
    color: #999;
}

/* Ajuste de ícones no rodapé */
.footer-column i {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .footer-column h4::after {
        margin: 5px auto;
    }
    .footer-column p {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }
}

/* Ajuste do container da Logo */
.navbar .logo {
    display: flex;
    align-items: center;
}

/* Estilo da imagem da logo */
.nav-logo-img {
    height: 60px; /* Define uma altura elegante para a navbar */
    width: auto;  /* Mantém a proporção da imagem */
    display: block;
    transition: transform 0.3s ease;
}

/* Efeito suave ao passar o mouse */
.nav-logo-img:hover {
    transform: scale(1.05);
}

/* Ajuste da Navbar para comportar a logo */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%; /* Reduzi um pouco o padding vertical */
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Esconder botão no Desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
}

.mobile-menu-btn i {
    width: 32px;
    height: 32px;
}

/* Regras para Celular (Telas até 768px) */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block; /* Mostra o botão hambúrguer */
    }

    .nav-links {
        display: none; /* Esconde a lista padrão */
        flex-direction: column;
        position: absolute;
        top: 80px; /* Altura da sua navbar */
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        text-align: center;
        gap: 20px;
    }

    /* Classe que o JS vai ativar */
    .nav-links.active {
        display: flex;
    }
}

/* Reduzindo o espaçamento da seção como um todo */
.galeria {
    padding: 30px 8%; /* Diminuído de 60px para 30px */
}

.galeria h2 {
    margin-bottom: 20px; /* Espaço menor abaixo do título */
    font-size: 1.5rem;   /* Título um pouco menor para economizar espaço */
}

/* Limitando o tamanho do card de transformação */
.galeria-grid {
    display: flex;       /* Mudamos para flex para controlar melhor a largura */
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.galeria-item {
    max-width: 280px;    /* Define um tamanho máximo menor para o card */
}

/* Ajustando a imagem para ser menos alta */
.galeria-item img {
    width: 100%;
    height: 200px;       /* Altura fixa menor */
    object-fit: cover;   /* Garante que a foto não distorça */
    border-radius: 8px;
}

.galeria-item p {
    font-size: 0.9rem;   /* Texto da legenda menor */
    margin-top: 8px;
}

/* Ajuste da tag "Antes / Depois" */
.compare span {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* Container que permite rolagem horizontal se houver muitos itens */
.galeria-horizontal {
    display: flex;
    overflow-x: auto; /* Ativa scroll horizontal se necessário */
    gap: 20px;
    padding: 10px 0;
    justify-content: center; /* Centraliza se forem poucos itens */
}

/* Ocultar a barra de scroll para um visual mais limpo */
.galeria-horizontal::-webkit-scrollbar {
    display: none;
}

.galeria-item {
    min-width: 250px; /* Largura fixa de cada transformação */
    text-align: center;
}

.compare-container {
    position: relative;
    width: 100%;
    height: 300px; /* Altura fixa para padrão */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Imagens sobrepostas */
.compare-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease-in-out; /* Transição suave */
}

/* O "Antes" fica na frente */
.img-antes {
    z-index: 2;
}

/* O "Depois" fica atrás */
.img-depois {
    z-index: 1;
}

/* Efeito de Hover: Esconde o antes para revelar o depois */
.compare-container:hover .img-antes {
    opacity: 0;
}

/* Badge indicativa */
.badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    z-index: 3;
    pointer-events: none;
}

/* Cor e Movimento para o link do WhatsApp */
.link-whatsapp {
    color: #25d366; /* Verde Neon WhatsApp */
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    padding: 2px 8px;
    border-radius: 4px;
}

.link-whatsapp:hover {
    background: rgba(37, 211, 102, 0.1); /* Fundo verde clarinho no hover */
    transform: scale(1.05); /* Aumenta levemente */
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.3); /* Brilho suave */
}

/* Animação de pulso no ícone do WhatsApp */
.link-whatsapp i {
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); text-shadow: 0 0 10px #25d366; }
    100% { transform: scale(1); }
}

/* Cor e Movimento para o link do Site (Efeito de tecnologia) */
.link-animado {
    color: #00d4ff; /* Azul Ciano Tech */
    text-decoration: none;
    text-transform: lowercase;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.link-animado::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00d4ff;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.link-animado:hover {
    color: #ffffff; /* Muda para branco ao passar o mouse */
}

.link-animado:hover::after {
    width: 100%; /* A linha azul corre por baixo do link */
}

/* Destaque para o nome WHITE SHARK */
.footer-info strong {
    color: #00d4ff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.2);
}

/* ============================================================
   RESPONSIVIDADE GLOBAL - STUDIO SILVIA
   ============================================================ */

/* Ajustes para Tablets e Celulares (Telas até 992px) */
@media (max-width: 992px) {
    .hero-carousel {
        height: 60vh; /* Diminui a altura do banner no tablet */
    }

    .carousel-caption h1 {
        font-size: 2.2rem;
    }

    .faq-section, .galeria, .servicos {
        padding: 40px 5%; /* Reduz as margens laterais */
    }
}

/* Ajustes específicos para Celulares (Telas até 768px) */
@media (max-width: 768px) {
    /* Navbar e Logo */
    .nav-logo-img {
        height: 45px; /* Logo menor no celular */
    }

    /* Hero/Banner */
    .hero-carousel {
        height: 50vh;
    }

    .carousel-caption h1 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    /* Galeria Horizontal */
    .galeria-horizontal {
        justify-content: flex-start; /* Permite o deslize lateral */
        padding-left: 20px;
        padding-right: 20px;
    }

    .galeria-item {
        min-width: 80%; /* Cada foto ocupa 80% da tela para mostrar que tem mais ao lado */
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    /* Rodapé White Shark */
    .footer-white-shark {
        padding: 30px 15px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
}

/* Ajustes para Celulares Pequenos (Telas até 480px) */
@media (max-width: 480px) {
    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    /* Ajuste dos botões flutuantes para não cobrirem o conteúdo */
    .call-btn, .whatsapp-btn {
        padding: 12px;
        bottom: 15px;
    }

    .call-btn span {
        display: none; /* Deixa apenas o ícone no celular muito pequeno */
    }

    /* Tabelas de preços (se houver) */
    .precos-grid {
        grid-template-columns: 1fr; /* Força uma coluna só */
    }
}

/* Imagens Gerais */
img {
    max-width: 100%;
    height: auto; /* Garante que nenhuma imagem "estoure" a largura da tela */
}

/* Estilização Geral da Seção de Depoimentos */
.depoimentos {
    background-color: #fdf8f5; /* Um tom leve de creme/nude */
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.depoimentos h2 {
    color: #4a4a4a;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Container dos itens */
.depoimentos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cada Card de Depoimento */
.depoimento-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    flex: 1 1 300px; /* Responsivo: cresce e diminui conforme a tela */
    max-width: 350px;
    transition: transform 0.3s ease;
}

.depoimento-item:hover {
    transform: translateY(-5px);
}

.depoimento-item p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.depoimento-item span {
    display: block;
    font-weight: bold;
    color: #d4a373; /* Cor dourada/bronze para o nome */
    font-size: 0.9rem;
}

/* Botão de Agendamento (WhatsApp) */
.btn-agendar-nav {
    display: inline-block;
    background-color: #ee5293; /* Verde oficial do WhatsApp */
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin: 40px auto;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-agendar-nav:hover {
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); /* O que nossos clientes dizem */
}

.social-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px;
    color: #333;
}

.social-item i {
    stroke-width: 1.5px; /* Deixa o ícone mais fino e elegante */
}

.social-links-modern {
    display: flex;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #4a4a4a;
    padding: 8px 16px;
    border: 1px solid #d4af37; /* Dourado */
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-item:hover {
    background-color: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.social-item i {
    width: 20px;
    height: 20px;
}

.hero { 
    height: 70vh; 
    /* Removemos o gradiente escuro e mantemos apenas a imagem */
    background-image: url('/img/10.jpeg'); 
    background-size: cover; 
    background-position: center; /* Garante que o foco da foto esteja no meio */
    background-repeat: no-repeat;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    color: white; 
    text-align: center; 
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: rgb(241, 16, 16) !important;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2ae06d 0%, #16a392 100%);
}

.whatsapp-btn i {
    width: 22px;
    height: 22px;
}

/* Efeito de leve pulsação para chamar atenção */
@keyframes pulse-soft {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.whatsapp-btn {
    animation: pulse-soft 3s infinite ease-in-out;
}

 .footer-white-shark {
                background-color: #1a1a1a;
                color: #ffffff;
                padding: 40px 10%;
                text-align: center;
                border-top: 3px solid #f56e96;
            }

            .footer-logo {
                width: 250px;
                /* Ajuste o tamanho da logo aqui */
                height: auto;
                margin-bottom: 20px;
                filter: drop-shadow(0 0 5px rgba(243, 156, 178, 0.5));
            }

            /* Efeito de movimento ao passar o mouse */
            .foto-item:hover img {
                transform: scale(1.1);

                .footer-links {
                    margin: 0px 0;
                }

                .footer-links a {
                    color: #bc0038;
                    text-decoration: none;
                    margin: 0 15px;
                    font-weight: bold;
                }

                .footer-info {
                    font-size: 0.95rem;
                    opacity: 0.8;
                    line-height: 1.6;
                }

                .agenda-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    font-family: sans-serif;
}

.agenda-container h2 { text-align: center; color: #333; }

#form-agenda label { display: block; margin-top: 10px; font-weight: bold; }

#form-agenda input, #form-agenda select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#form-agenda button {
    width: 100%;
    background-color: #25d366;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}
/* Container Principal */
.agenda-container {
    max-width: 450px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05); /* Sombra suave */
    font-family: 'Poppins', sans-serif; /* Fonte moderna */
    border: 1px solid #f0f0f0;
}

/* Título com estilo */
.agenda-container h2 {
    text-align: center;
    color: #4a4a4a;
    font-size: 24px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Labels elegantes */
#form-agenda label {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

/* Inputs e Selects Arredondados */
#form-agenda input, 
#form-agenda select {
    width: 100%;
    padding: 12px 15px;
    margin-top: 8px;
    border: 2px solid #f1f1f1;
    border-radius: 12px;
    background-color: #fafafa;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Garante que o padding não quebre a largura */
}

/* Efeito ao clicar no campo */
#form-agenda input:focus, 
#form-agenda select:focus {
    border-color: #e2b4bd; /* Tom Rose Gold */
    background-color: #fff;
    box-shadow: 0 0 8px rgba(226, 180, 189, 0.3);
}

/* Botão de WhatsApp Estilizado */
#form-agenda button {
    width: 100%;
    background: linear-gradient(135deg, #04d852 0%, #8c1237 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 12px;
    margin-top: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Efeito de clique no botão */
#form-agenda button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 49, 123, 0.4);
}

#form-agenda button:active {
    transform: translateY(0);
}
#form-agenda button:hover { background-color: #1e43be; }

.agenda-container {
    max-width: 450px;
    margin: 40px auto;
    padding: 30px;
    background: #d40b0b;
    
    /* A Mágica da Borda aqui */
    border: 2px solid #e74566; /* Cor Rose Gold */
    border-radius: 25px; /* Cantos bem redondos */
    
    box-shadow: 0 10px 20px rgba(226, 180, 189, 0.1); /* Sombra bem leve na cor da borda */
}

/* Container Principal (A Caixa/Envoltório) */
.agenda-container {
    max-width: 450px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    
    /* Borda e Arredondamento */
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    
    /* Sombra para dar destaque (Efeito de flutuar) */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    
    /* Detalhe de cor no topo da caixa */
    border-top: 8px solid #d4a373; /* Um dourado/bronze elegante */
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Título */
.agenda-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

/* Estilização das Labels (Textos acima dos campos) */
#form-agenda label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

/* Estilização dos Inputs e Selects (Os campos de preencher) */
#form-agenda input, 
#form-agenda select {
    width: 100%;
    padding: 12px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    background-color: #fafafa;
    font-size: 16px;
    color: #333;
    box-sizing: border-box; /* Garante que o padding não aumente a largura */
    transition: all 0.3s ease;
}

/* Efeito de cor na borda quando o cliente clica no campo */
#form-agenda input:focus, 
#form-agenda select:focus {
    outline: none;
    border-color: #d4a373;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(212, 163, 115, 0.2);
}

/* Botão do WhatsApp Estilizado */
#form-agenda button {
    width: 100%;
    margin-top: 30px;
    padding: 15px;
    background-color: #21f06d; /* Verde oficial WhatsApp */
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s, transform 0.2s;
}

/* Efeito no botão ao passar o mouse */
#form-agenda button:hover {
    background-color: #8c125d;
    transform: translateY(-2px); /* Ele sobe levemente */
}

#form-agenda button:active {
    transform: translateY(0);

    .quem-somos {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fffafb; /* Fundo rosado bem suave */
    border-left: 5px solid #d4a373; /* Borda lateral elegante (Dourado/Bronze) */
    border-radius: 8px;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.quem-somos-content h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 5px;
}

.quem-somos-content span {
    display: block;
    color: #d4a373;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.quem-somos-content p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 15px;
}
}

/* Configuração do fundo e alinhamento lateral */
.secao-completa-agenda {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 60px 20px;
    background-color: #fdf8f9; /* Fundo suave para preencher a tela */
    min-height: 500px;
    font-family: 'Segoe UI', sans-serif;
}

/* Estilo dos textos que preenchem as laterais */
.texto-lateral-esquerda, .texto-lateral-direita {
    max-width: 200px;
    text-align: center;
    color: #d4a373; /* Cor bronze/dourada */
}

.texto-lateral-esquerda h2, .texto-lateral-direita h2 {
    font-size: 32px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Estilo da Agenda (A Caixa no Meio) */
.agenda-container {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 20px !important;
    border: 2px solid #e2b4bd !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    width: 100%;
    max-width: 400px; /* Largura fixa para não esticar demais */
}

/* Responsividade: No celular, os textos das laterais somem ou ficam em cima */
@media (max-width: 768px) {
    .secao-completa-agenda {
        flex-direction: column;
        text-align: center;
    }
    .texto-lateral-esquerda, .texto-lateral-direita {
        margin-bottom: 20px;
    }
}

/* Estilização interna rápida dos inputs */
#form-agenda input, #form-agenda select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

#form-agenda button {
    width: 100%;
    padding: 15px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}
/* Importando uma fonte elegante do Google */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,400&family=Poppins:wght@300;500&display=swap');

.secao-completa-agenda {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Espaçamento entre texto e agenda */
    padding: 80px 20px;
    background: linear-gradient(to right, #fff5f6, #ffffff, #fff5f6); /* Degradê sutil */
    font-family: 'Poppins', sans-serif;
}

/* Estilizando os textos laterais */
.texto-lateral-esquerda, .texto-lateral-direita {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.texto-lateral-esquerda h2, .texto-lateral-direita h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #b08968; /* Tom Bronze/Madeira suave */
    margin: 0;
    line-height: 1;
}

.texto-lateral-esquerda p, .texto-lateral-direita p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px; /* Letras espalhadas dão ar de elegância */
    color: #999;
    margin-top: 10px;
}

/* Pequeno detalhe decorativo sob o texto */
.texto-lateral-esquerda::after, .texto-lateral-direita::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #b08968;
    margin: 15px auto;
}

/* Agenda Container (O Cartão Central) */
.agenda-container {
    flex: 2;
    max-width: 420px;
    background: #ffffff !important;
    padding: 40px !important;
    border-radius: 30px !important; /* Bordas bem arredondadas */
    border: 1px solid rgba(176, 137, 104, 0.2) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05) !important;
    text-align: left;
}

.agenda-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

/* Inputs minimalistas */
#form-agenda input, #form-agenda select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none !important;
    border-bottom: 1px solid #ddd !important; /* Apenas linha embaixo */
    background: transparent !important;
    font-family: 'Poppins', sans-serif;
    color: #555;
}

#form-agenda input:focus {
    outline: none;
    border-bottom-color: #b08968 !important;
}

/* Botão Chic */
#form-agenda button {
    width: 100%;
    padding: 16px;
    background: #25d366 !important;
    color: white !important;
    border-radius: 50px !important;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}

#form-agenda button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
}

/* Responsividade para celular */
@media (max-width: 900px) {
    .secao-completa-agenda {
        flex-direction: column;
        padding: 40px 20px;
    }
    .texto-lateral-esquerda, .texto-lateral-direita {
        max-width: 100%;
    }
}

/* Animação de Surgimento (Fade In + Deslizar) */
@keyframes revelarTexto {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplicando nos Textos Laterais */
.texto-lateral-esquerda {
    animation: revelarTexto 1.2s ease-out forwards;
}

.texto-lateral-direita {
    animation: revelarTexto 1.2s ease-out 0.4s forwards; /* Começa com um atraso de 0.4s */
    opacity: 0; /* Começa invisível para a animação funcionar */
}

/* Aplicando na Agenda (Crescer suavemente) */
@keyframes revelarAgenda {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.agenda-container {
    animation: revelarAgenda 1.5s ease-in-out forwards;
}

/* Estilização da Seção Quem Somos */
.quem-somos {
    padding: 80px 20px;
    background-color: #fcfaf8; /* Um off-white levemente quente */
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.quem-somos-content {
    max-width: 800px;
    line-height: 1.6;
}

.quem-somos-content h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.quem-somos-content span {
    display: block;
    font-style: italic;
    color: #b59410; /* Tom de dourado sofisticado */
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.quem-somos-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify; /* Opcional: traz um ar mais editorial */
}

/* Detalhe visual: uma linha fina abaixo do título */
.quem-somos-content::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #b59410;
    margin: 30px auto 0;
}
/* Estilização da Seção Quem Somos */
.quem-somos {
    padding: 80px 20px;
    background-color: #fcfaf8; /* Um off-white levemente quente */
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.quem-somos-content {
    max-width: 800px;
    line-height: 1.6;
}

.quem-somos-content h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.quem-somos-content span {
    display: block;
    font-style: italic;
    color: #b59410; /* Tom de dourado sofisticado */
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.quem-somos-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify; /* Opcional: traz um ar mais editorial */
}

/* Detalhe visual: uma linha fina abaixo do título */
.quem-somos-content::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #b59410;
    margin: 30px auto 0;
}

/* Container Principal */
.quem-somos {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff, #f9f6f2); /* Degradê sutil */
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.quem-somos-content {
    max-width: 700px;
    text-align: center;
    /* Animação inicial */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

/* Classe para disparar a animação (via JS ou carregar direto) */
.quem-somos-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.quem-somos-content h2 {
    font-family: 'Playfair Display', serif; /* Sugestão de fonte elegante */
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.quem-somos-content span {
    display: inline-block;
    color: #c5a059; /* Dourado mais suave */
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
    position: relative;
}

/* Linhas decorativas ao lado do span */
.quem-somos-content span::before,
.quem-somos-content span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #c5a059;
}
.quem-somos-content span::before { left: -40px; }
.quem-somos-content span::after { right: -40px; }

.quem-somos-content p {
    font-family: 'Lato', sans-serif;
    color: #4a4a4a;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    .quem-somos { padding: 60px 20px; }
    .quem-somos-content h2 { font-size: 2rem; }
    .quem-somos-content span::before, 
    .quem-somos-content span::after { display: none; } /* Remove linhas no mobile */
}

/* Animação de Surgimento (Fade In + Deslizar) */
@keyframes revelarTexto {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplicando nos Textos Laterais */
.texto-lateral-esquerda {
    animation: revelarTexto 1.2s ease-out forwards;
}

.texto-lateral-direita {
    animation: revelarTexto 1.2s ease-out 0.4s forwards; /* Começa com um atraso de 0.4s */
    opacity: 0; /* Começa invisível para a animação funcionar */
}

/* Aplicando na Agenda (Crescer suavemente) */
@keyframes revelarAgenda {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.agenda-container {
    animation: revelarAgenda 1.5s ease-in-out forwards;
}

/* Importando uma fonte elegante do Google */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,400&family=Poppins:wght@300;500&display=swap');

.secao-completa-agenda {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Espaçamento entre texto e agenda */
    padding: 80px 20px;
    background: linear-gradient(to right, #fff5f6, #ffffff, #fff5f6); /* Degradê sutil */
    font-family: 'Poppins', sans-serif;
}

/* Estilizando os textos laterais */
.texto-lateral-esquerda, .texto-lateral-direita {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.texto-lateral-esquerda h2, .texto-lateral-direita h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #b08968; /* Tom Bronze/Madeira suave */
    margin: 0;
    line-height: 1;
}

.texto-lateral-esquerda p, .texto-lateral-direita p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px; /* Letras espalhadas dão ar de elegância */
    color: #999;
    margin-top: 10px;
}

/* Pequeno detalhe decorativo sob o texto */
.texto-lateral-esquerda::after, .texto-lateral-direita::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #b08968;
    margin: 15px auto;
}

/* Agenda Container (O Cartão Central) */
.agenda-container {
    flex: 2;
    max-width: 420px;
    background: #ffffff !important;
    padding: 40px !important;
    border-radius: 30px !important; /* Bordas bem arredondadas */
    border: 1px solid rgba(176, 137, 104, 0.2) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05) !important;
    text-align: left;
}

.agenda-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

/* Inputs minimalistas */
#form-agenda input, #form-agenda select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none !important;
    border-bottom: 1px solid #ddd !important; /* Apenas linha embaixo */
    background: transparent !important;
    font-family: 'Poppins', sans-serif;
    color: #555;
}

#form-agenda input:focus {
    outline: none;
    border-bottom-color: #b08968 !important;
}

/* Botão Chic */
#form-agenda button {
    width: 100%;
    padding: 16px;
    background: #25d366 !important;
    color: white !important;
    border-radius: 50px !important;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}

#form-agenda button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
}

/* Responsividade para celular */
@media (max-width: 900px) {
    .secao-completa-agenda {
        flex-direction: column;
        padding: 40px 20px;
    }
    .texto-lateral-esquerda, .texto-lateral-direita {
        max-width: 100%;
    }
}

/* Animação de Surgimento (Fade In + Deslizar) */
@keyframes revelarTexto {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplicando nos Textos Laterais */
.texto-lateral-esquerda {
    animation: revelarTexto 1.2s ease-out forwards;
}

.texto-lateral-direita {
    animation: revelarTexto 1.2s ease-out 0.4s forwards; /* Começa com um atraso de 0.4s */
    opacity: 0; /* Começa invisível para a animação funcionar */
}

/* Aplicando na Agenda (Crescer suavemente) */
@keyframes revelarAgenda {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.agenda-container {
    animation: revelarAgenda 1.5s ease-in-out forwards;
}

<style>
    /* 1. Reset e Fontes */
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,400&family=Poppins:wght@300;500&display=swap');

    .secao-completa-agenda {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 60px 20px;
        background: #fffafa; /* Fundo levemente rosado */
        font-family: 'Poppins', sans-serif;
        flex-wrap: wrap; /* Para funcionar no celular */
    }

    /* 2. Textos Laterais com Animação */
    .texto-lateral-esquerda, .texto-lateral-direita {
        flex: 1;
        min-width: 200px;
        text-align: center;
        opacity: 0;
        animation: fadeInSlide 1.2s ease-out forwards;
    }

    .texto-lateral-direita { animation-delay: 0.5s; }

    .texto-lateral-esquerda h2, .texto-lateral-direita h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(24px, 5vw, 40px);
        color: #b08968;
        margin: 0;
    }

    .texto-lateral-esquerda p, .texto-lateral-direita p {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #888;
    }

    /* 3. Caixa da Agenda (O Envoltório) */
    .agenda-container {
        flex: 1.5;
        max-width: 400px;
        min-width: 300px;
        background: #ffffff;
        padding: 30px;
        border-radius: 25px;
        border: 1px solid #f0e0e0;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        z-index: 10;
    }

    .agenda-container h2 {
        font-family: 'Playfair Display', serif;
        text-align: center;
        font-size: 22px;
        margin-bottom: 20px;
    }

    /* 4. Formulário e Botão */
    #form-agenda label {
        font-size: 12px;
        font-weight: bold;
        color: #666;
        display: block;
        margin-top: 10px;
    }

    #form-agenda input, #form-agenda select {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: none;
        border-bottom: 2px solid #eee;
        background: transparent;
        transition: 0.3s;
    }

    #form-agenda input:focus {
        outline: none;
        border-bottom-color: #b08968;
    }

    #form-agenda button {
        width: 100%;
        padding: 15px;
        margin-top: 25px;
        background: #25d366;
        color: white;
        border: none;
        border-radius: 50px;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }

    /* Animação Keyframes */
    @keyframes fadeInSlide {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Ajuste Celular */
    @media (max-width: 768px) {
        .secao-completa-agenda { flex-direction: column; }
        .texto-lateral-esquerda, .texto-lateral-direita { order: -1; }
    }
</style>

/* Reset básico para limpar espaços do navegador */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Uma fonte limpa e moderna */
    background-color: #fff;
    color: #333;
}

/* --- SEÇÃO QUEM SOMOS --- */
.quem-somos {
    padding: 80px 10%;
    background-color: #fafafa;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.quem-somos-content {
    max-width: 850px;
    margin: 0 auto;
}

.quem-somos-content h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.quem-somos-content span {
    display: block;
    color: #b59410; /* Dourado */
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.quem-somos-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* --- SEÇÃO AGENDA (LAYOUT LATERAL) --- */
.secao-completa-agenda {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 5%;
    background-color: #1a1a1a; /* Fundo escuro luxo */
    color: #fff;
}

.texto-lateral-esquerda, .texto-lateral-direita {
    text-align: center;
    padding: 20px;
}

.texto-lateral-esquerda h2, .texto-lateral-direita h2 {
    font-size: 1.8rem;
    color: #d4af37; /* Dourado Metálico */
    margin-bottom: 5px;
}

.texto-lateral-esquerda p, .texto-lateral-direita p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Divisor entre os lados da agenda */
.secao-completa-agenda::after {
    content: "";
    height: 50px;
    width: 1px;
    background-color: rgba(212, 175, 55, 0.3);
}

/* Responsividade para Celular */
@media (max-width: 768px) {
    .secao-completa-agenda {
        flex-direction: column;
        gap: 30px;
    }
    .quem-somos-content h2 { font-size: 2rem; }
}

/* Container Principal */
.quem-somos {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff, #f9f6f2); /* Degradê sutil */
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.quem-somos-content {
    max-width: 700px;
    text-align: center;
    /* Animação inicial */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

/* Classe para disparar a animação (via JS ou carregar direto) */
.quem-somos-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.quem-somos-content h2 {
    font-family: 'Playfair Display', serif; /* Sugestão de fonte elegante */
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.quem-somos-content span {
    display: inline-block;
    color: #c5a059; /* Dourado mais suave */
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
    position: relative;
}

/* Linhas decorativas ao lado do span */
.quem-somos-content span::before,
.quem-somos-content span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #c5a059;
}
.quem-somos-content span::before { left: -40px; }
.quem-somos-content span::after { right: -40px; }

.quem-somos-content p {
    font-family: 'Lato', sans-serif;
    color: #4a4a4a;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    .quem-somos { padding: 60px 20px; }
    .quem-somos-content h2 { font-size: 2rem; }
    .quem-somos-content span::before, 
    .quem-somos-content span::after { display: none; } /* Remove linhas no mobile */
}

<script>
    const observer = new IntersectionObserver((entries) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.classList.add('visible');
            }
        });
    }, { threshold: 0.3 });

    observer.observe(document.querySelector('.quem-somos-content'));
</script>

/* Título Principal */
h1 {
    font-family: 'Playfair Display', serif; /* Uma fonte elegante com serifa */
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

/* Subtítulo */
h2 {
    font-family: 'Montserrat', sans-serif; /* Uma fonte limpa e aberta */
    font-size: 16px;
    font-weight: 300;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 4px; /* Espaçamento entre letras dá um ar chic */
}

/* Título com linha embaixo */
.titulo-studio {
    font-family: sans-serif;
    font-size: 40px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.titulo-studio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px; /* Linha curta e elegante */
    height: 4px;
    background-color: #25d366; /* Cor do seu botão de WhatsApp */
}

/* Subtítulo itálico e suave */
.sub-studio {
    font-style: italic;
    color: #666;
    font-size: 18px;
    margin-top: 15px;


}

