/* ========================================
   ESTILOS GLOBAIS - VARIÁVEIS DE CORES
   ======================================== */

:root {
    /* Paleta de Cores */
    --color-primary-light: #ACB4D3;      /* Azul claro principal */
    --color-primary-medium: #7D86A6;     /* Azul médio */
    --color-primary-dark: #4D577A;       /* Azul escuro */
    --color-primary-darker: #14214D;     /* Azul muito escuro */
    --color-dark: #0A1127;               /* Preto azulado */
    --color-light: #E9E9E9;              /* Cinza claro */
    --color-gold: #B8860B;               /* Dourado */
    --color-brown: #716753;              /* Marrom */
    --color-white: #FFFFFF;
    
    /* Fontes */
    --font-cinzel: 'Cinzel', serif;
    --font-montserrat: 'Montserrat', sans-serif;
    
    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Breakpoints */
    --breakpoint-mobile: 480px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;
    --breakpoint-large: 1440px;
}

/* ========================================
   RESET CSS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-montserrat);
    color: var(--color-primary-darker);
    line-height: 1.6;
    background-color: var(--color-light);
}

/* ========================================
   HEADER - ESTILO PRINCIPAL (Wix Style)
   ======================================== */

/* Variáveis do Header (baseadas no Wix) */
.header {
    --header-height: 125px;        /* Altura do cabeçalho */
    --bg-position: 0px;
    --bg-color: var(--color-light); /* 🎨 COR DO FUNDO do header */
    --header-shadow: 0 0 5px rgba(0, 0, 0, 0.7); /* Sombra */
    --borders-position: 6px;       /* Posição das bordas */
    --outer-line-size: 3px;        /* Espessura linha externa */
    --border-color: #9c7103;       /* 🎨 COR DAS LINHAS (bordas) */
    --line-gap: 5px;               /* Espaço entre linhas */
    --inner-line-size: 1px;        /* Espessura linha interna */
    
    position: sticky;
    top: 0;
    width: 100%;
    min-height: var(--header-height);
    z-index: 1000;
}

/* ========== ESTRUTURA DO HEADER COM BORDAS DUPLAS ========== */

/* Background Layer (fundo do header) */
.header__bg {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--bg-position);
    bottom: var(--bg-position);
    background-color: var(--bg-color);
    box-shadow: var(--header-shadow);
    z-index: -2;
}

/* Outer Border (linha externa grossa - 3px) */
.header__outer-border {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--borders-position);
    bottom: var(--borders-position);
    border-top: var(--outer-line-size) solid var(--border-color);
    border-bottom: var(--outer-line-size) solid var(--border-color);
    z-index: -1;
    pointer-events: none;
}

/* Inner Border (linha interna fina - 1px) 
   Posição: borders-position(6px) + outer-line-size(3px) + line-gap(5px) = 14px */
.header__inner-border {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--borders-position) + var(--outer-line-size) + var(--line-gap));
    bottom: calc(var(--borders-position) + var(--outer-line-size) + var(--line-gap));
    border-top: var(--inner-line-size) solid var(--border-color);
    border-bottom: var(--inner-line-size) solid var(--border-color);
    z-index: -1;
    pointer-events: none;
}

/* Container do Header */
.header__inner {
    width: 100%;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    min-height: calc(var(--header-height) - 20px);
}

@media (min-width: 992px) {
    .header__inner {
        padding-top: var(--space-md);
        padding-bottom: var(--space-md);
        padding-left: 40px;
        padding-right: 40px;
        justify-content: center;
    }
}

/* Perfil Mobile (aparece só no mobile) */
.header__mobile-profile {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: var(--space-md);
    bottom: var(--space-sm);
}

@media (min-width: 992px) {
    .header__mobile-profile {
        display: none;
    }
}

/* ========================================
   LOGO / MARCA
   ======================================== */

.header__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    text-align: center;
    order: 0;
}

@media (min-width: 992px) {
    .header__logo {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        text-align: left;
        width: 200px; /* Largura fixa para equilibrar com actions */
    }
}

/* Espaço para imagem da logo */
.header__logo-image {
    max-width: 60px;
    width: auto;
    height: 40px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .header__logo-image {
        max-width: 80px;
        height: 50px;
    }
}

/* Ícone emoji (temporário) */
.header__logo-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .header__logo-icon {
        width: 24px;
        height: 24px;
        font-size: 18px;
    }
}

/* Container do texto da logo */
.header__logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: center;
}

@media (min-width: 992px) {
    .header__logo-text {
        align-items: flex-start;
    }
}

.header__brand {
    font-family: var(--font-cinzel);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary-darker);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

@media (min-width: 992px) {
    .header__brand {
        font-size: 16px;
        letter-spacing: 2px;
    }
}

@media (min-width: 1200px) {
    .header__brand {
        font-size: 18px;
    }
}

.header__brand-subtitle {
    font-family: var(--font-montserrat);
    font-size: 8px;
    color: var(--color-primary-darker);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

@media (min-width: 992px) {
    .header__brand-subtitle {
        font-size: 8px;
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1200px) {
    .header__brand-subtitle {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* ========================================
   NAVEGAÇÃO PRINCIPAL
   ======================================== */

.header__nav {
    display: none;
    flex: 1;
    justify-content: center;
}

@media (min-width: 992px) {
    .header__nav {
        display: flex;
    }
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 8px; /* Reduzido para aproximar itens */
    align-items: center;
    justify-content: center;
}

@media (min-width: 1200px) {
    .header__nav-list {
        gap: 14px;
    }
}

@media (min-width: 1440px) {
    .header__nav-list {
        gap: 20px;
    }
}

.header__nav-link {
    font-family: var(--font-cinzel);
    font-size: 12px; /* Reduzido para caber em telas menores */
    color: #14214D; /* Cor padrão azul escuro */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 750;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .header__nav-link {
        font-size: 12px;
        letter-spacing: 0.8px;
    }
}

/* Hover: texto branco */
.header__nav-link:hover {
    color: #FFFFFF;
}

/* Página ativa: texto dourado */
.header__nav-link--active {
    color: var(--color-gold);
}

/* Menu Mobile Hamburger */
.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
}

.header__mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-primary-darker);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .header__mobile-toggle {
        display: none !important;
    }
    .header__inner {
        justify-content: center !important;
        gap: 2rem !important;
        display: flex !important;
        align-items: center !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    .header__logo {
        margin-right: 0 !important;
        position: relative !important;
        left: auto !important;
        transform: none !important;
        flex-shrink: 0 !important;
    }
    .header__nav {
        margin: 0 auto !important;
        flex: 0 1 auto !important;
        display: flex !important;
        justify-content: center !important;
    }
    .header__actions {
        margin-left: 0 !important;
        position: relative !important;
        right: auto !important;
        transform: none !important;
        flex-shrink: 0 !important;
    }
}

/* ========================================
   AÇÕES DO HEADER (Idioma, Notificações, CTA)
   ======================================== */

.header__actions {
    display: none;
    flex-direction: column; /* Idiomas em cima, ícones embaixo */
    align-items: flex-end; /* Alinhado à direita */
    gap: 4px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .header__actions {
        display: flex;
        width: 200px; /* Mesma largura do logo para centralizar nav */
    }
}

/* Seletor de Idioma */
.header__language {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px 4px;
    border-radius: 20px;
    background-color: #d0d0d0;
    border: 1px solid var(--color-primary-medium);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.header__language-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 8px;
    border-radius: 16px;
    font-family: var(--font-montserrat);
    font-size: 10px;
    color: var(--color-primary-darker);
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.header__language-btn--active {
    opacity: 1;
    background-color: var(--color-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    color: var(--color-primary-darker);
}

.header__language-btn:hover {
    opacity: 1;
}

.header__language-flag {
    font-size: 11px;
    display: inline-flex;
    align-items: center;
}

.header__language-text {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Container dos Ícones */
.header__icons {
    display: flex;
    align-items: center;
    gap: 4px;
    border-left: none; /* Removido - agora está abaixo, não ao lado */
    padding-left: 0;
}

/* Ícones do Header */
.header__icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-primary-darker);
    transition: color 0.3s ease;
    padding: 0px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 28px;
    height: 28px;
}

.header__icon-btn:hover {
    color: var(--color-gold);
}

/* Badge de notificação */
.header__icon-btn--badge {
    position: relative;
}

.header__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--color-gold);
    color: var(--color-primary-darker);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    font-family: var(--font-montserrat);
    border: 2px solid var(--color-primary-light);
}

