/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0e27;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    background: rgba(15, 20, 40, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #7c9fd6;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

nav {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    color: white;
    padding: 30px 15px;
    text-align: center;
    background: linear-gradient(135deg, rgba(40, 50, 100, 0.8) 0%, rgba(30, 35, 70, 0.9) 100%);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.hero-highlight {
    color: #6cc24a;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    margin: 8px 0;
}

.hero p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #b0b0b0;
    line-height: 1.5;
}

.phone-icon {
    font-size: 80px;
    margin: 15px 0;
}

.phone-icon i {
    color: #6cc24a;
}

.hero-highlight-box {
    background: rgba(102, 126, 234, 0.15);
    border-left: 3px solid #6cc24a;
    padding: 12px;
    margin: 15px 0;
    border-radius: 5px;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.hero-highlight-box p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===== STATS ===== */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
    width: 100%;
}

.stat-card {
    background: rgba(102, 126, 234, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    text-align: center;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: bold;
    color: #6cc24a;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.75rem;
    opacity: 0.8;
    color: #b0b0b0;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6cc24a 0%, #7dd95f 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    margin: 10px auto;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(108, 194, 74, 0.3);
    width: 90%;
    max-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(108, 194, 74, 0.4);
}

/* ===== FEATURES SECTION ===== */
.features {
    background: #0f1428;
    padding: 30px 15px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-card {
    text-align: left;
    padding: 18px;
    border-radius: 8px;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.feature-card:active {
    background: rgba(108, 194, 74, 0.15);
    border-color: rgba(108, 194, 74, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
    color: #6cc24a;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #7c9fd6;
    font-weight: 600;
}

.feature-card p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: linear-gradient(135deg, rgba(40, 50, 100, 0.3) 0%, rgba(30, 35, 70, 0.3) 100%);
    padding: 30px 15px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.step {
    background: rgba(108, 194, 74, 0.08);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #6cc24a;
    text-align: left;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #6cc24a 0%, #7dd95f 100%);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.step h3 {
    margin-bottom: 8px;
    color: #7dd95f;
    font-size: 1.05rem;
    font-weight: 600;
}

.step p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background: #0f1428;
    padding: 30px 15px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.benefit-item {
    padding: 14px;
    border-left: 3px solid #6cc24a;
    background: rgba(108, 194, 74, 0.08);
    border-radius: 5px;
}

.benefit-item h4 {
    color: #7dd95f;
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 600;
}

.benefit-item p {
    color: #a0a0a0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, rgba(40, 50, 100, 0.3) 0%, rgba(30, 35, 70, 0.3) 100%);
    color: white;
    padding: 30px 15px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.testimonials .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.testimonial {
    background: rgba(102, 126, 234, 0.12);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(108, 194, 74, 0.2);
}

.stars {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.testimonial p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.testimonial-author {
    margin-top: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #7dd95f;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, rgba(108, 194, 74, 0.15) 0%, rgba(108, 194, 74, 0.05) 100%);
    color: white;
    padding: 30px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(108, 194, 74, 0.2);
}

.final-cta h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.final-cta p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #a0a0a0;
    line-height: 1.6;
}

.cta-highlights {
    background: rgba(108, 194, 74, 0.1);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid rgba(108, 194, 74, 0.2);
}

.cta-highlights p {
    font-size: 0.9rem;
    margin: 6px 0;
    line-height: 1.7;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    width: 90%;
    max-width: 350px;
    gap: 10px;
    margin: 0 auto;
}

.whatsapp-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    width: 20px;
    height: 20px;
}

.whatsapp-button i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.limited-text {
    font-size: 0.85rem;
    margin-top: 15px;
    opacity: 0.8;
    color: #d0a000;
    font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
    background: #050810;
    color: #7a8a9e;
    padding: 20px 15px;
    text-align: center;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

footer p {
    font-size: 0.85rem;
    margin: 6px 0;
    line-height: 1.5;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 640px) {
    body {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-highlight {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .final-cta h2 {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 600px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    nav {
        display: flex;
    }

    .container {
        max-width: 900px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-highlight {
        font-size: 2.5rem;
    }
}
