/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-primaria: #694793;
    --cor-secundaria: #D0B392;
    --cor-texto: #333333;
    --cor-texto-claro: #666666;
    --cor-fundo: #FFFFFF;
    --cor-fundo-suave: #FAFAFA;
    --cor-borda: #E5E5E5;
    --sombra: 0 4px 20px rgba(105, 71, 147, 0.1);
    --sombra-hover: 0 8px 30px rgba(105, 71, 147, 0.2);
    --transicao: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Hero Section - Novo Design Moderno */
.hero {
    position: relative;
    background: linear-gradient(165deg, #2d1f47 0%, #3a2858 25%, #453066 50%, #3a2858 75%, #2d1f47 100%);
    min-height: 100vh;
    height: auto; /* Allow height to grow with content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent any internal scroll - content extends via page scroll */
    padding-top: 80px;
    padding-bottom: 4rem;
}

/* Formas Geométricas Decorativas */
.hero-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.circle-1 {
    top: 15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(105, 71, 147, 0.4) 0%, rgba(105, 71, 147, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.circle-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(208, 179, 146, 0.3) 0%, rgba(208, 179, 146, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Grid Overlay Sutil */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(208, 179, 146, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(208, 179, 146, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* Formas Flutuantes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.15;
}

.shape-1 {
    top: 20%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    animation: float1 15s ease-in-out infinite;
}

.shape-2 {
    bottom: 25%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(225deg, var(--cor-secundaria), var(--cor-primaria));
    animation: float2 20s ease-in-out infinite;
    animation-delay: -5s;
}

.shape-3 {
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: linear-gradient(315deg, var(--cor-primaria), var(--cor-secundaria));
    animation: float3 12s ease-in-out infinite;
    animation-delay: -8s;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
        border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
        border-radius: 50% 50% 30% 70% / 70% 30% 70% 30%;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    }
    50% {
        transform: translate(-40px, 40px) rotate(180deg) scale(1.1);
        border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
    25% {
        transform: translate(calc(-50% + 50px), calc(-50% - 30px)) rotate(90deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        transform: translate(calc(-50% - 30px), calc(-50% + 50px)) rotate(180deg);
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    75% {
        transform: translate(calc(-50% - 50px), calc(-50% - 30px)) rotate(270deg);
        border-radius: 50% 50% 30% 70% / 30% 70% 70% 30%;
    }
}

/* Partículas Flutuantes */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cor-secundaria);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px rgba(208, 179, 146, 0.5);
    animation: particleFloat 15s infinite ease-in-out;
    will-change: transform, opacity;
}

.particle:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle:nth-child(2) {
    left: 35%;
    animation-delay: 3s;
    animation-duration: 20s;
}

.particle:nth-child(3) {
    left: 55%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(4) {
    left: 75%;
    animation-delay: 9s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    left: 25%;
    animation-delay: 12s;
    animation-duration: 19s;
}

.particle:nth-child(6) {
    left: 65%;
    animation-delay: 2s;
    animation-duration: 21s;
}

.particle:nth-child(7) {
    left: 45%;
    animation-delay: 8s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 85%;
    animation-delay: 5s;
    animation-duration: 23s;
}

@keyframes particleFloat {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    10% {
        opacity: 0.7;
        transform: translateX(20px) scale(1);
    }
    90% {
        opacity: 0.7;
        transform: translateX(-20px) scale(1);
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
}

/* Header Elegante e Interativo */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(208, 179, 146, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    box-shadow: 0 4px 30px rgba(105, 71, 147, 0.15);
    border-bottom: 1px solid rgba(208, 179, 146, 0.25);
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1003;
}

.nav.scrolled .nav-container {
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 1002;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(105, 71, 147, 0.1));
}

.nav.scrolled .logo-img {
    height: 50px;
}

.logo:hover .logo-img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(105, 71, 147, 0.2));
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.logo:hover::after {
    width: 100%;
}

/* Logo Mobile (dentro do menu) */
.nav-mobile-logo {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--cor-primaria);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cor-secundaria), transparent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--cor-secundaria);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--cor-secundaria);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--cor-secundaria);
    font-weight: 600;
}

/* Indicador de seção ativa */
.nav-link.active::before {
    opacity: 1;
}

/* Mobile Menu Toggle - Design Elegante */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
    background: rgba(105, 71, 147, 0.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--cor-primaria);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    position: relative;
}

.mobile-menu-toggle.active span {
    background: #ffffff;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Overlay para menu mobile */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Hero Content - Layout em Duas Colunas */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    transition: transform 0.1s ease-out, opacity 0.3s ease;
    overflow: visible; /* No scroll, allow content to extend naturally */
    height: auto; /* Allow height to grow with content */
    max-height: none; /* No height restriction */
}

/* Coluna de Texto */
.hero-text {
    flex: 1;
    max-width: 650px;
    animation: slideInLeft 1s ease-out;
    transition: transform 0.1s ease-out, opacity 0.3s ease;
    position: relative;
    overflow: visible; /* Allow text to extend beyond if needed */
    padding-left: 5px; /* Add small padding to prevent text clipping */
    height: auto; /* No height restriction */
    max-height: none; /* No max height */
}

