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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

/* Countdown Header */
.countdown-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.time-unit span:first-child {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.time-unit .label {
    font-size: 0.7rem;
    opacity: 0.9;
}

.separator {
    font-size: 1.5rem;
    font-weight: 800;
    animation: blink 1s infinite;
}

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

.countdown-action {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.logo {
    height: 64px;
    display: block;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #166534;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.highlight-gold {
    color: #d97706;
}

.highlight-green {
    color: #16a34a;
}

.hero-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #374151;
}

.check-icon {
    color: #16a34a;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-button {
    background: #16a34a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
    display: block;          /* ocupa a linha toda */
    margin: 1.5rem auto;     /* centraliza horizontalmente */
    text-align: center;      /* garante centralização do texto */
    text-decoration: none;
}

.cta-button:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.cta-button.primary {
    background: #16a34a;
}

.cta-button.secondary {
    background: white;
    color: #166534;
    border: 2px solid #16a34a;
}

.cta-button.secondary:hover {
    background: #f0fdf4;
}

.cta-button.outline {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.cta-button.extra-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.price-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid #16a34a;
}

.price-old {
    font-size: 0.9rem;
    color: #6b7280;
    text-decoration: line-through;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #16a34a;
    line-height: 1;
}

.price-label {
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 600;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.thoughts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.thought-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ef4444;
    text-align: center;
}

.thought-card p {
    font-style: italic;
    color: #374151;
    font-size: 1.1rem;
    font-weight: 500;
}

.understanding-text {
    text-align: center;
    margin-bottom: 3rem;
}

.understanding-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.understanding-text p {
    font-size: 1.2rem;
    color: #6b7280;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pain-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
}

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

.pain-card p {
    color: #374151;
    font-size: 1.1rem;
}

.truth-reveal {
    text-align: center;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.2);
}

.truth-text {
    font-size: 1.3rem;
    line-height: 1.6;
}

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

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.solution-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.solution-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #16a34a;
    margin-bottom: 1.5rem;
}

.solution-text p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.understanding-list {
    margin: 2rem 0;
}

.understanding-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #374151;
}

.highlight-text {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #16a34a;
    font-weight: 600;
    color: #166534;
}

/* Expert Section */
.expert-section {
    padding: 80px 0;
    background: #f0fdf4;
}

.expert-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expert-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: block;
}

.expert-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 0.5rem;
}

.expert-title {
    font-size: 1.2rem;
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

blockquote {
    font-size: 1.2rem;
    color: #374151;
    font-style: italic;
    border-left: 4px solid #16a34a;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    line-height: 1.7;
}

.expert-credentials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-size: 1.1rem;
}

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

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

.benefit-card {
    background: #f0fdf4;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
    border-color: #16a34a;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 1rem;
}

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

/* Offer Content Section */
.offer-content-section {
    padding: 80px 0;
    background: #f9fafb;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.content-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 1rem;
}

.content-card p {
    color: #374151;
    line-height: 1.6;
}

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

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #374151;
    transition: transform 0.3s ease;
}

.target-item:hover {
    transform: translateX(5px);
}

.target-icon {
    color: #16a34a;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Final Offer */
.final-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
}

.offer-card {
    background: white;
    color: #374151;
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.offer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offer-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #166534;
    margin-bottom: 1rem;
}

.offer-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.offer-list {
    margin-bottom: 3rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #374151;
}

.price-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 12px;
}

.price-comparison {
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1.5rem;
    color: #6b7280;
    text-decoration: line-through;
    margin-right: 1rem;
}

.discount-text {
    font-size: 1.2rem;
    color: #374151;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: #16a34a;
    line-height: 1;
    margin: 1rem 0;
}

.payment-options {
    font-size: 1.1rem;
    color: #6b7280;
}

.guarantee-section {
    margin-top: 2rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #16a34a;
}

.guarantee-icon {
    font-size: 2rem;
    color: #16a34a;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.guarantee-text strong {
    color: #166534;
    font-size: 1.1rem;
}

.guarantee-text span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #16a34a;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: #166534;
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.final-features {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #dcfce7;
}

/* Footer */
.footer {
    background: #374151;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    height: 48px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 1.5rem;
}

.modal-content p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .countdown-text,
    .countdown-action {
        font-size: 0.8rem;
    }
    
    .hero-content,
    .solution-content,
    .expert-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .thoughts-grid,
    .pain-points,
    .benefits-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features,
    .final-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .expert-credentials {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-button.extra-large {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .hero,
    .problem-section,
    .solution-section,
    .expert-section,
    .benefits-section,
    .offer-content-section,
    .target-section,
    .final-offer,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .offer-card,
    .expert-card {
        padding: 2rem;
    }
    
    .benefit-card,
    .content-card {
        padding: 2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    z-index: 1001;
    transition: width 0.1s ease;
}



/* Hero Section - New Cards */
.hero-benefits-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-card-small {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.1);
    border: 2px solid #f0fdf4;
    transition: all 0.3s ease;
}

.benefit-card-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.15);
    border-color: #16a34a;
}

.benefit-icon-small {
    font-size: 1.5rem;
    flex-shrink: 0;
    background: #f0fdf4;
    padding: 0.5rem;
    border-radius: 8px;
}

.benefit-card-small span:last-child {
    font-weight: 600;
    color: #166534;
    font-size: 1rem;
}

.hero-features-cards {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-card-small {
    background: #f0fdf4;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #166534;
    font-weight: 600;
    border: 1px solid #dcfce7;
}

/* Section Header Special */
.section-header-special {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
}

.special-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #166534;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #166534, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.special-subtitle {
    font-size: 1.5rem;
    color: #15803d;
    font-weight: 600;
    font-style: italic;
}

/* Target Section Premium */
.target-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.target-card-premium {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid #f0fdf4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.target-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

.target-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
    border-color: #16a34a;
}

.target-icon-premium {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    background: #f0fdf4;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid #dcfce7;
}

.target-card-premium h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.target-card-premium p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

/* Offer Items Premium */
.offer-items-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.offer-item-premium {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    position: relative;
}

.offer-item-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
    border-color: #16a34a;
    background: #f0fdf4;
}

.offer-item-premium.highlight {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #16a34a;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.15);
}

.offer-item-premium.highlight::before {
    content: '⭐ DESTAQUE';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #16a34a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.offer-item-icon {
    font-size: 2.5rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
    border: 2px solid #f0fdf4;
}

.offer-item-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.offer-item-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .special-title {
        font-size: 2.2rem;
    }
    
    .special-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header-special {
        padding: 2rem 1.5rem;
    }
    
    .hero-features-cards {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .target-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .target-card-premium {
        padding: 2rem;
    }
    
    .target-icon-premium {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .offer-item-premium {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .offer-item-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .special-title {
        font-size: 1.8rem;
    }
    
    .special-subtitle {
        font-size: 1rem;
    }
    
    .benefit-card-small {
        padding: 1rem;
    }
    
    .target-card-premium h4 {
        font-size: 1.2rem;
    }
    
    .offer-item-content h4 {
        font-size: 1.1rem;
    }
}

