/* Definição de variáveis e estilos globais */
:root {
  --text-dark: #3E2723;       /* Marrom café bem escuro */
  --primary-brown: #6A4A3C;   /* O marrom médio dos botões */
  --accent-gold: #E0C68E;     /* Dourado para substituir o rosa */
  --bg-cream: #F2F0E9;        /* O fundo creme da sua tela nova */
  --btn-light-bg: #D7C0A9;    /* O fundo bege dos botões claros */
  
  --font-main: "Palanquin", sans-serif;
  --font-title: "Philosopher", sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-cream); /* Garante que o site todo tenha esse fundo nude */
  font-size: 15.5px;
  line-height: 24.8px;
  overflow-x: hidden;
}

/* Estilos do Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Seção Hero (Banner Principal) */
.hero-section {
  position: relative;
  
  /* Adicione/Ajuste esta linha aqui: */
  padding-bottom: 80px; /* Isso cria um espaço grande embaixo dos botões antes da onda começar */
  
  /* ... mantenha o resto das configurações (background, etc) ... */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
/* Cor escurecida na parte superior do site, como um óculos de sol */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E6DCCB; /* stone-950 */
  opacity: 0.65;
}

/*SVG, curva estética no meio do site */
.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: scale(-1, -1); /* Mantém a inversão para a forma ficar correta */
}

/* Faz a onda ser maior que a tela horizontalmente pra não ter risco, já que overflow hidden vai cortar do mesmo jeito  */
.hero-shape svg {
    position: relative;
    display: block;
    width: calc(127% + 1.3px);
    height: 113px;
}

/* COR DA ONDA  */
.hero-shape .shape-fill {
    fill: #2c1e16;
}

.hero-content {
  position: relative; 
  z-index: 2;
}
/* tamanho da logo e dimensoes */
.logo {
  width: 290px; 
  max-width: 100%; 
  height: auto;
  margin-bottom: 15px;
}

.main-title {
  color: #6A4A3C;
font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 45px;
  line-height: 48px;
  margin-bottom: 30px;
  
}

.star-detail {
    font-size: 30px; /* Tamanho menor para a estrela (o título está com 45px) */
    vertical-align: middle; /* Isso alinha a estrela no centro da altura do texto */
    position: relative;
    top: -3px; /* Um ajuste fino pra subir ela um pouquinho se precisar */
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* Estilos de Botões */
.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 30px;
  border-radius: 50px; /* Borda bem redonda igual ao print */
  border: 1px solid transparent;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1.5px; /* Espaçamento chique entre letras */
  width: 100%;
  box-sizing: border-box;
  margin-top: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Sombra suave */
}

/* Botão Principal (Igual aos 2 primeiros do print: Bege escuro com texto escuro) */
.btn-primary {
  background-color: #C6A992; /* Tom Cappuccino */
  color: #2c1e16;
  border: 1px solid #C6A992;
}

.btn-primary:hover {
  background-color: #bfa085;
  transform: translateY(-2px);
}

/* Botão Secundário (Igual ao último do print: Marrom escuro) */
.btn-secondary {
  background-color: #4A3228; /* Café */
  color: #F2F0E9; /* Texto claro */
  border: 1px solid #5D4033;
}

.btn-secondary:hover {
  background-color: #3E2920;
  border-color: var(--accent-gold); /* Brilho dourado ao passar o mouse */
}

/* Botão Outline (Para usar na seção escura se precisar de variação) */
.btn-outline {
  background-color: var(--accent-gold); /* O creme bonito (#E0C68E) */
  color: #2c1e16; /* Letra marrom escuro (café) para dar leitura */
  border: 1px solid var(--accent-gold);
}

/* Efeito ao passar o mouse (opcional: fica levemente mais claro ou escuro) */
.btn-outline:hover {
  filter: brightness(0.95); /* Escurece só um pouquinho para dar sensação de clique */
  transform: translateY(-2px); /* O pulinho clássico */
}

/* Estilo para os ícones dentro dos botões */
.btn i {
  margin-right: 10px; /* Cria um espaço entre o ícone e o texto */
  font-size: 20px;
}

.info-bottom-wave {
    position: absolute;
    bottom: -1px; /* Garante que cole lá embaixo sem fresta */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    /* Inverti a escala horizontal para a curva ficar diferente da do topo */
    transform: scaleX(-1); 
}

.info-bottom-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px; /* Altura da onda */
}

.info-bottom-wave .shape-fill {
    fill: var(--bg-cream); /* AQUI ESTÁ O TRUQUE: Cor do fundo da próxima seção */
}
/* Seção de Informações */
.info-section {
  padding: 50px 30px; /* Aumentei um pouco o respiro */
  background-color: #2c1e16; /* Um marrom quase preto, muito chique */
  color: var(--bg-cream); /* Texto geral claro */
  border: none !important; 
  outline: none !important;
  margin-top: -2px;  /* Puxa a seção pra cima para tampar o buraco */
  position: relative; /* Garante que ela fique por cima se precisar */
  z-index: 10;
}

.info-columns {
  display: flex;
  flex-direction: column;
}

.info-column {
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
}

.section-title {
  font-family: var(--font-title);
  color: var(--accent-gold); /* Substituímos o ROSA (#b12a88b9) pelo DOURADO */
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
  text-transform: capitalize; /* Deixa a primeira letra maiúscula elegante */
}

.sub-title {
  font-family: var(--font-main);
  color: #D7C0A9; /* Um bege suave, substituindo o rosa antigo */
  font-size: 22px;
  line-height: 1.6;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Estilos para telas maiores (Desktop) - o que era `md:` */
@media (min-width: 768px) {
  body {
    font-size: 17px;
    line-height: 27.2px;
  }

  .hero-section {
    padding: 215px 0;
    background-position: 100% top;
  }

  .hero-shape svg {
    height: 60px;
    width: calc(200% + 1.3px);
  }

  .main-title {
    font-size: 55px;
    line-height: 66px;
    color: #543618;
  }
  
  .button-group {
    flex-direction: row;
    justify-content: center;
  }

  .btn {
    width: auto;
  }

  .info-columns {
    flex-direction: row;
  }

  .info-column {
    width: 50%;
  }

  .section-title {
    font-size: 40px;
    line-height: 50px;
  }

  .sub-title {
    font-size: 25px;
    line-height: 37.5px;
  }
}

/* Estilos para o mapa incorporado */
.map-responsive {
  width: 100%;             /* Faz o mapa ocupar toda a largura da coluna */
  height: 250px;         
  border: none;            
  border-radius: 14px;     
  margin-top: 25px;       
}


/* =================================
   ESTILOS DA PÁGINA DE SERVIÇOS
   ================================= */

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 20px;
}