/* Detalhe decorativo */
.hero-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, var(--cor-secundaria), transparent);
    box-shadow: 0 0 20px rgba(208, 179, 146, 0.5);
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Coluna de Imagem */
.hero-image {
    flex: 1;
    max-width: 550px;
    animation: slideInRight 1s ease-out;
    position: relative;
    transition: transform 0.1s ease-out, opacity 0.3s ease;
    overflow: visible;
    height: auto;
    max-height: none;
    padding: 20px 0;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


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

.hero-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    animation: float 6s ease-in-out infinite;
}

.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.5px;
    position: relative;
    text-align: left;
    overflow: visible; /* Allow text to extend beyond */
    padding-left: 8px; /* Extra space for italic serif fonts */
}

.hero-headline::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-secundaria), transparent);
    box-shadow: 0 0 20px rgba(208, 179, 146, 0.5);
}

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

.highlight-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 4.5rem;
    display: block;
    margin-bottom: 1rem;
    position: relative;
    background: linear-gradient(135deg, 
        var(--cor-secundaria) 0%, 
        #f0d5b8 25%, 
        var(--cor-secundaria) 50%, 
        #f0d5b8 75%, 
        var(--cor-secundaria) 100%);
    background-size: 300% 300%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    filter: drop-shadow(0 0 40px rgba(208, 179, 146, 0.4));
    line-height: 1.1;
    padding-left: 10px; /* Extra space for italic serif fonts to prevent clipping */
    overflow: visible; /* Allow text to extend beyond */
    /* Ensure gradient is not clipped by parent containers */
    transform: translateZ(0);
    will-change: background-position;
    /* Add space for gradient to render without hard clipping */
    padding-top: 2px;
    padding-bottom: 2px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subheadline {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.9;
    text-align: left;
}

.hero-subheadline strong {
    color: var(--cor-secundaria);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(208, 179, 146, 0.4);
}

.btn-primary {
    display: inline-block;
    padding: 1.3rem 3.8rem;
    background: linear-gradient(135deg, rgba(208, 179, 146, 0.15) 0%, rgba(105, 71, 147, 0.15) 100%);
    border: 2px solid rgba(208, 179, 146, 0.4);
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, rgba(208, 179, 146, 0.8) 100%);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::after {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(208, 179, 146, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--cor-secundaria);
}

/* Seção O Método */
.metodo {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0015 0%, #1a0f2e 50%, #0a0015 100%);
    position: relative;
    overflow: hidden;
}

.metodo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(105, 71, 147, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(208, 179, 146, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.metodo .container {
    position: relative;
    z-index: 1;
}

.metodo .section-title {
    color: #fff;
}

.section-title {
    font-size: 2.8rem;
    color: var(--cor-primaria);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 3px;
}

/* Hero do Método */
.metodo-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
}

.metodo-hero.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.metodo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, rgba(105, 71, 147, 0.2), rgba(208, 179, 146, 0.2));
    border: 2px solid rgba(208, 179, 146, 0.4);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.metodo-badge i {
    font-size: 1.5rem;
    color: var(--cor-secundaria);
}

.metodo-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.metodo-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.metodo-subtitle {
    display: block;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-top: 0.5rem;
}

.metodo-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Caixa de Descrição */
.metodo-description-box {
    max-width: 1000px;
    margin: 0 auto 6rem;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
}

.metodo-description-box.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.description-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(208, 179, 146, 0.3);
}

.description-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.description-content {
    flex: 1;
}

.metodo-highlight {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.metodo-personalized {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 3px solid var(--cor-secundaria);
}

/* Timeline */
.metodo-timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 3rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--cor-primaria) 10%, 
        var(--cor-secundaria) 90%, 
        transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 50%;
    border: 4px solid #0a0015;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(208, 179, 146, 0.6);
}

.timeline-content {
    width: calc(50% - 50px);
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.timeline-left .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-right .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-content:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(208, 179, 146, 0.3);
    box-shadow: 0 15px 40px rgba(105, 71, 147, 0.3);
}

.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.timeline-content:hover .timeline-icon {
    transform: rotateY(360deg);
    box-shadow: 0 10px 30px rgba(208, 179, 146, 0.5);
}

.timeline-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.timeline-content h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.timeline-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Tratamentos */
.tratamentos {
    padding: 8rem 0;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 50%, #f9f6f2 100%);
    position: relative;
    overflow: hidden;
}

.tratamentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(105, 71, 147, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(208, 179, 146, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.tratamentos .section-title {
    color: var(--cor-primaria);
}

.tratamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.tratamento-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(105, 71, 147, 0.1);
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
}

.tratamento-card.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Shapes decorativos atrás dos cards */
.tratamento-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(105, 71, 147, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: -1;
    transition: all 0.6s ease;
}

.tratamento-card:nth-child(even)::after {
    top: auto;
    bottom: -100px;
    left: -100px;
    right: auto;
    background: radial-gradient(circle, rgba(208, 179, 146, 0.15) 0%, transparent 70%);
}

.tratamento-card:hover::after {
    transform: scale(1.5);
    opacity: 0.3;
}

.tratamento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(105, 71, 147, 0.2);
    border-color: rgba(208, 179, 146, 0.5);
    background: rgba(255, 255, 255, 0.75);
}

