/* ============================================================
   PSICÓLOGA CAMILA ROCHA — Premium CSS Design System
   Aurora Backgrounds • Liquid Glass • Scroll Animations
   ============================================================ */

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
    /* Core Palette */
    --white: #FFFFFE;
    --white-soft: #FDFCFA;
    --bg-cream: #FAF8F5;
    --bg-warm: #F5F0EB;

    /* Sage Green */
    --sage-50: #F0F5F0;
    --sage-100: #E1EBE1;
    --sage-200: #C3D7C3;
    --sage-300: #9DBF9D;
    --sage-400: #7BA87B;
    --sage-500: #5A8A5A;
    --sage-600: #4A7A4A;
    --sage-700: #3D633D;

    /* Nude Rose */
    --rose-50: #FDF5F3;
    --rose-100: #FAE8E3;
    --rose-200: #F5D0C7;
    --rose-300: #EDAFA1;
    --rose-400: #E08E7B;

    /* Beige */
    --beige-50: #FDFAF6;
    --beige-100: #F8F0E6;
    --beige-200: #F0E0CC;
    --beige-300: #E5CCB0;

    /* Neutrals */
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F5;
    --gray-200: #E4E4E7;
    --gray-300: #D4D4D8;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #18181B;

    /* Gold Accents */
    --gold-light: #E8D5B5;
    --gold: #C9A96E;
    --gold-dark: #A88A52;

    /* Semantic */
    --text-primary: #2C2C2E;
    --text-secondary: #5A5A5E;
    --text-muted: #8E8E93;
    --text-light: #AEAEB2;

    /* Gradients */
    --gradient-sage: linear-gradient(135deg, var(--sage-400), var(--sage-600));
    --gradient-rose: linear-gradient(135deg, var(--rose-200), var(--rose-400));
    --gradient-warm: linear-gradient(135deg, var(--beige-100), var(--rose-50));
    --gradient-hero: linear-gradient(160deg, var(--bg-cream) 0%, var(--sage-50) 30%, var(--rose-50) 60%, var(--beige-50) 100%);
    --gradient-text: linear-gradient(135deg, var(--sage-500), var(--sage-700));
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55));

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(90, 138, 90, 0.08);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(90, 138, 90, 0.15);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);

    /* Spacing */
    --section-py: clamp(2rem, 3vw, 3rem);
    --container-px: clamp(1rem, 4vw, 2rem);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white-soft);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-smooth);
}

ul, ol {
    list-style: none;
}

/* ========== UTILITIES ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.text-center { text-align: center; }

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    position: relative;
    display: inline;
}
.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--sage-100);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.8;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sage-600);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.section-tag i, .section-tag svg {
    width: 16px;
    height: 16px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}
.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header {
    margin-bottom: 2rem;
}

/* ========== GLASS CARD ========== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-sage);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(90, 138, 90, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 138, 90, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gray-200);
}

.btn-ghost:hover {
    border-color: var(--sage-400);
    color: var(--sage-600);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--sage-600);
    border: 2px solid var(--sage-300);
}

.btn-outline:hover {
    background: var(--sage-50);
    border-color: var(--sage-500);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
}

.btn i, .btn svg {
    flex-shrink: 0;
}

/* ========== HEADER ========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease-smooth);
}

.main-header.scrolled {
    background: rgba(253, 252, 250, 0.95);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-decoration: none;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--sage-500);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--sage-600);
    background: var(--sage-50);
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Aurora Background */
.aurora-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: aurora-float 20s ease-in-out infinite;
}

.aurora-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--sage-200), transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.aurora-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--rose-200), transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: -7s;
}

.aurora-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--beige-200), transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes aurora-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.03); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(248,248,245,0.95));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(162,167,143,0.2);
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth);
    animation: hero-badge-in 0.6s var(--ease-spring) both;
    transform-origin: left center;
}

.hero-badge:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}

.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.3;
}

.hero-badge-row:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.hero-badge-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--sage-500);
}

.hero-badge-row:first-child .hero-badge-icon {
    color: var(--rose-400);
}

