:root {
    --bg-body: #F0ECE8;
    --dark-blue: #315f61;
    --pink: #c95d63;
    --pink-light: #F4767A14;
    --white: #FFFFFF;
    --off-white: #F7F5F3;
    --text-dark: #000000;
    --text-gray: #5C5C5C;
    --text-white: #FFFFFF;
    --border-light: rgba(0, 0, 0, 0.07);
    --border-white-trans: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 0 20px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 0 33px rgba(0, 0, 0, 0.07);
    --font-family: 'Inter', sans-serif;
    --max-width: 1200px;
    --header-max-width: 900px;
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 14px;
    --border-radius-xl: 20px;
    --transition-smooth: 0.35s ease;
}


:root {
    color-scheme: light only;
}

html {
    color-scheme: light only;
}


/* ============ CLASSE PARA ATIVAR/DESATIVAR SEÇÕES ============ */
/* Para voltar a mostrar os itens no futuro, basta apagar a classe "ocultar-temporariamente" do HTML */
.ocultar-temporariamente {
    display: none !important;
}

/* ============ HEADER UNIFICADO ============ */
:root {
    --header-logo-width: 250px; 
    
    /* 1. CORREÇÃO DO LOGO: Mudei de -20px para 20px (positivo) para afastar a linha do logo */
    --header-spacing-left: 20px; 
    
    /* 2. ESPAÇO APÓS A LINHA: Adicionado 20px para não grudar na palavra "Início" */
    --header-spacing-right: 20px; 
    
    --header-menu-gap: 30px; 
}

.header-flutuante {
    position: sticky;
    top: 25px;
    z-index: 999;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 10px 15px 10px 25px; /* Ajuste no preenchimento (padding) para ficar mais equilibrado */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza os itens internamente */
    
    /* 3. A MÁGICA DO AUTOAJUSTE: Isso faz o menu abraçar o conteúdo e nunca sobrar espaço vazio */
    width: max-content; 
    max-width: 95vw; /* Garante que não ultrapasse a tela em monitores menores */
    margin: 15px auto 0;
    
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

/* ============ ESTILO DO LOGO (USANDO SVG) ============ */
.header-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: var(--header-logo-width); 
}

.header-logo-img {
    width: 100%; 
    height: auto; 
    display: block;
}

/* ============ LINHA DIVISÓRIA ============ */
.header-divider {
    width: 1px;
    height: 40px; /* Diminuí levemente a altura da linha para ficar mais elegante */
    background-color: #E0E0E0;
    flex-shrink: 0;
    margin-left: var(--header-spacing-left);
    margin-right: var(--header-spacing-right);
}

/* ============ LINKS DO MENU ============ */
.header-nav {
    display: flex;
    align-items: center;
    gap: var(--header-menu-gap); 
    
    /* REMOVIDO o "flex: 1" que estava empurrando o botão para longe */
    justify-content: center;
}

.header-nav a {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    white-space: nowrap; 
    transition: color 0.2s ease;
}

.header-nav a:hover {
    color: var(--pink);
}

/* ============ BOTÃO DO HEADER ============ */
.header-btn {
    flex-shrink: 0;
    padding: 14px 24px; /* Botão um pouquinho mais delicado para caber bem na pílula */
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    background-color: var(--pink);
    color: var(--white);
    margin-left: 30px; /* Mantém uma distância segura do último link do menu */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 118, 122, 0.35);
}

/* ============ MOBILE (Telas menores) ============ */
@media (max-width: 900px) {
    .header-flutuante {
        padding: 15px 20px;
    }
    :root {
        --header-spacing-right: 20px; 
        --header-menu-gap: 15px;
    }
}

@media (max-width: 767px) {
    .header-flutuante {
        flex-wrap: wrap;
        border-radius: 0;
        top: 0;
        margin-top: 0;
        width: 100%;
    }
    .header-logo-link {
        width: 180px; 
    }
    .header-divider {
        display: none; 
    }
    .header-nav {
        order: 3; 
        width: 100%;
        margin-top: 15px;
        justify-content: space-between;
    }
    .header-nav a {
        font-size: 11px;
    }
    .header-btn {
        padding: 10px 15px;
        font-size: 12px;
        margin-left: 0;
    }
}

/* ============ TOPO AVISO ============ */
.top-bar {
    background-color: var(--pink);
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

/* ============ WHATSAPP FIXO ============ */
.whatsapp-fixo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; 
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform var(--transition-smooth);
}

