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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

/* Logo */
.logo-container {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: pulse 2s ease-in-out infinite;
}

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

/* Free Badge */
.free-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    animation: fadeInUp 1s ease-out 0.1s both, pulse 2s ease-in-out infinite;
}

.free-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Headline */
.headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.highlight {
    color: #4ade80;
    display: block;
}

/* Subheadline */
.subheadline {
    font-size: 1.2rem;
    color: #f3f4f6;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Benefits */
.benefits {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.benefit-item {
    display: flex;
    align-items: center;
    text-align: left;
    margin-bottom: 20px;
    gap: 15px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1rem;
    color: #1f2937;
    font-weight: 500;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.8s both;
    margin-bottom: 30px;
}

.cta-button:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button svg {
    width: 28px;
    height: 28px;
}

/* Social Proof */
.social-proof {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 25px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 1s both;
}

.social-proof p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 20px;
    min-width: 120px;
}

.badge-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

.badge p {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

/* Brands Section */
.brands-section {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.brands-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    justify-items: center;
}

.brand-name {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.brand-name:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.brands-footer {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-top: 25px;
    font-style: italic;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 18px 30px;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .benefit-item p {
        font-size: 0.95rem;
    }

    .trust-badges {
        gap: 10px;
    }

    .badge {
        min-width: 100px;
        padding: 12px 15px;
    }

    .free-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 10px;
    }

    .brand-name {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.75rem;
    }

    .subheadline {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 16px 25px;
        width: 100%;
    }

    .benefits {
        padding: 25px 20px;
    }
}