/* Versão Desktop: 2 Colunas */
@media (min-width: 768px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background-color: #fff;
    border-radius: 20px; /* Cantos mais arredondados */
    padding: 30px 25px;
    
    /* AQUI ESTÁ O CHARME: Borda Dourada no Topo */
    border-top: 4px solid var(--accent-gold); 
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra super leve */
    border-bottom: 1px solid rgba(0,0,0,0.03);
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 30, 22, 0.1); /* Sombra marrom ao flutuar */
}

/* Título do Serviço */
.service-card h3 {
    font-family: var(--font-title); /* Philosopher */
    font-size: 24px;
    color: #4A3228; /* Marrom Café */
    margin-top: 0;
    margin-bottom: 15px;
}

/* Descrição */
.service-card p {
    font-family: 'Cormorant Garamond', serif; /* A mágica acontece aqui */
    font-size: 19px; /* Aumentei de 15px para 19px para leitura confortável */
    font-weight: 600; /* Um pouco mais de peso para não ficar apagada */
    line-height: 1.3; /* Linhas mais juntinhas, estilo legenda de revista */
    color: #5D4037; /* Um marrom chocolate, mais elegante que cinza */
    margin-bottom: 25px;
    letter-spacing: 0.3px; /* Leve respiro entre as letras */
}

/* Rodapé do Card (Preço e Duração) */
.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px dashed #E0E0E0; /* Linha pontilhada sutil */
    margin-top: auto; /* Empurra para o fundo */
}

/* Duração (Reloginho) */
.service-duration {
    font-size: 13px;
    color: #8D6E63;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 !important; /* Força zero margem */
}

.service-duration i {
    color: var(--accent-gold);
    font-size: 14px;
}

/* Preço (Destaque) */
.service-price {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 800;
    color: #2c1e16; /* Café Escuro */
    background-color: #F2F0E9; /* Fundo creme no preço */
    padding: 6px 14px;
    border-radius: 50px;
}

.services-header {
    background-color: #2c1e16; /* Café Escuro Luxo */
    color: #F2F0E9; /* Texto Claro */
    text-align: center; /* Centraliza tudo */
    padding: 120px 20px 80px 20px; /* Espaço generoso em cima e embaixo */
    border-bottom: 1px solid #E0C68E; /* Linha dourada fina na base */
    
    /* Garante que o fundo cubra tudo */
    width: 100%;
    box-sizing: border-box;
}

/* Título Principal (Carta de Serviços) */
.services-header .section-title {
    font-family: 'Playfair Display', serif;
    color: #E0C68E; /* Dourado */
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    margin-top: 0;
}

/* Subtítulo */
.services-header .header-subtitle {
    font-family: var(--font-main);
    color: #D7C0A9; /* Bege suave */
    font-size: 18px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 40px; /* Espaço antes do botão */
}

/* O Botão "Voltar" (Específico para fundo escuro) */
.services-header .btn-outline {
    display: inline-block; /* Garante que não estique a tela toda */
    background-color: transparent;
    color: #E0C68E; /* Texto Dourado */
    border: 1px solid #E0C68E; /* Borda Dourada */
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Hover do Botão */
.services-header .btn-outline:hover {
    background-color: #E0C68E; /* Fica dourado sólido */
    color: #2c1e16; /* Texto fica escuro */
    transform: translateY(-3px);
}






.btn::after {
    content: '✦';
    font-size: 20px;
    position: absolute;
    right: 25px;
    opacity: 0;
    transition: all 0.3s ease;
}

/* O que acontece ao passar o mouse */
.btn:hover {
    padding-right: 60px; /* Aumenta o espaço à direita para o brilho aparecer */
    padding-left: 40px;
}

.btn:hover::after {
    opacity: 1; /* Mostra o brilho */
    transform: rotate(360deg); /* Faz o brilho girar ao aparecer */
}

.services-header .btn {
  width: auto; /* Remove a largura de 100% APENAS para este botão */
}
/* Ajuste para telas menores (mobile) */
@media (max-width: 767px) {
 .service-footer {
  flex-direction: column; /* Empilha os itens verticalmente */
  align-items: flex-start; /* Alinha os itens à esquerda */
 }

 .service-footer .service-price {
  margin-top: 5px; /* Adiciona um pequeno espaço entre a manutenção e o preço */
 }
}


/* Ajuste para telas maiores (desktop) */
@media (min-width: 768px) {
 .services-list {
  grid-template-columns: 1fr 1fr; /* 2 colunas em telas maiores */
 }
}




/* =================================
   ESTILOS DA PÁGINA SOBRE MIM
   ================================= */

/* ===================================================
   NOVO ESTILO 'SOBRE MIM' COM BLOCOS SEPARADOS
   =================================================== */

/* Estrutura principal da página 'Sobre Mim' */
.about-me-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* Espaço entre a foto e o container dos blocos */
  padding-top: 30px;
  padding-bottom: 30px;
}

.about-me-pic-container {
  text-align: center;
}

.about-me-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-me-main-title {
  font-family: var(--font-title);
  color: var(--primary-color);
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Container que segura todos os blocos de texto */
.about-me-blocks-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espaço entre cada bloco de texto */
    overflow: hidden;
}

/* Estilo individual de cada bloco de parágrafo */
.about-me-block {
    background-color: #FFFFFF;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    border-left: 5px solid var(--primary-color); /* Detalhe estético na lateral */
    display: flex;
    align-items: flex-start; /* Alinha ícone e texto no topo */
    gap: 20px; /* Espaço entre o ícone e o texto */
    transition: transform 0.3s ease;
}

.about-me-block:hover {
    transform: translateY(-5px); /* Efeito sutil para desktop */
}

.about-me-block i {
    font-size: 28px;
    color: var(--primary-color);
    padding-top: 3px; /* Ajuste fino para alinhar o ícone com o texto */
}

