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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #cce7fb;
    color: #000;
    overflow-x: hidden;
}

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

.hero {
    text-align: center;
    padding: 20px 0 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 200px;
    margin-bottom: 20px;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

.subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    animation-play-state: paused;
}

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

.whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
    text-align: center;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
    }
}

.redirect-text {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.clock-icon {
    width: 16px;
    height: 16px;
}

.brands {
    padding: 20px 0;
    overflow: hidden;
}

.brands-title {
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 24px;
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.brands-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.brands-track img:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 13px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.footer a {
    color: #003cff;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .title {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 16px 20px;
    }
    
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
    
    .check-icon {
        width: 20px;
        height: 20px;
    }
}