@keyframes hero-badge-in {
    from { opacity: 0; transform: translateY(8px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, var(--sage-200), transparent 70%);
    opacity: 0.5;
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: var(--radius-2xl);
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.floating-card-1 {
    bottom: 20%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 15%;
    right: -5%;
    animation-delay: -3s;
}

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

.floating-icon {
    width: 24px;
    height: 24px;
    color: var(--sage-500);
}

.floating-card strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.floating-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fade-in-up 1s 1.5s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-300);
    border-radius: 14px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--sage-400);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== AUTHORITY SECTION ========== */
.authority-section {
    padding: 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.authority-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 3rem;
    flex-wrap: wrap;
}

.authority-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.stars-row {
    display: flex;
    gap: 3px;
    margin-bottom: 4px;
}

.star-icon {
    width: 18px;
    height: 18px;
}

.star-icon.filled {
    color: var(--gold);
    fill: var(--gold);
}

.rating-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rating-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.authority-count {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sage-600);
}

.authority-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.authority-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-200);
}

.authority-quote {
    max-width: 350px;
}

.authority-quote p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: var(--section-py) 0;
    background: var(--white-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    top: 1.5rem;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.about-image-accent {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--sage-200);
    border-radius: var(--radius-2xl);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius-2xl);
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 1308 / 1600;
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-experience-badge i {
    color: var(--gold);
    width: 20px;
    height: 20px;
}

.about-experience-badge span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.about-content {
    max-width: 580px;
}

.about-bio p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.about-bio p:last-child {
    margin-bottom: 1.5rem;
}

/* ========== ABOUT HIGHLIGHT CARDS ========== */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.about-highlight-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 0.9rem;
    background: var(--white);
    border: 1px solid var(--beige-200);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-spring);
    cursor: default;
}

.about-highlight-card:hover {
    transform: translateY(-2px);
    border-color: var(--sage-200);
    box-shadow: 0 4px 16px rgba(95, 128, 95, 0.08);
}

.about-highlight-card i {
    width: 18px;
    height: 18px;
    color: var(--sage-500);
    flex-shrink: 0;
}

.about-highlight-card strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.about-highlight-card span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ========== SPECIALTIES TAGS ========== */
.about-specialties {
    margin-bottom: 1.5rem;
}

.about-specialties-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-specialties-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.specialty-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--sage-600);
    background: var(--sage-50);
    border: 1px solid var(--sage-100);
    border-radius: 999px;
    transition: all 0.3s var(--ease-smooth);
    cursor: default;
}

.specialty-tag:hover {
    background: var(--sage-100);
    border-color: var(--sage-300);
    transform: translateY(-1px);
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
    padding: var(--section-py) 0;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-spring);
    cursor: default;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.benefit-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--sage-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s var(--ease-spring);
}

.benefit-card:hover .benefit-icon-wrap {
    background: var(--gradient-sage);
    transform: scale(1.1) rotate(-5deg);
}

.benefit-icon-wrap i {
    width: 24px;
    height: 24px;
    color: var(--sage-600);
    transition: color 0.3s;
}

.benefit-card:hover .benefit-icon-wrap i {
    color: var(--white);
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.15) 45%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.15) 55%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: none;
    pointer-events: none;
}

.benefit-card:hover .card-shine {
    animation: card-shine 0.8s forwards;
}

@keyframes card-shine {
    to { transform: translateX(50%); }
}

/* ========== DIFFERENTIALS SECTION ========== */
.differentials-section {
    padding: var(--section-py) 0;
    background: var(--white-soft);
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: start;
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.5rem;
}

.diff-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-smooth);
}

.diff-item:hover {
    background: var(--sage-50);
}

.diff-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sage-50);
    border: 2px solid var(--sage-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-spring);
}

.diff-item:hover .diff-check {
    background: var(--gradient-sage);
    border-color: var(--sage-500);
}

.diff-check i {
    width: 16px;
    height: 16px;
    color: var(--sage-500);
    transition: color 0.3s;
}

.diff-item:hover .diff-check i {
    color: var(--white);
}

