/* Reset e Base */

/* Definição base da classe cta-button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Design Moderno */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-shapes 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-shapes {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-elements > div {
    position: absolute;
    font-size: 2rem;
    animation: float-elements 8s ease-in-out infinite;
}

.floating-book { top: 15%; left: 80%; animation-delay: 0s; }
.floating-crayon { top: 70%; left: 5%; animation-delay: 2s; }
.floating-star { top: 30%; right: 10%; animation-delay: 4s; }
.floating-heart { bottom: 30%; right: 25%; animation-delay: 6s; }

@keyframes float-elements {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-15px) scale(1.1); opacity: 1; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-content-modern {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title-modern {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-highlight {
    display: block;
    font-size: 2.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.title-main {
    display: block;
    font-size: 3.5rem;
    margin: 0.2rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: normal;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
}

.price-section-modern {
    margin-bottom: 2rem;
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.old-price-modern, .new-price-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price-modern {
    opacity: 0.7;
}

.old-price-modern .price-value {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #ffcccb;
}

.new-price-modern .price-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price-label {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.discount-arrow {
    font-size: 2rem;
    color: #FFD700;
}

.discount-badge {
    background: #ff4757;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 0.3rem;
}

.countdown-modern {
    margin-bottom: 2rem;
}

.countdown-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 0.5rem;
    border-radius: 10px;
    min-width: 60px;
}

.time-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
}

.time-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.time-separator {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
}

.cta-section-modern {
    text-align: center;
}

.cta-primary-modern {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-primary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-primary-modern:hover::before {
    left: 100%;
}

.cta-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.cta-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.cta-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-icon {
    font-size: 1.2rem;
}

/* Seção Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.books-preview {
    position: relative;
}

.book-stack {
    position: relative;
    width: 300px;
    height: 400px;
}

.book {
    position: absolute;
    width: 200px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.book img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-5deg);
}

.book-2 {
    top: 20px;
    left: 50px;
    z-index: 2;
    transform: rotate(5deg);
}

.book-3 {
    top: 40px;
    left: 100px;
    z-index: 1;
    transform: rotate(-3deg);
}

.book:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 4;
}

.preview-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .discount-arrow {
        transform: rotate(90deg);
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .book-stack {
        width: 250px;
        height: 350px;
    }
    
    .book {
        width: 150px;
        height: 210px;
    }
}

.pulse {
    animation: pulse 2s infinite; /* Infinita */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Carousel Section */
.carousel-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.carousel-section h2 {
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 200px;
    height: 280px;
    margin: 0 10px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Benefits Section */
.benefits {
    padding: 50px 0;
    background: white;
}

.benefits h2 {
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
    padding: 50px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.social-proof h2 {
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    /* Fallback para browsers que não suportam backdrop-filter */
    backdrop-filter: blur(10px); /* Pode causar lag */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Detectar suporte */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .testimonial {
        background: rgba(255,255,255,0.3);
    }
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.author {
    font-weight: bold;
    color: #ffff00;
}

.social-numbers {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Offer Section */
.offer {
    padding: 50px 0;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    text-align: center;
}

.offer h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: #333;
    margin-bottom: 30px;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.comparison-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 200px;
}

.comparison-item.highlight {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    transform: scale(1.1);
}

.comparison-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #666;
}

.comparison-item.highlight h4 {
    color: white;
}

.comparison-item .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.comparison-item.highlight .price {
    color: #ffff00;
}

.vs {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.guarantee {
    margin: 40px 0;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.9);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    gap: 10px;
}

.guarantee-badge i {
    color: #4ecdc4;
    font-size: 1.2rem;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 18px 35px;
    margin: 20px 0;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badge {
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq {
    padding: 50px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-size: 1.2rem;
    color: #333;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4ecdc4;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 60px 0;
    /* margin-bottom: -130px; */
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.mega {
    font-size: 1.6rem;
    padding: 30px 60px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .carousel-item {
        min-width: 150px;
        height: 200px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-item.highlight {
        transform: none;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .cta-button.mega {
        font-size: 1.3rem;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
}

/* Nova Seção: Books Showcase */
.books-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.books-showcase::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"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.2"/></svg>') repeat;
    animation: float 8s ease-in-out infinite;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.showcase-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.showcase-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.book-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    opacity: 1;
    transform: translateY(0);
}

.book-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.book-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.book-cover {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.book-card.featured .book-cover {
    height: 400px;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.book-card:hover .book-cover img {
    transform: scale(1.1);
}

.book-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.book-card:hover .book-overlay {
    transform: translateY(0);
}

.book-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.book-card.featured .book-info h3 {
    font-size: 1.8rem;
}

.book-info p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.book-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.showcase-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.books-count {
    font-size: 1.3rem;
    color: white;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.15);
    border: 2px solid white;
    backdrop-filter: blur(10px); /* Múltiplos usos */
    color: white;
    font-size: 1.2rem;
    padding: 18px 35px;
}

.cta-button.secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Responsive para Books Showcase */
@media (max-width: 768px) {
    .books-showcase {
        padding: 60px 0;
    }
    
    .showcase-header h2 {
        font-size: 2.2rem;
    }
    
    .books-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .book-card.featured {
        grid-column: span 1;
    }
    
    .book-cover {
        height: 300px;
    }
    
    .book-card.featured .book-cover {
        height: 320px;
    }
    
    .book-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent 60%, rgba(0,0,0,0.8));
    }
}

@media (max-width: 480px) {
    .books-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .book-cover {
        height: 280px;
    }
    
    .showcase-header h2 {
        font-size: 1.8rem;
    }
}

/* Modal: Todos os Livros */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 95vw;
    max-height: 90vh;
    width: 1200px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(50px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f1f1f1;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
}

.all-books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.modal-book-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.modal-book-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-book-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.modal-book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-book-item:hover .modal-book-cover img {
    transform: scale(1.05);
}

.modal-book-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 10px 10px;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.modal-footer {
    background: #f8f9fa;
    padding: 25px 30px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.modal-footer p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
        max-height: 50vh;
    }
    
    .all-books-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .modal-book-cover {
        height: 160px;
    }
    
    .modal-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .all-books-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .modal-book-cover {
        height: 140px;
    }
    
    .modal-book-title {
        font-size: 0.8rem;
        padding: 15px 8px 8px;
    }
}

/* Special Bonuses Section */
.special-bonuses {
    padding: 50px 0;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    color: white;
    position: relative;
    overflow: hidden;
}

.special-bonuses::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"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    animation: float 20s infinite linear;
}

.bonus-header {
    text-align: center;
    margin-bottom: 50px;
}

.bonus-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bonus-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.bonus-item {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
    animation: pulse 2s infinite;
}

.bonus-cover {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.bonus-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bonus-item:hover .bonus-cover img {
    transform: scale(1.1);
}

.bonus-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.bonus-item:hover .bonus-overlay {
    transform: translateY(0);
}

.bonus-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #ffd93d;
}

.bonus-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.bonus-value {
    background: #ff6b6b;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.bonus-footer {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.bonus-total {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.bonus-highlight {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bonus-header h2 {
        font-size: 2rem;
    }
    
    .bonus-cover {
        height: 250px;
    }
}

/* Sales Notification Popup */
.sales-notification {
    position: fixed;
    top: 20px; /* Posicionado no topo */
    right: 20px; /* Canto superior direito */
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 10000;
    max-width: 300px;
    transform: translateY(-120%); /* Animação vem de cima */
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.sales-notification.show {
    transform: translateY(0);
}

.sales-notification.hidden {
    display: none;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 15px;
    position: relative;
}

.notification-icon {
    font-size: 2rem;
    margin-right: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.notification-text {
    flex: 1;
    line-height: 1.4;
}

.customer-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #fff;
}

.action-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.time-text {
    font-size: 0.8rem;
    opacity: 0.8;
    font-style: italic;
}

.notification-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .sales-notification {
        left: 10px;
        right: 10px;
        max-width: none;
        top: 10px;
    }
    
    .notification-content {
        padding: 12px;
    }
    
    .notification-icon {
        font-size: 1.5rem;
        margin-right: 10px;
    }
    
    .customer-name {
        font-size: 1rem;
    }
}

/* Reseller Opportunity Section */
.reseller-opportunity {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.reseller-opportunity::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="money" patternUnits="userSpaceOnUse" width="20" height="20"><text x="10" y="15" text-anchor="middle" font-size="12" fill="rgba(255,255,255,0.1)">💰</text></pattern></defs><rect width="100" height="100" fill="url(%23money)"/></svg>');
    opacity: 0.3;
}

.reseller-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.reseller-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.reseller-badge .badge-icon {
    font-size: 20px;
}

.reseller-badge .badge-text {
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.reseller-opportunity h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.reseller-subtitle {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
}

.reseller-content {
    position: relative;
    z-index: 2;
}

.reseller-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reseller-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.reseller-item:hover {
    transform: translateY(-5px);
}

.reseller-item.highlight {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    transform: scale(1.05);
    border: 3px solid #ff6b6b;
}

.reseller-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.reseller-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.reseller-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.reseller-item.highlight p {
    color: #333;
    font-weight: 600;
}

.reseller-arrow {
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}

.reseller-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffd700, #4ecdc4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 1));
}

.benefit-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.benefit-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.benefit-card-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.benefit-card-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.reseller-testimonial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.reseller-testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: testimonial-glow 8s ease-in-out infinite;
}

@keyframes testimonial-glow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.testimonial-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-size: 1.4rem;
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    overflow: hidden;
    padding: 3px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 5px 0;
}

.testimonial-author-role {
    font-size: 0.9rem;
    color: #ffd700;
    margin: 0;
    font-weight: 500;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-star {
    color: #ffd700;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: star-twinkle 2s ease-in-out infinite;
}

.testimonial-star:nth-child(2) { animation-delay: 0.2s; }
.testimonial-star:nth-child(3) { animation-delay: 0.4s; }
.testimonial-star:nth-child(4) { animation-delay: 0.6s; }
.testimonial-star:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-twinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.reseller-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.reseller-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.reseller-cta > p {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-button.reseller {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.cta-button.reseller:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
}

.reseller-note {
    color: #ffd700;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(10px);
    }
    60% {
        transform: translateX(5px);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .reseller-opportunity {
        padding: 60px 0;
    }
    
    .reseller-opportunity h2 {
        font-size: 2rem;
    }
    
    .reseller-subtitle {
        font-size: 1.2rem;
    }
    
    .reseller-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reseller-arrow {
        transform: rotate(90deg);
    }
    
    .benefit-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reseller-item.highlight {
        transform: none;
    }
    
    .cta-button.reseller {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reseller-opportunity h2 {
        font-size: 1.7rem;
    }
    
    .reseller-item {
        padding: 20px;
    }
    
    .reseller-benefits,
    .reseller-cta {
        padding: 25px 20px;
    }
}

/* Ultimate CTA Section */
.ultimate-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.ultimate-cta::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"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    animation: sparkle 20s infinite linear;
}

@keyframes sparkle {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.urgency-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.urgency-icon {
    font-size: 3rem;
    animation: pulse 2s infinite;
}

.urgency-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.urgency-subtitle {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 600;
    margin: 0;
}

.final-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.offer-highlight {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    color: #333;
}

.offer-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.offer-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.offer-highlight p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.final-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.benefit-check {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-check:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.countdown-message {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.scarcity-text {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    padding: 20px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    animation: glow 2s infinite alternate;
    margin: 0;
}

@keyframes glow {
    0% { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4); }
    100% { box-shadow: 0 8px 35px rgba(255, 107, 107, 0.8); }
}

.mega-cta-container {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-button.ultimate {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 25px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button.ultimate:hover::before {
    left: 100%;
}

.cta-button.ultimate:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.7);
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
}

.cta-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.cta-main {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
}

.cta-sub {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0;
}

.security-final {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.security-icon {
    font-size: 1.2rem;
}

.final-testimonial {
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
    .ultimate-cta {
        padding: 60px 0;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .urgency-text h2 {
        font-size: 2rem;
    }
    
    .final-offer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .final-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .security-final {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-button.ultimate {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
    
    .cta-main {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .urgency-text h2 {
        font-size: 1.7rem;
    }
    
    .urgency-subtitle {
        font-size: 1.1rem;
    }
    
    .offer-highlight {
        padding: 20px;
    }
    
    .scarcity-text {
        font-size: 1rem;
        padding: 15px 20px;
    }
}