/* Ícone dropdown */
.header__icon-btn--dropdown {
    font-size: 14px;
    margin-left: 4px;
}

@media (min-width: 1024px) {
    .header__actions {
        gap: 16px;
    }
    
    .header__icons {
        gap: 10px;
        padding-left: 16px;
    }
    
    .header__icon-btn {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }
}

/* ========================================
   SEÇÃO DE VÍDEO HERO
   ======================================== */

.video-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content-responsive {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 20px;
}

.hero-subtitle {
    color: #E9E9E9;
    font-family: var(--font-montserrat);
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    font-weight: 500;
    margin-top: -150px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.hero-title {
    color: #C9A227;
    font-family: var(--font-cinzel);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: clamp(2px, 1vw, 8px);
    margin-top: 5px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.hero-btn {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 25px;
    padding: clamp(10px, 2vw, 15px) clamp(30px, 6vw, 50px);
    font-family: var(--font-montserrat);
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 200px;
}

.hero-btn:hover {
    background: #FFFFFF;
    color: var(--color-primary-darker);
}

@media (min-width: 768px) {
    .video-hero {
        min-height: 600px;
    }
}

@media (min-width: 1024px) {
    .video-hero {
        min-height: 700px;
    }
}

/* Placeholder para vídeo */
.video-hero__container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .video-hero__container {
        min-height: 600px;
    }
}

@media (min-width: 1024px) {
    .video-hero__container {
        min-height: 700px;
    }
}

.video-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Overlay escuro sobre o vídeo */
.video-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 33, 77, 0.5);
    z-index: 1;
}

/* Conteúdo do Hero */
.video-hero__content {
    position: relative;
    z-index: 8;
    text-align: center;
    padding: var(--space-xl) var(--space-xxl);
    max-width: 100%; /* Permite expandir para o título caber */
    margin: 0 auto;
}

.video-hero__subtitle {
    font-family: var(--font-montserrat);
    font-size: 26px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: var(--space-xxl);
    opacity: 0.85;
}

@media (min-width: 768px) {
    .video-hero__subtitle {
        font-size: 18px;
        margin-bottom: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .video-hero__subtitle {
        font-size: 32px;
        margin-bottom: var(--space-xl);
    }
}

.video-hero__title {
    font-family: var(--font-cinzel);
    font-size: 36px;
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    line-height: 1.15;
    word-spacing: 0.2em;
    white-space: nowrap; /* Mantém em uma linha */
}

@media (min-width: 768px) {
    .video-hero__title {
        font-size: 52px;
        margin-bottom: 3rem;
        letter-spacing: 3px;
    }
}

@media (min-width: 1024px) {
    .video-hero__title {
        font-size: 64px;
        margin-bottom: 3.5rem;
        letter-spacing: 4px;
    }
}

@media (min-width: 1440px) {
    .video-hero__title {
        font-size: 80px;
        letter-spacing: 5px;
    }
}

.video-hero__cta {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-primary-darker);
    border: none;
    padding: 12px 36px;
    font-family: var(--font-cinzel);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: var(--space-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-hero__cta:hover {
    background-color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .video-hero__cta {
        padding: 14px 44px;
        font-size: 13px;
        margin-top: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .video-hero__cta {
        padding: 16px 52px;
        font-size: 14px;
        margin-top: 3rem;
    }
}

.video-hero__cta:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: scale(1.05);
}

/* ========================================
   SEÇÃO WELLBEING - IMAGEM FIXA PARALLAX
   ======================================== */

.wellbeing-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 0 40px 0;
    background: #E9E9E9;
}

.wellbeing-header {
    text-align: right;
    margin-bottom: 60px;
    margin-right: 240px;
}

.wellbeing-header h2 {
    color: #14214D;
    font-family: var(--font-montserrat);
    font-size: 1.5rem;
    font-weight: 650;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wellbeing-container {
    max-width: 1400px;
    margin: auto;
    padding: 40px;
    position: relative;
}

.wellbeing-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #14214D 0%, #14214D 25%, #2A3A6B 35%, transparent 48%, #ACB4D3 56%, #D0D5E5 63%, #E4E6ED 68%, #E9E9E9 72%, #E9E9E9 100%);
    z-index: 1;
}

.wellbeing-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    min-height: 600px;
}

.wellbeing-text {
    background: #E9E9E9;
    padding: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wellbeing-text-content {
    color: #14214D;
    font-family: var(--font-montserrat);
    font-size: 1rem;
    line-height: 1.8;
    margin-left: 40px;
    margin-right: 0px;
    text-align: justify;
}

.wellbeing-text-content p {
    margin-bottom: 20px;
}

.wellbeing-text-content .author-name {
    color: #666;
    margin-bottom: 5px;
}

.wellbeing-text-content .author-credentials {
    color: #666;
    font-size: 0.8rem;
}

/* IMAGEM FIXA COM PARALLAX */
.wellbeing-image {
    background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768004482/Imagem_do_WhatsApp_de_2023-03-16_%C3%A0_s_16_edited_yf4ndm.png');
    background-size: 45%;
    background-position: right 150px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #E9E9E9;
    min-height: 800px;
    position: relative;
}

.wellbeing-quote {
    text-align: center;
    margin-top: 30px;
}

.wellbeing-quote h3 {
    font-family: var(--font-montserrat);
    font-size: 1.2rem;
    color: #14214D;
    font-style: italic;
}

.wellbeing-quote p {
    font-family: var(--font-montserrat);
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}

/* SEÇÃO PHOTO PARALLAX - OCULTA NO DESKTOP */
.wellbeing-photo-parallax {
    display: none; /* Oculta por padrão no desktop */
    height: 0;
    overflow: hidden;
}

#video {
    position: relative;
    z-index: 2;  /* Fica acima de qualquer overlay residual */
    background: white;  /* Ou sua cor de fundo */
}

#video .video-wrapper iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}


/* ========================================
   RESPONSIVIDADE MOBILE
   ======================================== */