.whatsapp-fixo:hover {
    transform: scale(1.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ============ HEADER FLUTUANTE (Antigo) ============ */
.header-flutuante.header-hide {
    transform: translateY(calc(-100% - 20px));
    opacity: 0;
    pointer-events: none;
}

.header-flutuante.header-show {
    transform: translateY(0);
    opacity: 1;
}

.header-logo {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-blue);
    white-space: nowrap;
    letter-spacing: -0.3px;
    flex-shrink: 0;
}

.header-nav a {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 0 5px;
    transition: color 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.header-nav a:hover {
    color: var(--dark-blue);
}

.btn {
    display: inline-block;
    font-family: var(--font-family);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-pink {
    background-color: var(--pink);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    padding: 20px 20px;
    line-height: 1;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 118, 122, 0.35);
}

.btn-pink-large {
    font-size: 16px;
    padding: 25px 25px;
    border-radius: var(--border-radius-sm);
}

/* ============ SEÇÕES GERAIS ============ */
.section {
    width: 100%;
    padding: 50px 0 80px;
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-inner-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-dark {
    background-color: var(--dark-blue);
    color: var(--text-white);
    padding: 50px 0 50px;
}

.section-dark .section-inner {
    max-width: var(--max-width);
}

.section-light {
    background-color: transparent;
    padding: 50px 0 50px;
}

.section-bottom-border {
    border-bottom: 5px solid var(--pink);
    padding: 30px 0;
}

.section-relative {
    position: relative;
    padding: 50px 0 80px;
}

/* ============ DOBRA 01 - HERO ============ */
.hero-section {
    background-image: url('https://camilakurdian.com.br/wp-content/uploads/2026/04/BG-S01-TEMPLATE-MAC-scaled.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 50px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(240, 236, 232, 0.55);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; 
}

.hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-image-wrapper {
    flex: 1 1 45%;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-title {
    font-family: var(--font-family);
    font-size: 34px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.2;
    text-wrap: pretty;
}

.hero-icon-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-icon-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
}

.hero-icon-item i {
    color: var(--pink);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-description {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    text-wrap: pretty;
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: 629px;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    display: block;
}

/* ============ DOBRA 02 - PROBLEMAS ============ */
/* Ajuste para centralizar e empilhar os títulos da Dobra 02 */
.problemas-header {
    display: flex;
    flex-direction: column; /* Muda de horizontal para vertical */
    align-items: center;    /* Centraliza os itens no eixo horizontal */
    text-align: center;     /* Garante que o texto dentro fique centralizado */
    gap: 0px;              /* Espaço entre as duas frases */
}

.problemas-title {
    width: 100%;            /* Garante que ocupem a largura total */
    flex: none !important;  /* Remove a limitação de 43% que você tinha antes */
    max-width: 900px;       /* Opcional: limita a largura para não ficar longo demais em telas grandes */
}


/* 1. Define o tamanho apenas para o H2 (Título) */
h2.problemas-title {
    font-size: 28px !important;
}

/* 2. Define o tamanho apenas para o P (Parágrafo) */
p.problemas-title {
    font-size: 22px !important; /* Ajuste aqui o tamanho que você quer para a frase */
    line-height: 1.4 !important;
    margin-top: 10px !important;
}



.problemas-desc {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.2;
    flex: 0 0 40%;
    min-width: 280px;
    align-self: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
}

/* ============ CARDS DOBRA 02 - PROBLEMAS ============ */
.card-white {
    background-color: var(--white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--dark-blue);
    
    /* Novos estilos estéticos (Borda e arredondamento) */
    border-top: 4px solid var(--white); 
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ativado ao passar o mouse */
.card-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
}

.card-icon-title i {
    font-size: 30px;
    color: var(--dark-blue);
    flex-shrink: 0;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-blue);
}

.card-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 18px;
}

.card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
}

/* Texto final centralizado da Dobra 2 */
.problemas-texto-final {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-white);
    text-align: center;
    max-width: 900px;
    margin: 40px auto 30px;
    line-height: 1.5;
}

.problemas-texto-final p {
    margin-bottom: 15px;
}

.problemas-texto-final p:last-child {
    margin-bottom: 0;
}

.problemas-btn-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

/* ============ DOBRA 03 - VÍDEO / ETAPAS ============ */
.video-section-title {
    font-family: var(--font-family);
    font-size: 34px;
    font-weight: 600;
    color: var(--dark-blue);
    text-align: center;
    padding-bottom: 20px;
    max-width: 100%; /* ponta a ponta */
    margin: 0 auto;
    line-height: 1.2;
}

.video-container {
    max-width: 70%;
    margin: 0 auto;
    background-color: var(--pink-light);
    border-radius: var(--border-radius-xl);
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder {
    width: 90%;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 70px;
    color: var(--pink);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-placeholder:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.scroll-icon {
    display: flex;
    justify-content: center;
    padding: 10px 0 5px;
}

.scroll-icon svg {
    width: 40px;
    height: 40px;
}

/* Subtítulo ajustado */
.etapas-subtitle {
    font-family: var(--font-family);
    font-size: 18px; /* tamanho menor segundo o design */
    font-weight: 400;
    color: var(--text-gray);
    text-align: center;
    padding-bottom: 30px;
    max-width: 100%; /* ponta a ponta */
    margin: 0 auto;
    line-height: 1.5;
}

/* Modificação para cards alinhados lado a lado (4 colunas) */
/* ============ CARDS DE ETAPAS (COM EFEITO FLUTUANTE) ============ */
.etapas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding-top: 0;
}

.etapa-card {
    background-color: var(--white);
   /* border-top: 4px solid var(--pink); /* Adiciona a linha rosa no topo */
    border-radius: 15px; /* Deixa os cantos arredondados iguais aos depoimentos */
    padding: 30px 25px;
    box-shadow: var(--shadow-md); /* Sombra leve original */
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Prepara a animação */
}

/* Efeito ativado ao passar o mouse por cima do card */
.etapa-card:hover {
    transform: translateY(-5px); /* Faz o card flutuar para cima */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Aumenta a sombra para dar profundidade */
}

.etapa-card .etapa-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF0DE;
}

.etapa-card .etapa-icon svg {
    width: 40px;
    height: 40px;
}

.etapa-card .etapa-title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.etapa-card .etapa-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    height: 1px;
    background: var(--border-light);
}