.tratamento-card.featured {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(105, 71, 147, 0.4);
}

.tratamento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tratamento-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(105, 71, 147, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    position: relative;
}

.tratamento-icon-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.tratamento-card:hover .tratamento-icon-box {
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(208, 179, 146, 0.3);
}

.tratamento-card:hover .tratamento-icon-box::before {
    opacity: 1;
}

.tratamento-icon-box i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
}

.tratamento-card:hover .tratamento-icon-box i {
    -webkit-text-fill-color: #fff;
    filter: none;
}

.tratamento-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: var(--cor-primaria);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 8px;
    border: 1px solid rgba(208, 179, 146, 0.3);
}

.tratamento-badge.destaque {
    background: rgba(105, 71, 147, 0.15);
    border-color: rgba(105, 71, 147, 0.4);
}

.tratamento-title {
    color: var(--cor-primaria);
    font-size: 1.7rem;
    font-weight: 600;
    margin: 0 0 1.2rem 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.tratamento-description {
    color: var(--cor-texto);
    font-size: 1rem;
    line-height: 1.9;
    margin: 0 0 2.5rem 0;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.tratamento-list {
    list-style: none;
    margin: 0 0 2.5rem 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.tratamento-list li {
    padding: 0.85rem 0;
    color: var(--cor-texto);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(208, 179, 146, 0.1);
}

.tratamento-list li:last-child {
    border-bottom: none;
}

.tratamento-list li:hover {
    color: var(--cor-primaria);
    padding-left: 0.5rem;
}

.tratamento-list li i {
    color: var(--cor-secundaria);
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(208, 179, 146, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tratamento-list li:hover i {
    background: rgba(208, 179, 146, 0.2);
    transform: scale(1.1);
}

.tratamento-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, rgba(208, 179, 146, 0.15) 0%, rgba(105, 71, 147, 0.15) 100%);
    border: 2px solid rgba(208, 179, 146, 0.4);
    color: var(--cor-primaria);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(105, 71, 147, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-top: auto;
    width: fit-content;
    align-self: flex-start;
    z-index: 1;
}

.tratamento-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.tratamento-btn:hover::before {
    left: 100%;
}

.tratamento-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, rgba(208, 179, 146, 0.8) 100%);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.tratamento-btn:hover::after {
    width: 400px;
    height: 400px;
}

.tratamento-btn:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(208, 179, 146, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--cor-secundaria);
}

.tratamento-btn i {
    display: none;
}

.tratamento-btn span {
    letter-spacing: 2px;
}

/* Sobre */
.sobre {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--cor-fundo) 0%, var(--cor-fundo-suave) 100%);
    position: relative;
}

.sobre-profissional-section {
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 50%, #f9f6f2 100%);
    color: var(--cor-texto);
}

.sobre-prof-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-prof-foto {
    position: relative;
    isolation: isolate;
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}

.sobre-prof-foto.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.foto-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    isolation: isolate;
}

.foto-frame::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 30% 30%, rgba(208, 179, 146, 0.3), transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(105, 71, 147, 0.3), transparent 70%);
    z-index: 0;
    filter: blur(40px);
    opacity: 0.6;
}

.foto-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    filter: brightness(1.05) contrast(1.1);
}

.foto-glow {
    position: absolute;
    inset: -25%;
    background: radial-gradient(circle at 30% 30%, rgba(208, 179, 146, 0.5), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(105, 71, 147, 0.5), transparent 60%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
    filter: blur(15px);
}

.sobre-prof-texto {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
    transition-delay: 0.2s;
}

.sobre-prof-texto.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.sobre-prof-texto .section-title {
    color: var(--cor-primaria);
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.8rem;
}

.sobre-prof-texto .sobre-badge {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.sobre-prof-texto .sobre-intro {
    color: var(--cor-texto-claro);
    text-align: left;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 3rem;
}

.sobre-prof-text-block {
    position: relative;
    padding-left: 3rem;
    margin-top: 3rem;
}

.sobre-prof-text-block::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(105, 71, 147, 0.3) 10%,
        rgba(105, 71, 147, 0.5) 50%,
        rgba(105, 71, 147, 0.3) 90%,
        transparent 100%);
}

.prof-line {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
}

.prof-line.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.prof-line:last-child {
    margin-bottom: 0;
}

.prof-line::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 20px rgba(105, 71, 147, 0.4);
    transition: all 0.4s ease;
    z-index: 2;
}

.prof-line:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(105, 71, 147, 0.6);
}