/* Extra Small devices (menos de 480px) */
@media (max-width: 480px) {
    .header__inner {
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-md);
    }
    
    .header__brand {
        font-size: 16px;
    }
    
    .header__actions {
        gap: var(--space-sm);
    }
    
    .header__cta {
        padding: 6px 16px;
        font-size: 10px;
    }
    
    .video-hero__subtitle {
        font-size: 14px;
    }
    
    .video-hero__title {
        font-size: 28px;
    }
    
    /* Ajustes para seção wellbeing no mobile */
    .wellbeing-container {
        padding: 10px !important;
    }
    
    .wellbeing-text {
        padding: 20px 15px !important; /* Padding mais controlado */
        text-align: center !important; /* Centraliza o texto */
    }
    
    .wellbeing-text-content {
        margin-left: 15px !important; /* Margem esquerda controlada */
        margin-right: 15px !important; /* Margem direita controlada */
        text-align: justify !important; /* Texto justificado mas centralizado no container */
        max-width: calc(100vw - 70px) !important; /* Largura controlada */
    }
    
    .wellbeing-image {
        min-height: 150px !important;
        background-size: contain !important;
    }
    
    /* Ajustes para parcerias no mobile */
    .parcerias-grid {
        gap: 40px !important;
    }
    
    /* Título serviços menor no mobile */
    #servicos h2 {
        font-size: 2rem !important;
        letter-spacing: 3px !important;
    }
    
    /* Ajustes de layout para seção serviços */
    .servicos-overlay {
        top: 50% !important;
        width: 98% !important;
    }
    
    .servicos-grid {
        gap: 15px !important;
        padding: 10px !important;
    }
    
    /* SEÇÃO PHOTO PARALLAX APENAS MOBILE - Foto fixa com scroll sobre ela */
    .wellbeing-photo-parallax {
        height: 70vh !important; /* ALTURA MENOR */
        background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768004482/Imagem_do_WhatsApp_de_2023-03-16_%C3%A0_s_16_edited_yf4ndm.png') !important;
        background-size: cover !important; /* COVER para preencher bem */
        background-position: center 20% !important; /* DESCE IMAGEM 20% */
        background-attachment: scroll !important; /* SCROLL para melhor performance */
        background-repeat: no-repeat !important;
        background-color: #E9E9E9 !important;
        position: relative !important;
        display: block !important;
        margin: 20px 0 !important; /* MARGEM SUPERIOR E INFERIOR */
        padding: 0 !important;
    }
    
    /* SEÇÃO INTEGRATIVO - TEXTO OCUPANDO QUASE TODA LARGURA NO MOBILE */
    .integrativo-text {
        margin-left: 15px !important; /* Margem pequena à esquerda */
        margin-right: 15px !important; /* Margem pequena à direita */
        max-width: calc(100vw - 20px) !important; /* Ocupa quase toda largura menos 30px total */
        padding: 0 10px !important; /* Padding interno pequeno */
        width: auto !important;
    }
}

/* Small devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    /* Wellbeing section - layout empilhado em tablets pequenos */
    .wellbeing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .wellbeing-text {
        padding: 40px !important;
    }
    
    .wellbeing-image {
        min-height: 250px !important;
        order: 1; /* Imagem no topo */
    }
    
    /* Parcerias - manter 1 coluna em tablets pequenos */
    .parcerias-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    
    /* Serviços - 2 colunas em tablets pequenos */
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    
    .servicos-overlay {
        top: 45% !important;
    }
}
        .wellbeing-image {
            min-height: 200px !important;
            height: 200px !important;
            width: 100% !important;
            background-size: cover !important;
            background-position: center center !important;
            background-attachment: scroll !important;
            order: 2 !important;
            border-radius: 16px !important;
            margin: 0 auto 0 auto !important;
            box-shadow: 0 4px 24px 0 rgba(20,33,77,0.10);
            z-index: 1 !important;
            display: block !important;
        }
    .wellbeing-text {
        padding: 50px !important;
    }
    
    .wellbeing-image {
        min-height: 500px !important;
    }
    
    /* Parcerias - 2 colunas em tablets grandes */
    .parcerias-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 80px !important;
        max-width: 600px !important;
    }
    
    /* Serviços - 3 colunas em tablets grandes */
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
    }

/* Large devices - desktops (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    /* Wellbeing section - layout desktop */
    .wellbeing-grid {
        grid-template-columns: 60% 40% !important;
        gap: 0 !important;
        min-height: 600px !important;
    }
    
    .wellbeing-text {
        padding: 70px !important;
    }
    
    .wellbeing-image {
        min-height: 700px !important;
        background-size: 45% !important;
        background-position: right 150px !important;
        background-attachment: fixed !important;
    }
    
    /* Parcerias - 2 colunas desktop */
    .parcerias-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 100px !important;
        max-width: 700px !important;
    }
    
    /* Serviços - 3 colunas desktop */
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px 40px !important;
    }
    
    .servicos-overlay {
        top: 43% !important;
    }
}