.about-me-block p {
    flex: 1; /* Faz o parágrafo ocupar o espaço restante */
    margin: 0; /* Remove margens padrão do parágrafo */
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

/* Ajustes para telas maiores (Desktop) */
@media (min-width: 768px) {
    .about-me-pic {
        width: 250px;
        height: 250px;
    }

    .about-me-main-title {
        font-size: 34px;
    }

    .about-me-blocks-container {
        gap: 25px;
        max-width: 700px; /* Limita a largura dos blocos no desktop para melhor leitura */
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
    }
}


/* =========================================
   BOTÃO DE AGENDAMENTO FLUTUANTE (FAB)
   ========================================= */

.floating-schedule-button {
    display: none; /* Escondido por padrão em telas grandes */
}

@media (max-width: 767px) {
/* ======================================================= */
/* ESTILO COMPLETO E DEFINITIVO PARA O BOTÃO FLUTUANTE     */
/* ======================================================= */

.floating-schedule-button {
    /* Exibir flex para alinhar ícone e texto */
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 8px; /* Espaço entre ícone e texto */
    
    /* Posição Fixa */
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    
    /* A ESTÉTICA DE OURO */
    background: linear-gradient(135deg, #F0D59D 0%, #C6A992 100%); /* Gradiente Ouro Champagne */
    color: #3E2723; /* Texto Café Escuro (Leitura perfeita no dourado) */
    
    /* Tipografia Elegante */
    font-family: var(--font-main);
    font-weight: 800; /* Extra bold para ler bem pequeno */
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    
    /* Forma e Tamanho */
    padding: 14px 30px;
    border-radius: 50px;
    
    /* O SEGREDO DO DESTAQUE (Borda + Sombra) */
    border: 2px solid #FDFBF7; /* Borda quase branca para "cortar" o fundo escuro */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2), /* Sombra preta suave para profundidade */
        0 0 0 4px rgba(224, 198, 142, 0.2); /* Um "brilho" dourado transparente em volta */
    
    /* Animação de entrada */
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Ícone do WhatsApp um pouco maior */
.floating-schedule-button i {
    font-size: 18px;
}

/* Estado Visível (controlado pelo JS) */
.floating-schedule-button.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito de clique */
.floating-schedule-button:active {
    transform: scale(0.95); /* Encolhe levemente ao tocar */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Regra para garantir que apareça apenas no mobile/telas menores se desejar */
@media (min-width: 768px) {
    .floating-schedule-button {
        display: none; /* Se quiser esconder no PC, mantenha isso. Se quiser mostrar sempre, apague essa media query */
    }
}

#fab-button:focus,
#fab-button:focus-visible {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(217, 141, 177, 0.4);
}

}


.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 20, 15, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeInOverlay 0.4s ease forwards;
}

body.modal-open {
    overflow: hidden !important;
}

/* 2. O Cartão (BASE LIGHT - BRANCO PÉROLA) */
.modal-card {
    background: #FFFDF9;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(224, 198, 142, 0.3);
    transform: translateY(20px);
    animation: slideUpModal 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    border-top: 6px solid var(--accent-gold);
    transition: background-color 0.5s ease, border-color 0.5s ease; /* Transição Suave */
}

/* --- ESTILO DO BOTÃO ECLIPSE (TOGGLE) --- */
.theme-toggle-btn {
    position: absolute;
    top: 15px;
    left: 15px; /* Canto Esquerdo */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #D7C0A9;
    color: #8D6E63;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 10;
}

.theme-toggle-btn:hover {
    background-color: #F5F0EB;
    color: #6A4A3C;
    transform: rotate(15deg);
}

/* 3. Botão de Fechar */
.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #A68B80;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    background-color: #F5F0EB;
    color: #6A4A3C;
    transform: rotate(90deg);
}

/* 4. Cabeçalho */
.modal-header { text-align: center; margin-bottom: 35px; }

.header-decoration {
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 10px;
    
    display: inline-block; /* Isso obriga o navegador a liberar a rotação */
    animation: spinSlow 8s linear infinite;
    
    transition: text-shadow 0.3s ease;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #3E2723;
    margin: 0 0 5px 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.modal-subtitle {
    font-family: var(--font-main);
    color: #8D6E63;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 0;
    transition: color 0.3s ease;
}

/* 5. Inputs Base */
.luxury-input-group { position: relative; margin-bottom: 25px; }

.luxury-input {
    width: 100%;
    padding: 16px 15px 16px 15px;
    border: 1px solid #E0D6CC;
    border-radius: 8px;
    background: #FCFAF8;
    font-family: var(--font-main);
    font-size: 16px;
    color: #3E2723;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    
    /* === FIX: ESTILO DE SELEÇÃO NO MODO LIGHT === */
    /* Isso força o seletor (bolinha) a ser dourado/marrom */
    accent-color: var(--primary-brown); 
}

.luxury-label {
    position: absolute;
    left: 15px;
    top: 16px;
    color: #9E8A84;
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: transparent;
    font-family: var(--font-main);
}

.input-icon-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #D7C0A9;
    pointer-events: none;
    transition: color 0.3s ease;
}

/* Comportamento do Label (Light) */
.luxury-input:focus, .luxury-input:not(:placeholder-shown) {
    border-color: var(--accent-gold);
    background: #fff;
    box-shadow: 0 4px 15px rgba(224, 198, 142, 0.15);
}

.luxury-input:focus ~ .luxury-label,
.luxury-input:not(:placeholder-shown) ~ .luxury-label {
    top: -10px; left: 10px; font-size: 12px;
    color: var(--accent-gold);
    background-color: #FFFDF9; /* Fundo claro para tampar a linha */
    padding: 0 5px; font-weight: 600;
}

select.luxury-input { 
    appearance: none; 
    cursor: pointer; 
    /* Adiciona a fonte chique aqui, para o texto do campo aparecer bonito */
    font-family: 'Playfair Display', serif !important;
    font-weight: 500;
    color: #3E2723;
}

/* Obs: O estilo do option varia muito entre navegadores, mas tentamos forçar o máximo */
.luxury-input option {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    background-color: #FFF; /* Fundo branco para opções Light */
    color: #3E2723;
}

.luxury-input option:checked {
    /* Destaque para a opção selecionada - Modo Light */
    background-color: #F2F0E9;
    color: var(--accent-gold);
}

/* 6. Upsell Base */
.gold-upsell-wrapper { margin-bottom: 30px; }
.hidden-checkbox { display: none; }

.gold-upsell-card {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, #FFF 0%, #FAF6F0 100%);
    border: 1px dashed #C6A992;
    border-radius: 12px; padding: 15px 20px; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}

.upsell-tag {
    display: block; font-size: 10px; text-transform: uppercase;
    font-weight: bold; color: var(--accent-gold);
    letter-spacing: 1px; margin-bottom: 4px;
}

.upsell-main-text {
    display: block; font-family: var(--font-title);
    color: #4A3228; font-size: 16px; font-weight: bold;
    transition: color 0.3s ease;
}

.upsell-price { font-size: 13px; color: #6A4A3C; font-weight: 600; transition: color 0.3s ease;}

.upsell-check-circle {
    width: 24px; height: 24px; border: 2px solid #E0D6CC;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; transition: all 0.3s ease; color: transparent;
}

/* Checkbox Checked Light */
.hidden-checkbox:checked + .gold-upsell-card {
    background: #FFFBF0; border-color: var(--accent-gold); border-style: solid;
    box-shadow: 0 4px 15px rgba(224, 198, 142, 0.2); transform: scale(1.02);
}
.hidden-checkbox:checked + .gold-upsell-card .upsell-check-circle {
    background-color: var(--accent-gold); border-color: var(--accent-gold); color: #3E2723;
}

/* 7. Botão Submit Base (Café) */
.btn-submit-luxury {
    width: 100%; padding: 18px; border: none; border-radius: 50px;
    background: linear-gradient(135deg, #6A4A3C 0%, #3E2723 100%);
    color: #fff; font-family: var(--font-main); font-size: 16px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    gap: 10px; transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(62, 39, 35, 0.2); position: relative; overflow: hidden;
}
.btn-submit-luxury:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(62, 39, 35, 0.3); }

/* ==========================================================
   AGORA A MÁGICA: O MODO DARK (MARROM)
   Tudo que tiver .dark-mode dentro do modal muda de cor
   ========================================================== */

/* Fundo Dark */
.modal-card.dark-mode {
    background: #261C18; /* Marrom Café Profundo */
    box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(224, 198, 142, 0.2);
}

/* Botão Eclipse no Dark */
.modal-card.dark-mode .theme-toggle-btn {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}
.modal-card.dark-mode .theme-toggle-btn:hover {
    background-color: #3E2723;
    box-shadow: 0 0 10px rgba(224, 198, 142, 0.3);
}

/* Textos no Dark */
.modal-card.dark-mode .modal-title { color: #E0C68E; }
.modal-card.dark-mode .modal-subtitle { color: #D7C0A9; }
.modal-card.dark-mode .header-decoration { text-shadow: 0 0 10px rgba(224, 198, 142, 0.4); }

/* Inputs no Dark */
.modal-card.dark-mode .luxury-input {
    background: #2F221E; 
    border-color: #4A3228;
    color: #F2F0E9;
    /* FIX: Force o seletor a ser DOURADO no Dark Mode */
    accent-color: var(--accent-gold); 
}

.modal-card.dark-mode .luxury-input option {
    background-color: #2F221E; /* Fundo escuro para opções Dark */
    color: #D7C0A9;
}

.modal-card.dark-mode .luxury-input option:checked {
    /* Destaque para a opção selecionada - Modo Dark */
    background-color: #2c1e16;
    color: var(--accent-gold);
}


.modal-card.dark-mode select.luxury-input option {
    /* Deixa o texto do procedimento mais fino e espaçado */
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 0;
}
.modal-card.dark-mode select.luxury-input option:checked {
    /* Destaque para a opção selecionada */
    background-color: #3E2723;
    color: var(--accent-gold);
}


/* --- APERFEIÇOAMENTO DOS TEXTOS DE DENTRO DO SELECT --- */

/* REGRA 1: Destaque o Preço na opção. */
/* No seu HTML, a opção está: Design Personalizado (R$30,00) */
/* Não temos como selecionar a cor do preço, mas podemos deixar o texto principal mais chique */

.modal-card.dark-mode .luxury-input-group .luxury-label {
    /* Mantém o label flutuante com a cor marrom clara */
    color: #8D6E63;
}
.modal-card.dark-mode .luxury-label { color: #8D6E63; }
.modal-card.dark-mode .input-icon-right { color: #6A4A3C; }

/* Focus do Input no Dark */
.modal-card.dark-mode .luxury-input:focus,
.modal-card.dark-mode .luxury-input:not(:placeholder-shown) {
    border-color: var(--accent-gold);
    background: #261C18;
    box-shadow: 0 0 15px rgba(224, 198, 142, 0.1);
}

.modal-card.dark-mode .luxury-input:focus ~ .luxury-label,
.modal-card.dark-mode .luxury-input:not(:placeholder-shown) ~ .luxury-label {
    background-color: #261C18; /* Fundo escuro para label flutuante */
    color: var(--accent-gold);
}

/* Upsell no Dark */
.modal-card.dark-mode .gold-upsell-card {
    background: linear-gradient(135deg, #2F221E 0%, #261C18 100%);
    border-color: #5D4037;
}
.modal-card.dark-mode .upsell-main-text { color: #F2F0E9; }
.modal-card.dark-mode .upsell-price { color: var(--accent-gold); }
.modal-card.dark-mode .upsell-check-circle { border-color: #5D4037; }
.modal-card.dark-mode .upsell-tag { color: #8D6E63; }

/* Upsell Selecionado no Dark */
.modal-card.dark-mode .hidden-checkbox:checked + .gold-upsell-card {
    background: #2c1e16;
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(224, 198, 142, 0.15);
}
.modal-card.dark-mode .hidden-checkbox:checked + .gold-upsell-card .upsell-tag { color: var(--accent-gold); }
.modal-card.dark-mode .hidden-checkbox:checked + .gold-upsell-card .upsell-check-circle {
    background-color: var(--accent-gold); border-color: var(--accent-gold); color: #261C18;
}

/* Botão Submit no Dark (Vira Dourado) */
.modal-card.dark-mode .btn-submit-luxury {
    background: linear-gradient(135deg, #E0C68E 0%, #C6A992 100%);
    color: #261C18; /* Texto escuro */
    font-weight: 800;
}
.modal-card.dark-mode .btn-submit-luxury:hover {
    box-shadow: 0 0 25px rgba(224, 198, 142, 0.5); /* Glow Dourado */
}


/* ==================================================
   ESTILOS DA PÁGINA DE PORTFÓLIO (MOBILE-FIRST & LUXO)
   ================================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 25px; /* Mais espaço para respirar */
    padding: 20px 0;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no PC */
    }
}

/* CARD LUXO (BRANCO) */
.portfolio-card {
    position: relative;
    border-radius: 8px; /* Cantos elegantes */
    overflow: hidden;
    
    /* FUNDO BRANCO E LIMPO */
    background-color: #fff; 
    
    /* Sombra marrom suave */
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.08); 
    border: 1px solid rgba(106, 74, 60, 0.1); 
    
    padding: 0; /* SEM PADDING: A foto encosta na borda */
    aspect-ratio: 4 / 5; 
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.15); 
}

.portfolio-card picture, .portfolio-card img {
    display: block;
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    border-radius: 0; /* Remove raio interno */
}

/* O GRADIENTE ESCURO (Para ler o texto) */
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Gradiente Marrom Café chique */
    background: linear-gradient(to top, rgba(44, 30, 22, 0.95) 0%, rgba(44, 30, 22, 0.6) 40%, transparent 100%); 
    padding: 20px 20px; 
    box-sizing: border-box;
    display: flex;
    align-items: flex-end; 
    opacity: 1;
}

.portfolio-caption {
    font-family: 'Cormorant Garamond', serif; /* Fonte Chique */
    color: var(--accent-gold); /* Texto Dourado */
    font-size: 24px; 
    line-height: 1.1;
    font-weight: 600;
    text-shadow: none; 
    margin-bottom: 5px; 
}

/* Banner Promocional (Opcional, ajustado para tons terrosos) */
.promo-banner {
    padding: 12px 20px;
    margin: 25px auto; 
    border-radius: 14px; 
    border: 1px dashed var(--primary-brown); 
    background-color: var(--bg-cream); 
    max-width: 450px; 
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.promo-banner strong {
    color: var(--primary-brown); 
    font-weight: 700; 
}


/* ===================================
   ESTILO DA PRÉVIA "SOBRE MIM"
   =================================== */
/* SOBRE MIM COR */
.about-preview-section {
    background-color: var(--bg-cream); /* Fundo Creme harmonizando com o Hero */
    padding: 80px 20px 100px 20px; /* Bastante respiro */
    text-align: center;
    position: relative;
}

/* Tratamento de "Joia" para a foto */
.about-preview-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    
    /* O Segredo do Luxo: Borda dupla */
   border: 4px solid #2c1e16; /* Borda interna cor Café */
    outline: 2px solid var(--accent-gold); /* Linha fina Dourada por fora */
    outline-offset: 6px; /* Espacinho entre a foto e o dourado */
    
    box-shadow: 0 15px 35px rgba(44, 30, 22, 0.15); /* Sombra suave e difusa */
    margin-bottom: 40px; /* Espaço generoso antes do título */
    transition: transform 0.3s ease;
}

.about-preview-pic:hover {
    transform: scale(1.03); /* Zoom leve e elegante */
}

/* Ajuste específico para o Título nesta seção clara */
.about-preview-section .section-title {
    color: #2c1e16; /* Café escuro para contraste máximo */
    margin-bottom: 15px;
}

.about-preview-text {
    /* A MUDANÇA PRINCIPAL: Usar a Cormorant Garamond */
    font-family: 'Cormorant Garamond', serif; 
    
    /* Ajustes para ela ficar legível e luxuosa */
    font-size: 22px; /* Essa fonte é delicada, então aumentamos o tamanho (era 17 ou 18px) */
    font-weight: 1000; /* Um pouco mais de peso para não ficar apagada */
    line-height: 1.3; /* Altura da linha mais compacta, estilo editorial */
    letter-spacing: 0.5px; /* Leve espaçamento entre letras */
    
    /* Centralização e cor */
    max-width: 650px; 
    margin: 0 auto 30px auto;
    color: #4A3228; /* Marrom café suave */
}

/* Ajuste do botão para ele não ocupar a tela toda */
.about-preview-section .btn {
    width: auto;
    min-width: 200px; /* Garante uma largura mínima elegante */
    padding-left: 40px;
    padding-right: 40px;
}

.about-preview-section .btn:hover {
    padding-right: 80px; /* Abre espaço extra para a estrela não atropelar */
    padding-left: 30px;  /* Compensa para manter o texto centralizado */
}


/* ===================================
   ESTILO DA PÁGINA DE DICAS
   =================================== */

.dica-card {
    background-color: #fff;
    border-radius: 14px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    border-left: 5px solid var(--primary-color);
}

.dica-card h3 {
    font-family: var(--font-title);
    font-size: 22px;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.dica-card h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.dica-card p {
    margin-bottom: 15px;
}

.dica-card ul {
    list-style: none;
    padding-left: 0;
}

.dica-card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.dica-card ul li::before {
    content: '✦';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.info-column .btn + .btn {
    margin-top: 50px;
}



/* ===================================
   DEPOIMENTOS ESTILO GOOGLE (CREDIBILIDADE)
   =================================== */

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-brown);
    opacity: 0.3;
    border-radius: 5px;
    margin: 60px auto 40px auto;
}

.testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 20px 40px 20px; /* Padding extra embaixo para sombra */
    margin: 0 -20px; /* Sangria para celular */
    
    /* Esconde barra de rolagem */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.testimonial-grid::-webkit-scrollbar {
    display: none;
}

/* O CARD DO GOOGLE */
.google-card {
    /* AQUI ESTÁ A MÁGICA: */
    flex: 0 0 85%; /* Ocupa 85% da tela, deixando 15% para mostrar o próximo */
    max-width: 320px; /* Trava em 320px para não ficar gigante em telas grandes */
    min-width: 280px; /* Garante que não fique muito espremido em telas minúsculas */
    
    scroll-snap-align: center; /* Mantém centralizado ao soltar */
    
    background-color: #fff;
    border-radius: 20px;
    padding: 25px;
    
    /* Sombra suave */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.google-card:hover {
    transform: translateY(-5px);
}

/* Cabeçalho do Card (Foto + Nome + Google) */
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.reviewer-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.reviewer-info h4 {
    margin: 0;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.reviewer-info span {
    font-size: 12px;
    color: #777;
}

/* Ícone do Google no canto superior direito */
.google-icon-img {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
}

/* Estrelas */
.stars {
    color: #F4B400; /* O Amarelo Oficial do Google */
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

/* Texto do Depoimento */
.review-text {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    
    /* Limita a 4 linhas e põe ... se for muito grande */
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.google-verify-btn {
    /* Centralização na Tela */
    display: flex; /* Mudamos de inline-flex para flex para aceitar margin auto melhor */
    align-items: center;
    justify-content: center;
    
    /* A REGRA DE OURO DA CENTRALIZAÇÃO: */
    margin: 30px auto 0 auto; /* Topo 30, Laterais Auto (Centraliza), Base 0 */
    
    /* Cores e Estilo */
    background-color: #2c1e16; 
    color: #ffffff; 
    
    /* Ajuste Fino do Espaçamento (Visualmente equilibrado) */
    padding: 14px 25px 14px 20px; /* Um pouco menos na esquerda pra compensar o peso da logo */
    
    border-radius: 50px;
    width: fit-content; /* Garante que o botão tenha o tamanho do conteúdo */
    max-width: 95%; /* Não deixa estourar a tela */
    
    white-space: nowrap; /* Não quebra linha */
    
    font-family: var(--font-main);
    font-weight: 700; 
    font-size: 14px; 
    text-decoration: none;
    letter-spacing: 0.5px;
    
    box-shadow: 0 8px 20px rgba(44, 30, 22, 0.25);
    transition: all 0.3s ease;
    border: 1px solid #2c1e16;
}

/* Configuração da Logo */
.google-verify-btn img {
    width: 26px; /* Tamanho ideal */
    height: 26px;
    margin-right: 12px; /* Espaço para o texto respirar */
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); 
    flex-shrink: 0; 
}

/* Efeito Hover */
.google-verify-btn:hover {
    background-color: #4A3228; 
    transform: translateY(-3px); 
    box-shadow: 0 12px 25px rgba(44, 30, 22, 0.35);
}


/* ===================================
   ESTILOS DOS BOTÕES DE FILTRO
   =================================== */

.filter-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas */
    gap: 12px;
    padding: 0 10px 40px 10px;
    max-width: 500px;
    margin: 0 auto;
}

.filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 10px;
    
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    /* ESTADO NORMAL: Transparente + Borda Café */
    background-color: transparent; 
    color: #4A3228;
    border: 2px solid var(--primary-brown);
    border-radius: 12px;
    
    cursor: pointer;
    
    /* TRANSIÇÃO RÁPIDA (0.1s) para não dar lag */
    transition: all 0.1s ease-out; 
    
    /* Remove o delay de toque no celular */
    touch-action: manipulation; 
    -webkit-tap-highlight-color: transparent;
}

/* O botão "Todos" ocupa a linha inteira */
.filter-btn[data-filter="todos"] {
    grid-column: span 2; 
    border-color: #E0C68E; /* Borda dourada sutil */
    color: #6A4A3C;
}

/* ESTADO ATIVO (Selecionado): Dourado Sólido */
.filter-btn.active {
    background-color: #E0C68E !important; /* Força o Dourado */
    color: #2c1e16 !important; /* Texto Café Escuro */
    border-color: #E0C68E !important;
    box-shadow: 0 4px 15px rgba(224, 198, 142, 0.4);
    transform: translateY(-1px);
}

/* Hover (Apenas PC - No celular atrapalha) */
@media (hover: hover) {
    .filter-btn:hover {
        background-color: rgba(74, 50, 40, 0.05);
    }
}



/* ===================================
   ESTILOS DO SPINNER DE CARREGAMENTO
   =================================== */

.spinner-overlay {
    display: none; /* Escondido por padrão */
    position: absolute; /* Para centralizar sobre o grid */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(241, 239, 234, 0.7); /* Fundo semi-transparente (cor do seu --background-light) */
    z-index: 10; /* Para ficar acima do grid */
    justify-content: center;
    align-items: center;
    min-height: 150px; /* Altura mínima para ser visível mesmo se o grid estiver vazio temporariamente */
}

/* Classe para MOSTRAR o overlay */
.spinner-overlay.show {
    display: flex; /* Mudamos para flex para centralizar o spinner */
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(217, 141, 177, 0.2); /* Cor primária com opacidade */
    border-top-color: var(--primary-color); /* Cor primária sólida no topo */
    border-radius: 50%;
    animation: spin 1s linear infinite; /* Animação de rotação */
}

/* Animação de rotação */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* =======================================================
   REGRA REFORÇADA PARA ESCONDER CARDS
   ======================================================= */
.portfolio-grid .portfolio-card.hide {
    display: none !important;
}



.swipe-hint {
    text-align: center;
    font-size: 14px;
    font-style: italic; /* Deixa com um ar de "dica" */
    color: #c097aa; /* Um cinza sutil que não chama mais atenção que o título */
    margin-bottom: 30px; /* Dá espaço antes do carrossel começar */
    position: relative;
    right: 12px; 
}



.info-bottom-wave {
    position: absolute;
    bottom: -1px; /* Seu ajuste que funcionou */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    /* Removi o transform: scaleX(-1); para ela virar o lado */
}

.info-bottom-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px); /* Garante que preencha a largura */
    height: 70px; 
}

/* O SEGREDO: Pintar da cor da PRÓXIMA seção (Creme) */
.info-bottom-wave .shape-fill {
    fill: var(--bg-cream); 
}


/* Container para alinhar a dica e o indicador */
.swipe-hint-container {
    text-align: center;
    margin-bottom: 20px;
}

/* Indicador de Arraste (Seta Dupla Animada) */
.drag-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--primary-brown); /* Cor da marca */
    opacity: 1;
    margin-top: 5px;
    animation: pulse-right 2s infinite ease-in-out;
}

.drag-indicator i {
    font-size: 10px;
}

@keyframes pulse-right {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(5px); /* Move levemente para a direita */
        opacity: 1;
    }
}

/* Esconde o indicador em telas grandes onde não precisa arrastar tanto */
@media (min-width: 768px) {
    .drag-indicator {
        display: none;
    }
}


.reviews-header-container {
    text-align: center; /* Centraliza tudo o que estiver dentro */
    margin-bottom: 30px;
    padding: 0 15px; /* Evita que o texto encoste na borda da tela */
}

/* Ajuste fino para o título não ficar colado */
.reviews-header-container .section-title {
    margin-bottom: 10px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Indicador de Arraste (Setinha Dourada Pulsante) */
.drag-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-gold); /* Dourado da marca */
    margin-top: 8px;
    opacity: 0.8;
    animation: slideRight 1.5s infinite ease-in-out;
}

.drag-indicator i {
    font-size: 10px;
}

/* Animação da setinha movendo */
@keyframes slideRight {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(5px); opacity: 1; }
}

