/* =================================================================== */
/* RESET E CONFIGURAÇÕES GERAIS */
/* =================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0c0a;
    color: #E0E0E0;
    overflow-x: hidden;
}

:root {
    --primary-dark: #0F1110;
    --secondary-dark: #2E2E2E;
    --teal: #089892;
    --teal-light: rgba(8, 152, 146, 0.15);
    --teal-dark: #067a76;
    --white: #FFFFFF;
    --gray-light: #DDDDDD;
    --gray-medium: #BBBBBB;
    --gray-dark: #3a3a3a;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* =================================================================== */
/* HEADER E MENU MOBILE - SIMPLES E FUNCIONAL */
/* =================================================================== */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 12, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(8, 152, 146, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo-img {
    height: 45px;
    width: auto;
}

/* Menu Desktop */
.desktop-menu {
    display: flex;
}

.desktop-menu ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.desktop-menu a:hover {
    color: #089892;
}

/* Botão Hamburguer */
.hamburger-btn {
    display: none;
    background: rgba(8, 152, 146, 0.2);
    border: none;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Menu Mobile - Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #0a0c0a;
    z-index: 999;
    transition: right 0.3s ease;
    padding: 80px 25px 30px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    right: 0;
}

/* Botão Fechar */
.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(8, 152, 146, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-close i {
    color: white;
    font-size: 1rem;
}

/* Links do Menu Mobile */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    padding: 8px 0;
    transition: 0.3s;
}

.mobile-menu a:hover {
    color: #f9fbfb;
    padding-left: 10px;
}

/* Botão WhatsApp Mobile */
.mobile-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #089892;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 30px;
    text-align: center;
}

/* Redes Sociais */
.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.mobile-social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1rem;
    transition: 0.3s;
}

.mobile-social a:hover {
    background: #089892;
    color: white;
}

/* Responsivo */
@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 993px) {
    .mobile-menu,
    .mobile-overlay,
    .hamburger-btn {
        display: none !important;
    }
}

/* Impedir scroll quando menu aberto */
body.menu-open {
    overflow: hidden;
}

/* =================================================================== */
/* SEÇÃO HERO - COM EFEITO PARALLAX */
/* =================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0c0a 0%, #121412 100%);
}

/* Banner com a imagem do rosto - efeito parallax */
.hero-banner {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('/assets/banner01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

/* Overlay gradiente */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.8) 40%, 
        rgba(0, 0, 0, 0.4) 70%,
        transparent 100%);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 55%;
    will-change: transform, opacity;
}

.hero-badge span {
    background: rgba(8, 152, 146, 0.15);
    color: var(--teal);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0 20px 0;
    color: var(--white);
}

.highlight {
    color: var(--teal);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-text {
    font-size: 1rem;
    color: var(--gray-medium);
    margin-bottom: 32px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    background: var(--teal);
    color: var(--white);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
}

/* =================================================================== */
/* RESPONSIVO HERO */
/* =================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-content {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 60px;
        flex-direction: column;
    }
    
    .hero-banner {
        position: relative;
        width: 100%;
        height: 280px;
        top: 0;
        right: 0;
        background-position: center 20%;
        opacity: 1;
        margin-top: 20px;
        border-radius: 0 0 30px 30px;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 30px;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.3) 0%, 
            rgba(0, 0, 0, 0.85) 100%);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge span {
        font-size: 0.6rem;
    }
    
    .hero-banner {
        height: 220px;
    }
}

/* =================================================================== */
/* SEÇÃO VÍDEO COM EFEITO PARALLAX - VERSÃO MAIS CLARA */
/* =================================================================== */

.video-sticky-section {
    position: relative;
    min-height: 100vh;
    background: transparent;
    z-index: 10;
}

.video-sticky-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #000000;
    z-index: 20;
    transition: all 0.3s ease;
}

.video-sticky-section.is-sticky .video-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
}

.video-parallax-content {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #000000;
}

.video-background-sticky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #000000;
}

.video-element {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    will-change: transform;
    background: #000000;
    /* Aumentar um pouco o brilho do vídeo */
    filter: brightness(1.05);
}

