/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    background: #000;
    color: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.header-left {
    flex: 0 0 auto;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 0 0 auto;
}

.header-timer {
    text-align: center;
    color: white;
}

.header-timer h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #FFD700;
    font-weight: 600;
}

.header-timer .countdown-timer {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.header-timer .time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFD700;
    color: #000;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
}

.header-timer .time-unit .number {
    font-size: 1.2rem;
    font-weight: 800;
}

.header-timer .time-unit .label {
    font-size: 0.7rem;
    font-weight: 600;
}

.logo-img {
    height: 70px;
    width: auto;
}

.email-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #FFA500;
}

/* Hero Section */
.hero {
    background: url("hero-background.png") no-repeat center center / cover;
    background-color: #000; /* Fallback color */
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay para escurecer a imagem e melhorar o contraste do texto */
    z-index: 1;

}

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

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

.highlight {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #FFA500;
    font-weight: 600;
}

.kit-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.kit-image:hover {
    transform: scale(1.05);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.btn-large {
    padding: 22px 45px;
    font-size: 1.2rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.8); }
    100% { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); }
}

/* Countdown Section */
.countdown-section {
    background: #FFD700;
    color: #000;
    padding: 30px 0;
    text-align: center;
}

.countdown-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    color: #FFD700;
    padding: 20px;
    border-radius: 15px;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.time-unit .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.time-unit .label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}

/* Offer Section */
.offer-section {
    padding: 120px 0;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
}

.offer-grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.offer-column-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-image-large {
    width: 100%;
    max-width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFD700;
    border-radius: 15px;
    background: #f8f9fa;
}

.offer-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.offer-column-right {
    display: flex;
    align-items: center;
}

.offer-card-right {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    width: 100%;
}

.offer-card-right h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    text-align: center;
}

.offer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.offer-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.offer-content {
    padding: 30px;
}

.offer-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.offer-features {
    list-style: none;
    margin-bottom: 30px;
}

.offer-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #333;
}

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