/* Esconde a dica de arrastar no PC (pois lá tem scrollbar ou mouse) */
@media (min-width: 768px) {
    .drag-indicator {
        display: none;
    }
}


/* =========================================
   REVOLUÇÃO PÁGINA SOBRE MIM (LUXO EDITORIAL)
   ========================================= */

.about-page-body {
    background-color: #F8F5F1; /* Um creme ainda mais claro e sofisticado */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236a4a3c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Header Minimalista só para esta página */
.about-header-luxury {
    padding: 30px 0;
    position: absolute; /* Fica por cima do conteúdo */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.btn-back-luxury {
    text-decoration: none;
    color: #4A3228;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.btn-back-luxury:hover {
    transform: translateX(-5px);
    color: var(--accent-gold);
}

/* O Layout Grid Principal */
.about-luxury-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 40px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1.2fr; /* Coluna de texto um pouco maior */
        gap: 80px;
    }
}

/* === ÁREA VISUAL (FOTO) === */
.about-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-frame-luxury {
    position: relative;
    width: 80%;
    max-width: 400px;
}

/* A Foto Retangular com Borda Arredondada */
.camila-photo {
    width: 100%;
    height: auto;
    border-radius: 150px 150px 20px 20px; /* Efeito "Janela" */
    box-shadow: 20px 20px 0px rgba(224, 198, 142, 0.4); /* Sombra sólida dourada deslocada */
    display: block;
    filter: sepia(10%); /* Filtro sutil vintage */
}

