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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #00D563 0%, #00B84F 100%);
    color: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 213, 99, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Navigation Menu */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-links a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .header-content {
        gap: 10px;
    }
}

.logo img {
    height: 40px;
}

.partner-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
}

#countdown {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.urgency-timer i {
    color: #FFD700;
    animation: pulse 1s infinite;
}

.btn-primary {
    background: white;
    color: #00D563;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00D563 0%, #00B84F 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF4444;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.urgency-badge i {
    animation: bounce 1s infinite;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.highlight {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.95;
}

.price-highlight {
    color: #FFD700;
    font-weight: 700;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.benefit i {
    color: #FFD700;
    font-size: 1.2rem;
}

.btn-cta {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #333;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    margin-bottom: 30px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.social-proof {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #FFD700;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 2;
}

.hero-bg-img.active {
    opacity: 1;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(45deg, #FF4444, #CC0000);
    color: white;
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.urgency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.urgency-icon i {
    font-size: 1.5rem;
    animation: shake 0.5s infinite;
}

.stock-count {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.1rem;
}

.urgency-timer-small {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 15px;
    font-weight: 600;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.exclusive-banner {
    background: linear-gradient(45deg, #E91E63, #C2185B);
    margin: 30px 0;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    animation: pulse 2s infinite;
}

.exclusive-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exclusive-banner-content i {
    color: #FFD700;
    animation: sparkle 1.5s ease-in-out infinite alternate;
}

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

@keyframes sparkle {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border-color: #00D563;
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF4444;
    color: white;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FF4444, #CC0000);
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.exclusive-badge {
    background: linear-gradient(45deg, #E91E63, #C2185B);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    margin: 10px 0;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.product-image {
    text-align: center;
    margin-bottom: 20px;
}

.product-image img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.feature {
    background: #f0f8ff;
    color: #00D563;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing {
    text-align: center;
    margin-bottom: 20px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.current-price {
    color: #00D563;
    font-size: 2rem;
    font-weight: 700;
    margin: 5px 0;
}

.installments {
    color: #666;
    font-size: 14px;
}

.stock-info {
    margin-bottom: 20px;
}

.stock-bar {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.stock-fill {
    background: linear-gradient(45deg, #FF4444, #CC0000);
    height: 100%;
    transition: width 0.3s ease;
}

.stock-text {
    color: #FF4444;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: block;
}

.btn-product {
    width: 100%;
    background: linear-gradient(45deg, #00D563, #00B84F);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 213, 99, 0.4);
    color: white;
    text-decoration: none;
}

/* Compare Section */
.compare-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.compare-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.compare-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
}

.compare-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.compare-table th,
.compare-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.compare-table th {
    background: linear-gradient(135deg, #00D563 0%, #00b84f 100%);
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

.feature-column {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    text-align: left !important;
    font-weight: 600;
    width: 200px;
}

.product-column {
    width: 150px;
}

.product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.product-header img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.product-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.product-header .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
}

.feature-name {
    background: #f8f9fa !important;
    text-align: left !important;
    font-weight: 600;
    color: #2c3e50;
}

.feature-value {
    color: #495057;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.feature-yes {
    color: #00D563;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.feature-no {
    color: #dc3545;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-row {
    background: #f8f9fa;
}

.action-row td {
    border-bottom: none;
    padding: 25px 15px;
}

.btn-compare {
    background: linear-gradient(135deg, #00D563 0%, #00b84f 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 213, 99, 0.3);
}

.btn-compare:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 213, 99, 0.4);
    color: white;
    text-decoration: none;
}

.compare-help {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.help-card {
    background: linear-gradient(135deg, #00D563 0%, #00b84f 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 213, 99, 0.3);
}

.help-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.help-card h3 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.help-card p {
    margin: 0 0 20px 0;
    opacity: 0.9;
    line-height: 1.5;
}

.btn-help {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.btn-help:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive Compare Table */
@media (max-width: 768px) {
    .compare-section {
        padding: 60px 0;
    }
    
    .compare-section h2 {
        font-size: 2rem;
    }
    
    .compare-table th,
    .compare-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .product-header img {
        width: 40px;
        height: 40px;
    }
    
    .product-header h3 {
        font-size: 1rem;
    }
    
    .product-header .price {
        font-size: 1rem;
    }
    
    .btn-compare {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .help-card {
        margin: 0 20px;
        padding: 25px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00D563, #00B84F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #00D563;
    font-size: 14px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #00D563 0%, #00B84F 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.urgency-final {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.urgency-final .urgency-icon i {
    font-size: 2rem;
    color: #FFD700;
    animation: pulse 1s infinite;
}

.countdown-final {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.btn-final-cta {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #333;
    border: none;
    padding: 20px 50px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    margin-bottom: 30px;
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.guarantee {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.guarantee i {
    color: #FFD700;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-info a {
    color: #00D563;
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #00D563;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 8px 0;
        max-height: 60px;
        overflow: hidden;
    }
    
    .header-content {
        flex-direction: row;
        gap: 5px;
        align-items: center;
        justify-content: space-between;
        min-height: auto;
    }
    
    .logo {
        flex-direction: row;
        gap: 3px;
        text-align: left;
        flex-shrink: 0;
    }
    
    .logo img {
        height: 24px;
    }
    
    .partner-badge {
        display: none;
    }
    
    .header-cta {
        flex-direction: row;
        gap: 5px;
        width: auto;
        align-items: center;
        flex-shrink: 0;
    }
    
    .urgency-timer {
        font-size: 10px;
        padding: 3px 6px;
        text-align: center;
        white-space: nowrap;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 12px;
        width: auto;
        min-width: 120px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        order: 2;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .urgency-final {
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-image {
        display: block;
        position: relative;
        text-align: center;
    }
    
    .hero-background-images {
        position: relative;
        width: 100%;
        height: 300px;
        border-radius: 20px;
        overflow: hidden;
    }
    
    .hero-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        display: block !important;
        visibility: visible !important;
    }
    
    .hero-bg-img.active {
        opacity: 1 !important;
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 5px 0;
        max-height: 50px;
    }
    
    .header-content {
        gap: 3px;
    }
    
    .logo img {
        height: 20px;
    }
    
    .partner-badge {
         display: none;
     }
    
    .urgency-timer {
        font-size: 9px;
        padding: 2px 4px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .btn-final-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}