.diff-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.diff-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========== AMBIENTE (Conheça o Ambiente) ========== */
.ambiente-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ambiente-header {
    text-align: center;
}

.ambiente-header-icon {
    width: 36px;
    height: 36px;
    color: var(--sage-400);
    margin-bottom: 0.75rem;
}

.ambiente-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ambiente-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 340px;
    margin: 0 auto;
}

.ambiente-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

/* ========== AMBIENTE GALLERY 3 ========== */
.ambiente-gallery {
    display: flex;
}

.ambiente-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
}

.ambiente-grid-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.ambiente-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.ambiente-grid-item:hover img {
    transform: scale(1.1);
}

.ambiente-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.ambiente-grid-item:hover .ambiente-grid-overlay {
    opacity: 1;
}

.ambiente-grid-overlay i {
    width: 24px;
    height: 24px;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s var(--ease-spring);
}

.ambiente-grid-item:hover .ambiente-grid-overlay i {
    transform: scale(1);
}

/* ========== AMBIENTE VIDEO ========== */
.ambiente-video {
    display: flex;
}

.ambiente-video-player {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--gray-900);
    aspect-ratio: 4 / 3;
}

.ambiente-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ambiente-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s var(--ease-smooth);
}

.ambiente-video-player:hover .ambiente-video-overlay {
    background: rgba(0,0,0,0.15);
}

.ambiente-video-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-spring);
}

.ambiente-video-player:hover .ambiente-video-btn {
    transform: scale(1.1);
    background: rgba(255,255,255,0.3);
}

.ambiente-video-btn svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    margin-left: 3px;
}

/* ========== AMBIENTE LIGHTBOX ========== */
.ambiente-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    backdrop-filter: blur(20px);
}

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

.ambiente-lightbox-content {
    position: relative;
    max-width: 75vw;
    max-height: 80vh;
}

.ambiente-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.5s var(--ease-spring);
}

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

.ambiente-lightbox-close {
    position: absolute;
    top: -40px;
    right: -8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-spring);
    color: var(--white);
}

.ambiente-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg) scale(1.1);
}

.ambiente-lightbox-close i {
    width: 18px;
    height: 18px;
}

/* ========== DIFF LOCATION (Atendimento Presencial) ========== */
.diff-location {
    margin-top: 1rem;
}

.diff-location-card {
    padding: 1.25rem 1.25rem 1rem;
    background: var(--gradient-warm);
    border: 1px solid var(--beige-200);
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-smooth);
}

.diff-location-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.diff-location-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.diff-location-icon {
    width: 32px;
    height: 32px;
    color: var(--sage-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.diff-location-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 2px;
}

.diff-location-address {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.diff-location-photo {
    margin: 0.6rem 0 0.2rem;
}

.diff-location-photo .gallery-grid {
    display: block;
    margin: 0;
}

.diff-location-photo .gallery-item {
    aspect-ratio: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    max-height: 140px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s var(--ease-smooth);
}

.diff-location-photo .gallery-item:hover {
    box-shadow: var(--shadow-md);
}

.diff-location-photo .gallery-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: top center;
}

.diff-location-photo .gallery-item-overlay {
    font-size: 0.75rem;
}

.diff-location-photo .gallery-item-info {
    gap: 0;
}

.diff-location-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.diff-location-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}

.diff-location-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.25rem 0.7rem;
    background: var(--white);
    border: 1px solid var(--beige-100);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-smooth);
    cursor: default;
}

.diff-location-badge:hover {
    border-color: var(--sage-200);
    transform: translateY(-1px);
}

.diff-location-badge i {
    width: 12px;
    height: 12px;
    color: var(--sage-500);
    flex-shrink: 0;
}

.diff-location-actions {
    display: flex;
    gap: 0.6rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.82rem;
}

.btn-sm i, .btn-sm svg {
    width: 16px;
    height: 16px;
}

.diff-location-map {
    margin-top: 0.75rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 140px;
    position: relative;
}

.diff-location-map-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 2;
}