/* Decoração (Moldura Fina) */
.frame-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid #4A3228;
    border-radius: 160px 160px 30px 30px;
    z-index: -1;
    opacity: 0.3;
}

/* Selo Flutuante "Desde 2020" */
.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #2c1e16;
    color: var(--accent-gold);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFF;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge span { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.floating-badge strong { font-size: 20px; font-family: 'Playfair Display', serif; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* === NARRATIVA (TEXTO) === */
.about-narrative {
    position: relative;
    padding-bottom: 40px;
}

.pre-title {
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    color: #8D6E63;
    margin: 0;
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #2c1e16;
    margin: 10px 0 20px 0;
}

.luxury-title .last-name {
    display: block;
    color: #C6A992; /* Tom mais claro para contraste */
    font-style: italic;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
    margin-bottom: 30px;
}

/* Texto Editorial */
.text-content-editorial p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.5;
    color: #4A3228;
    margin-bottom: 20px;
}

/* Letra Capitular (A primeira letra gigante) */
.drop-cap {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 65px;
    line-height: 50px;
    margin-right: 10px;
    margin-top: 5px;
    color: var(--accent-gold);
}

/* Grid de Valores */
.values-grid {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    border-top: 1px solid rgba(106, 74, 60, 0.1);
    border-bottom: 1px solid rgba(106, 74, 60, 0.1);
    padding: 20px 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6A4A3C;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.value-item i { color: var(--accent-gold); }

/* Assinatura */
.signature-block {
    margin-top: 30px;
    margin-bottom: 40px;
}

.signature-block p {
    font-family: var(--font-main);
    font-size: 14px;
    color: #8D6E63;
    margin: 0;
}

.signature-font {
    /* Fonte nova: Mais fina e fluida */
    font-family: 'Mrs Saint Delafield', cursive;
    
    /* Mantém o tamanho grande e a cor para destaque */
    font-size: 55px; 
    color: #2c1e16;
    line-height: 0.8;
}

.cta-about {
    width: auto !important; /* Override para não ocupar 100% no PC */
    padding-left: 50px !important;
    padding-right: 50px !important;
}

/* Ajustes Mobile */
@media (max-width: 991px) {
    .image-frame-luxury { width: 70%; margin-bottom: 30px; }
    .luxury-title { font-size: 38px; }
    .text-content-editorial p { font-size: 18px; }
    .values-grid { flex-direction: column; gap: 15px; align-items: flex-start; }
    .cta-about { width: 100% !important; }
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important; /* Força o corte lateral */
}

/* 2. Trava específica na seção nova */
.about-luxury-section {
    width: 100%;
    overflow-x: hidden; /* O segredo: corta o elemento enquanto ele "voa" para dentro */
    position: relative; /* Garante que o corte funcione */
}


/* =========================================
   PÁGINA DICAS DE CUIDADOS (SPA CARDS)
   ========================================= */

.care-page-body {
    background-color: #FBF9F6; /* Um tom off-white muito leve */
    /* Reutiliza o padrão do Sobre Mim se quiser, ou deixa liso */
}

.care-luxury-section {
    padding: 100px 0 60px 0;
    min-height: 100vh;
}

/* Intro Centralizada */
.care-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.luxury-title-center {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2c1e16;
    margin: 10px 0 20px 0;
    line-height: 1.1;
}

.gold-italic {
    color: #C6A992;
    font-style: italic;
    font-weight: 400;
}

.care-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #6A4A3C;
    margin-bottom: 30px;
}

.divider-center-gold {
    width: 80px;
    height: 3px;
    background: #E0C68E;
    margin: 0 auto;
    border-radius: 2px;
}

/* O Grid de Cartões */
.care-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .care-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet/PC */
        gap: 40px;
    }
}

