/* ===================================
   EVOLOTUS - Design System & Styles
   =================================== */

/* CSS Variables - Design Tokens */
:root {
    /* Colors - Lotus & Earth Palette (Harmonia com Logo) */
    /* Primária: Terracota Vibrante (Baseado no centro da lótus/logo) */
    --primary-color: #D95D39;
    --primary-dark: #B54024;
    --primary-light: #FF8C6B;

    /* Secundária: Laranja Suave / Pêssego (Pétalas) */
    --secondary-color: #F2A575;
    --secondary-dark: #D68B5E;

    /* Acento: Verde Natureza (Folhas/Crescimento) */
    --accent-color: #5D9B84;
    --accent-light: #84C7AE;

    /* Neutrals - Warm & Peaceful */
    --dark: #2D2520;
    /* Marrom muito escuro, quase preto */
    --dark-800: #423833;
    --dark-700: #5C4F48;
    --gray-500: #7A6E67;
    --gray-400: #A89D96;
    --gray-300: #D6CEC8;
    --gray-200: #EBE5E0;
    --gray-100: #FAF7F5;
    /* Off-white quente */
    --white: #FFFFFF;

    /* Gradients - Organic & Flowing */
    --gradient-primary: linear-gradient(135deg, #D95D39 0%, #F2A575 100%);
    --gradient-nature: linear-gradient(135deg, #5D9B84 0%, #8ACF6E 100%);
    --gradient-warm: linear-gradient(135deg, #FAF7F5 0%, #F2EBE6 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius - Organic Shapes */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2.5rem;
    --radius-full: 9999px;

    /* Shadows - Soft & Warm */
    --shadow-sm: 0 4px 12px rgba(45, 37, 32, 0.05);
    --shadow-md: 0 8px 24px rgba(45, 37, 32, 0.08);
    --shadow-lg: 0 16px 40px rgba(45, 37, 32, 0.12);
    --shadow-xl: 0 24px 60px rgba(45, 37, 32, 0.15);
    --shadow-glow: 0 0 32px rgba(217, 93, 57, 0.25);

    /* Transitions */
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark);
    background-color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D95D39' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.8;
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(242, 165, 117, 0.3);
    z-index: -1;
    border-radius: 4px;
}

/* Base Components & Buttons */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.btn-primary,
.btn-secondary,
.btn-outline {
    font-family: var(--font-display);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--gray-100);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ===================================
   LOTUS ANIMATIONS & BACKGROUNDS
   =================================== */
/* ===================================
   LOTUS ANIMATIONS & BACKGROUNDS
   =================================== */
.lotus-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Background level */
    pointer-events: none;
    /* Let clicks pass through */
    overflow: hidden;
    background-color: transparent;
}

/* Ensure content sits above petals */
.navbar,
section,
footer {
    position: relative;
    z-index: 1;
}

.lotus-petal {
    position: absolute;
    /* Visible styling */
    border: 2px solid rgba(217, 93, 57, 0.4);
    background: radial-gradient(circle at center, rgba(217, 93, 57, 0.05), transparent 70%);
    box-shadow: 0 0 30px rgba(217, 93, 57, 0.15);
    backdrop-filter: blur(3px);
    /* Subtle glass effect on the petal itself */
}

.petal-1 {
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
    animation: floatLotus 25s infinite ease-in-out;
    border-color: rgba(217, 93, 57, 0.25);
    /* Terracota */
}

.petal-2 {
    top: 40%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 35% 65% 60% 40% / 36% 36% 64% 64%;
    animation: floatLotus 30s infinite ease-in-out reverse;
    border-color: rgba(93, 155, 132, 0.2);
    /* Green */
}

.petal-3 {
    bottom: -10%;
    left: 20%;
    width: 400px;
    height: 400px;
    border-radius: 73% 27% 37% 63% / 60% 39% 61% 40%;
    animation: floatLotus 20s infinite ease-in-out;
    border-color: rgba(242, 165, 117, 0.25);
    /* Peach */
}

/* Floating animation refined for elegance */
@keyframes floatLotus {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(20px, -20px) rotate(5deg) scale(1.05);
    }
}

/* Scroll Parallax Effect Class */
.parallax-item {
    transition: transform 0.1s cubic-bezier(0, 0, 0, 1);
}

