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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 100%;
    margin: 0;
    background: #ffffff;
    border-radius: 0;
    padding: 20px;
    box-shadow: none;
    text-align: center;
    position: relative;
    min-height: 100vh;
}

.header {
    margin-bottom: 20px;
}

.star {
    font-size: 40px;
    margin-bottom: 10px;
}

.flag-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.flag-usa {
    width: 120px;
    height: 80px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flag-stripes {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stripe {
    flex: 1;
}

.stripe.red {
    background-color: #B22234;
}

.stripe.white {
    background-color: #FFFFFF;
}

.flag-canton {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 54%;
    background-color: #3C3B6E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stars {
    color: white;
    font-size: 4px;
    line-height: 1.2;
    text-align: center;
}

.expiry-notice {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.time-box {
    background: #dc3545;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    min-width: 60px;
}

.separator {
    color: #dc3545;
    font-size: 24px;
    font-weight: bold;
}

.warning {
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #ffeaa7;
}

.main-title {
    margin-bottom: 20px;
}

.main-title h1 {
    font-size: 24px;
    line-height: 1.3;
    color: #333;
    font-weight: 700;
}

.highlight-blue {
    color: #4fc3f7;
    font-weight: 800;
}

.highlight-green {
    color: #66bb6a;
    font-weight: 800;
}

.subtitle {
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.subtitle span {
    color: #555;
    font-size: 16px;
    line-height: 1.4;
}

.testimonial {
    margin-bottom: 25px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.testimonial:hover .testimonial-image {
    transform: scale(1.02);
}

.testimonial-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    animation: pulse 2s infinite;
}

.testimonial-badge i {
    font-size: 14px;
}

.cta-button {
    margin-bottom: 15px;
}

.cta-button.secondary {
    margin-bottom: 25px;
    margin-top: 20px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 20px;
}

.free-label {
    color: #ffa726;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}



/* Responsividade */
@media (max-width: 480px) {
    .container {
        margin: 0;
        padding: 15px;
    }
    
    .main-title h1 {
        font-size: 20px;
    }
    
    .time-box {
        padding: 12px 15px;
        font-size: 20px;
        min-width: 50px;
    }
    
    .whatsapp-btn {
        padding: 15px 25px;
        font-size: 14px;
    }
    
    body {
        padding: 0;
        margin: 0;
    }
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}

.warning {
    animation: pulse 3s infinite;
}

.expiry-notice {
    animation: pulse 2.5s infinite;
}