/* O CARTÃO DE LUXO (Ficha de Spa) */
.care-card-luxury {
    background-color: #FFF;
    border: 1px solid #EAE0D5; /* Borda bege muito suave */
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    /* Detalhe Dourado no Topo */
    border-top: 4px solid var(--accent-gold);
}

.care-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(62, 39, 35, 0.08);
}

/* Ícone no Círculo */
.card-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #F9F3EE; /* Fundo do ícone */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #6A4A3C;
    font-size: 20px;
    border: 1px solid rgba(106, 74, 60, 0.1);
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #3E2723;
    margin: 0 0 10px 0;
}

.card-intro {
    font-family: var(--font-main);
    font-size: 14px;
    text-transform: uppercase;
    color: #A1887F; /* Marrom acinzentado */
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Lista Customizada */
.luxury-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luxury-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 600;
    color: #5D4037;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.3;
}

/* Bolinha dourada antes de cada item */
.luxury-list li::before {
    content: '•';
    color: var(--accent-gold);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px; /* Ajuste para alinhar com o texto */
}

/* Rodapé Frase */
.care-footer-note {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
}

.care-footer-note p {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 32px;
    color: #8D6E63;
}

/* Ajustes Mobile */
@media (max-width: 480px) {
    .luxury-title-center { font-size: 34px; }
    .care-card-luxury { padding: 25px 20px; }
}
/* =================================================
   FORÇAR A ESTRELINHA A GIRAR (FIX)
   ================================================= */