.diff-location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 640px) {
    .diff-location-actions {
        flex-direction: column;
    }
    .diff-location-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .diff-location-map {
        height: 120px;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: var(--section-py) 0;
    background: var(--bg-cream);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s var(--ease-smooth);
}

.testimonial-card {
    min-width: calc(33.333% - 1rem);
    flex-shrink: 0;
    padding: 2rem;
    position: relative;
}

.testimonial-quote-icon {
    color: var(--sage-300);
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.star-filled {
    width: 16px;
    height: 16px;
    color: var(--gold);
    fill: var(--gold);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-style: normal;
}

.author-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-spring);
}

.carousel-btn:hover {
    border-color: var(--sage-400);
    background: var(--sage-50);
    transform: scale(1.05);
}

.carousel-btn i {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
}

.carousel-dot.active {
    background: var(--sage-500);
    width: 28px;
    border-radius: 6px;
}

/* ========== PROCESS SECTION ========== */
.process-section {
    padding: var(--section-py) 0;
    background: var(--white-soft);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 1rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    flex: 1;
    max-width: 280px;
    position: relative;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--sage-100);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sage-50);
    border: 2px solid var(--sage-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s var(--ease-spring);
}

.process-step:hover .step-icon-wrap {
    background: var(--gradient-sage);
    border-color: transparent;
    transform: scale(1.1);
}

.step-icon-wrap i {
    width: 24px;
    height: 24px;
    color: var(--sage-600);
    transition: color 0.3s;
}

.process-step:hover .step-icon-wrap i {
    color: var(--white);
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-connector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 5.5rem;
    color: var(--sage-300);
}

.connector-line {
    width: 40px;
    height: 2px;
    background: var(--sage-200);
}

.process-connector i {
    width: 20px;
    height: 20px;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--section-py) 0;
    background: var(--bg-cream);
}

.faq-container {
    max-width: 800px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--ease-smooth);
}

.faq-item:hover {
    border-color: var(--sage-200);
}

.faq-item.active {
    border-color: var(--sage-300);
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.3s;
}

.faq-trigger:hover {
    color: var(--sage-600);
}

.faq-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sage-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-spring);
}

.faq-item.active .faq-icon-wrap {
    background: var(--gradient-sage);
    transform: rotate(45deg);
}

.faq-icon {
    width: 16px;
    height: 16px;
    color: var(--sage-600);
    transition: color 0.3s;
}

.faq-item.active .faq-icon {
    color: var(--white);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
    padding: 0 24px;
}

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

.faq-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== LOCATION SECTION ========== */
.location-section {
    padding: var(--section-py) 0;
    background: var(--white-soft);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--sage-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    width: 20px;
    height: 20px;
    color: var(--sage-600);
}

.contact-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-card a {
    color: var(--sage-600);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--sage-700);
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
}

.map-wrapper iframe {
    display: block;
    border-radius: var(--radius-xl);
}

/* ========== CTA SECTION ========== */
.cta-section {
    position: relative;
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 50%, #3a5e3a 100%);
    overflow: hidden;
}

.cta-aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.cta-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--rose-300);
    top: -20%;
    right: -10%;
    animation: aurora-float 15s ease-in-out infinite;
}

.cta-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--gold-light);
    bottom: -15%;
    left: -5%;
    animation: aurora-float 18s ease-in-out infinite reverse;
}

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

.cta-heart-icon {
    width: 40px;
    height: 40px;
    color: var(--rose-200);
    margin-bottom: 1.5rem;
    animation: heart-beat 2s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-subtitle strong {
    color: var(--white);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--sage-700);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sage-400);
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-spring);
}

.social-link:hover {
    border-color: var(--sage-400);
    background: rgba(90,138,90,0.15);
    transform: translateY(-2px);
}

.social-link i, .social-link svg {
    width: 18px;
    height: 18px;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-nav a:hover {
    color: var(--sage-300);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    color: var(--sage-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-warmth {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--sage-400);
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
}

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

.seo-footer {
    margin-top: 4px;
    font-size: 0.7rem !important;
    color: rgba(255,255,255,0.15) !important;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--ease-spring);
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    white-space: nowrap;
    background: var(--gray-800);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s var(--ease-smooth);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--gray-800);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* ========== INSTAGRAM FLOAT ========== */
.instagram-float {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #f56040, #fcaf45);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
    transition: all 0.4s var(--ease-spring);
    color: var(--white);
}

.instagram-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5);
}