.price-section {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.original-price {
    margin-bottom: 15px;
}

.original-price-text {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
    display: inline-block;
}

.new-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.new-price span {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

.payment-installment-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.installment-text {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.installment-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.installment-total {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
    margin-top: 5px;
}

.payment-pix-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.pix-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.pix-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.min-order {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

/* Bonus Section */
.bonus-section {
    display: flex;
    align-items: stretch;
}

.bonus-card {
    background: url("hero-background.png") no-repeat center center / cover;
    background-color: #000; /* Fallback color */
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.bonus-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FFD700;
}

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

.bonus-image-large {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.bonus-item-text {
    font-size: 1.1rem;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.6;
}

.bonus-item-text strong {
    color: #FFD700;
    font-weight: 700;
}

.bonus-content {
    text-align: center;
}

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

.bonus-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.bonus-item i {
    font-size: 2rem;
    color: #FFD700;
    min-width: 60px;
    text-align: center;
}

.bonus-text {
    flex: 1;
}

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

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

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

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: #000;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-icon-img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    filter: invert(75%) sepia(100%) saturate(1000%) hue-rotate(0deg);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFD700;
}

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

.payment-info {
    text-align: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 30px;
    border-radius: 20px;
    color: #000;
}

.payment-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.payment-option i {
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: url("hero-background.png") no-repeat center center / cover;
    background-color: #000; /* Fallback color */
    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.3rem;
    margin-bottom: 40px;
    color: #FFA500;
}

/* Urgency Section */
.urgency-section {
    background: #dc3545;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.urgency-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: #f8f9fa;
}

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

.testimonials-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 30px;
    background: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

.tab-button.active {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

.testimonials-tabs-content {
    display: flex;
    justify-content: center;
}

.testimonial-tab {
    display: none;
    width: 100%;
    max-width: 600px;
}

.testimonial-tab.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.testimonial-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-content {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: left;
}

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

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
    font-style: italic;
}

.testimonial-author strong {
    color: #000;
    font-weight: 700;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 120px 0;
    background: white;
}

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

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

.guarantee-item {
    text-align: center;
    padding: 40px 20px;
}

.guarantee-item i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.guarantee-item p {
    color: #666;
    line-height: 1.6;
}

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

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

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Estilo especial para botão na seção final-cta */
.final-cta .btn-primary,
.final-cta .btn-large {
    background: #000 !important;
    color: #FFD700 !important;
    border: 2px solid #FFD700 !important;
}

.final-cta .btn-primary:hover,
.final-cta .btn-large:hover {
    background: #1a1a1a !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5) !important;
}

.final-cta .btn-primary i,
.final-cta .btn-large i {
    color: #FFD700 !important;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo .logo-img {
    height: 70px;
}

.footer-contact p {
    margin-bottom: 5px;
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    color: #FFD700;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FFA500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .kit-image {
        max-width: 100%;
        height: auto;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-grid-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .offer-column-left {
        order: 2;
        margin-top: 20px;
    }
    
    .offer-image-large {
        height: 350px;
        border: 3px solid #FFD700;
    }
    
    .offer-main-image {
        padding: 15px;
    }
    
    .offer-column-right {
        order: 1;
    }
    
    .offer-card-right {
        padding: 25px 20px;
    }
    
    .offer-card-right h3 {
        font-size: 1.5rem;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .countdown-timer {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-unit {
        min-width: 55px;
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .time-unit .number {
        font-size: 1.8rem;
    }
    
    .time-unit .label {
        font-size: 0.65rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-name {
        font-size: 0.95rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .section-header h2,
    .benefits-section h2,
    .testimonials-section h2,
    .guarantee-content h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .final-cta-content h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .final-cta .btn-primary,
    .final-cta .btn-large {
        background: #000 !important;
        color: #FFD700 !important;
        border: 2px solid #FFD700 !important;
    }
    
    .btn-primary {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 400px;
    }
    
    .btn-large {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .header .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .header-timer h3 {
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .offer-card .price-section {
        padding: 15px;
    }
    
    .installment-value {
        font-size: 2.2rem;
    }
    
    .pix-value {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
        max-width: 100%;
    }
    
    .hero {
        padding: 70px 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .kit-image {
        max-width: 100%;
        height: auto;
    }
    
    .countdown-timer {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-unit {
        min-width: 45px;
        padding: 8px 6px;
        font-size: 0.8rem;
    }
    
    .time-unit .number {
        font-size: 1.3rem;
    }
    
    .time-unit .label {
        font-size: 0.6rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .offer-card h3 {
        font-size: 1.3rem;
    }
    
    .offer-card ul {
        font-size: 0.9rem;
    }
    
    .offer-card ul li {
        padding: 8px 0;
    }
    
    .price-section {
        padding: 12px;
    }
    
    .original-price-text {
        font-size: 0.95rem;
    }
    
    .installment-text {
        font-size: 0.85rem;
    }
    
    .installment-value {
        font-size: 1.8rem;
    }
    
    .installment-total {
        font-size: 0.75rem;
    }
    
    .pix-text {
        font-size: 0.8rem;
    }
    
    .pix-value {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-card {
        padding: 20px 12px;
        border-radius: 15px;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
    }
    
    .benefit-icon-img {
        width: 50px;
        height: 50px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 15px;
        border-radius: 12px;
    }
    
    .testimonial-name {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .section-header h2,
    .benefits-section h2,
    .testimonials-section h2,
    .guarantee-content h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .final-cta-content h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .final-cta .btn-primary,
    .final-cta .btn-large {
        background: #000 !important;
        color: #FFD700 !important;
        border: 2px solid #FFD700 !important;
    }
    
    .btn-primary,
    .btn-large {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .header-left,
    .header-center,
    .header-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header-timer h3 {
        font-size: 0.75rem;
    }
    
    .email-link {
        font-size: 0.85rem;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .bonus-item i {
        min-width: auto;
    }
    
    .offer-grid-two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-column-left {
        order: 2;
        margin-top: 15px;
    }
    
    .offer-image-large {
        height: 300px;
        border: 3px solid #FFD700;
        border-radius: 12px;
    }
    
    .offer-main-image {
        padding: 12px;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .offer-column-right {
        order: 1;
    }
    
    .offer-card-right {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .offer-card-right h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .offer-features {
        font-size: 0.9rem;
    }
    
    .offer-features li {
        padding: 6px 0;
    }
}   
    .bonus-item-text {
        font-size: 0.95rem;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guarantee-item {
        padding: 15px;
    }
    
    .guarantee-item h3 {
        font-size: 1rem;
    }
    
    .guarantee-item p {
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer p {
        font-size: 0.85rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 2px solid #FFD700;
}

.modal-header h2 {
    color: #000;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.close-modal {
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #000;
}

.modal-body {
    padding: 30px;
}

/* Form Styles */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Styles */
.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #FFD700;
    border-color: #FFD700;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 12px;
}

/* Submit Button */
.form-actions {
    text-align: center;
    margin-top: 20px;
}

.btn-submit {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 2% auto;
        width: 98%;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 15px;
    }
    
    .btn-submit {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