/* 1. Recria a "receita" do giro caso tenha sumido */
@keyframes spinSlowFix {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 2. Aplica na estrela com prioridade máxima */
.header-decoration {
    display: inline-block !important; /* Solta o elemento para ele poder girar */
    animation: spinSlowFix 8s linear infinite !important; /* Força o giro */
    transform-origin: center center !important; /* Garante que o eixo seja o meio */
}

/* =========================================
   AJUSTES FINOS DE FOTO (PORTFÓLIO)
   ========================================= */

/* AUMENTAR O ZOOM (Aproximar) */
.zoom-110 { transform: scale(1.1); }  /* Aumenta 10% */
.zoom-120 { transform: scale(1.2); }  /* Aumenta 20% */
.zoom-130 { transform: scale(1.3); }  /* Aumenta 30% */



/* AJUSTAR O ENQUADRAMENTO (Foco)
   Use isso se a foto estiver cortando a testa ou o queixo */
.foco-topo  { object-position: top center !important; }
.foco-baixo { object-position: bottom center !important; }
.foco-dir   { object-position: center right !important; }
.foco-esq   { object-position: center left !important; }

.ajuste-contain {
    object-fit: contain !important; /* Mostra a foto inteira */
    background-color: #f2f0e9; /* Preenche a sobra com a cor creme do site, em vez de branco */
}

.card-quadrado {
    aspect-ratio: 1 / 1 !important;
}


/* =========================================
   DROPDOWN MULTI-SELEÇÃO (COMPACTO)
   ========================================= */
.custom-multiselect {
    position: relative;
    margin-bottom: 25px;
    font-family: var(--font-main);
}

/* O Botão que parece um Input normal */
.select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 15px;
    border: 1px solid #E0D6CC;
    border-radius: 8px;
    background: #FCFAF8;
    cursor: pointer;
    font-size: 16px;
    color: #3E2723;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.select-trigger:hover {
    border-color: var(--accent-gold);
    background: #fff;
}