.prof-line i {
    color: var(--cor-primaria);
    font-size: 2.2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(105, 71, 147, 0.1), rgba(208, 179, 146, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(105, 71, 147, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.prof-line i::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(105, 71, 147, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.prof-line:hover i {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--cor-primaria);
    box-shadow: 0 0 25px rgba(105, 71, 147, 0.3);
}

.prof-line:hover i::after {
    opacity: 1;
}

.prof-line h4 {
    color: var(--cor-primaria);
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.prof-line h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cor-primaria), transparent);
    transition: width 0.4s ease;
}

.prof-line:hover h4::after {
    width: 100%;
}

.prof-line p {
    color: var(--cor-texto-claro);
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 300;
}

.sobre-clinica-section .section-title {
    text-align: center;
}

.sobre-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}

.sobre-clinica,
.sobre-profissional {
    text-align: center;
}

.sobre-subtitle {
    font-size: 2rem;
    color: var(--cor-primaria);
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 1rem;
}

.sobre-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cor-secundaria);
    border-radius: 2px;
}

.sobre-intro {
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sobre-text {
    font-size: 1rem;
    color: var(--cor-texto-claro);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.sobre-quote {
    background: linear-gradient(135deg, rgba(105, 71, 147, 0.05) 0%, rgba(208, 179, 146, 0.1) 100%);
    padding: 3.5rem;
    border-left: 5px solid var(--cor-secundaria);
    border-radius: 16px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(105, 71, 147, 0.1);
}

.quote-text {
    font-size: 1.2rem;
    color: var(--cor-primaria);
    font-style: italic;
    line-height: 1.8;
    text-align: center;
}

.sobre-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, rgba(105, 71, 147, 0.1), rgba(208, 179, 146, 0.15));
    border: 1px solid rgba(208, 179, 146, 0.4);
    border-radius: 999px;
    color: var(--cor-primaria);
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.sobre-badge i {
    color: var(--cor-secundaria);
}

/* Realce específico para a badge da profissional (não afeta outras) */
.sobre-prof-texto .sobre-badge {
    padding: 0.85rem 1.6rem;
    background: rgba(105, 71, 147, 0.1);
    border: 1px solid rgba(105, 71, 147, 0.2);
    color: var(--cor-primaria);
    box-shadow: 0 10px 28px rgba(105, 71, 147, 0.15);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sobre-prof-texto .sobre-badge i {
    color: var(--cor-primaria);
    background: rgba(105, 71, 147, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sobre-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.sobre-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(208, 179, 146, 0.25);
    border-radius: 18px;
    padding: 1.8rem 1.6rem;
    text-align: left;
    box-shadow: 0 10px 35px rgba(105, 71, 147, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sobre-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(105, 71, 147, 0.15);
}

.panel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(105, 71, 147, 0.15), rgba(208, 179, 146, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.panel-icon i {
    color: var(--cor-primaria);
    font-size: 1.4rem;
}

.sobre-panel h4 {
    color: var(--cor-primaria);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.sobre-panel p {
    color: var(--cor-texto);
    line-height: 1.7;
    font-size: 0.98rem;
}

.sobre-cta {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sobre-quote {
    background: linear-gradient(135deg, rgba(105, 71, 147, 0.05) 0%, rgba(208, 179, 146, 0.12) 100%);
    padding: 2.5rem;
    border-left: 5px solid var(--cor-secundaria);
    border-radius: 16px;
    margin: 0;
    flex: 1 1 320px;
    box-shadow: 0 12px 40px rgba(105, 71, 147, 0.1);
}

.sobre-cta .btn-primary {
    flex: 0 0 auto;
}

/* Diferenciais */
.diferenciais {
    padding: 8rem 0;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 50%, #f9f6f2 100%);
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(105, 71, 147, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(208, 179, 146, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    margin-top: -2rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.diferenciais .section-title {
    color: var(--cor-primaria);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.diferencial-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(105, 71, 147, 0.08);
    border: 1px solid rgba(208, 179, 146, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.diferencial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.diferencial-item:hover::before {
    transform: scaleX(1);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.diferencial-item:hover .card-shine {
    left: 100%;
}

.diferencial-item.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.diferencial-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(105, 71, 147, 0.2);
    border-color: var(--cor-primaria);
    background: #fefefe;
}

.diferencial-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.2;
}

.diferencial-item:hover .icon-bg {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.3;
    box-shadow: 0 0 40px rgba(208, 179, 146, 0.6);
}

.diferencial-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.diferencial-item:hover .diferencial-icon {
    transform: scale(1.15) rotateY(360deg);
    filter: drop-shadow(0 0 20px rgba(208, 179, 146, 0.6));
}

.diferencial-item h3 {
    color: var(--cor-primaria);
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
    letter-spacing: -0.3px;
}

.diferencial-item:hover h3 {
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.diferencial-item p {
    color: var(--cor-texto);
    line-height: 1.8;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.diferencial-item:hover p {
    color: var(--cor-primaria);
}

/* Galeria Nosso Espaço */
.galeria-espaco {
    padding: 8rem 0;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 50%, #f9f6f2 100%);
    position: relative;
    overflow: hidden;
}

.galeria-espaco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(105, 71, 147, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(208, 179, 146, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.galeria-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.galeria-header .section-title {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

.galeria-subtitle {
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    line-height: 1.8;
}

.galeria-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    min-height: 600px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.galeria-tall {
    grid-row: span 2;
    grid-column: 1;
}

.galeria-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(208, 179, 146, 0.2);
    background: #fff;
    box-shadow: 0 8px 30px rgba(105, 71, 147, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeria-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(105, 71, 147, 0.15);
    border-color: var(--cor-secundaria);
}

.galeria-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeria-frame:hover img {
    transform: scale(1.08);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10, 0, 21, 0.3) 0%, 
        rgba(10, 0, 21, 0.6) 60%, 
        rgba(10, 0, 21, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
}

.galeria-frame:hover .galeria-overlay {
    opacity: 1;
}

.galeria-info {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
}

.galeria-frame:hover .galeria-info {
    transform: translateY(0);
}

.galeria-info i {
    font-size: 1.5rem;
    color: var(--cor-secundaria);
    margin-bottom: 0.5rem;
    display: block;
}

.galeria-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
}

.galeria-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.galeria-expand {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.galeria-frame:hover .galeria-expand {
    transform: translateY(0);
}

.galeria-expand:hover {
    background: var(--cor-secundaria);
    border-color: var(--cor-secundaria);
    transform: translateY(0) scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 0, 21, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    display: block;
}

.lightbox-caption {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    color: #fff;
}

.lightbox-caption h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--cor-secundaria);
}

.lightbox-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.lightbox-close,
.lightbox-nav {
    position: fixed;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    z-index: 10000;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-close:hover {
    background: rgba(255, 67, 54, 0.9);
    border-color: rgba(255, 67, 54, 1);
    transform: rotate(90deg);
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-nav:hover {
    background: var(--cor-secundaria);
    border-color: var(--cor-secundaria);
    transform: translateY(-50%) scale(1.1);
}

/* Seção de Contato */
.contato-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 50%, #f9f6f2 100%);
    position: relative;
    overflow: hidden;
}

.contato-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(208, 179, 146, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(105, 71, 147, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contato-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.contato-header .section-title {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

.contato-header .contato-subtitle {
    font-size: 1.2rem;
    color: var(--cor-texto-claro);
    line-height: 1.8;
}

/* Barra de Informações de Contato */
.contato-info-bar {
    display: grid;
    grid-template-columns: 1.4fr auto 1fr auto 1fr;
    align-items: flex-start;
    background: #fff;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(208, 179, 146, 0.2);
    box-shadow: 0 10px 40px rgba(105, 71, 147, 0.08);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    gap: 0 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    min-width: 0;
}

.info-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(208, 179, 146, 0.3);
}

.info-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-text strong {
    display: block;
    font-size: 1rem;
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0;
}

.info-text p {
    font-size: 0.95rem;
    color: var(--cor-texto-claro);
    line-height: 1.6;
    margin: 0;
}

.info-item:first-child .info-text p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-link {
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--cor-secundaria);
}

.info-divider {
    width: 1px;
    height: 70px;
    background: linear-gradient(180deg, transparent, rgba(208, 179, 146, 0.3), transparent);
    align-self: center;
    justify-self: center;
    margin: 0;
}

/* Mapa Full Width */
.contato-mapa-full {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 600px;
}

/* Mapa */
.mapa-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(208, 179, 146, 0.2);
    box-shadow: 0 20px 60px rgba(105, 71, 147, 0.1);
}

.mapa-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.mapa-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mapa-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--cor-primaria);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mapa-link:hover {
    background: var(--cor-secundaria);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(208, 179, 146, 0.4);
}

.mapa-link i {
    font-size: 1.1rem;
}

/* Seção CTA */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(165deg, #2d1f47 0%, #3a2858 25%, #453066 50%, #3a2858 75%, #2d1f47 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(208, 179, 146, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-text-block {
    flex: 1;
}

.cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3.8rem;
    background: linear-gradient(135deg, rgba(208, 179, 146, 0.15) 0%, rgba(105, 71, 147, 0.15) 100%);
    border: 2px solid rgba(208, 179, 146, 0.4);
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, rgba(208, 179, 146, 0.8) 100%);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-cta:hover::after {
    width: 400px;
    height: 400px;
}

.btn-cta:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(208, 179, 146, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--cor-secundaria);
}

.btn-cta i {
    font-size: 1.4rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0015 0%, #1a0830 100%);
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(208, 179, 146, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(208, 179, 146, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Footer About */
.footer-about .footer-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--cor-secundaria);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
    margin-left: 0;
    margin-right: auto;
}

.footer-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(208, 179, 146, 0.1);
    border: 1px solid rgba(208, 179, 146, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    width: fit-content;
}

.footer-badge i {
    color: var(--cor-secundaria);
    font-size: 1.2rem;
}

.footer-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Footer Headings */
.footer-heading {
    font-size: 1.3rem;
    color: var(--cor-secundaria);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--cor-secundaria);
}

/* Footer Lists */
.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-list li {
    transition: transform 0.3s ease;
}

.footer-list li:hover {
    transform: translateX(5px);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    color: var(--cor-secundaria);
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--cor-secundaria);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Footer Info List */
.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-info-list i {
    font-size: 1.2rem;
    color: var(--cor-secundaria);
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-info-list strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.footer-info-list p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-dev {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-dev i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    animation: float-pulse 3s ease-in-out infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
    animation: glow-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

@keyframes float-pulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsividade Mobile-First */

/* Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        gap: 3rem;
        padding: 0 2rem;
        margin-top: 0 !important; /* Remove margin-top to prevent gradient clipping */
    }

    .hero-text {
        max-width: 500px;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .highlight-serif {
        font-size: 3.5rem;
    }

    .hero-subheadline {
        font-size: 1.05rem;
    }

    .hero-image {
        max-width: 450px;
    }

    
    .sobre-prof-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .foto-frame {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .sobre-prof-texto .section-title {
        font-size: 2.3rem;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        min-height: auto;
    }
    
    .galeria-tall {
        grid-row: span 2;
        grid-column: auto;
    }
    
    .contato-info-bar {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 2rem;
    }
    
    .info-item {
        width: 100%;
    }
    
    .info-divider {
        display: none;
    }
    
    .contato-mapa-full {
        height: 500px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Prevent horizontal overflow on mobile */
    .hero {
        overflow-x: hidden !important;
        overflow-y: hidden !important; /* Prevent vertical scroll */
        width: 100%;
        max-width: 100vw;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(45, 31, 71, 0.98) 0%, rgba(58, 40, 88, 0.98) 50%, rgba(45, 31, 71, 0.98) 100%);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0.5rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 40px rgba(0, 0, 0, 0.3);
        z-index: 1005;
        overflow-y: auto;
    }

    .nav-mobile-logo {
        display: block;
        width: 100%;
        margin-bottom: 1.5rem;
        padding-left: 0.5rem;
    }

    .nav-mobile-logo img {
        height: 60px;
        width: auto;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(208, 179, 146, 0.3), transparent);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }

    .nav-menu .nav-link {
        color: rgba(255, 255, 255, 0.95);
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1rem 1.5rem;
        width: 100%;
        display: block;
        border-radius: 12px;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: 0.5px;
    }

    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, var(--cor-secundaria), rgba(208, 179, 146, 0.5));
        border-radius: 0 4px 4px 0;
        transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(208, 179, 146, 0.15);
        color: var(--cor-secundaria);
        transform: translateX(10px);
        padding-left: 2rem;
    }

    .nav-menu .nav-link:hover::before,
    .nav-menu .nav-link.active::before {
        height: 60%;
    }

    .mobile-menu-toggle {
        display: flex !important;
        pointer-events: all !important;
    }
    
    .logo-img {
        height: 45px;
    }

    .nav.scrolled .logo-img {
        height: 42px;
    }

    /* Garantir que o nav container não quebre no mobile */
    .nav-container {
        padding: 1rem 15px;
    }

    .nav.scrolled .nav-container {
        padding: 0.75rem 15px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 3rem;
        min-height: auto;
        height: auto;
        justify-content: flex-start;
    }

    .hero-content {
        flex-direction: column;
        padding: 0 1.5rem;
        padding-top: 0; /* No extra padding top to avoid clipping */
        gap: 3rem;
        text-align: center;
        padding-bottom: 2rem;
        margin-top: 0 !important; /* Remove margin-top to prevent gradient clipping */
        /* Ensure gradient has space without causing scroll */
        position: relative;
    }

    .hero-text {
        max-width: 100%;
        overflow: visible !important; /* Ensure gradient is not clipped */
        padding-left: 0 !important; /* Remove padding that might cause clipping */
        padding-top: 2rem !important; /* Add space from top when layout changes to column */
        padding-right: 0 !important;
        margin-top: 0 !important;
        /* Create space for gradient without causing scroll */
        padding-bottom: 0;
    }

    .hero-text::before {
        display: none; /* Hide decorative line on mobile */
    }

    .hero-headline {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
        margin-bottom: 1.5rem;
        margin-top: 0 !important;
        text-align: center;
        overflow: visible !important; /* Ensure gradient is not clipped */
        padding-left: 0 !important; /* Remove padding that might cause clipping */
        padding-top: 0 !important;
        padding-right: 0 !important;
        /* Ensure gradient has space without causing scroll */
        padding-bottom: 0;
    }

    .hero-headline::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .highlight-serif {
        font-size: 2.8rem;
        overflow: visible !important; /* Ensure gradient is not clipped */
        padding-left: 0 !important; /* Remove padding that might cause clipping */
        padding-right: 0 !important;
        padding-top: 2px !important; /* Add small padding for gradient to render */
        padding-bottom: 2px !important;
        margin-left: 0 !important; /* Remove any margin that might cause clipping */
        margin-top: 0 !important;
        margin-bottom: 0.3rem !important; /* Reduced spacing when layout is column */
        /* Ensure gradient extends beyond container */
        transform: translateZ(0);
        position: relative;
        z-index: 1;
        display: block;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
        overflow-x: hidden !important;
    }

    .hero-content {
        padding: 0 1.5rem; /* Reduce padding to prevent overflow */
        overflow-x: hidden !important; /* Prevent horizontal overflow */
        overflow-y: hidden !important; /* Prevent vertical scroll */
        width: 100%;
        max-width: 100vw;
    }

    .hero-img {
        max-width: 100%;
        width: 100%;
    }


    .hero-grid-overlay {
        opacity: 0.3;
    }

    .circle-1, .circle-2 {
        opacity: 0.5; /* Reduce intensity on mobile */
    }

    .particle {
        width: 3px;
        height: 3px;
        box-shadow: 0 0 8px rgba(208, 179, 146, 0.4);
    }
    
    @keyframes particleFloat {
        0% {
            bottom: -10px;
            opacity: 0;
            transform: translateX(0) scale(0);
        }
        10% {
            opacity: 0.6;
            transform: translateX(15px) scale(1);
        }
        90% {
            opacity: 0.6;
            transform: translateX(-15px) scale(1);
        }
        100% {
            bottom: 110%;
            opacity: 0;
            transform: translateX(0) scale(0);
        }
    }

    .btn-primary {
        padding: 1.1rem 2.5rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .metodo-title {
        font-size: 2rem;
    }
    
    .metodo-subtitle {
        font-size: 1.4rem;
    }
    
    .metodo-lead {
        font-size: 1.1rem;
    }
    
    .metodo-description-box {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    .description-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .description-icon i {
        font-size: 2rem;
    }
    
    .metodo-highlight {
        font-size: 1.1rem;
    }
    
    .metodo-personalized {
        font-size: 1rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 3rem;
    }
    
    .timeline-dot {
        left: 20px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        text-align: left !important;
    }
    
    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        margin-right: 0;
        margin-left: 60px !important;
        text-align: left !important;
    }
    
    .timeline-content h4 {
        font-size: 1.3rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .timeline-icon i {
        font-size: 1.5rem;
    }

    .tratamentos-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .tratamento-card {
        padding: 2.5rem;
    }
    
    .tratamento-header {
        margin-bottom: 1.5rem;
    }
    
    .tratamento-icon-box {
        width: 50px;
        height: 50px;
    }
    
    .tratamento-icon-box i {
        font-size: 1.4rem;
    }
    
    .tratamento-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .tratamento-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .tratamento-list {
        margin-bottom: 2rem;
    }
    
    .tratamento-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .tratamento-btn {
        padding: 1rem 2.5rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }
    
    .tratamento-card {
        padding: 2.5rem;
    }
    
    .tratamento-card::after {
        width: 150px;
        height: 150px;
        top: -75px;
        right: -75px;
    }
    
    .tratamento-card:nth-child(even)::after {
        bottom: -75px;
        left: -75px;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
        gap: 1.2rem;
        min-height: auto;
    }
    
    .galeria-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .galeria-overlay {
        opacity: 1;
        background: linear-gradient(180deg, 
            transparent 0%, 
            transparent 50%, 
            rgba(10, 0, 21, 0.5) 75%, 
            rgba(10, 0, 21, 0.85) 100%);
        align-items: flex-end;
    }
    
    .galeria-info {
        transform: translateY(0);
    }
    
    .galeria-expand {
        transform: translateY(0);
    }
    
    .galeria-info h4 {
        font-size: 1rem;
    }
    
    .galeria-info p {
        font-size: 0.85rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-content {
        max-width: 95vw;
        padding: 0 1rem;
    }
    
    .lightbox-content img {
        max-height: 70vh;
    }
    
    .lightbox-caption {
        padding: 1rem;
    }
    
    .lightbox-caption h4 {
        font-size: 1.1rem;
    }
    
    .lightbox-caption p {
        font-size: 0.9rem;
    }

    .sobre-prof-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .foto-frame {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .sobre-prof-texto {
        text-align: center;
    }
    
    .sobre-prof-texto .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .sobre-prof-texto .sobre-badge {
        margin: 0 auto 1.5rem;
    }
    
    .sobre-prof-texto .sobre-intro {
        text-align: center;
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }
    
    .sobre-prof-text-block {
        padding-left: 0;
        padding-top: 0;
    }
    
    .sobre-prof-text-block::before {
        display: none;
    }
    
    .prof-line {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.2rem;
        margin-bottom: 3rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .prof-line:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .prof-line::before {
        display: none;
    }
    
    .prof-line:hover {
        transform: translateY(-3px);
    }
    
    .prof-line i {
        margin: 0 auto;
        font-size: 2rem;
        width: 70px;
        height: 70px;
    }
    
    .prof-line h4 {
        font-size: 1.2rem;
    }
    
    .prof-line h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .prof-line:hover h4::after {
        width: 80%;
    }
    
    .prof-line p {
        font-size: 1rem;
    }

    .sobre-highlights {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .diferencial-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .diferencial-icon {
        font-size: 2.5rem;
    }
    
    .diferencial-item {
        padding: 2.5rem 2rem;
    }
    
    .diferencial-item h3 {
        font-size: 1.2rem;
    }
    
    .diferencial-item p {
        font-size: 0.95rem;
    }

    .contato-section {
        padding: 5rem 0;
    }
    
    .contato-header .section-title {
        font-size: 2rem;
    }
    
    .contato-header .contato-subtitle {
        font-size: 1rem;
    }
    
    .contato-info-bar {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .info-item {
        width: 100%;
        gap: 1.2rem;
    }
    
    .info-divider {
        display: none;
    }
    
    .info-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.2rem;
    }
    
    .info-text strong {
        font-size: 0.95rem;
    }
    
    .info-text p {
        font-size: 0.9rem;
    }
    
    .contato-mapa-full {
        height: 400px;
    }
    
    .mapa-link {
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 1.1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-col {
        align-items: center;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-about .footer-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .footer-logo {
        height: 80px;
        margin: 0 auto 1rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-badge {
        margin: 0 auto;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-list {
        align-items: center;
    }
    
    .footer-list li {
        width: 100%;
        justify-content: center;
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .footer-info-list {
        align-items: center;
    }
    
    .footer-info-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-info-list i {
        margin-top: 0;
    }
    
    .footer-info-list strong,
    .footer-info-list p {
        text-align: center;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 25px;
        right: 25px;
        font-size: 1.8rem;
    }

    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .sobre-prof-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-prof-texto .section-title {
        text-align: center;
    }
    
    .sobre-prof-texto .sobre-intro {
        text-align: center;
    }
    
    .sobre-prof-text-block {
        text-align: center;
    }
    
    .prof-line {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

/* Telas com altura muito pequena (landscape mobile, etc) */
@media (max-height: 700px) and (max-width: 768px) {
    .hero {
        min-height: auto;
        height: auto;
        padding-top: 90px;
        padding-bottom: 2rem;
        justify-content: flex-start;
    }

    .hero-content {
        gap: 2rem;
        padding-bottom: 1.5rem;
        margin-top: 0 !important; /* Remove margin-top to prevent gradient clipping */
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }

    .hero-text {
        padding-top: 1.5rem !important; /* Add space from top when layout changes to column */
    }

    .hero-image {
        overflow-x: hidden !important;
    }

    .hero-headline {
        margin-bottom: 1rem;
    }

    .hero-subheadline {
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding: 0 1rem;
        overflow-x: hidden;
    }

    .hero-img {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 90px;
        padding-bottom: 2.5rem;
    }

    .hero-content {
        padding: 0 1rem;
        padding-bottom: 1.5rem;
        gap: 2.5rem;
        margin-top: 0 !important; /* Remove margin-top to prevent gradient clipping */
        overflow-x: hidden !important;
        overflow-y: hidden !important; /* Prevent vertical scroll */
        width: 100%;
        max-width: 100vw;
    }

    .hero-image {
        overflow-x: hidden !important;
    }

    .hero-headline {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        margin-top: 0 !important;
        overflow: visible !important; /* Ensure gradient is not clipped */
        padding-left: 0 !important; /* Remove padding that might cause clipping */
        padding-top: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0;
    }

    .highlight-serif {
        font-size: 2.2rem;
        overflow: visible !important; /* Ensure gradient is not clipped */
        padding-left: 0 !important; /* Remove padding that might cause clipping */
        padding-right: 0 !important;
        padding-top: 2px !important; /* Add small padding for gradient to render */
        padding-bottom: 2px !important;
        margin-left: 0 !important; /* Remove any margin that might cause clipping */
        margin-top: 0 !important;
        margin-bottom: 0.3rem !important; /* Reduced spacing when layout is column */
        /* Ensure gradient extends beyond container */
        transform: translateZ(0);
        position: relative;
        z-index: 1;
        display: block;
    }

    .hero-text {
        overflow: visible !important; /* Ensure gradient is not clipped */
        padding-left: 0 !important; /* Remove padding that might cause clipping */
        padding-top: 1.5rem !important; /* Add space from top when layout changes to column */
        padding-right: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0;
    }

    .hero-subheadline {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .sobre-content {
        gap: 3rem;
    }

    .sobre-subtitle {
        font-size: 1.5rem;
    }

    .sobre-intro,
    .sobre-text {
        text-align: center;
    }

    .particle {
        width: 2.5px;
        height: 2.5px;
        box-shadow: 0 0 6px rgba(208, 179, 146, 0.3);
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .metodo,
    .tratamentos,
    .sobre,
    .diferenciais {
        padding: 4rem 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .diferenciais-grid {
        gap: 2rem;
    }
    
    .diferencial-icon-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 1.5rem;
    }
    
    .diferencial-icon {
        font-size: 2.2rem;
    }
    
    .diferencial-item {
        padding: 2.5rem 1.8rem;
    }
}

/* Respeitar preferências de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-content,
    .hero-text,
    .hero-image {
        transform: none !important;
        opacity: 1 !important;
    }
    
    .particles {
        display: none !important;
    }
}

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

.feature-item,
.tratamento-card,
.diferencial-item {
    animation: fadeInUp 0.6s ease-out;
}

.feature-item:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.3s;
}