/* ===================================
   NAVIGATION (Refined & Premium)
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    /* Subtle glass always on */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    padding: 1.25rem 0;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Softer shadow */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    /* Balanced spacing */
    list-style: none;
    margin-left: auto;
    margin-right: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-700);
    font-weight: 500;
    /* Better readability */
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* Premium spacing */
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 0.5rem 0;
}

/* Hover: Simple color change, elegant and clean */
.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Remove ::after pseudo-elements for cursor/underline effects */
.nav-link::after {
    display: none;
}

/* ===================================
   HERO SECTION (Updated)
   =================================== */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

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

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 2s ease;
}

.hero:hover .hero-image-container img {
    transform: scale(1);
}

/* ===================================
   SERVICES CARDS (Glassmorphism Warm)
   =================================== */
.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-warm);
    border-radius: var(--radius-md) 0 var(--radius-md) 0;
    /* Leaf/Petal shape */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-size: 1.75rem;
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 0 var(--radius-md) 0 var(--radius-md);
}

/* ===================================
   DIAGNOSTIC QUIZ (New Feature)
   =================================== */
.quiz-section {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.quiz-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-primary);
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-step.active {
    display: block;
}

.quiz-options {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.quiz-option {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quiz-option:hover {
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

.quiz-option.selected {
    border-color: var(--primary-color);
    background: #FFF5F2;
    /* Tom muito claro de laranja */
}

.quiz-progress {
    height: 6px;
    background: var(--gray-300);
    border-radius: 3px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.5s ease;
}

/* ===================================
   JOURNEY SECTION (Refined)
   =================================== */
.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

/* The connecting line */
.journey-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    /* Aligns with the center of the circle icons (50px / 2) */
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gray-300);
    z-index: 0;
    border-radius: 2px;
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 10px;
}

.journey-point {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
    box-shadow: 0 0 0 4px var(--gray-100);
    /* Spacing from line */
    z-index: 2;
}

.journey-step:hover .journey-point {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.journey-content {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    transition: var(--transition-base);
}

.journey-step:hover .journey-content {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.journey-step h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.journey-step p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--gray-500);
}

/* Responsive Journey */
@media (max-width: 768px) {
    .journey-timeline::before {
        width: 4px;
        height: 100%;
        left: 25px;
        top: 0;
    }

    .journey-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .journey-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .journey-point {
        flex-shrink: 0;
        margin-bottom: 0;
    }
}

/* ===================================
   FLOATING ACTION BUTTON (WhatsApp)
   =================================== */
.fab-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-base);
    animation: pulse 3s infinite;
}

.fab-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================
   ANIMATIONS UTILS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
/* ===================================
   FOOTER (Modern & Featured)
   =================================== */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Footer Logo White Filter */
.footer-brand img {
    filter: brightness(0) invert(1);
    /* Forces logo to be white */
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--gray-400);
    margin-top: 0;
    font-size: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--primary-dark);
}

/* ===================================
   EVE CHATBOT WIDGET STYLES
   =================================== */
.eve-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Outfit', sans-serif;
}

/* Chat Toggle Button (Floating) - Stylized Lotus */
.eve-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(217, 93, 57, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    z-index: 1001;
}

/* Removed Ajuda Label and Arrow */

/* Chat Toggle Button (Floating) - Stylized Lotus */
.eve-toggle {
    width: 65px;
    height: 65px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(217, 93, 57, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    z-index: 1001;
}

.eve-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(217, 93, 57, 0.4);
}

.eve-avatar-small {
    position: absolute;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    /* Changed to flex to ensure centering if needed, though object-fit covers it */
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Ensure container is round */
    overflow: hidden;
    /* Clip the image to the circle */
}

.eve-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the button */
    filter: none;
    transition: transform 0.3s ease;
}

/* Close Icon State */
.close-icon {
    position: absolute;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
    transition: all 0.3s ease;
}

/* Opened State */
.eve-toggle.opened {
    background: var(--dark-800);
    /* Darker contrast when closing or keep white? Let's use darker to signify 'close' action intensity or keep white for clean look. Let's stick to white but maybe change icon color. */
    background: var(--white);
    transform: rotate(0deg);
    /* Reset generic rotations */
}

