:root {
    --primary: #1647fb;
    --primary-light: #6da1ff;
    --secondary: #8e9198;
    --accent: #33d1ff;
    --white: #ffffff;
    --dark: #1a1a2e;
    --success: #28a745;
    --error: #dc3545;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: var(--dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

.card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    animation: gradientAnimation 8s ease infinite;
    background-size: 200% 200%;
}

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

.logo {
    max-width: 400px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.logo:hover {
    transform: scale(1.02);
}

.header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.content {
    padding: 30px;
}

.section-title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}

.benefit-item {
    flex: 0 0 calc(33.333% - 20px);
    background: rgba(22, 71, 251, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 71, 251, 0.1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(22, 71, 251, 0.1);
    box-shadow: 0 5px 15px rgba(22, 71, 251, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.benefit-icon i {
    font-size: inherit;
    color: inherit;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

/* Testimonials Section */
.testimonials {
    margin: 40px 0;
}

.testimonial-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.testimonial-author i {
    margin-right: 10px;
    color: var(--accent);
}

/* Counter Section */
.counter {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(22, 71, 251, 0.05);
    border-radius: 10px;
    border: 1px dashed var(--primary);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-text {
    font-size: 1.1rem;
    color: var(--secondary);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5ee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 71, 251, 0.2);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    background-size: 200% 200%;
    animation: gradientAnimation 8s ease infinite, pulse 2s infinite;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 71, 251, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* FAQ Section */
.faq {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background: rgba(22, 71, 251, 0.05);
    padding: 15px 20px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(22, 71, 251, 0.1);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.faq-question.active::after {
    content: "-";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

/* Note */
.note {
    background: #fff8e1;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-style: italic;
    color: #ff6d00;
    border-left: 4px solid #ff6d00;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    color: var(--secondary);
    font-size: 0.9rem;
    position: relative;
}

.footer-logo {
    max-width: 200px;
    opacity: 0.7;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.footer-link {
    display: flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-link i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.copyright {
    margin-top: 15px;
}

/* Floating Telegram Button */
.telegram-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: pulse 2s infinite;
}

.telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #0088cc;
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.telegram-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.telegram-btn i {
    font-size: 2rem;
}

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

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;  /* Começa invisível */
    transform: translateY(20px);  /* Começa deslocado para baixo */
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@media (max-width: 768px) {
    .benefit-item {
        flex: 0 0 100%;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .telegram-float {
        bottom: 20px;
        right: 20px;
    }
    
    .telegram-btn {
        width: 50px;
        height: 50px;
    }
}