.trigger-text {
    white-space: normal !important; /* Permite quebrar a linha */
    overflow: visible !important;   /* Mostra tudo */
    text-overflow: clip !important;
    line-height: 1.4; /* Dá um respiro entre as linhas */
}

.trigger-text.has-selection {
    color: #3E2723;
    font-weight: 600;
}

/* A Lista Flutuante (Escondida por padrão) */
.options-dropdown {
    display: none; /* Escondido */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFF;
    border: 1px solid var(--accent-gold);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 100; /* Fica por cima de tudo */
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    margin-top: 5px;
}

/* Mostra quando ativo */
.custom-multiselect.active .options-dropdown {
    display: block;
    animation: fadeInDown 0.3s ease;
}

/* Itens da lista (Reutilizando estilo anterior mas ajustado) */
.checkbox-option {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}

.checkbox-option:last-child {
    border-bottom: none;
}

.checkbox-option:hover {
    background-color: #F9F3EE;
}

.checkbox-option input {
    margin-right: 12px;
    accent-color: var(--primary-brown);
    width: 18px;
    height: 18px;
}

.checkbox-option span {
    font-size: 15px;
    color: #6A4A3C;
}

/* Botão de Fechar/Confirmar dentro do dropdown */
.btn-confirm-selection {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: var(--primary-brown);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Label Flutuante Falsa (Estética) */
.fake-label {
    position: absolute;
    left: 10px;
    top: -10px;
    font-size: 12px;
    color: var(--accent-gold);
    background-color: #FFFDF9; /* Ajuste conforme o fundo do modal */
    padding: 0 5px;
    font-weight: 600;
    pointer-events: none;
}
/* Ajuste para Dark Mode */
.modal-card.dark-mode .select-trigger { background: #2F221E; border-color: #4A3228; color: #F2F0E9; }
.modal-card.dark-mode .options-dropdown { background: #2F221E; border-color: var(--accent-gold); }
.modal-card.dark-mode .checkbox-option span { color: #D7C0A9; }
.modal-card.dark-mode .checkbox-option:hover { background-color: #3E2723; }
.modal-card.dark-mode .fake-label { background-color: #261C18; }

/* TOOLTIP DE ENDEREÇO ESTÉTICO */
.address-info-wrapper {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-left: 6px;
}

.info-icon {
    width: 18px;
    height: 18px;
    background-color: var(--accent-gold);
    color: #2c1e16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: help;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 30, 22, 0.1);
}

.info-icon:hover {
    transform: scale(1.1);
    background-color: #C6A992;
}

.address-popup {
    visibility: hidden;
    width: 240px;
    background-color: #2c1e16;
    color: var(--bg-cream);
    text-align: center;
    border-radius: 12px;
    padding: 15px;
    position: absolute;
    z-index: 100;
    bottom: 150%;
    left: 50%;
    margin-left: -120px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--font-main);
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--accent-gold);
    transform: translateY(10px);
    pointer-events: none;
}

/* Setinha do Popup */
.address-popup::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--accent-gold) transparent transparent transparent;
}

.address-info-wrapper:hover .address-popup {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Ajuste mobile para não cortar na lateral */
@media (max-width: 480px) {
    .address-popup {
        margin-left: -180px; /* Desloca mais para a esquerda no mobile */
    }
    .address-popup::after {
        left: 75%;
    }
}

/* --- ESTILO DO VOUCHER DE RESUMO (LINDÃO) --- */
.summary-voucher {
    background: #fff;
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 35px 25px;
    margin: 25px 0;
    position: relative;
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.08);
    background-image: radial-gradient(var(--bg-cream) 1px, transparent 1px);
    background-size: 20px 20px; /* Textura sutil de papel */
}

/* Efeito de picote lateral */
.summary-voucher::before, .summary-voucher::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--bg-cream);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--accent-gold);
}
.summary-voucher::before { left: -13px; border-left: none; }
.summary-voucher::after { right: -13px; border-right: none; }

.summary-item {
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(224, 198, 142, 0.5);
    padding-bottom: 15px;
    text-align: center;
}

.summary-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #8D6E63;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
}

.summary-value {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2c1e16;
    font-style: italic;
    display: block;
}
/* =========================================
   FIX: CORREÇÃO DO MODO DARK (CHECKLIST)
   ========================================= */

/* 1. O Texto "Selecionado" na caixa principal */
.modal-card.dark-mode .trigger-text.has-selection {
    color: var(--accent-gold) !important; /* Dourado (legível no fundo escuro) */
}

/* 2. A cor do texto "Selecione um ou mais..." (Placeholder) */
.modal-card.dark-mode .trigger-text {
    color: #9E8A84; /* Marrom claro acinzentado */
}

/* 3. A Lista de Opções (Dropdown) */
.modal-card.dark-mode .options-dropdown {
    background-color: #261C18; /* Fundo Café Profundo */
    border-color: var(--accent-gold); /* Borda Dourada */
}

/* 4. O Texto de cada opção na lista */
.modal-card.dark-mode .checkbox-option span {
    color: #F2F0E9 !important; /* Branco Creme (para ler bem) */
}

/* 5. Efeito ao passar o mouse na lista (Dark) */
.modal-card.dark-mode .checkbox-option:hover {
    background-color: #3E2723; /* Destaque sutil */
}

/* 6. Linha divisória entre os itens (Dark) */
.modal-card.dark-mode .checkbox-option {
    border-bottom: 1px solid #3E2723;
}