/* Extra Large devices (maior que 1440px) */
@media (min-width: 1441px) {
    /* Manter layout desktop mas com mais espaço */
    .wellbeing-container {
        max-width: 1600px !important;
        padding: 60px !important;
    }
    
    .wellbeing-text {
        padding: 90px !important;
    }
    
    .wellbeing-image {
        min-height: 800px !important;
    }
    
    /* Parcerias com mais espaço */
    .parcerias-grid {
        gap: 120px !important;
        max-width: 800px !important;
    }
    
    /* Serviços com mais espaço */
    .servicos-grid {
        gap: 40px 50px !important;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeInDown 0.6s ease-out;
}

.video-hero__content {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* ========================================
   TRANSIÇÃO SOFISTICADA ENTRE SEÇÕES - EFEITO ESFUMAÇADO
   ======================================== */

.section-transition {
    position: relative;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #E9E9E9 0%, #F5F5F5 50%, #FFFFFF 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transition-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

/* Animação das camadas de fumaça */
.cloud-layer {
    animation: smokeFloat 20s ease-in-out infinite;
}

@keyframes smokeFloat {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.6;
    }
}

.transition-ornaments {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
    z-index: 2;
}

.ornament {
    display: flex;
    align-items: center;
    flex: 1;
    animation: ornamentSlide 1.5s ease-out;
}

.ornament-left {
    justify-content: flex-end;
    padding-right: 30px;
}

.ornament-right {
    justify-content: flex-start;
    padding-left: 30px;
}

.ornament-line {
    height: 2px;
    flex: 1;
    background: linear-gradient(to right, transparent, #B8860B, transparent);
    position: relative;
}

.ornament-left .ornament-line {
    background: linear-gradient(to left, #B8860B, transparent);
}

.ornament-right .ornament-line {
    background: linear-gradient(to right, #B8860B, transparent);
}

.ornament-diamond {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.6);
    animation: diamondPulse 2s ease-in-out infinite;
}

.ornament-center {
    padding: 0 20px;
}

.center-icon {
    font-size: 2.5rem;
    color: #B8860B;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.5),
                 0 0 30px rgba(255, 215, 0, 0.3);
    animation: iconGlow 3s ease-in-out infinite;
}

/* Animação de entrada da transição */
@keyframes ornamentSlide {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes diamondPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(184, 134, 11, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.9),
                    0 0 35px rgba(184, 134, 11, 0.6);
    }
}

@keyframes iconGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(184, 134, 11, 0.5),
                     0 0 30px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
                     0 0 40px rgba(184, 134, 11, 0.6),
                     0 0 50px rgba(255, 215, 0, 0.4);
        transform: scale(1.1);
    }
}

/* Efeito de entrada ao scroll */
.reception-section {
    animation: fadeInSection 1.2s ease-out;
}

@keyframes fadeInSection {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax Background */
.parallax-bg {
    transition: transform 0.1s ease-out;
}

/* Responsividade da transição */
@media (max-width: 768px) {
    .section-transition {
        height: 120px;
    }
    
    .transition-ornaments {
        max-width: 90%;
    }
    
    .center-icon {
        font-size: 2rem;
    }
    
    .ornament-diamond {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .section-transition {
        height: 100px;
    }
    
    .ornament-left,
    .ornament-right {
        padding: 0 15px;
    }
    
    .center-icon {
        font-size: 1.5rem;
    }
    
    .ornament-diamond {
        width: 8px;
        height: 8px;
    }
}

/* ========================================
   UTILITÁRIOS
   ======================================== */

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ========================================
   VÍDEOS RESPONSIVOS
   ======================================== */

.video-responsive-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #000;
    overflow: hidden;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-responsive-container {
        max-width: 95%;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
}

@media (max-width: 480px) {
    .video-responsive-container {
        max-width: 100%;
        border-radius: 6px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }
}

/* ========================================
   RESPONSIVIDADE PARA SEÇÕES ESPECÍFICAS
   ======================================== */

/* Programa Royalty - título responsivo */
@media (max-width: 768px) {
    #programa h2 {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        letter-spacing: clamp(2px, 1vw, 6px) !important;
    }
    
    #programa p {
        font-size: clamp(1.2rem, 4vw, 1.8rem) !important;
        margin-bottom: 30px !important;
    }
}

/* Parcerias - título responsivo */
@media (max-width: 768px) {
    #parcerias h2 {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        letter-spacing: clamp(2px, 1vw, 6px) !important;
        margin-bottom: 60px !important;
    }
}

/* Abordagem Integrativa - título responsivo */
@media (max-width: 768px) {
    .integrativo h1 {
        font-size: clamp(1rem, 3vw, 1.2rem) !important;
    }
}

/* Seção de Recursos - responsiva */
@media (max-width: 768px) {
    #recursos h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        letter-spacing: clamp(2px, 1vw, 4px) !important;
        margin-bottom: 15px !important;
    }
    
    #recursos p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem) !important;
        padding: 0 10px !important;
    }
    
    #recursos img {
        width: 85% !important;
    }
    
    #recursos .contact-faq-section {
        padding: 40px 15px !important;
        gap: 30px !important;
    }
}

/* Títulos gerais - ajustes responsivos */
@media (max-width: 480px) {
    h1, h2, h3 {
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Botões responsivos gerais */
@media (max-width: 768px) {
    .hero-btn {
        padding: clamp(8px, 2vw, 15px) clamp(25px, 5vw, 50px) !important;
        font-size: clamp(0.7rem, 2vw, 1rem) !important;
        letter-spacing: 1px !important;
    }
    
    .btn-hover-effect {
        padding: clamp(12px, 3vw, 18px) clamp(40px, 8vw, 60px) !important;
        font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
        letter-spacing: 1px !important;
    }
}

/* Parallax - desabilitar em mobile para melhor performance */
@media (max-width: 768px) {
    .wellbeing-image {
        background-attachment: scroll !important;
    }
}

/* ========================================
   SEÇÃO CONTATO E FAQ
   ======================================== */

/* Container principal */
.contact-faq-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    align-items: start;
}

/* ===== COLUNA ESQUERDA ===== */
.contact-column {
    padding: 20px;
    margin-left: 10px;

}

/* WhatsApp */
.contact-item {
    margin-bottom: 40px;
    margin-left: 30px;
    margin-right: 40px;

}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 35px;
    text-decoration: none;
    color: #25d366;
    font-size: 1.05em;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    gap: 18px;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    gap: 5px;
    flex-shrink: 0;
}

/* Email */
.email-link {
    display: inline-block;
    text-decoration: none;
    color: #2c3e50;
    font-size: 0.95em;
    border-bottom: 2px solid #E9E9E9;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.email-link:hover {
    border-bottom-color: #2c3e50;
    color: #1a2530;
}

/* Canal */
.canal-label {
    display: block;
    color: #666;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
}

/* YouTube placeholder */
.youtube-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .youtube-container {
        justify-content: center;
    }
}

.youtube-placeholder {
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #e9e9e9 0%, #f5f5f5 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.85em;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.youtube-placeholder:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Correspondência */
.correspondence {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #E9E9E9;
}

.correspondence-title {
    font-size: 0.95em;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.address {
    color: #555;
    font-size: 0.9em;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

/* ===== COLUNA DIREITA ===== */
.faq-column {
    background: #E9E9E9;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Header FAQ */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.faq-header h2 {
    font-size: 1.8em;
    color: #2c3e50;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Barra de busca */
.search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-box input {
    width: 100%;
    padding: 11px 15px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9em;
    color: #666;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.search-box input::placeholder {
    color: #999;
}

.search-box input:focus {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1em;
    cursor: pointer;
}

/* Acordeão */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Header do item */
.accordion-header {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background: #fafafa;
}

.accordion-item.active .accordion-header {
    background: #f5f5f5;
    border-bottom-color: #E9E9E9;
}

.accordion-title {
    font-size: 0.95em;
    color: #2c3e50;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Ícone chevron */
.accordion-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: transform 0.3s ease;
    font-size: 1.1em;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #666;
}

/* Conteúdo */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
}

.accordion-text {
    padding: 18px 22px;
    color: #555;
    line-height: 1.65;
    font-size: 0.9em;
    animation: slideDown 0.4s ease;
}

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

/* Responsivo - Contato e FAQ */
@media (max-width: 1024px) {
    .contact-faq-section {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 50px;
    }

    .faq-column {
        padding: 40px 30px;
    }

    .faq-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-faq-section {
        padding: 40px 20px;
        gap: 40px;
    }

    .faq-header h2 {
        font-size: 1.5em;
    }

    .accordion-header {
        padding: 15px 18px;
    }

    .accordion-text {
        padding: 15px 18px;
    }
}

/* ========================================
   MENU MOBILE OVERLAY
   ======================================== */

/* Menu mobile overlay */
.header__mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(233, 233, 233, 0.98);
    padding-top: 140px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    z-index: 99998 !important; /* Abaixo apenas do hamburger */
}

.header__mobile-menu.active {
    display: flex !important;
}

/* Links do menu mobile */
.header__mobile-menu a {
    color: #14214D !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 15px 30px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.header__mobile-menu a:hover {
    background: #14214D !important;
    color: #E9E9E9 !important;
}

/* HEADER MOBILE HAMBURGER - Estilos base para quando visível */
.header__mobile-toggle {
    z-index: 99999;
    pointer-events: auto;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none !important;
    border: none !important;
    padding: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 30px !important;
    height: 30px !important;
    gap: 4px !important;
}

/* Linhas do hamburger */
.header__mobile-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: #14214D !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
}

/* Animação quando ativo */
.header__mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
}