.etapa-card .etapa-desc {
    font-family: var(--font-family);
    font-size: 16px; /* Ajuste leve para melhor enquadramento nas 4 colunas */
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
}

.etapas-desc-final {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    text-align: center;
    padding-top: 20px;
    line-height: 1.3;
}

.etapas-btn-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

/* ============ DOBRA 04 - RESULTADOS ============ */
.resultados-section {
    background-color: var(--dark-blue);
    padding: 50px 0 80px;
    position: relative;
}

.resultados-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: var(--bg-body);
    clip-path: polygon(0 100%, 0 0, 50% 100%, 100% 0, 100% 100%);
    pointer-events: none;
}

.resultados-title {
    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    max-width: 57%;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.resultado-card {
    background-color: var(--dark-blue);
    border: 1px solid var(--border-white-trans);
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
}

.resultado-card:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.resultado-card .resultado-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resultado-card .resultado-icon svg {
    width: 30px;
    height: 30px;
}

.resultado-card .resultado-text {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    position: relative;
    padding-bottom: 14px;
}

.resultado-card .resultado-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============ DOBRA 05 - DEPOIMENTOS ============ */
.depoimentos-header {
    text-align: center;
    max-width: 63%;
    margin: 0 auto 20px;
}

.depoimentos-label {
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 7.5px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.depoimentos-title {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.1;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.depoimento-card {
    background-color: var(--white);
    border-top: 4px solid var(--pink);
    border-radius: 15px;
    padding: 40px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/* ============ CARROSSEL DE DEPOIMENTOS (prints) ============ */
.carrossel-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1500px;
    margin: 0 auto;
}

.carrossel-container {
    overflow: hidden;
    width: 100%;
}

.carrossel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carrossel-slide {
    flex: 0 0 50%; /* 2 imagens visíveis no desktop */
    max-width: 50%;
    padding: 0 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px; /* altura fixa do "quadro" — ajuste ao seu gosto */
}

.depoimento-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    object-fit: contain;
    margin: 0 auto;
}

.carrossel-seta {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.carrossel-seta svg {
    width: 20px;
    height: 20px;
}

.carrossel-seta:hover {
    background-color: var(--pink);
    color: var(--white);
    transform: scale(1.05);
}

.carrossel-seta:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.carrossel-bolinhas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.carrossel-bolinha {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carrossel-bolinha.ativa {
    background-color: var(--pink);
    transform: scale(1.2);
}

/* Responsivo */
@media (max-width: 900px) {
    .carrossel-slide {
        flex: 0 0 50%; /* 2 imagens no tablet */
        max-width: 50%;
        height: 380px; /* pode reduzir a altura no tablet */
    }
}

@media (max-width: 600px) {
    .carrossel-wrapper {
        gap: 8px;
    }
    .carrossel-slide {
        flex: 0 0 100%; /* 1 imagem no mobile */
        max-width: 100%;
        padding: 0 4px;
        height: 420px; /* ajuste conforme o tamanho dos seus prints */
    }
    .carrossel-seta {
        width: 36px;
        height: 36px;
    }
}

/* ============ DOBRA 06 - SOBRE ============ */
.sobre-section {
    background-color: var(--dark-blue);
    padding: 50px 0 90px;
}

.sobre-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.sobre-content {
    flex: 1 1 50%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-right: 20px;
}

.sobre-name {
    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.2;
    white-space: pre-line;
}

.sobre-text {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.5;
    max-width: 85%;
    text-wrap: pretty;
}

.sobre-text br {
    display: block;
    content: '';
    margin-bottom: 6px;
}

/* Destaque da frase final no Sobre */
.sobre-citacao {
    margin-top: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--pink); /* Linha lateral rosa */
}

.sobre-citacao p {
    font-size: 20px; /* Letra levemente maior */
    font-style: italic;
    font-weight: 500;
    color: var(--text-white); /* Deixa a frase na cor rosa da sua paleta */
    line-height: 1.4;
    margin-bottom: 0;
}

.sobre-image-wrapper {
    flex: 1 1 50%;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-image {
    width: 100%;
    max-width: 550px;
    height: 629px;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    display: block;
}

/* ============ DOBRA 07 - INSTAGRAM ============ */
.instagram-section {
    padding: 0 0 30px;
}

.instagram-banner {
    max-width: 75%;
    margin: -45px auto 0;
    background-color: var(--pink);
    border-radius: var(--border-radius-md);
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 23;
}

.instagram-banner-title {
    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.2;
    max-width: 65%;
    margin: 0 auto;
}

/* ============ RODAPÉ ============ */
/* ============ NOVO RODAPÉ (FOOTER) ============ */
.footer {
    background-color: var(--bg-body); /* Fundo azul escuro para dar peso e elegância */
    color: var(--text-dark);
    padding: 60px 20px 20px; /* Respiro maior no topo */
    font-family: var(--font-family);
}

.footer-inner {
    max-width: 830px; /* Mantém o texto num bloco central e agradável de ler */
    margin: 0 auto 40px;
}

.footer-infos ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Espaço ideal entre as informações */
}

.footer-infos li {
    font-size: 15px;
    color: var(--text-dark); /* Branco levemente transparente para não cansar a vista */
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px; /* Distância entre o ícone e o texto */
}

.footer-infos li i {
    color: var(--pink); /* Ícones na cor rosa de destaque */
    font-size: 18px;
    margin-top: 3px; /* Alinha o ícone perfeitamente com a primeira linha do texto */
    flex-shrink: 0; /* Impede que o ícone seja espremido no celular */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Linha divisória bem sutil */
    padding-top: 20px;
    text-align: center;
}

.footer-text {
    font-size: 13px;
    color: var(--text-dark); /* Direitos autorais mais discretos */
    margin: 0;
}

/* ============ RESPONSIVIDADE ============ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 30px;
    }
    .hero-image {
        height: 500px;
        max-width: 100%;
    }
    .video-section-title {
        font-size: 30px;
    }
    .etapas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .resultados-title {
        font-size: 26px;
        max-width: 75%;
    }
    .problemas-title {
        flex: 0 0 100%;
    }
    .problemas-desc {
        flex: 0 0 100%;
    }
    .problemas-header {
        gap: 20px;
    }
    .sobre-text {
        max-width: 100%;
    }
    .instagram-banner {
        max-width: 90%;
    }
    .instagram-banner-title {
        max-width: 90%;
    }
}

@media (max-width: 767px) {
    .header-flutuante {
        top: 0;
        margin-top: 0 !important;
        border-radius: 0;
        padding: 8px 12px;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 6px;
    }
    .header-flutuante.header-hide {
        transform: translateY(-100%);
    }
    
    .header-nav {
        order: 3;
        width: 100%;
        margin-top: 2px;
    }
    .header-nav a {
        font-size: 11px;
        padding: 4px 6px;
    }
    
    .btn-pink {
        font-size: 12px;
        padding: 14px 16px;
    }
    .btn-pink-large {
        font-size: 14px;
        padding: 20px 20px;
    }

    .hero-section {
        padding: 30px 0 50px;
    }
    .hero-inner {
        flex-direction: column;
        gap: 25px;
    }
    .hero-content {
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .hero-title {
        font-size: 22px;
        text-align: center;
    }
    .hero-icon-list {
        gap: 15px;
    }
    .hero-icon-item {
        font-size: 16px;
        justify-content: flex-start;
        text-align: left;
    }
    .hero-icon-item i {
        font-size: 20px;
    }
    .hero-description {
        font-size: 14px;
        text-align: center;
    }
    .hero-image {
        height: 420px;
        max-width: 100%;
        width: 100%;
        border-radius: var(--border-radius-md);
    }

    .section {
        padding: 30px 0 50px;
    }
    .section-dark {
        padding: 30px 0 30px;
    }
    .section-relative {
        padding: 30px 0 50px;
    }
    .section-inner,
    .section-inner-narrow {
        padding: 0 5vw;
        max-width: 85vw;
    }

    .problemas-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .problemas-title {
        font-size: 24px;
        text-align: center;
        flex: 0 0 100%;
    }
    .problemas-desc {
        font-size: 16px;
        text-align: center;
        flex: 0 0 100%;
    }
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-top: 0;
    }
    .card-white {
        padding: 20px;
    }
    .card-icon-title {
        font-size: 18px;
    }
    .card-list {
        font-size: 16px;
    }
    .problemas-texto-final {
        font-size: 16px;
    }

    .video-section-title {
        font-size: 22px;
        max-width: 100%;
        padding-bottom: 0;
    }
    .etapas-subtitle {
        font-size: 16px;
    }
    .video-container {
        max-width: 100%;
        padding: 15px;
        border-radius: var(--border-radius-md);
    }
    .video-placeholder {
        width: 100%;
        border-radius: var(--border-radius-md);
    }
    .video-placeholder i {
        font-size: 50px;
    }
    .etapas-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .etapa-card {
        padding: 20px;
    }
    .etapa-card .etapa-icon {
        width: 50px;
        height: 50px;
    }
    .etapa-card .etapa-icon svg {
        width: 30px;
        height: 30px;
    }
    .etapa-card .etapa-title {
        font-size: 20px;
    }
    .etapa-card .etapa-desc {
        font-size: 16px;
    }
    .etapas-desc-final {
        font-size: 14px;
    }

    .resultados-section {
        padding: 50px 0 50px;
    }
    .resultados-title {
        font-size: 22px;
        max-width: 100%;
    }
    .resultados-grid {
        grid-template-columns: 1fr;
    }
    .resultado-card {
        padding: 25px 20px;
    }
    .resultado-card .resultado-text {
        font-size: 18px;
    }

    .depoimentos-header {
        max-width: 100%;
    }
    .depoimentos-label {
        font-size: 10px;
        letter-spacing: 5px;
    }
    .depoimentos-title {
        font-size: 24px;
    }
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
    }
    .depoimento-card {
        padding: 25px 20px;
        font-size: 15px;
    }

    .sobre-section {
        padding: 50px 0 50px;
    }
    .sobre-inner {
        flex-direction: column-reverse;
        gap: 25px;
    }
    .sobre-content {
        align-items: center;
        text-align: center;
        padding-right: 0;
    }
    .sobre-name {
        font-size: 22px;
        text-align: center;
    }
    .sobre-text {
        font-size: 16px;
        text-align: center;
        max-width: 100%;
    }
    .sobre-image {
        height: 420px;
        max-width: 100%;
        width: 100%;
        border-radius: var(--border-radius-md);
    }

    .instagram-banner {
        max-width: 90vw;
        margin: -30px auto 0;
        padding: 25px 20px;
        border-radius: var(--border-radius-md);
    }
    .instagram-banner-title {
        font-size: 22px;
        max-width: 100%;
    }

    .footer {
        padding: 20px 10px;
    }
    .footer-infos {
        font-size: 12px;
    }
    .footer-text {
        font-size: 12px;
    }

    .btn-pink-large {
        padding: 20px 20px;
        font-size: 14px;
    }

    html {
        scroll-padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .header-flutuante {
        padding: 6px 8px;
        gap: 4px;
    }
    .header-nav a {
        font-size: 10px;
        padding: 2px 4px;
    }
    .btn-pink {
        font-size: 11px;
        padding: 12px 14px;
    }
    .hero-image,
    .sobre-image {
        height: 320px;
    }
    .card-white {
        padding: 15px;
    }
    .card-icon-title {
        font-size: 16px;
        gap: 8px;
    }
    .card-icon-title i {
        font-size: 24px;
    }
    .card-list {
        font-size: 15px;
    }
    .card-list li {
        margin-bottom: 10px;
    }
   
    .etapa-card {
        padding: 15px;
    }

    .resultado-card {
        padding: 20px 15px;
    }
    .depoimento-card {
        padding: 20px 15px;
        font-size: 14px;
    }

    /* ============ TÍTULO DOS CARDS DE ABORDAGENS ============ */
.card-title-abordagem {
    font-size: 18px;
    font-weight: 700;
    color: var(--pink); /* Usa a cor rosa da sua paleta */
    margin-bottom: 12px;
}




}