/* style.css */
:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D5;
    --primary-light: #8B85FF;
    --secondary: #FF6584;
    --accent: #00D4AA;
    --premium: #FFD700;
    --premium-dark: #FFA500;
    --dark: #0A0A0A;
    --dark-card: #1A1A1A;
    --dark-light: #2A2A2A;
    --light: #FFFFFF;
    --gray: #A3A3A3;
    --gray-light: #E0E0E0;
    --gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
    --gradient-premium: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
    --gradient-accent: linear-gradient(135deg, #00D4AA 0%, #009E7A 100%);
    --gradient-dark: linear-gradient(135deg, #5A52D5 0%, #E0557A 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--dark);
    font-family: 'Inter', sans-serif;
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantee-badge {
    background: var(--gradient-accent);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: radial-gradient(circle at 20% 80%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 101, 132, 0.15) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.badge {
    display: inline-block;
    background: var(--gradient-premium);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.5rem !important;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--premium);
    color: #000;
    padding: 20px 45px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 235, 120, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.guarantee-text {
    color: var(--gray);
    margin-top: 25px;
    font-size: 0.9rem !important;
}

/* Sections Common */
section {
    padding: 100px 0;
    position: relative;
}

.centered-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.centered-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* What Is Section */
.what-is {
    background: var(--dark-card);
    position: relative;
}

.what-is::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(108, 99, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.what-is .container {
    position: relative;
    z-index: 2;
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.what-is-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.what-is-text p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: var(--light);
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
}

.logo {
    width: 15%;
    margin-bottom: 20px;
}

.result-card {
    background: var(--gradient-premium);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px var(--premium);
    animation: float 3s ease-in-out infinite;
}

.result-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.result-card p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Problem Section */
.problem {
    background: var(--dark);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 30px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease forwards;
}

.problem-card:nth-child(1) {
    animation-delay: 0.1s;
}

.problem-card:nth-child(2) {
    animation-delay: 0.2s;
}

.problem-card:nth-child(3) {
    animation-delay: 0.3s;
}

.problem-card:nth-child(4) {
    animation-delay: 0.4s;
}

.problem-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.problem-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--light);
}

.problem-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Solution Section */
.solution {
    background: var(--dark-card);
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.solution .container {
    position: relative;
    z-index: 2;
}

.solution-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solution-icon {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 40px;
    background: var(--gradient);
    box-shadow: 0 15px 35px var(--premium);
    animation: bounce 2s infinite;
}

.solution-text {
    max-width: 600px;
    margin: 0 auto;
}

.solution-text p {
    color: var(--gray);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    background: var(--dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
    animation-delay: 0.6s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--light);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

:root {
    --primary: #D4AF37;
    --primary-dark: #B8860B;
    --primary-light: #FFDF00;
    --secondary: #C5A028;
    --accent: #FFD700;
    --premium: #FFD700;
    --premium-dark: #B8860B;
    --dark: #0A0A0A;
    --dark-card: #1A1A1A;
    --dark-light: #2A2A2A;
    --light: #FFFFFF;
    --gray: #A3A3A3;
    --gray-light: #E0E0E0;
    --gradient: linear-gradient(135deg, #D4AF37 0%, #FFDF00 50%, #B8860B 100%);
    --gradient-premium: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --gradient-accent: linear-gradient(135deg, #FFDF00 0%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção de Depoimentos */
.testimonials {
    background: var(--dark-card);
    padding: 80px 0;
}

.centered-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.centered-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-premium);
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-text {
    color: var(--gray-light);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gradient-premium) border-box;
    padding: 2px;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--light);
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Animações */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .centered-title {
        font-size: 2rem;
    }

    .centered-subtitle {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Mentor Section */
.mentor {
    background: var(--dark);
}

.mentor-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.mentor-image {
    text-align: center;
}

.mentor-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.mentor-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.mentor-info h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.mentor-description {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.mentor-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.mentor-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.highlight-tag {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(108, 99, 255, 0.3);
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: rgba(108, 99, 255, 0.2);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing {
    background: var(--dark-card);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: var(--dark-light);
    border-radius: inherit;
    z-index: -1;
}

.pricing-header {
    margin-bottom: 40px;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 25px 0;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-note {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: var(--light);
    font-size: 1.05rem;
}

.feature i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bonus-section {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 30px 25px;
    margin: 40px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '🎁';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
}

.bonus-section h4 {
    color: var(--premium);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.bonus-list {
    text-align: left;
    color: var(--light);
    list-style: none;
}

.bonus-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.bonus-list i {
    color: var(--premium);
    margin-right: 12px;
    font-size: 1rem;
}

.guarantee {
    text-align: center;
    margin-top: 30px;
    color: var(--gray);
    font-size: 0.6rem;
}

/* FAQ Section */
.faq {
    background: var(--dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--gray);
    line-height: 1.6;
}

.faq-answer.active {
    padding: 25px;
    max-height: 500px;
}

/* CTA Section */
.cta {
    background: var(--dark-card);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.urgency-banner {
    background: var(--gradient);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0;
    text-align: center;
}

footer p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .what-is-content {
        grid-template-columns: 1fr 1fr;
    }

    .mentor-content {
        grid-template-columns: 1fr 2fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .centered-title {
        font-size: 2.2rem;
    }

    .price {
        font-size: 3.5rem;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .mentor-stats {
        grid-template-columns: 1fr;
    }

    .mentor-img {
        width: 180px;
        height: 180px;
    }

    .btn {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .centered-title {
        font-size: 1.8rem;
    }

    section {
        padding: 70px 0;
    }

    .btn {
        padding: 16px 30px;
        font-size: 0.95rem;
    }

    .guarantee-badge {
        display: none;
    }

    .problem-cards,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .mentor-highlights {
        justify-content: center;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}