.header__mobile-toggle.active span:nth-child(2) {
    opacity: 0 !important;
}

.header__mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
}

/* ===========================================
   MOBILE (até 768px)
   =========================================== */

@media (max-width: 768px) {
    /* HEADER MOBILE */
    .header {
        --header-height: 130px;
        min-height: 130px;
        height: auto;
    }
    
    .header__inner {
        padding: 15px 15px !important;
        max-width: 100% !important;
        min-height: 120px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    /* HAMBURGER NO LADO ESQUERDO */
    .header__mobile-toggle {
        display: flex !important; /* FORÇA APARECER NO MOBILE */
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 99999 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        background: none !important;
        border: none !important;
        padding: 8px !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 30px !important;
        height: 30px !important;
        gap: 4px !important;
    }
    
    .header__nav {
        display: none !important;
    }
    
    /* LOGO CENTRALIZADA */
    .header__logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
    }
    
    /* ÍCONES DE USUÁRIO NO LADO DIREITO */
    .header__actions {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        position: absolute !important;
        right: 15px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: auto !important;
        margin-left: 0 !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }
    
    .header__language {
        display: none !important;
    }
    
    .header__icons {
        display: flex !important;
        gap: 5px !important;
        margin-bottom: auto !important;
        justify-content: auto !important;
        margin-left: auto !important;
        width: auto !important;
        position: fixed !important; /* POSIÇÃO FIXA PARA GARANTIR */
        right: 5px !important; /* DIREITA ABSOLUTA */
        top: 35px !important; /* POSIÇÃO VERTICAL CONTROLADA */
        z-index: 999999 !important; /* Z-INDEX ALTÍSSIMO */
        background: transparent !important; /* FUNDO TRANSPARENTE */
        align-items: center !important;
    }
    
    /* Esconder ícone mobile-profile pois já temos header__icons */
    .header__mobile-profile {
        display: none !important;
    }

    .header__brand {
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }
    
    .header__brand-subtitle {
        font-size: 7px !important;
    }
    
    /* HERO SECTION */
    .video-hero {
        height: 40vh !important;
        min-height: 280px !important;
        max-height: 320px !important;
    }
    
    .hero-content-responsive {
        top: 45% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
        width: 90% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .hero-subtitle {
        font-size: 1.5rem !important;
        white-space: nowrap !important;
        margin-bottom: 8px !important;
        margin-top: 10px !important;
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 50px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
    
    .hero-btn {
        padding: 12px 30px !important;
        font-size: 0.85rem !important;
        margin-top: 25px !important;
        display: inline-block !important;
        text-align: center !important;
    }
    
    /* WELLBEING SECTION - EFEITO PARALLAX */
    .wellbeing-section {
        padding: 0 !important;
        min-height: auto !important;
        position: relative !important;
    }
    
    .wellbeing-header {
        text-align: center !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        padding: 40px 15px 20px 15px !important;
        background: #E9E9E9 !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .wellbeing-header h2 {
        font-size: 1.1rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .wellbeing-container {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .wellbeing-gradient {
        display: none !important;
    }
    
    .wellbeing-grid {
        display: block !important;
        position: relative !important;
    }
    
    /* TEXTO PRIMEIRO - Cobre a foto enquanto rola */
    .wellbeing-text {
        padding: 30px 20px 50px 20px !important;
        background: #E9E9E9 !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* IMAGEM WELLBEING - SEM INTERFERÊNCIA NO VÍDEO HERO */
    .wellbeing-image {
        display: none !important; /* Remove a imagem que cobria o vídeo inicial */
    }
    
    .wellbeing-text div {
        font-size: 0.95rem !important;
    }
    
    /* Citação */
    .wellbeing-quote {
        padding: 0 15px !important;
    }
    
    .wellbeing-quote h3 {
        font-size: 1rem !important;
    }
    
    .wellbeing-quote p {
        font-size: 0.9rem !important;
    }
    
    /* PROGRAMA ROYALTY */
    #programa {
        padding: 30px 15px 50px 15px !important;
    }
    
    #programa h2 {
        font-size: 1.8rem !important;
        letter-spacing: 3px !important;
        margin-bottom: 5px !important;
    }
    
    #programa > div > p {
        font-size: 1.2rem !important;
        margin-bottom: 25px !important;
    }
    
    .video-responsive-container {
        border-radius: 8px !important;
    }
    
    /* Botão Acessar Programa */
    #programa .btn-hover-effect {
        padding: 14px 35px !important;
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
    }
    
    /* PARCERIAS ROYALTY */
    #parcerias {
        padding: 50px 15px !important;
        min-height: auto !important;
    }
    
    #parcerias > div:last-child > h2 {
        font-size: 1.8rem !important;
        letter-spacing: 3px !important;
        margin-bottom: 40px !important;
    }
    
    #parcerias > div:last-child > div {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    /* Cards das parcerias */
    #parcerias > div:last-child > div > a > div {
        width: 100% !important;
        max-width: 260px !important;
        margin: 0 auto !important;
    }
    
    /* Imagens das mulheres - REDUZIDAS */
    #parcerias > div:last-child > div > a > div > div:first-child {
        height: 280px !important;
    }
    
    /* Plaquinhas - CENTRALIZADAS */
    #parcerias > div:last-child > div > a > div > div:last-child {
        left: 50% !important;
        width: 90% !important;
        max-width: 230px !important;
        bottom: -35px !important;
        padding: 8px 10px !important;
    }
    
    #parcerias > div:last-child > div > a > div > div:last-child p:first-child {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
    
    #parcerias > div:last-child > div > a > div > div:last-child p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }
    
    /* ABORDAGEM INTEGRATIVA */
    .integrativo {
        padding: 50px 15px !important;
        min-height: auto !important;
    }
    
    .integrativo h1 {
        font-size: 1.5rem !important;
    }
    
    .integrativo > div > div > div {
        padding: 0 !important;
        font-size: 0.95rem !important;
    }
    
    .integrativo > div > div > div p {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* SEÇÃO SERVIÇOS */
    #servicos {
        min-height: auto !important;
        position: relative !important;
    }
    
    #servicos > img {
        min-height: 2200px !important;
        object-fit: cover !important;
        object-position: top center !important;
    }
    
    #servicos > div:first-of-type h2 {
        font-size: 1.8rem !important;
        letter-spacing: 3px !important;
        top: 0.5% !important;
        margin-top: 10px !important;
    }
    
    /* Grid de serviços - SOBREPOSTOS À IMAGEM DE FUNDO */
    .servicos-overlay {
        position: absolute !important;
        top: 6% !important;
        left: 40% !important;
        transform: translateX(-50%) !important;
        width: 95% !important;
        padding: 15px 5px !important;
        background: transparent !important;
    }
    
    /* Cards em coluna única - UM DE CADA VEZ */
    .servicos-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .servicos-grid > a {
           justify-self: center !important;
           width: 99vw !important;
           max-width: 99vw !important;
           margin-left: -2vw !important;
    }
    
    .servicos-grid > a > div {
           width: 100% !important;
           max-width: 100vw !important;
    }
    
    /* Cards dos serviços - QUASE TODA A LARGURA DA PÁGINA */
        .servicos-grid > a > div > div > div:first-child {
           height: 38vw !important;
           min-height: 180px !important;
           max-height: 320px !important;
           width: 100% !important;
           margin: 0 auto !important;
           border-radius: 16px !important;
    }
    
    .servicos-grid > a > div > div > div:last-child {
        width: 85% !important;
        height: auto !important;
        padding: 10px 8px !important;
    }
    
    .servicos-grid > a > div > div > div:last-child span {
        font-size: 0.9rem !important;
    }
    
    /* Botão agendar na seção serviços */
    #servicos > div:nth-child(3) > div > a {
        padding: 12px 35px !important;
        font-size: 0.9rem !important;
        margin-bottom: 5% !important;
    }
    
    /* Wave transition */
    .wave-transition {
        height: 100px !important;
        margin-top: 15px !important;
    }
    
    /* RECURSOS PARA MEMBROS */
    #recursos {
        padding: 50px 15px !important;
    }
    
    #recursos > div:first-child {
        max-width: 100% !important;
    }
    
    #recursos h2 {
        font-size: 1.6rem !important;
        letter-spacing: 2px !important;
    }
    
    #recursos > div:first-child > p {
        font-size: 1rem !important;
    }
    
    #recursos > div:first-child > a > img {
        width: 80% !important;
        max-width: 300px !important;
    }
    
    #recursos > div:first-child > div:last-child {
        font-size: 0.9rem !important;
        padding: 0 10px !important;
    }
    
    /* CONTATO E FAQ */
    .contact-faq-section {
        grid-template-columns: 1fr !important;
        padding: 30px 15px !important;
        gap: 30px !important;
    }
    
    .contact-column {
        padding: 10px !important;
        margin-left: 0
    }
    
    .faq-column {
        padding: 25px 15px !important;
    }
    
    .youtube-placeholder {
        margin-left: 0 !important;
    }
    
    /* FOOTER */
    .login-footer {
        padding: 20px 15px !important;
    }
    
    .footer-content p {
        font-size: 0.85rem !important;
    }
    
    .footer-links {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .footer-links span {
        display: none !important;
    }
}