/* Forçar cobertura total sem bordas brancas */
@supports (object-fit: cover) {
    .video-element {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Garantir que não haja espaços vazios */
.video-background-sticky::before,
.video-background-sticky::after {
    display: none;
    content: none;
}

/* OVERLAY MAIS CLARO - REDUZIDO A ESCURIDÃO */
.video-overlay-sticky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Alterado de 0.65 para 0.4 - mais claro */
    z-index: 1;
}

.video-content-sticky {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: transform, opacity;
}

.video-sticky-section.is-sticky .video-content-sticky {
    opacity: 1;
    transform: translateY(0);
}

.video-text-sticky {
    max-width: 700px;
    margin: 0 auto;
}

.video-tag {
    background: var(--teal);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.video-text-sticky h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.video-text-sticky p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray-light);
}

.btn-video {
    background: var(--white);
    color: var(--teal);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-video:hover {
    transform: scale(1.05);
    background: var(--teal-light);
    color: var(--white);
}

/* =================================================================== */
/* CORREÇÃO: VÍDEO SÓ APARECE APÓS O SCROLL NO MOBILE - VERSÃO MAIS CLARA */
/* =================================================================== */

/* Mobile: vídeo inicialmente escondido */
@media (max-width: 768px) {
    .video-sticky-section {
        min-height: auto;
        margin-top: 0;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    /* Quando o usuário rolar, o vídeo aparece com animação suave */
    .video-sticky-section.visible-on-mobile {
        opacity: 1;
        transform: translateY(0);
    }
    
    .video-sticky-container {
        min-height: auto;
        position: relative !important;
        height: auto !important;
        background: #000000;
    }
    
    .video-sticky-section.is-sticky .video-sticky-container {
        position: relative !important;
        height: auto !important;
    }
    
    .video-content-sticky {
        min-height: auto;
        padding: 60px 20px;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .video-parallax-content {
        min-height: auto;
    }
    
    /* Ajuste do overlay para mobile - MAIS CLARO */
    .video-overlay-sticky {
        background: rgba(0, 0, 0, 0.65); /* Alterado de 0.8 para 0.5 */
    }
    
    /* Garantir que o vídeo cubra todo espaço sem bordas */
    .video-element {
        min-height: 100%;
        min-width: 100%;
        object-fit: cover;
        filter: brightness(1.08); /* Um pouco mais de brilho no mobile */
    }
}

/* Desktop permanece normal */
@media (min-width: 769px) {
    .video-sticky-section {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================================================== */
/* CORREÇÃO EXTRA - REMOVER QUALQUER LINHA BRANCA */
/* =================================================================== */

/* Remover margens e paddings que possam causar linhas brancas */
.video-sticky-section,
.video-sticky-container,
.video-parallax-content,
.video-background-sticky {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

/* Corrigir possíveis gaps entre seções */
.video-sticky-section {
    margin-top: -1px;
    margin-bottom: -1px;
}

/* Garantir que o fundo seja preto puro */
.video-sticky-container,
.video-parallax-content,
.video-background-sticky {
    background-color: #000000 !important;
}

/* Remover qualquer borda ou linha do vídeo */
video {
    outline: none !important;
    border: none !important;
}

/* Garantir que o elemento video não tenha bordas */
.video-element {
    border: none;
    outline: none;
}

/* =================================================================== */
/* MELHORIA ADICIONAL - TABLET */
/* =================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-overlay-sticky {
        background: rgba(0, 0, 0, 0.45); /* Mais claro no tablet */
    }
    
    .video-element {
        filter: brightness(1.06);
    }
}

/* =================================================================== */
/* PARA TELAS MUITO GRANDES (4K) */
/* =================================================================== */
@media (min-width: 1920px) {
    .video-overlay-sticky {
        background: rgba(0, 0, 0, 0.35); /* Ainda mais claro em telas grandes */
    }
}

/* =================================================================== */
/* SEÇÃO SOBRE MIM - CARD GLASS COM BACKGROUND DESTAQUE */
/* =================================================================== */

.sobre-horizontal-glass {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/background-papel-de-parede.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding: 100px 20px;
}

/* Overlay mais transparente para o background aparecer mais */
.sobre-horizontal-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Mais claro: 0.35 */
    z-index: 1;
}

/* Card mais transparente para deixar o background aparecer */
.sobre-glass-card {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: rgba(15, 17, 16, 0.6); /* Mais transparente: 0.6 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 30px;
    border: 1px solid rgba(8, 152, 146, 0.4);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease forwards;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* ===== VERSÃO PARA DESKTOP - AINDA MAIS TRANSPARENTE ===== */
@media (min-width: 1200px) {
    .sobre-horizontal-glass::before {
        background: rgba(0, 0, 0, 0.25); /* Overlay bem leve no desktop */
    }
    
    .sobre-glass-card {
        background: rgba(15, 17, 16, 0.5); /* Card bem transparente */
        backdrop-filter: blur(10px);
    }
}

/* ===== VERSÃO PARA TABLET ===== */
@media (max-width: 1199px) and (min-width: 769px) {
    .sobre-horizontal-glass::before {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .sobre-glass-card {
        background: rgba(15, 17, 16, 0.55);
    }
}

/* ===== VERSÃO PARA MOBILE - MAIS TRANSPARENTE ===== */
@media (max-width: 768px) {
    .sobre-horizontal-glass {
        background-attachment: scroll;
        background-position: center;
        padding: 60px 16px;
    }
    
    .sobre-horizontal-glass::before {
        background: rgba(0, 0, 0, 0.2); /* Muito mais claro no mobile */
    }
    
    .sobre-glass-card {
        background: rgba(15, 17, 16, 0.5); /* Card mais transparente */
        backdrop-filter: blur(10px);
    }
}

/* ===== RESPONSIVO - DESKTOP GRANDE ===== */
@media (min-width: 1400px) {
    .sobre-horizontal-glass::before {
        background: rgba(0, 0, 0, 0.2); /* Overlay ainda mais leve */
    }
    
    .sobre-glass-card {
        background: rgba(15, 17, 16, 0.45);
        max-width: 1000px;
    }
}

/* ===== RESPONSIVO - MOBILE PEQUENO ===== */
@media (max-width: 480px) {
    .sobre-horizontal-glass::before {
        background: rgba(0, 0, 0, 0.25); /* Mais claro também no mobile pequeno */
    }
    
    .sobre-glass-card {
        background: rgba(15, 17, 16, 0.55);
    }
}

/* ===== RESPONSIVO - MOBILE MUITO PEQUENO ===== */
@media (max-width: 360px) {
    .sobre-horizontal-glass::before {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .sobre-glass-card {
        background: rgba(15, 17, 16, 0.6);
    }
}

/* ===== RESTO DO CSS PERMANECE IGUAL ===== */

.sobre-glass-content {
    padding: 45px;
    width: 100%;
}

/* Títulos */
.sobre-glass-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.sobre-glass-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #089892;
    margin-bottom: 5px;
}

.credencial {
    font-size: 0.8rem;
    color: #AAAAAA;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(8, 152, 146, 0.3);
    display: inline-block;
}

/* Texto */
.sobre-glass-texto {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.sobre-glass-texto p {
    color: #E0E0E0;
    line-height: 1.7;
    font-size: 0.9rem;
    text-align: justify;
}

.welcome-text {
    color: #089892 !important;
    font-weight: bold;
    font-size: 1.2rem !important;
    margin-top: 10px;
    text-align: center;
    letter-spacing: 1px;
}

/* Estatísticas */
.sobre-glass-stats {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 100px;
    background: rgba(8, 152, 146, 0.15);
    padding: 15px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(8, 152, 146, 0.25);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #089892;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: #AAAAAA;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Especialidades */
.sobre-glass-especialidades {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(8, 152, 146, 0.2);
    border-bottom: 1px solid rgba(8, 152, 146, 0.2);
    flex-wrap: wrap;
}

.sobre-glass-especialidades i {
    color: #089892;
    font-size: 1rem;
}

.sobre-glass-especialidades span {
    color: #CCCCCC;
    font-size: 0.85rem;
    line-height: 1.5;
    flex: 1;
}

/* Botão WhatsApp */
.btn-glass-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #089892;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    margin-top: 20px;
    width: 100%;
    border: none;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.btn-glass-whatsapp:hover {
    background: #067a76;
    transform: translateY(-3px);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 152, 146, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(8, 152, 146, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(8, 152, 146, 0);
    }
}

/* ===== FOTO DE PERFIL ===== */
.sobre-glass-avatar {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
}

.sobre-glass-avatar img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #089892;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    background: #0a0c0a;
}

.sobre-glass-avatar img:hover {
    transform: scale(1.05);
    border-color: #067a76;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVO COMPLETO ===== */

/* Desktop Grande */
@media (min-width: 1400px) {
    .sobre-glass-content {
        padding: 55px;
    }
    
    .sobre-glass-content h2 {
        font-size: 2.5rem;
    }
    
    .sobre-glass-texto p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .sobre-glass-avatar img {
        width: 150px;
        height: 150px;
    }
}

/* Desktop Normal */
@media (max-width: 1200px) {
    .sobre-glass-content {
        padding: 40px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .sobre-horizontal-glass {
        padding: 80px 20px;
    }
    
    .sobre-glass-content {
        padding: 35px;
    }
    
    .sobre-glass-content h2 {
        font-size: 1.8rem;
    }
    
    .sobre-glass-texto p {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .sobre-glass-avatar img {
        width: 110px;
        height: 110px;
    }
}

/* Mobile Grande */
@media (max-width: 768px) {
    .sobre-glass-content {
        padding: 30px 25px;
    }
    
    .sobre-glass-content h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .sobre-glass-content h3 {
        text-align: center;
    }
    
    .credencial {
        display: block;
        text-align: center;
        font-size: 0.7rem;
    }
    
    .sobre-glass-texto p {
        font-size: 0.85rem;
    }
    
    .welcome-text {
        font-size: 1rem !important;
    }
    
    .sobre-glass-stats {
        gap: 15px;
    }
    
    .stat {
        padding: 12px 8px;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .sobre-glass-especialidades span {
        font-size: 0.75rem;
    }
    
    .sobre-glass-avatar {
        bottom: 20px;
        right: 20px;
    }
    
    .sobre-glass-avatar img {
        width: 80px;
        height: 80px;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .sobre-glass-content {
        padding: 20px 16px;
    }
    
    .sobre-glass-content h2 {
        font-size: 1.3rem;
    }
    
    .sobre-glass-texto p {
        font-size: 0.75rem;
    }
    
    .stat {
        min-width: 70px;
        padding: 8px 5px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .sobre-glass-avatar img {
        width: 60px;
        height: 60px;
    }
}

/* =================================================================== */
/* SEÇÃO ANTES E DEPOIS - CARROSSEL MODERNO */
/* =================================================================== */

.antes-depois-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0c0a 0%, #121412 100%);
    overflow: hidden;
}

/* Fundo futurista */
.antes-depois-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, 
            rgba(8, 152, 146, 0.03) 0px, 
            rgba(8, 152, 146, 0.03) 1px, 
            transparent 1px, 
            transparent 60px),
        repeating-linear-gradient(0deg, 
            rgba(8, 152, 146, 0.03) 0px, 
            rgba(8, 152, 146, 0.03) 1px, 
            transparent 1px, 
            transparent 60px);
    pointer-events: none;
}

.antes-depois-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.antes-depois-header .section-tag {
    display: inline-block;
    background: rgba(8, 152, 146, 0.15);
    color: #089892;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.antes-depois-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.antes-depois-header p {
    color: #BBBBBB;
    font-size: 1rem;
}

/* Swiper Container */
.antes-depois-swiper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 60px;
    position: relative;
    z-index: 2;
}

/* Slides */
.antes-slide {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(15, 17, 16, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 152, 146, 0.2);
    transition: all 0.3s ease;
    height: auto;
}

.swiper-slide-active {
    border-color: rgba(8, 152, 146, 0.5);
    box-shadow: 0 0 30px rgba(8, 152, 146, 0.2);
}

.slide-content {
    padding: 20px;
}

/* Imagem de transformação (antes e depois juntos) */
.transform-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.transform-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.transform-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.badge-antes,
.badge-depois {
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.badge-antes {
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

.badge-depois {
    background: rgba(8, 152, 146, 0.9);
    color: white;
}

/* Slide Info */
.slide-info {
    text-align: center;
    padding: 10px 0 5px;
}

.slide-info h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.slide-info p {
    color: #089892;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.result-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.result-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(8, 152, 146, 0.12);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: #CCCCCC;
    font-weight: 500;
}

.result-stats i {
    color: #089892;
    font-size: 0.7rem;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #089892;
    background: rgba(8, 152, 146, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #089892;
    color: #FFFFFF;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    background: #FFFFFF;
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: #089892;
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

.swiper-pagination {
    bottom: 0 !important;
}

/* Footer Button */
.antes-depois-footer {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.btn-transformacao {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #089892;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.btn-transformacao:hover {
    background: #067a76;
    transform: scale(1.02);
    animation: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(8, 152, 146, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(8, 152, 146, 0); }
    100% { box-shadow: 0 0 0 0 rgba(8, 152, 146, 0); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .antes-depois-swiper {
        width: 95%;
    }
    
    .transform-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .antes-depois-section {
        padding: 60px 0;
    }
    
    .antes-depois-header h2 {
        font-size: 1.8rem;
    }
    
    .antes-depois-swiper {
        width: 90%;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .transform-image img {
        height: 220px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    
    .image-overlay {
        top: 10px;
        left: 10px;
        right: 10px;
    }
    
    .badge-antes,
    .badge-depois {
        padding: 4px 12px;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .antes-depois-header h2 {
        font-size: 1.5rem;
    }
    
    .transform-image img {
        height: 180px;
    }
    
    .slide-info h3 {
        font-size: 1rem;
    }
    
    .result-stats {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .badge-antes,
    .badge-depois {
        padding: 3px 10px;
        font-size: 0.6rem;
    }
}

/* =================================================================== */
/* SEÇÃO DE MATERIAIS PDF - ESTILO CARD MODERNO COM PARALLAX */
/* =================================================================== */

.materiais {
    background: linear-gradient(135deg, #0F1110 0%, #1a1c1a 100%);
    padding: 80px 0;
    position: relative;
    z-index: 20;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.materiais.visible {
    opacity: 1;
    transform: translateY(0);
}

.materiais-header {
    text-align: center;
    margin-bottom: 60px;
}

.materiais-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.materiais-header p {
    color: var(--gray-medium);
    font-size: 1rem;
}

/* Grid dos cards */
.materiais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Card estilo glassmorphism com parallax */
.pdf-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(8, 152, 146, 0.15);
    opacity: 0;
    transform: translateY(30px);
}

/* Animação de entrada dos cards */
.materiais.visible .pdf-card {
    opacity: 1;
    transform: translateY(0);
}

/* Delay para cada card (efeito cascata) */
.materiais.visible .pdf-card:nth-child(1) { transition-delay: 0.1s; }
.materiais.visible .pdf-card:nth-child(2) { transition-delay: 0.2s; }
.materiais.visible .pdf-card:nth-child(3) { transition-delay: 0.3s; }
.materiais.visible .pdf-card:nth-child(4) { transition-delay: 0.4s; }

.pdf-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 152, 146, 0.4);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
}

.pdf-card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Ícone do PDF (estilo imagem saindo do card) */
.pdf-icon-wrapper {
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -40px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.pdf-card:hover .pdf-icon-wrapper {
    transform: scale(1.05);
    margin-left: -45px;
}

.pdf-icon-wrapper i {
    font-size: 3rem;
    color: white;
}

/* Conteúdo do card */
.pdf-content {
    flex: 1;
}

.pdf-content h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.pdf-content p {
    color: var(--gray-medium);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Informações do PDF */
.pdf-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.pdf-info span {
    font-size: 0.7rem;
    color: var(--gray-medium);
}

.pdf-info i {
    margin-right: 5px;
    color: var(--teal);
}

/* Botão de download */
.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-pdf:hover {
    background: var(--teal-dark);
    transform: scale(1.02);
}

/* Footer da seção */
.materiais-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.materiais-footer p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.materiais-footer p i {
    color: var(--teal);
    margin-right: 8px;
}

.btn-whatsapp-pdf {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp-pdf:hover {
    transform: scale(1.02);
    background: #128C7E;
}

/* =================================================================== */
/* EFEITO PARALLAX NO FUNDO DA SEÇÃO */
/* =================================================================== */

.materiais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(8, 152, 146, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* =================================================================== */
/* RESPONSIVO (ESTILO DO EXEMPLO) */
/* =================================================================== */

/* Tablet */
@media (max-width: 900px) {
    .materiais {
        padding: 60px 0;
    }
    
    .materiais-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .pdf-card-inner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .pdf-icon-wrapper {
        margin-left: 0;
        margin-top: -50px;
        margin-bottom: 15px;
        width: 80px;
        height: 100px;
    }
    
    .pdf-card:hover .pdf-icon-wrapper {
        margin-left: 0;
        margin-top: -55px;
    }
    
    .pdf-content {
        text-align: center;
    }
    
    .pdf-info {
        justify-content: center;
    }
    
    .btn-pdf {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .materiais {
        padding: 60px 0;
    }
    
    .materiais-header h2 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .materiais-header p {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    .materiais-grid {
        padding: 0 16px;
        gap: 50px;
    }
    
    .pdf-card {
        padding: 16px;
    }
    
    .pdf-icon-wrapper {
        width: 70px;
        height: 90px;
        margin-top: -45px;
    }
    
    .pdf-icon-wrapper i {
        font-size: 2.2rem;
    }
    
    .pdf-content h3 {
        font-size: 1.1rem;
    }
    
    .pdf-content p {
        font-size: 0.8rem;
    }
    
    .pdf-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-pdf {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }
    
    .btn-whatsapp-pdf {
        width: 90%;
        justify-content: center;
    }
}

/* Mobile muito pequeno */
@media (max-width: 440px) {
    .materiais-header h2 {
        font-size: 1.5rem;
    }
    
    .pdf-icon-wrapper {
        width: 60px;
        height: 80px;
        margin-top: -40px;
        border-radius: 16px;
    }
    
    .pdf-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .pdf-card {
        border-radius: 20px;
    }
}

/* =================================================================== */
/* CALCULADORA IMC */
/* =================================================================== */
.imc-calculator {
    background: linear-gradient(135deg, #121412 0%, #1a1c1a 100%);
    padding: 80px 0;
    position: relative;
    z-index: 20;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.imc-calculator.visible {
    opacity: 1;
    transform: translateY(0);
}

.imc-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(8, 152, 146, 0.15);
    color: var(--teal);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.imc-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.imc-header p {
    color: var(--gray-medium);
    font-size: 1rem;
}

.imc-card {
    background: #0F1110;
    border-radius: 30px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(8, 152, 146, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.imc-inputs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.input-group {
    flex: 1;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-light);
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gray-dark);
    border-radius: 16px;
    background: #1a1c1a;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(8, 152, 146, 0.1);
}

.btn-calc {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
    width: 100%;
}

.btn-calc:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.imc-resultado {
    text-align: center;
    border-top: 2px solid var(--gray-dark);
    padding-top: 30px;
    margin-top: 30px;
}

.imc-valor span {
    font-size: 1rem;
    color: var(--gray-medium);
}

.imc-valor strong {
    font-size: 3rem;
    color: var(--teal);
    display: block;
    margin-top: 10px;
}

.imc-classificacao {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0;
    color: var(--white);
}

.imc-mensagem p {
    color: var(--gray-light);
    margin-bottom: 20px;
}

.btn-whatsapp-result {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-whatsapp-result:hover {
    transform: scale(1.02);
    background: #128C7E;
}

/* =================================================================== */
/* RESPONSIVO CALCULADORA */
/* =================================================================== */
@media (max-width: 768px) {
    .imc-calculator {
        padding: 60px 0;
    }
    
    .imc-header h2 {
        font-size: 1.8rem;
    }
    
    .imc-header p {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    
    .imc-card {
        padding: 25px;
        margin: 0 20px;
    }
    
    .imc-inputs {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-calc {
        padding: 12px 24px;
    }
    
    .imc-valor strong {
        font-size: 2.5rem;
    }
}

/* =================================================================== */
/* SERVIÇOS */
/* =================================================================== */
.services {
    padding: 80px 0;
    background: #0F1110;
    position: relative;
    z-index: 20;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.services.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #1a1c1a 0%, #121412 100%);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(8, 152, 146, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 152, 146, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* =================================================================== */
/* RESPONSIVO SERVIÇOS */
/* =================================================================== */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services-header h2 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 25px;
    }
}

/* =================================================================== */
/* DEPOIMENTOS */
/* =================================================================== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #121412 0%, #1a1c1a 100%);
    position: relative;
    z-index: 20;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.testimonials.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #0F1110;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(8, 152, 146, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 152, 146, 0.2);
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--teal);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-user strong {
    color: var(--teal);
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-user span {
    color: var(--gray-medium);
    font-size: 0.8rem;
}

/* =================================================================== */
/* RESPONSIVO DEPOIMENTOS */
/* =================================================================== */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-header h2 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* =================================================================== */
/* DEPOIMENTOS - GOOGLE REVIEWS WIDGET */
/* =================================================================== */

.google-reviews-container {
    margin: 40px 0 30px;
    border-radius: 24px;
    overflow: hidden;
}

/* Ajustar o widget para as cores do site */
.google-reviews-container .elfsight-app-ee63e884-f45a-4059-bbfc-30886b249462 {
    --primary-color: #089892 !important;
    --secondary-color: #067a76 !important;
    --text-color: #FFFFFF !important;
    --background-color: rgba(15, 17, 16, 0.8) !important;
}

/* Botão CTA para deixar avaliação */
.google-review-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #089892, #067a76);
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pulseGoogle 2s infinite;
}

.btn-google-review:hover {
    background: linear-gradient(135deg, #067a76, #055c59);
    transform: scale(1.02);
    animation: none;
}

.btn-google-review i {
    font-size: 1.1rem;
}

@keyframes pulseGoogle {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 152, 146, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(8, 152, 146, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(8, 152, 146, 0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .btn-google-review {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .testimonials-header p {
        font-size: 0.9rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .btn-google-review {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* =================================================================== */
/* SEÇÃO DE FAQ (PERGUNTAS FREQUENTES) - CORRIGIDO */
/* =================================================================== */

.faq {
    background: linear-gradient(135deg, #121412 0%, #1a1c1a 100%);
    padding: 80px 0;
    position: relative;
    z-index: 20;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.faq-header p {
    color: var(--gray-medium);
    font-size: 1rem;
}

/* Grid de FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Item do FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(8, 152, 146, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: rgba(8, 152, 146, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Pergunta */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s;
}

.faq-question i {
    color: var(--teal);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Ícone girando quando aberto */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question h3 {
    color: var(--teal);
}

/* Resposta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: var(--gray-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer da FAQ */
.faq-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-footer p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-faq-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-faq-whatsapp:hover {
    transform: scale(1.02);
    background: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* =================================================================== */
/* RESPONSIVO FAQ */
/* =================================================================== */

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-header p {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-question i {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    .btn-faq-whatsapp {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 90%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
}

/* =================================================================== */
/* ANIMAÇÃO DE ENTRADA PARA TODAS AS SEÇÕES */
/* =================================================================== */

.imc-calculator, .services, .testimonials, .footer {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.imc-calculator.visible, .services.visible, .testimonials.visible, .footer.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================================================================== */
/* FOOTER - ESTILO MODERNO (COM CTA) */
/* =================================================================== */

.footer {
    background: linear-gradient(135deg, #0a0c0a 0%, #0F1110 100%);
    position: relative;
    z-index: 20;
    margin-top: 0;
    border-top: 1px solid rgba(8, 152, 146, 0.2);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 48px 30px;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.3) 100%);
}

/* ===== TOPO COM CTA ===== */
.footer-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 68px;
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(8, 152, 146, 0.15);
}

.footer-top-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-top-text h3 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    opacity: 0.7;
    color: var(--gray-medium);
}

.footer-cta-btn {
    background: var(--teal);
    color: var(--white);
    border: none;
    font-family: inherit;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(8, 152, 146, 0.3);
}

.footer-cta-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 152, 146, 0.4);
}

/* ===== CONTEÚDO INFERIOR ===== */
.footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
}

/* Logo e Redes Sociais */
.footer-logo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
}

/* Navegação do Footer */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
    justify-content: space-between;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 150px;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li h4 {
    color: var(--teal);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
    opacity: 0.8;
}

.footer-nav ul li a {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-nav ul li a:hover {
    color: var(--teal);
    transform: translateX(5px);
}

.footer-nav ul li i {
    width: 20px;
    color: var(--teal);
    font-size: 14px;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    color: var(--gray-medium);
    font-size: 12px;
    opacity: 0.6;
}

/* =================================================================== */
/* RESPONSIVO FOOTER */
/* =================================================================== */

/* Tablet */
@media (min-width: 590px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 0;
        margin-bottom: 80px;
    }
    
    .footer-bottom {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .footer-logo-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: auto;
    }
    
    .footer-nav {
        justify-content: flex-end;
        gap: 60px;
    }
    
    .footer-nav ul {
        text-align: left;
    }
}

/* Desktop */
@media (min-width: 768px) {
    .footer-inner {
        padding: 80px 48px 40px;
    }
    
    .footer-top {
        margin-bottom: 100px;
    }
    
    .footer-top-text h2 {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .footer-top-text h3 {
        font-size: 18px;
    }
    
    .footer-cta-btn {
        padding: 16px 36px;
        font-size: 1.1rem;
    }
    
    .footer-nav {
        gap: 80px;
    }
}

/* Mobile */
@media (max-width: 590px) {
    .footer-inner {
        padding: 40px 24px 30px;
    }
    
    .footer-top {
        margin-bottom: 50px;
    }
    
    .footer-top-text h2 {
        font-size: 22px;
    }
    
    .footer-top-text h3 {
        font-size: 14px;
    }
    
    .footer-cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .footer-logo-content {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav ul {
        text-align: center;
    }
    
    .footer-nav ul li a {
        justify-content: center;
    }
    
    .footer-copyright p {
        font-size: 10px;
    }
}

/* Mobile muito pequeno */
@media (max-width: 440px) {
    .footer-inner {
        padding: 30px 16px 20px;
    }
    
    .footer-top-text h2 {
        font-size: 18px;
    }
    
    .footer-socials {
        gap: 12px;
    }
    
    .footer-socials a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* =================================================================== */
/* SCROLLBAR */
/* =================================================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0F1110;
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--teal-dark);
}


/* =================================================================== */
/* SEÇÃO HISTÓRIA - PARALLAX STORYTELLING COM ONDAS */
/* =================================================================== */

.historia-section {
    background: linear-gradient(135deg, #0a0c0a 0%, #121412 100%);
    padding: 80px 0 100px;
    overflow-x: hidden;
    position: relative;
}

/* Fundo futurista */
.historia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, 
            rgba(8, 152, 146, 0.03) 0px, 
            rgba(8, 152, 146, 0.03) 1px, 
            transparent 1px, 
            transparent 60px),
        repeating-linear-gradient(0deg, 
            rgba(8, 152, 146, 0.03) 0px, 
            rgba(8, 152, 146, 0.03) 1px, 
            transparent 1px, 
            transparent 60px);
    pointer-events: none;
}

/* ===== HEADER DA SEÇÃO ===== */
.historia-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.historia-tag {
    display: inline-block;
    background: rgba(8, 152, 146, 0.15);
    color: #089892;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.historia-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.historia-title .highlight {
    color: #089892;
}

.historia-subtitle {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #BBBBBB;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTAINER DA HISTÓRIA ===== */
.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ===== CARDS ===== */
.story-card {
    position: relative;
    background: rgba(15, 17, 16, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    border: 1px solid rgba(8, 152, 146, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 60px;
}

.story-card:hover {
    border-color: rgba(8, 152, 146, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

/* ===== ONDAS (WAVES) ===== */
.card-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    z-index: 1;
}

.wave-svg {
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: rgba(8, 152, 146, 0.15);
    animation: waveMove 8s ease-in-out infinite;
}

.card-waves-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    z-index: 1;
}

.wave-svg-bottom {
    width: 100%;
    height: 100%;
}

.wave-path-bottom {
    fill: rgba(8, 152, 146, 0.1);
    animation: waveMoveReverse 8s ease-in-out infinite;
}

@keyframes waveMove {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-20px) translateY(5px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes waveMoveReverse {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(20px) translateY(-5px); }
    100% { transform: translateX(0) translateY(0); }
}

/* ===== CONTEÚDO DO CARD ===== */
.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px 40px;
    position: relative;
    z-index: 2;
}

/* Capítulos à esquerda e direita */
.chapter-left .story-content {
    flex-direction: row;
}

.chapter-right .story-content {
    flex-direction: row-reverse;
}

/* Texto */
.story-text {
    flex: 1;
    padding: 20px;
}

.chapter-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(8, 152, 146, 0.2);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    color: #089892;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(8, 152, 146, 0.3);
}

.story-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1rem;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Meta informações */
.story-meta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #089892;
}

.meta-icon i {
    font-size: 0.9rem;
}

/* Imagem */
.story-image {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #0a0c0a;
}

.story-image img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(8, 152, 146, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 3;
}

.story-card:hover .image-glow {
    opacity: 1;
}

.story-card:hover .story-image img {
    transform: scale(1.03);
}

/* ===== BOTÃO CTA ===== */
.historia-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.btn-historia {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #089892;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.btn-historia:hover {
    background: #067a76;
    transform: scale(1.02);
    animation: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(8, 152, 146, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(8, 152, 146, 0); }
    100% { box-shadow: 0 0 0 0 rgba(8, 152, 146, 0); }
}

/* ===== ANIMAÇÃO DE ENTRADA ===== */
.story-chapter {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.story-chapter.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .story-content {
        flex-direction: column !important;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .story-text {
        text-align: center;
        padding: 0;
    }
    
    .story-text h3 {
        font-size: 1.5rem;
    }
    
    .story-text p {
        font-size: 0.9rem;
    }
    
    .story-meta {
        justify-content: center;
    }
    
    .story-image img {
        max-height: 280px;
    }
    
    .chapter-number {
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 768px) {
    .historia-section {
        padding: 60px 0 80px;
    }
    
    .historia-header {
        margin-bottom: 40px;
    }
    
    .story-card {
        margin-bottom: 40px;
    }
    
    .story-content {
        padding: 30px 20px;
    }
    
    .story-text h3 {
        font-size: 1.3rem;
    }
    
    .story-text p {
        font-size: 0.85rem;
    }
    
    .story-image img {
        max-height: 220px;
    }
    
    .story-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .card-waves, .card-waves-bottom {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .story-image img {
        max-height: 180px;
    }
    
    .btn-historia {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 90%;
        justify-content: center;
    }
    
    .chapter-number {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}