.instagram-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(225, 48, 108, 0.3);
    animation: instagram-pulse 2s ease-in-out infinite;
}

@keyframes instagram-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0; }
}

.instagram-tooltip {
    position: absolute;
    right: 72px;
    white-space: nowrap;
    background: var(--gray-800);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s var(--ease-smooth);
    pointer-events: none;
}

.instagram-float:hover .instagram-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.instagram-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--gray-800);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* ========== SCROLL ANIMATIONS ========== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    .floating-card-1 { left: 0; }
    .floating-card-2 { right: 0; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image-wrapper {
        max-width: 380px;
        margin: 0 auto;
        top: 0;
    }
    .about-content {
        max-width: 100%;
    }
    .about-highlights {
        grid-template-columns: 1fr;
    }
    .about-specialties-tags {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .ambiente-content {
        grid-template-columns: 1fr;
    }
    .ambiente-video-player {
        aspect-ratio: 4 / 3;
        max-width: 480px;
        margin: 0 auto;
    }
    .ambiente-grid-3 {
        max-width: 480px;
        margin: 0 auto;
    }
    .ambiente-subtitle {
        max-width: 100%;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .authority-wrapper {
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }

    .nav-links { display: none; }
    .btn-header { display: none; }
    .mobile-menu-toggle { display: flex; }

    .testimonial-card {
        min-width: calc(50% - 0.75rem);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero-section {
        padding: 100px 0 40px;
        min-height: auto;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .floating-card {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .authority-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .authority-divider {
        width: 60px;
        height: 1px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        transform: rotate(90deg);
        margin: -1rem 0;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .btn-xl {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .ambiente-grid-3 {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }

    .ambiente-video-player {
        aspect-ratio: 4 / 3;
        max-width: 100%;
    }
}

/* Mobile Menu Open */
.nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 252, 250, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    animation: slide-down 0.3s var(--ease-out);
    z-index: 999;
}

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

.nav-links.open a {
    padding: 14px 16px;
    font-size: 1rem;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== CORPORATE / PALESTRAS SECTION ========== */
.corporate-section {
    padding: var(--section-py) 0 0;
    background: var(--white-soft);
    position: relative;
}

.corporate-description {
    max-width: 700px;
    margin: -1.5rem auto 3rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.corporate-themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.corporate-theme-card {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-spring);
    cursor: default;
}

.corporate-theme-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.corporate-theme-card .theme-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--sage-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s var(--ease-spring);
}

.corporate-theme-card:hover .theme-icon-wrap {
    background: var(--gradient-sage);
    transform: scale(1.1) rotate(-5deg);
}

.corporate-theme-card .theme-icon-wrap i {
    width: 24px;
    height: 24px;
    color: var(--sage-600);
    transition: color 0.3s;
}

.corporate-theme-card:hover .theme-icon-wrap i {
    color: var(--white);
}

.corporate-theme-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.corporate-theme-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== CORPORATE CONSULTING CARD ========== */
.corporate-consulting {
    padding: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--sage-100);
    background: linear-gradient(135deg, var(--sage-50) 0%, var(--white) 50%, var(--rose-50) 100%);
}

.corporate-consulting::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--sage-100), transparent 70%);
    opacity: 0.4;
    border-radius: 50%;
    pointer-events: none;
}

.consulting-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--gradient-sage);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(90, 138, 90, 0.3);
    z-index: 1;
}

.consulting-badge i {
    width: 14px;
    height: 14px;
}

.consulting-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.consulting-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
    background: var(--gradient-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(90, 138, 90, 0.25);
}

.consulting-icon-wrap i {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.consulting-content {
    max-width: 100%;
}

.consulting-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sage-600);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.consulting-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.consulting-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.consulting-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 1.5rem 0 2rem;
}

.consulting-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.7);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s var(--ease-smooth);
}

.consulting-list li:hover {
    background: var(--white);
    border-color: var(--sage-200);
    transform: translateX(4px);
}

.consulting-list li i {
    width: 18px;
    height: 18px;
    color: var(--sage-500);
    flex-shrink: 0;
}

.consulting-list li span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .consulting-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .consulting-icon-wrap {
        margin: 0 auto;
    }

    .consulting-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-flex;
        margin-bottom: 1rem;
    }

    .consulting-list {
        grid-template-columns: 1fr;
    }
}

/* ========== GALLERY FILTERS ========== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-200);
    background: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.4s var(--ease-spring);
}

.gallery-filter:hover {
    border-color: var(--sage-300);
    color: var(--sage-600);
    transform: translateY(-2px);
}

.gallery-filter.active {
    background: var(--gradient-sage);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(90, 138, 90, 0.3);
}

/* ========== CORPORATE GALLERY ========== */
.corporate-gallery {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--ease-spring);
    aspect-ratio: 4 / 3;
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

/* Video play button overlay */
.gallery-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.gallery-video-play svg {
    width: 56px;
    height: 56px;
    color: var(--white);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
    opacity: 0.9;
    transition: all 0.4s var(--ease-spring);
}

.gallery-item--video:hover .gallery-video-play svg {
    transform: scale(1.15);
    opacity: 1;
}

.gallery-item--video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    z-index: 1;
    transition: background 0.4s var(--ease-smooth);
}

.gallery-item--video:hover::after {
    background: rgba(0,0,0,0.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.3) 40%,
        transparent 65%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 1;
    transform: translateY(0);
    transition: background 0.5s var(--ease-smooth);
    z-index: 3;
}

.gallery-item:hover .gallery-item-overlay {
    background: linear-gradient(to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.4) 40%,
        transparent 65%
    );
}

.gallery-item-info {
    transform: translateY(0);
}

.gallery-item-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--gradient-sage);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 6px;
}

.gallery-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-item-cta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.gallery-item-cta::after {
    content: '→';
    transition: transform 0.3s var(--ease-smooth);
}

.gallery-item:hover .gallery-item-cta::after {
    transform: translateX(4px);
}

.gallery-item {
    animation: gallery-enter 0.6s var(--ease-out) both;
}

.gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-item:nth-child(2) { animation-delay: 0.04s; }
.gallery-item:nth-child(3) { animation-delay: 0.08s; }
.gallery-item:nth-child(4) { animation-delay: 0.12s; }
.gallery-item:nth-child(5) { animation-delay: 0.16s; }
.gallery-item:nth-child(6) { animation-delay: 0.2s; }
.gallery-item:nth-child(7) { animation-delay: 0.24s; }
.gallery-item:nth-child(8) { animation-delay: 0.28s; }
.gallery-item:nth-child(9) { animation-delay: 0.32s; }
.gallery-item:nth-child(10) { animation-delay: 0.36s; }
.gallery-item:nth-child(11) { animation-delay: 0.4s; }
.gallery-item:nth-child(12) { animation-delay: 0.44s; }
.gallery-item:nth-child(13) { animation-delay: 0.48s; }
.gallery-item:nth-child(14) { animation-delay: 0.52s; }
.gallery-item:nth-child(15) { animation-delay: 0.56s; }
.gallery-item:nth-child(16) { animation-delay: 0.6s; }

@keyframes gallery-enter {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Video lightbox */
.lightbox-video {
    max-width: 80vw;
    max-height: 80vh;
}

.lightbox-video video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.6s var(--ease-spring);
}

.lightbox-overlay.active .lightbox-video video {
    transform: scale(1) translateY(0);
}