/* ===========================================
   MOBILE PEQUENO (até 480px)
   =========================================== */

@media (max-width: 480px) {
    .header {
        --header-height: 70px;
    }
    
    .header__brand {
        font-size: 12px !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        letter-spacing: 2px !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .wellbeing-image {
        height: 40vh !important;
        min-height: 250px !important;
    }
    
    #parcerias > div:last-child > div > a > div > div:first-child {
        height: 240px !important;
    }
    
    #parcerias > div:last-child > div > a > div > div:last-child {
        width: 95% !important;
        bottom: -30px !important;
    }
    
    .servicos-grid > a > div {
        width: 220px !important;
    }
    
    .servicos-grid > a > div > div > div:first-child {
        height: 140px !important;
    }
}

/* ===========================================
   TABLET (769px - 1024px)
   =========================================== */

@media (min-width: 769px) and (max-width: 1024px) {
    .header__inner {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
    
    .wellbeing-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .wellbeing-text {
        padding: 50px !important;
    }
    
    .wellbeing-image {
        min-height: 500px !important;
        background-attachment: fixed !important;
    }
    
    #parcerias > div:last-child > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 60px !important;
        max-width: 600px !important;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ===========================================
   DESKTOP GRANDE (acima de 1440px)
   =========================================== */

@media (min-width: 1441px) {
    .wellbeing-grid {
        grid-template-columns: 60% 40% !important;
    }
    
    .wellbeing-text {
        padding: 90px !important;
    }
    
    .wellbeing-image {
        min-height: 800px !important;
        background-size: 45% !important;
        background-position: right 150px !important;
        background-attachment: fixed !important;
    }
}

/* ===========================================
   EFEITO PARALLAX - IMAGEM FIXA
   =========================================== */

/* Desktop - imagem fixa com parallax */
@media (min-width: 769px) {
    .wellbeing-image {
        background-attachment: fixed !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: 800px !important;
        background-size: 45% !important;
        background-position: right 150px !important;
        background-repeat: no-repeat !important;
        background-color: #E9E9E9 !important;
    }
    .wellbeing-grid {
        display: grid !important;
        grid-template-columns: 60% 40% !important;
        gap: 0 !important;
        min-height: 600px !important;
    }
    .wellbeing-text {
        padding: 90px !important;
        background: #E9E9E9 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
}

/* Mobile - desabilitar parallax se causar problemas */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari */
    .wellbeing-image {
        background-attachment: scroll !important;
    }
}

/* ============================================
   PARCERIAS SECTION - ESTILOS EXTERNOS
   ============================================ */
.parcerias-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px;
    overflow: hidden;
}

.parcerias-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768013269/Background_parcerias_f77gvy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parcerias-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(70, 87, 143, 0.5);
}

.parcerias-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.parcerias-title {
    color: #E9E9E9;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 80px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.parcerias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    max-width: 700px;
    margin: 0 auto;
}

.parceria-link {
    text-decoration: none;
    display: block;
}

.parceria-card {
    position: relative;
    border: 4px solid #14214D;
    border-radius: 25px;
    overflow: visible;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
    cursor: pointer;
    background: #14214D;
}

.parceria-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.parceria-image {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center top;
    border-radius: 18px;
}

.parceria-image-monique {
    background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768004481/Foto_atualizada_da_Monique_7_edited_edited_edited_z3tszk.jpg');
    background-color: #B0DFD8;
}

.parceria-image-anna {
    background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768004481/generated-image_11_2_n35lka.png');
    background-color: #F5EFE0;
}

.parceria-placa {
    position: absolute;
    bottom: -40px;
    left:  70%;
    transform: translateX(-50%);
    width: 100%;
    background: #E9E9E9;
    padding: 8px 10px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border:   3px solid #14214D;
}

.parceria-nome {
    color: #14214D;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.4;
}