.eve-toggle.opened .eve-avatar-small {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.eve-toggle.opened .close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Removed status indicator CSS */

/* Close Button Enhanced */
.eve-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.eve-close-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* LGPD Consent Banner */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.lgpd-banner.show {
    transform: translateY(0);
}

.lgpd-text {
    font-size: 0.9rem;
    color: var(--gray-500);
    max-width: 800px;
}

.lgpd-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.lgpd-btn:hover {
    background: var(--primary-dark);
}

/* Chat Window */
.eve-window {
    position: fixed;
    /* Fixed to screen, not absolute to parent */
    bottom: 110px;
    /* Above the button */
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
    /* Highest priority */
    visibility: hidden;
    /* Truly hide it */
}

.eve-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
    visibility: visible;
}

/* Chat Header */
.eve-header {
    background: var(--primary-gradient);
    padding: 1.2rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.eve-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 40px;
    /* Space for close button */
}

.eve-avatar-large {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.eve-avatar-large img {
    width: 25px;
    filter: brightness(0) invert(1);
}

.eve-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-text {
    font-size: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
}

/* Close Button Fixed */
.eve-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2005;
    /* Above header content */
    font-weight: 300;
    line-height: 1;
    padding-bottom: 4px;
    /* Center 'x' visual */
}

.eve-close-btn:hover {
    background: white;
    color: var(--primary-color);
}

/* Messages Area */
.eve-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    animation: slideIn 0.3s ease;
}

.message.bot {
    align-self: flex-start;
}

.message.user {
    align-self: flex-end;
}

.message.bot .msg-content {
    background: white;
    padding: 1rem;
    border-radius: 0 15px 15px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    border-top-left-radius: 15px;
    /* Round all corners for smoother look */
    border-bottom-left-radius: 2px;
}

.message.user .msg-content {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 15px 15px 2px 15px;
    box-shadow: 0 2px 10px rgba(217, 93, 57, 0.2);
    font-size: 0.95rem;
}

/* Interactive Options (Chips) */
.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.chat-option-btn {
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    font-family: inherit;
}

.chat-option-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Typing Indicator */
.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gray-400);
    border-radius: 50%;
    margin: 0 2px;
    animation: typing 1s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input Area (Visual only for now) */
.eve-input-area {
    padding: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 0.5rem;
    background: white;
}

.eve-input-area input {
    flex: 1;
    border: 1px solid #eee;
    padding: 0.8rem;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
    background: #f8f9fa;
}

.eve-input-area button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: not-allowed;
    opacity: 0.5;
}

/* ===================================
   RESPONSIVITY & MEDIA QUERIES
   =================================== */

/* Desktop Large (1280px+) - Already covered by container max-width */

/* Tablets & Small Laptops (1024px) */
@media (max-width: 1024px) {
    .hero .container>div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-content div[style*="display: flex"] {
        justify-content: center;
    }

    .hero-content div[style*="border-top"] {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

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

/* Tablets (768px) */
@media (max-width: 768px) {
    :root {
        --spacing-3xl: 4rem;
        --spacing-xl: 2rem;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 var(--spacing-md);
    }

    .logo img {
        height: 40px !important;
    }

    /* Hamburger Menu Visibility */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 10px;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--primary-color);
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Hamburger Animation to 'X' */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Nav Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

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

    .nav-link {
        font-size: 1.25rem;
    }

    .nav-actions .btn-primary {
        display: none;
        /* Hide button on mobile navbar to save space, or show in menu */
    }

    .nav-menu .btn-mobile-only {
        display: flex !important;
    }

    /* Section Grids */
    .contact .container>div {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .services .container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .quiz-container {
        padding: var(--spacing-lg);
    }

    .site-footer {
        padding-top: 4rem;
    }
}

/* Small Phones (480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content div[style*="display: flex"] {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .eve-window {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 100px;
        height: 450px;
    }

    .lgpd-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

.lotus-petal {
    width: 300px !important;
    height: 300px !important;
}

.petal-1 {
    width: 350px !important;
    height: 350px !important;
}

.petal-2 {
    width: 250px !important;
    height: 250px !important;
}

.petal-3 {
    width: 200px !important;
    height: 200px !important;
}

/* Utilities for JS */
.no-scroll {
    overflow: hidden;
}

.hamburger {
    display: none;
}