/* ========== LIGHTBOX ========== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-smooth);
    backdrop-filter: blur(20px);
}

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

.lightbox-content {
    position: relative;
    max-width: 80vw;
    max-height: 80vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.6s var(--ease-spring);
}

.lightbox-overlay.active .lightbox-content img {
    transform: scale(1) translateY(0);
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: -8px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-spring);
    color: var(--white);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-close i {
    width: 20px;
    height: 20px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-spring);
    color: var(--white);
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav i {
    width: 22px;
    height: 22px;
}

.lightbox-prev {
    left: -64px;
}

.lightbox-next {
    right: -64px;
}

.lightbox-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0 4px;
}

.lightbox-caption {
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    font-weight: 500;
}

.lightbox-counter {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ========== CORPORATE CTA ========== */
.corporate-cta {
    background: var(--gradient-warm);
    border: 1px solid var(--beige-200);
    border-radius: var(--radius-2xl);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.corporate-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--sage-100), transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.cta-content-wrap {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.cta-corporate-icon {
    width: 48px;
    height: 48px;
    color: var(--sage-500);
    margin-bottom: 1.5rem;
    animation: heart-beat 2s ease-in-out infinite;
}

.cta-corporate-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* ========== CORPORATE RESPONSIVE ========== */
@media (max-width: 1024px) {
    .corporate-themes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 640px) {
    .corporate-themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-nav i {
        width: 18px;
        height: 18px;
    }

    .corporate-cta {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .corporate-themes-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CONGRESSOS E CAPACITAÇÕES ========== */
.congress-section {
    padding: var(--section-py) 0;
    background: var(--bg-cream);
    position: relative;
}

.congress-content {
    max-width: 720px;
    margin: -0.5rem auto 2rem;
    text-align: center;
}

.congress-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.6rem;
}

.congress-text:last-child {
    margin-bottom: 0;
}

/* ========== CONGRESS GALLERY ========== */
.congress-gallery {
    margin-bottom: 2rem;
}

.congress-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 1rem;
}

.congress-gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: all 0.4s var(--ease-smooth);
}

.congress-gallery-item.hidden {
    display: none;
}

.congress-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.congress-gallery-item:hover img {
    transform: scale(1.08);
}

.congress-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.08), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.congress-gallery-item:hover::after {
    opacity: 1;
}

.congress-gallery-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    font-weight: 500;
}

.congress-gallery-toggle i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-spring);
}

.congress-gallery-toggle.expanded i {
    transform: rotate(180deg);
}

/* ========== CONGRESS VIDEOS GRID ========== */
.congress-videos {
    margin-bottom: 2rem;
}

.congress-videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.congress-video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--gray-900);
}

.congress-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.congress-video-play {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s var(--ease-smooth);
}

.congress-video-card:hover .congress-video-play {
    background: rgba(0,0,0,0.1);
}

.congress-video-play svg {
    width: 48px;
    height: 48px;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s var(--ease-spring);
}

.congress-video-card:hover .congress-video-play svg {
    transform: scale(1.1);
}

/* ========== CONGRESS HIGHLIGHT ========== */
.congress-highlight {
    max-width: 680px;
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem;
    text-align: center;
    background: var(--gradient-warm);
    border: 1px solid var(--beige-200);
}

.congress-highlight-icon {
    width: 32px;
    height: 32px;
    color: var(--sage-300);
    margin-bottom: 1rem;
}

.congress-highlight-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
}

/* ========== CONGRESS BADGES ========== */
.congress-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
}

.congress-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.1rem;
    background: var(--sage-50);
    border: 1px solid var(--sage-100);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--sage-600);
    transition: all 0.3s var(--ease-smooth);
    cursor: default;
}

.congress-badge:hover {
    background: var(--sage-100);
    border-color: var(--sage-300);
    transform: translateY(-2px);
}

.congress-badge i {
    width: 14px;
    height: 14px;
    color: var(--sage-500);
    flex-shrink: 0;
}

/* ========== CONGRESS LIGHTBOX ========== */
.congress-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    backdrop-filter: blur(20px);
}

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

.congress-lightbox-content {
    position: relative;
    max-width: 75vw;
    max-height: 80vh;
    text-align: center;
}

.congress-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.5s var(--ease-spring);
}

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

.congress-lightbox-close {
    position: absolute;
    top: -44px;
    right: -4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-spring);
    color: var(--white);
    z-index: 10;
}

.congress-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg) scale(1.1);
}

.congress-lightbox-close i {
    width: 18px;
    height: 18px;
}

.congress-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-spring);
    color: var(--white);
    z-index: 10;
}

.congress-lightbox-nav:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-50%) scale(1.1);
}

.congress-lightbox-nav i {
    width: 22px;
    height: 22px;
}

.congress-lightbox-prev {
    left: -56px;
}

.congress-lightbox-next {
    right: -56px;
}

.congress-lightbox-footer {
    margin-top: 1rem;
}

.congress-lightbox-counter {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ========== CONGRESS RESPONSIVE ========== */
@media (max-width: 1024px) {
    .congress-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .congress-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .congress-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .congress-video-nav {
        display: none;
    }

    .congress-highlight {
        padding: 1.5rem;
    }

    .congress-badges {
        gap: 0.5rem;
    }

    .congress-badge {
        font-size: 0.78rem;
        padding: 0.4rem 0.9rem;
    }

    .congress-lightbox-prev {
        left: 8px;
    }

    .congress-lightbox-next {
        right: 8px;
    }

    .congress-lightbox-nav {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .congress-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .congress-highlight {
        padding: 1.25rem;
    }
}

/* ========== ENCONTRO COM O BEM-ESTAR ========== */
.encontro-section {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--white-soft) 0%, var(--rose-50) 40%, var(--beige-50) 70%, var(--white-soft) 100%);
    position: relative;
    overflow: hidden;
}

.encontro-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--rose-200), transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
}

.encontro-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--beige-200), transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
}

.encontro-intro {
    max-width: 750px;
    margin: -0.5rem auto 2rem;
    text-align: center;
}

.encontro-intro p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* ========== ENCONTRO HIGHLIGHT CARDS ========== */
.encontro-highlights {
    margin-bottom: 2.5rem;
}

.encontro-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.encontro-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.25rem 1.25rem;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--rose-100);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-spring);
    cursor: default;
}

.encontro-card:hover {
    transform: translateY(-4px);
    background: var(--white);
    border-color: var(--rose-200);
    box-shadow: 0 8px 24px rgba(224, 142, 123, 0.12);
}

.encontro-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--rose-100), var(--rose-50));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-spring);
}

.encontro-card:hover .encontro-icon {
    background: linear-gradient(135deg, var(--rose-300), var(--rose-200));
    transform: scale(1.1) rotate(-5deg);
}

.encontro-icon i {
    width: 20px;
    height: 20px;
    color: var(--rose-400);
    transition: color 0.3s;
}

.encontro-card:hover .encontro-icon i {
    color: var(--white);
}

.encontro-card span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

/* ========== ENCONTRO GALLERY ========== */
.encontro-gallery {
    margin-bottom: 2.5rem;
}

.encontro-impact {
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 50%, #3a5e3a 100%);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.encontro-impact::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--rose-200), transparent 70%);
    opacity: 0.12;
    border-radius: 50%;
}

.encontro-impact::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-light), transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.encontro-impact-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.encontro-impact-icon {
    width: 48px;
    height: 48px;
    color: var(--rose-200);
    margin-bottom: 1.5rem;
    animation: heart-beat 2s ease-in-out infinite;
}

.encontro-impact-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.encontro-impact-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

/* ========== ENCONTRO CTA ========== */
.encontro-cta {
    margin-bottom: 0;
}

.encontro-cta-content {
    background: var(--white);
    border: 2px solid var(--rose-100);
    border-radius: var(--radius-2xl);
    padding: 3.5rem 2rem;
    box-shadow: var(--shadow-lg);
}

.encontro-cta-icon {
    width: 48px;
    height: 48px;
    color: var(--rose-400);
    margin-bottom: 1.5rem;
    animation: heart-beat 2s ease-in-out infinite;
}

.encontro-cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.encontro-cta-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.encontro-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== ENCONTRO RESPONSIVE ========== */
@media (max-width: 1024px) {
    .encontro-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .encontro-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .encontro-impact {
        padding: 3rem 1.5rem;
    }

    .encontro-cta-content {
        padding: 2.5rem 1.5rem;
    }

    .encontro-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .encontro-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .encontro-cards {
        grid-template-columns: 1fr;
    }
}