.parceria-cargo,
.parceria-registro {
    color: #14214D;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Parcerias Mobile */
@media (max-width: 768px) {
    .parcerias-section {
        padding: 60px 15px;
        min-height: auto;
    }
    
    .parcerias-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
        margin-bottom: 50px;
    }
    
    .parcerias-grid {
               grid-template-columns: 1fr;
        gap: 80px;
        max-width: 280px;
    }
    
    .parceria-image {
        height: 320px;
    }
    
    .parceria-placa {
        width: 95%;
        bottom: -35px;
    }
    
    .parceria-nome {
        font-size: 0.85rem;
    }
    
    .parceria-cargo,
    .parceria-registro {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .parcerias-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .parcerias-grid {
        max-width: 260px;
        gap: 70px;
    }
    
    .parceria-image {
        height: 280px;
    }
}

/* ============================================
   SERVIÇOS SECTION - ESTILOS EXTERNOS
   ============================================ */
.servicos-section {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #2C2C2C;
}

.servicos-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.servicos-title-container {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    width: 100%;
    text-align: center;
}

.servicos-title {
    color: #E9E9E9;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), -1px -1px 2px rgba(255,255,255,0.3), 1px 1px 3px rgba(0,0,0,0.5);
}

.servicos-overlay {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    width: 95%;
    max-width: 1000px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 20px;
}

.servico-link {
    text-decoration: none;
    display: block;
    justify-self: center;
}

.servico-card {
    position: relative;
    padding: 0;
    transition: all 0.3s ease;
    width: 250px;
    max-width: 90vw;
}

.servico-card:hover {
    transform: translateY(-10px);
}

.servico-card-inner {
    position: relative;
    z-index: 2;
    background: #E9E9E9;
    border: 2px solid #14214D;
    border-radius: 25px;
    overflow: visible;
    padding-bottom: 35px;
}

.servico-image {
    width: 88%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #14214D;
    border-radius: 20px !important;
    box-shadow: 0 8px 12px 8px rgba(0,0,0,0.35);
    margin: 0px auto 0 auto 0;
    display: block;
}

.servico-image-avaliacao {
    background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768095694/Image_by_Scott_Graham_hhxo8o.jpg');
}

.servico-image-grupos {
    background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768091686/Sess%C3%A3o_em_andamento_rirk7h.jpg');
}

.servico-image-blog {
    background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768091837/Image_by_Kenny_Eliason_lhix9x.jpg');
}

.servico-image-consulta {
    background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768091616/_edited_iqaz75.jpg');
}

.servico-image-casais {
    background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768091875/Holding_Hands_edited_yhhfva.jpg');
}

.servico-image-familiar {
    background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768091625/F%C3%A9rias_em_fam%C3%ADlia_if2lji.jpg');
}

.servico-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 35px;
    background: #14214D;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #ACB4D3;
    box-shadow: 0 6px 20px rgb(247, 246, 246);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servico-label span {
    color: #E9E9E9;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 400;
    text-transform: none;
}

.servicos-agendar-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    text-align: center;
    padding-top: 5%;
}

.servicos-agendar-btn {
    background: transparent;
    color: #14214D;
    border: 2px solid #14214D;
    border-radius: 25px;
    padding: 15px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: auto;
    margin-bottom: 15%;
}

.servicos-agendar-btn:hover {
    background: #14214D;
    color: #E9E9E9;
}

/* grid-template-columns e gap devem estar dentro de um seletor válido */
    
/* Servicos Mobile */

@media (max-width: 768px) {
    .servicos-section {
        padding-bottom: 40px;
    }
    
    .servicos-bg-img {
        height: 250px;
        object-fit: cover;
    }
    
    .servicos-title-container {
        top: 15px;
    }
    
    .servicos-title {
        font-size: 1.6rem;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }
    
    .servicos-overlay {
        position: relative;
        top: -80px;
        left: auto;
        transform: none;
        width: 100%;
        padding: 15px;
        background: rgba(44, 44, 44, 0.95);
        margin-bottom: -80px;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 10px;
    }
    
    .servico-card {
        width: 100%;
        max-width: 90vw;
        border-radius: 25px;
        margin: 0 auto;
    }
    
    .servico-label {
        height: 30px;
        width: 90%;
    }
    
    .servico-label span {
        font-size: 0.75rem;
    }
    
    .servicos-agendar-btn {
        padding: 12px 35px;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .servicos-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .servicos-grid {
        display: flex !important; /* FLEX em vez de grid para melhor controle */
        flex-direction: column !important; /* VERTICAL */
        align-items: center !important; /* CENTRALIZADO */
        gap: 30px !important;
        padding: 25px 15px !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .servicos-agendar-container {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 20px 0 !important;
    }
    
    .servico-card {
        max-width: 320px !important; /* LARGURA MAIOR */
        width: 90vw !important; /* RESPONSIVO */
        margin: 0 auto !important;
        padding: 20px !important;
        position: relative !important;
        box-sizing: border-box !important;
        border-radius: 25px;
        display: block !important;
        text-align: center !important; /* TEXTO CENTRALIZADO */
    }
    
    .servico-image {
        width: 150px !important;
        max-width: 150px !important;
        height: 100px !important;
        margin: 0 auto 15px auto !important;
        display: block !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        border-radius: 0 12px 12px 0 !important;
        border: 2px solid #14214D !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Garante que todos os 6 tipos aparecem */
    .servico-image-avaliacao,
    .servico-image-grupos,
    .servico-image-blog,
    .servico-image-consulta,
    .servico-image-casais,
    .servico-image-familiar {
        display: block !important;
    }
    
    .servico-label {
        height: 28px;
    }
    
    .servico-label span {
        font-size: 0.65rem;
    }

    .servicos-agendar-btn {
        display: block !important;
        margin: 20px auto 15px auto !important;
    }
}

/* ============================================
   RECURSOS SECTION - ESTILOS EXTERNOS
   ============================================ */
.recursos-section {
    background: #E9E9E9;
    padding: 80px 20px;
    text-align: center;
}

.recursos-content {
    max-width: 1000px;
    margin: 0 auto;
}

.recursos-title {
    color: #14214D;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.recursos-subtitle {
    color: #4D577A;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

.recursos-link {
    font-weight: 600;
    color: #C9A227;
    text-decoration: underline;
}

.recursos-link:hover {
    color: #a88a20;
}

.recursos-emblema-link {
    display: inline-block;
}

.recursos-emblema {
    width: 70%;
    height: auto;
    transition: transform 0.3s ease;
}

.recursos-emblema:hover {
    transform: scale(1.1);
}

.recursos-lista {
    color: #4D577A;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    justify-content: center;
    text-align: left;
    margin-top: 30px;
}

/* Recursos Mobile */
@media (max-width: 768px) {
    .recursos-section {
        padding: 50px 15px;
    }
    
    .recursos-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .recursos-subtitle {
        font-size: 1rem;
    }
    
    .recursos-emblema {
        width: 85%;
    }
    
    .recursos-lista {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .recursos-title {
        font-size: 1.5rem;
    }
    
    .recursos-lista {
        font-size: 0.85rem;
    }
}

/* YouTube placeholder */
.youtube-placeholder {
    margin-left: 10px;
}

.youtube-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .youtube-placeholder {
        margin-left: 0;
        text-align: center;
    }
}

/* ============================================
   HEADER INLINE STYLES FIX - Convertidos para CSS
   ============================================ */
.header__nav {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.header__actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-left: 0;
    padding: 8px 2px;
}

.header__language {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
}

.header__language-btn {
    padding: 2px 4px;
}

.header__language-flag img {
    width: 16px;
    height: 10px;
    vertical-align: middle;
    margin-right: 0;
}

.header__icons {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: -16px;
}

.header__user-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#userIconBtn {
    margin-right: 0;
}

#dropdownToggleBtn {
    margin-left: 0;
}

.header__dropdown-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 38px;
    min-width: 140px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 1000;
}

.header__dropdown-menu.active {
    display: block;
}

.header__dropdown-item {
    display: block;
    padding: 10px 18px;
    color: #14214D;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: background 0.2s;
}

.header__dropdown-item:hover {
    background: #f0f0f0;
}

/* ============================================
   PROGRAMA SECTION
   ============================================ */
.programa-section {
    width: 100%;
    padding: 40px 20px 80px 20px;
    background: #E9E9E9;
    text-align: center;
}

.programa-content {
    max-width: 1200px;
    margin: 0 auto;
}

.programa-title {
    color: #C9A227;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.programa-subtitle {
    color: #14214D;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.programa-btn-container {
    text-align: center;
    margin-top: 50px;
}

.programa-btn {
    display: inline-block;
    background: linear-gradient(135deg, #C9A227 0%, #B8860B 100%);
    color: #14214D;
    padding: 18px 60px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(201,162,39,0.4);
    transition: all 0.3s ease;
    border: 2px solid #C9A227;
    cursor: pointer;
}

.programa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201,162,39,0.5);
}

/* ============================================
   INTEGRATIVO SECTION
   ============================================ */
.integrativo-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    padding: 80px 20px;
    overflow: hidden;
}

.integrativo-title-container {
    text-align: center;
    color: #C9A227;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 200;
}

.integrativo-content {
    margin-top: 30px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.integrativo-text {
    color: #14214D;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.8;
    font-weight: 400;
    text-align: justify;
    max-width: 1200px;
    margin-left: 250px;
    margin-right: 250px;
}

.integrativo-text p {
    margin-bottom: 20px;
}

/* Wave Transition */
.wave-transition {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 10;
}

@media (max-width: 768px) {
    .wave-transition {
        height: 150px;
    }
}

.wave-transition svg,
.wave-svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Flag Icon */
.flag-icon {
    width: 16px;
    height: 10px;
    vertical-align: middle;
    margin-right: 0;
}

/* Mobile Programa */
@media (max-width: 768px) {
    .programa-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .programa-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .programa-btn {
        padding: 14px 40px;
        font-size: 0.95rem;
    }
    
    .integrativo-section {
        padding: 50px 15px;
        min-height: auto;
    }
    
    .integrativo-title-container {
        font-size: 1rem;
    }
}

/* PARCERIAS - FOTOS MAIORES NO MOBILE */
@media (max-width: 768px) {
  .parcerias-grid > div,
  .parceria-card {
    width: 98vw !important;
    max-width: 98vw !important;
    margin: 0 auto 18px auto !important;
    border-radius: 18px !important;
    box-shadow: 0 4px 24px 0 rgba(20,33,77,0.10);
  }
  .parceria-card img {
    width: 100% !important;
    height: auto !important;
    max-height: 340px !important;
    object-fit: cover !important;
    border-radius: 18px !important;
  }
}

/* SERVIÇOS - FOTOS MAIORES E MENOR DISTÂNCIA DO TÍTULO */
@media (max-width: 768px) {
  #servicos h2 {
    margin-bottom: 12px !important;
  }
  .servicos-grid > a {
    width: 98vw !important;
    max-width: 98vw !important;
    margin: 0 auto 18px auto !important;
  }
  .servicos-grid > a > div {
    width: 98vw !important;
    max-width: 98vw !important;
    margin: 0 auto !important;
  }
  .servicos-grid > a > div > div > div:first-child {
    width: 100% !important;
    min-width: 95vw !important;
    max-width: 99vw !important;
    height: 44vw !important;
    min-height: 180px !important;
    max-height: 320px !important;
    margin: 0 auto !important;
    border-radius: 16px !important;
    object-fit: cover !important;
  }
}

/* ============================================
   HEADER DESKTOP - CENTRALIZAÇÃO FINAL
   ============================================ */
@media (min-width: 769px) {
    .header__mobile-toggle {
        display: none !important;
    }
    
    .header__mobile-profile {
        display: none !important;
    }
    
    .header__inner {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2rem !important;
        padding: 1rem 40px !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .header__logo {
        position: static !important;
        transform: none !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        width: auto !important;
    }
    
    .header__nav {
        display: flex !important;
        flex: 0 1 auto !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 20px !important;
    }
    
    .header__actions {
        display: flex !important;
        position: static !important;
        transform: none !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 8px !important;
        width: auto !important;
    }
}
/* =====================================================================
   CORREÇÕES FINAIS MOBILE - SOBRESCREVE TUDO ANTERIOR
   ===================================================================== */

@media (max-width: 768px) {
    
    /* ========== MENU HAMBURGER FUNCIONANDO ========== */
    .header__mobile-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 999999 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        background: transparent !important;
        border: none !important;
        width: 35px !important;
        height: 35px !important;
        padding: 5px !important;
        gap: 5px !important;
    }
    
    .header__mobile-toggle span {
        display: block !important;
        width: 28px !important;
        height: 3px !important;
        background-color: #14214D !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
    }
    
    .header__mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }
    
    .header__mobile-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .header__mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }
    
    .header__mobile-menu {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(233, 233, 233, 0.98) !important;
        padding-top: 150px !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 25px !important;
        z-index: 99998 !important;
    }
    
    .header__mobile-menu.active {
        display: flex !important;
    }
    
    .header__mobile-menu a {
        color: #14214D !important;
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        padding: 12px 40px !important;
        border-radius: 25px !important;
        transition: all 0.3s ease !important;
    }
    
    .header__mobile-menu a:hover {
        background: #14214D !important;
        color: #E9E9E9 !important;
    }
    
    /* ========== PRIMEIRA IMAGEM - MENOR E MAIS BAIXA ========== */
    .wellbeing-photo-parallax {
        display: block !important;
        height: 50vh !important;
        width: 100% !important;
        background-image: url('https://res.cloudinary.com/dnax4y3kg/image/upload/v1768004482/Imagem_do_WhatsApp_de_2023-03-16_%C3%A0_s_16_edited_yf4ndm.png') !important;
        background-size: 70% auto !important;
        background-position: center 40% !important;
        background-attachment: fixed !important;
        background-repeat: no-repeat !important;
        background-color: #E9E9E9 !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 1 !important;
    }
    
    /* ========== SEÇÃO SERVIÇOS - FORÇAR CENTRALIZAÇÃO ========== */
    .servicos-section {
        overflow: hidden !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
    
    .servicos-overlay {
        width: 100% !important;
        max-width: 100vw !important;
        padding: 20px 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .servicos-grid {
        display: block !important;
        width: 100% !important;
        max-width: 100vw !important;
        padding: 10px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        text-align: center !important;
    }
    
    .servico-link {
        display: block !important;
        width: 80vw !important;
        max-width: 280px !important;
        margin: 0 auto 30px auto !important;
        text-align: center !important;
    }
    
    .servico-card {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 10px !important;
        box-sizing: border-box !important;
        border-radius: 25px;
    }
    
    .servico-card-inner {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 25px !important; 
        overflow: hidden !important;
    }
    
    .servico-image,
    .servico-image-avaliacao,
    .servico-image-grupos,
    .servico-image-blog,
    .servico-image-consulta,
    .servico-image-casais,
    .servico-image-familiar {
        display: block !important;
        width: 150px !important;
        max-width: 150px !important;
        min-width: 150px !important;
        height: 100px !important;
        margin: 0 auto 15px auto !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        border-radius: 0 12px 12px 0 !important;
        border: 2px solid #14214D !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        visibility: visible !important;
        float: none !important;
        position: static !important;
    }
    
    .servico-label {
        width: 80% !important;
        max-width: 200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}
