/* Alinhamento do título da abordagem terapêutica */
.about-approach-title {
    text-align: left;
}

@media (max-width: 768px) {
    .about-approach-title {
        text-align: center;
    }
}
:root {
            --primary-color: #A8D8EA; /* Azul claro pastel */
            --secondary-color: #FFD1DC; /* Rosa suave pastel */
            --accent-color: #f5f5f5; /* Bege pastel */
            --text-color: #333333;
            --light-text: #666666;
            --white: #FFFFFF;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
           color-scheme: light;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #FAFAFA;
            overflow-x: hidden;
        }

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

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 600;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
            text-decoration: none;
            line-height: 1.2;
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo-subtitle {
            font-size: 14px;
            color: var(--light-text);
            font-weight: 400;
            margin-top: -5px;
            letter-spacing: 0.7px; /* Adiciona espaçamento entre as letras */
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            font-size: 40px;
            color: var(--primary-color);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Menu Hambúrguer */
  /* Menu Hambúrguer - CSS Limpo e Organizado */

/* Hambúrguer - oculto por padrão */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Animação do hambúrguer quando ativo */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding-top: 80px;
}

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

/* Botão fechar (X) do menu mobile */
#close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#close-mobile-menu:hover {
    background: rgba(168, 216, 234, 0.1);
    color: var(--primary-color);
}

/* Links do menu mobile */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links a {
    display: block;
    padding: 20px 30px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
    background: rgba(168, 216, 234, 0.1);
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-links a:hover::before {
    transform: scaleY(1);
}

/* Overlay para o menu mobile */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Responsivo - Mobile */
@media (max-width: 768px) {
    /* Mostra o hambúrguer e ajusta a navegação */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    nav {
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-wrapper {
        order: 1;
        flex: none;
    }
    
    .hamburger {
        order: 2;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo-subtitle {
        font-size: 12px;
    }
    
    .logo-icon {
        font-size: 32px;
    }
}
        /* Hero Section - Melhorado para responsivo */
        .hero {
            padding: 150px 0 150px;
            text-align: center;
            color: var(--white);
            border-radius: 0 0 30px 30px;
            position: relative;
            overflow: hidden;
        }

        /* Container do vídeo com aspect-ratio fixo */
        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        #hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        /* Fallback background para quando o vídeo não carrega */
        .hero-fallback-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(168, 216, 234, 0.9) 0%, 
                rgba(255, 209, 220, 0.8) 50%, 
                rgba(168, 216, 234, 0.9) 100%);
            z-index: -2;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); /* Overlay para legibilidade */
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-question {
            font-family: 'Montserrat', sans-serif;
            font-size: 64px;
            margin-bottom: 30px;
            font-weight: 400;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            line-height: 1.2;
            color: #fff;
            letter-spacing: 1.5px;
        }

        .hero-answer {
            font-size: 22px;
            max-width: 800px;
            margin: 0 auto 40px;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--white);
            color: var(--primary-color);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            font-size: 18px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 42px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--light-text);
            font-size: 18px;
            text-align: justify;
        }

        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .about-image-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
            transform: scale(1.1) rotate(-10deg);
            opacity: 0.6;
            z-index: 0;
        }

        .about-image .profile-pic-round {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .about-image .profile-pic-round img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 75%;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--accent-color);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 80%, rgba(168, 216, 234, 0.18) 0%, rgba(255, 209, 220, 0.12) 40%, rgba(255,255,255,0) 80%);
            z-index: 1;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            position: relative;
            z-index: 2;
            margin-top: 32px;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 24px 14px 20px 14px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(168, 216, 234, 0.10);
            transition: all 0.3s cubic-bezier(.4,0,.2,1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 180px;
            border: 1px solid #ececec;
        }

        .service-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 8px 24px rgba(168, 216, 234, 0.15);
            border-color: var(--primary-color);
        }

        .service-icon {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-fill-color: transparent;
        }

        .service-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--secondary-color);
            font-weight: 400;
            letter-spacing: 0.2px;
            font-family: 'Poppins', sans-serif;
        }

        .service-card p {
            color: var(--light-text);
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 0;
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background-color: var(--white);
        }

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

        .testimonial-card {
            background-color: var(--accent-color);
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 10px;
            font-size: 120px;
            color: rgba(168, 216, 234, 0.2);
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--light-text);
            position: relative;
            z-index: 2;
            font-size: 18px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--white);
            font-weight: 600;
        }

        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--light-text);
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                color: #fff;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 1;
        }

        .contact-content {
            display: flex;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .contact-info, .contact-form {
            flex: 1;
        }

        .contact-info h3 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-item i {
            margin-right: 15px;
            font-size: 24px;
        }

        .contact-form form {
            background-color: var(--white);
            border-radius: 20px;
            padding: 30px;
            color: var(--text-color);
        }
         @media (max-width: 768px) {
                        .contact-title-responsive,
                        .contact-desc-responsive {
                            text-align: center !important;
                        }
                    }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .submit-button {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            width: 100%;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .section-title-contact {
            text-align: center;
            margin-bottom: 50px;
            font-size: 42px;
            color: var(--white);
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title-contact::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        /* Footer */
        footer {
            background-color: var(--text-color);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-logo h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .footer-logo p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-info {
            margin-top: 15px;
        }

        .footer-info .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-info .contact-item i {
            margin-right: 10px;
            font-size: 16px;
            color: var(--secondary-color);
            width: 20px;
        }

        .footer-links, .footer-social {
            flex: 1;
        }

        .footer-links h4, .footer-social h4 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--secondary-color);
            font-weight: 600;
        }

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

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
            display: inline-block;
        }

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

        .social-icons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .social-icons a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            background-color: #128C7E;
        }

        /* Ajuste de Estilo para a Pergunta do Hero */
        .hero-question .highlight-word {
            color: var(--primary-color);
            font-weight: 600;
            position: relative;
        }

        .hero-question {
            font-family: 'Montserrat', sans-serif;
            font-size: 58px;
            margin-bottom: 30px;
            font-weight: 400;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            line-height: 1.2;
            color: #fff;
            letter-spacing: 1.5px;
        }

        .hero-question .highlight-word {
            font-size: 68px;
            color: var(--primary-color);
            font-weight: 600;
            position: relative;
        }

        .hero-question .highlight-word::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: -18px; /* valor mais negativo para mover mais à esquerda */
            width: 106%;
            height: 8px;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8'%3e%3cfilter id='f1' x='0' y='0'%3e%3cfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1'/%3e%3c/filter%3e%3cpath d='M0,4 C20,8 40,0 60,4 C80,8 100,0 100,4' stroke='%23A8D8EA' stroke-width='2' fill='none' filter='url(%23f1)'/%3e%3c/svg%3e");
            background-size: 100% 100%;
        }

        /* Responsive Design - Melhorado para o vídeo */
        @media (max-width: 1024px) {
            .hero {
                padding: 120px 0;
                min-height: 80vh;
            }
            
            .hero-question {
                font-size: 48px;
            }
            
            .hero-question .highlight-word {
                font-size: 56px;
            }
            
            .hero-answer {
                font-size: 20px;
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero {
                padding: 100px 0;
                min-height: 70vh;
            }
            
            .hero-question {
                font-size: 36px;
                margin-bottom: 20px;
                padding: 0 15px;
            }
            
            .hero-question .highlight-word {
                font-size: 42px;
            }
            
            .hero-answer {
                font-size: 18px;
                margin-bottom: 30px;
                padding: 0 15px;
            }
            
            .cta-button {
                padding: 16px 32px;
                font-size: 16px;
            }
            
            /* Ajuste específico do vídeo para mobile */
            #hero-video {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
            }
            
            .about-content, .contact-content {
                flex-direction: column;
            }
            
            .about-image .profile-pic-round {
                width: 220px;
                height: 220px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-info .contact-item {
                justify-content: center;
            }
             @media (max-width: 768px) {
                        .footer-description {
                            text-align: center !important;
                        }
                    }
                    @media (min-width: 769px) {
                        .footer-description {
                            text-align: left !important;
                        }
                    }
                    .footer-description {
                        font-size: 17px;
                        color: rgba(255,255,255,0.92);
                        line-height: 1.7;
                        margin-bottom: 22px;
                    }
             @media (max-width: 768px) {
                        .footer-social-text {
                            text-align: center !important;
                        }
                    }        
            
            .services {
                padding: 60px 0;
            }

            .services-grid {
                gap: 24px;
            }

            .service-card {
                min-height: 260px;
                padding: 28px 12px 24px 12px;
            }

            .service-icon {
                font-size: 40px;
                margin-bottom: 18px;
            }

            .service-card h3 {
                font-size: 20px;
            }

            .service-card p {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 80px 0;
                min-height: 60vh;
            }
            
            .hero-question {
                font-size: 28px;
                line-height: 1.3;
            }
            
            .hero-question .highlight-word {
                font-size: 34px;
            }
            
            .hero-answer {
                font-size: 16px;
                line-height: 1.5;
            }
            
            .cta-button {
                padding: 14px 28px;
                font-size: 15px;
            }
            
            .logo {
                font-size: 24px;
            }
            
            .logo-subtitle {
                font-size: 12px;
            }
            
            .logo-icon {
                font-size: 32px;
            }
            
            .whatsapp-button {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
                font-size: 26px;
            }
        }

        /* Para telas muito pequenas em landscape */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: 100vh;
                padding: 80px 0;
            }
            
            .hero-question {
                font-size: 32px;
            }
            
            .hero-question .highlight-word {
                font-size: 38px;
            }
            
            .hero-answer {
                font-size: 16px;
                margin-bottom: 25px;
            }
        }

        /* Mobile - mantém o vídeo visível */
        @media (max-width: 768px) {
            #hero-video {
                display: block !important;
                opacity: 0.8; /* Deixa um pouco mais suave no mobile */
            }
            
            /* Overlay mais suave para não esconder o vídeo */
            .hero::after {
                background-color: rgba(0, 0, 0, 0.3);
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }