/* Main Styles for BlackPet Pro Library Landing Page */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #222;
}

.main-headline {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subheadline {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.section-headline {
    font-size: 2.5rem;
    text-align: center;
    margin: 30px 0;
    position: relative;
    padding-bottom: 15px;
}

.section-headline:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #888;
}

.highlight {
    color: #ff6b6b;
    font-weight: 700;
}

/* Exploding Words - Movido para conversion-elements.css para evitar duplicação */

.urgent-verb {
    color: #ff6b6b;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.urgent-verb:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff6b6b;
}

/* Keyframes pulse-word removido - sem animação nas palavras */

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #ff6b6b;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 20px 40px;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    }
}

/* Investment CTA Button - Ultra Chamativo */
.investment-cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ffb347 100%);
    position: relative;
    overflow: hidden;
    font-size: 1.3rem;
    padding: 20px 40px;
    border: 3px solid #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6), 
                0 0 30px rgba(255, 107, 107, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: investment-pulse 1.5s infinite, glow-pulse 2s infinite;
    letter-spacing: 1px;
}

.investment-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.investment-cta:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7043 50%, #ffa726 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.8),
                0 0 50px rgba(255, 107, 107, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.investment-cta.large {
    font-size: 1.6rem;
    padding: 22px 50px;
    border-width: 4px;
}

@keyframes investment-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6),
                    0 0 30px rgba(255, 107, 107, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.8),
                    0 0 50px rgba(255, 107, 107, 0.7),
                    0 0 80px rgba(255, 179, 71, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

@keyframes shine {
    0% {
        left: -50%;
        top: -50%;
    }
    100% {
        left: 150%;
        top: 150%;
    }
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Countdown Timer Bar */
.countdown-timer-bar {
    background-color: #222;
    color: #fff;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.timer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.timer-label {
    font-weight: 700;
    font-size: 0.9rem;
}

.timer-display {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #ff6b6b;
}

.timer-message {
    font-weight: 600;
    font-size: 0.85rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #16213e 100%);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(83, 52, 131, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(15, 52, 96, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-images {
    margin: 40px 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.grid-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.grid-image:hover {
    transform: scale(1.03);
}

/* Premium Desktop Layout (>1024px) */
@media (min-width: 1024px) {
    .hero {
        padding: 100px 0 80px;
        text-align: left;
    }
    
    .hero-content {
        max-width: 1300px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    
    .hero-text {
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .hero-subheading, .hero h2 {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 25px;
    }
    
    .hero-images {
        order: 2;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 0;
    }
    
    .grid-image {
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }
    
    .cta-primary {
        text-align: left;
        margin-top: 30px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 16px 40px;
        align-self: flex-start;
    }
    
    .cta-button-premium {
        font-size: 1rem;
        padding: 18px 30px;
    }
    
    .button-text-desktop {
        display: none;
    }
    
    .button-text-mobile {
        display: inline;
    }
    
    .cta-note {
        text-align: left;
        font-size: 1rem;
        margin-top: 18px;
    }
}

.cta-primary {
    margin-top: 40px;
}

.cta-note {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Visitor Counter - Flutuante e Discreto */
.visitor-counter {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    color: #fff;
    padding: 10px 14px;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
    z-index: 9999 !important;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    max-width: 280px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.visitor-counter:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.visitor-counter.hidden {
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
}

.visitor-counter-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.visitor-icon {
    font-size: 1.1rem;
    color: #ff6b6b !important;
    flex-shrink: 0;
    animation: pulse-icon 2s ease-in-out infinite;
}

.visitor-icon i {
    color: #ff6b6b !important;
}

@keyframes pulse-icon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.visitor-text {
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.3;
}

.visitor-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

#visitor-count {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Nightmare Bullet List */
.nightmare-list {
    max-width: 900px;
    margin: 0 auto 50px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nightmare-subheading {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.nightmare-bullets {
    list-style: none;
}

.nightmare-bullets li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.nightmare-bullets li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: bold;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.problem-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.problem-image {
    border-radius: 8px;
    margin-bottom: 20px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.problem-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.pain-validation {
    text-align: center;
    margin-top: 50px;
}

.pain-validation h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin: 50px 0;
    padding: 40px 20px;
}

.stat-item {
    text-align: center;
    max-width: 280px;
    padding: 30px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.3s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.5s;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.15);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.stat-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 500;
}

.emotional-hook {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.emotional-image {
    width: 40%;
    border-radius: 8px;
    margin-right: 30px;
}

.emotional-text {
    width: 60%;
}

.emotional-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #333;
}

/* Failed Solutions Section */
.failed-solutions {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.solution-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.solution-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.competitor-x {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.2rem;
}

.crossed-off {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.crossed-text {
    text-decoration: line-through;
    color: #999;
    margin-bottom: 8px;
    position: relative;
}

.crossed-text:before {
    content: '✖';
    color: #ff0000;
    margin-right: 8px;
}

.transition-message {
    text-align: center;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.transition-message h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.transition-message p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Solution Introduction Section */
.solution-intro {
    padding: 80px 0;
    background-color: #fff;
}

.solution-subheadline {
    font-size: 1.6rem;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 50px;
    color: #666;
}

.product-showcase {
    display: flex;
    align-items: center;
    margin: 50px 0;
}

.product-image {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-right: 5%;
}

.solution-description {
    width: 50%;
}

.unique-mechanism {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.unique-mechanism h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.mechanism-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.mechanism-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.mechanism-result {
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Media Authority Section */
.media-authority {
    margin-top: 60px;
    text-align: center;
}

.media-authority h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.media-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.media-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.testimonials {
    margin-top: 80px;
}

.testimonials h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.testimonial-content p:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #ff6b6b;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
}

.rating {
    color: #ffc107;
}

/* Product Details Section */
.product-details {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.ebook-showcase {
    display: flex;
    align-items: center;
    margin: 50px 0;
    gap: 5%;
}

/* eBooks Carousel */
.ebooks-carousel {
    width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.ebook-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.carousel-counter {
    position: absolute;
    bottom: 10px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.current-slide {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 800;
}

/* Pause animation on hover */
.ebooks-carousel:hover .carousel-track {
    transition-duration: 1s;
}

.ebooks-image {
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-right: 5%;
}

.value-proposition {
    width: 45%;
}

.value-proposition h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.ebook-count {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #666;
}

.retail-value {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

.total-value {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 10px;
}

/* Quick Wins Section */
.quick-wins {
    margin: 60px 0;
    text-align: center;
}

.quick-wins h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #333;
}

.wins-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.win-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: transform 0.3s ease;
}

.win-item:hover {
    transform: translateY(-5px);
}

.win-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.win-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.content-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ff6b6b;
}

.category-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.category-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

/* Comparison Table Section */
.comparison-section {
    padding: 80px 0;
    background-color: #fff;
}

.comparison-table-container {
    max-width: 900px;
    margin: 40px auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.comparison-table th {
    background-color: #ff6b6b;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    text-align: left;
    background-color: #333;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table .check {
    color: #28a745;
    font-size: 1.5rem;
    font-weight: bold;
}

.comparison-table .x {
    color: #dc3545;
    font-size: 1.5rem;
    font-weight: bold;
}

.comparison-table .partial {
    color: #ffc107;
    font-size: 1rem;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tr:hover {
    background-color: #f5f5f5;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.bonus-header {
    text-align: center;
    margin-bottom: 50px;
}

.bonus-subheadline {
    font-size: 1.6rem;
    color: #ff6b6b;
    margin-top: -20px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bonus-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff6b6b;
    color: #fff;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom-left-radius: 10px;
}

.bonus-item:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.bonus-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.bonus-value-tag {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.original-value {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.now-free {
    background-color: #28a745;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
}

.bonus-total {
    text-align: center;
    margin-top: 50px;
    font-size: 1.3rem;
    font-weight: 700;
}

.robbery-deal {
    display: inline-block;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.robbery-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #ff0000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: rotate(15deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

/* Pricing Philosophy Section */
.pricing-philosophy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.pricing-philosophy-section .section-headline {
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-intro {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 700px;
}

.philosophy-intro h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.philosophy-intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.value-breakdown {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin: 20px auto 0;
}

.value-breakdown li {
    font-size: 1.1rem;
    margin: 12px 0;
    padding-left: 10px;
}

.philosophy-twist {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 40px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.twist-headline {
    color: #ff6b6b;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.twist-explanation {
    font-size: 1.3rem;
    text-align: center;
    margin: 20px 0;
    font-weight: 600;
}

.twist-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.philosophy-why {
    margin: 40px 0;
}

.philosophy-why h3 {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.reason-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.reason-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 15px;
    opacity: 0.5;
}

.reason-item h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.reason-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.philosophy-cta {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.philosophy-cta h3 {
    color: #222;
    font-size: 2rem;
    margin-bottom: 20px;
}

.bottom-line-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 20px 0;
}

.trust-statement {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
    margin-top: 20px;
    font-style: italic;
}

.philosophy-button-container {
    margin-top: 30px;
    text-align: center;
}

.philosophy-button-container .cta-button {
    display: inline-block;
    margin-bottom: 20px;
}

.revolutionary-pricing-intro {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.pricing-philosophy {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pricing-story {
    font-size: 1.2rem;
    margin: 15px 0;
    line-height: 1.8;
}

.value-emphasis {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1em;
}

.research-value {
    font-size: 1.1rem;
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.value-headline,
.choose-headline {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #222;
}

.choose-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 15px 0;
}

.fairness-note {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    margin-top: 15px;
    font-style: italic;
}

.recap-philosophy {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.popup-price-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin: 15px 0;
}

.popup-urgency {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
}

/* Urgency & Scarcity Section */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/dog_at_the_veterinarian.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.urgency-section .section-headline {
    color: #fff;
}

.urgency-section .section-headline:after {
    background-color: #fff;
}

/* Stock Counter */
.stock-counter {
    margin: 40px auto;
    max-width: 600px;
}

.stock-bar-container {
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.stock-bar {
    height: 100%;
    background-color: #ff6b6b;
    width: 37%; /* Initial width, will be updated by JS */
    transition: width 0.5s ease;
}

.stock-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.countdown-container {
    margin: 40px 0;
}

.countdown-label {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    min-width: 100px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.scarcity-notice {
    margin: 40px 0;
}

.copies-left {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.critical-stock {
    animation: pulse-urgent 1.5s ease-in-out infinite;
}

.final-warning {
    animation: shake-urgent 0.5s ease-in-out infinite;
}

.sold-out {
    color: #ff0000;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    animation: blink 1s ease-in-out infinite;
}

@keyframes pulse-urgent {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shake-urgent {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.price-warning {
    font-size: 1.2rem;
    color: #ff6b6b;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-box {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    background-color: #ff6b6b;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.pricing-subheader {
    font-size: 1.2rem;
}

.pricing-content {
    padding: 30px;
    color: #333;
}

.pricing-value {
    text-align: center;
    margin-bottom: 30px;
}

.original-price, .bonus-price, .total-original {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.current-price {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.exclusive-badge {
    background-color: #ff6b6b;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.today-only {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.discount-percentage {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 10px;
}

.savings-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05em;
    line-height: 1.6;
}

.features-list li i {
    color: #e74c3c;
    font-size: 1.2em;
    margin-top: 3px;
    flex-shrink: 0;
}

.features-list li strong {
    color: #2c3e50;
    font-weight: 700;
}

.transformation-promise {
    text-align: center;
    font-size: 1.2em;
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
    line-height: 1.5;
    font-weight: 600;
    color: #2c3e50;
}

/* Premium CTA Section with Spotlight Effect */
.pricing-cta-premium {
    text-align: center;
    margin-top: 40px;
    position: relative;
}

.premium-cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.95) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 107, 107, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    background-clip: padding-box;
    animation: spotlight-pulse 3s ease-in-out infinite;
}

@keyframes spotlight-pulse {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.15),
            0 0 30px rgba(255, 107, 107, 0.2),
            0 0 0 1px rgba(255, 107, 107, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow: 
            0 25px 70px rgba(0, 0, 0, 0.2),
            0 0 50px rgba(255, 107, 107, 0.3),
            0 0 0 2px rgba(255, 107, 107, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
}

/* Premium Button with Glow Effect */
.cta-button-premium {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 20px 45px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 10px 30px rgba(255, 107, 107, 0.5),
        0 0 0 0 rgba(255, 107, 107, 0.5);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: button-pulse-strong 1.5s ease-in-out infinite;
    letter-spacing: 1px;
}

.button-text-desktop,
.button-text-mobile {
    position: relative;
    z-index: 2;
}

.button-text-desktop {
    display: inline;
}

.button-text-mobile {
    display: none;
}

.cta-button-premium:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff3838 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(255, 107, 107, 0.6),
        0 0 25px rgba(255, 107, 107, 0.7);
    animation: none;
}

@keyframes button-pulse-strong {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 10px 30px rgba(255, 107, 107, 0.5),
            0 0 0 0 rgba(255, 107, 107, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 15px 40px rgba(255, 107, 107, 0.6),
            0 0 0 20px rgba(255, 107, 107, 0);
    }
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine-sweep 3s infinite;
}

@keyframes shine-sweep {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.pricing-cta {
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.payment-icon {
    height: 30px;
    width: auto;
}

.secure-checkout {
    font-size: 0.9rem;
    color: #666;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: #fff;
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
}

.triple-guarantee {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.guarantee-badge {
    margin-right: 40px;
    flex-shrink: 0;
}

.guarantee-badge-img {
    width: 150px;
    height: auto;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.guarantee-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
}

.guarantee-intro {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f0f8ff;
    border-left: 4px solid #007bff;
    border-radius: 5px;
}

.guarantee-statement {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.guarantee-items {
    margin-bottom: 40px;
}

.guarantee-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.guarantee-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.guarantee-item h3 i {
    color: #28a745;
    margin-right: 10px;
}

.refund-cta-section {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.refund-intro {
    font-size: 1.15rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.refund-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.refund-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #667eea;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.refund-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f0f0f0;
}

.refund-button i {
    font-size: 1.2rem;
}

.terms-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: underline;
    font-size: 0.95rem;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: #f0f0f0;
    transform: translateX(5px);
}

.terms-link i {
    font-size: 1rem;
}

.transparency-note {
    margin-top: 20px;
    font-size: 1rem;
    font-style: italic;
    opacity: 0.95;
}

.transparency-note i {
    color: #ff6b6b;
    margin-right: 8px;
}

.guarantee-conclusion {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: #f9f9f9;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 1.2rem;
    color: #ff6b6b;
}

.faq-answer {
    padding: 20px;
    display: none;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background-color: #fff;
}

.final-cta-content {
    display: flex;
    align-items: center;
    margin: 50px 0;
}

.harmony-image {
    width: 45%;
    margin-right: 5%;
}

.harmony-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.final-cta-text {
    width: 50%;
}

.final-cta-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.final-value-recap {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.recap-item {
    padding: 20px;
    border-radius: 10px;
    min-width: 200px;
    text-align: center;
}

.recap-item h3 {
    margin-bottom: 0;
}

.highlight-box {
    background-color: #ff6b6b;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.highlight-box h3 {
    color: #fff;
}

.final-cta-button {
    text-align: center;
}

.final-guarantee {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #666;
}

/* Decision Power Section - Escolha Certa vs Errada */
.decision-power-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px 20px;
}

.decision-headline {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #222;
}

.choice-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.choice-box {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.choice-box:hover {
    transform: translateY(-5px);
}

.wrong-choice {
    border: 3px solid #dc3545;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.right-choice {
    border: 3px solid #28a745;
    background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
    box-shadow: 0 10px 40px rgba(40, 167, 69, 0.2);
}

.choice-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.wrong-icon {
    color: #dc3545;
    animation: shake 2s infinite;
}

.right-icon {
    color: #28a745;
    animation: pulse-check 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

@keyframes pulse-check {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

.choice-box h4 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #222;
}

.choice-list {
    list-style: none;
    margin-bottom: 25px;
}

.choice-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.5;
}

.wrong-choice .choice-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-size: 1.3rem;
    font-weight: bold;
}

.right-choice .choice-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 1.3rem;
    font-weight: bold;
}

.choice-result {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 20px;
}

.wrong-result {
    background-color: #dc3545;
    color: #fff;
}

.right-result {
    background-color: #28a745;
    color: #fff;
}

.vs-divider {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #666;
    padding: 20px;
    position: relative;
}

.vs-divider span {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    display: inline-block;
}

.decision-question {
    text-align: center;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.main-question {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.true-question {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.highlight-text {
    color: #ff6b6b;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1em;
}

.power-statement {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    margin: 30px 0;
}

.power-statement h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.power-statement p {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .choice-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs-divider {
        padding: 10px 0;
    }
    
    .vs-divider span {
        padding: 10px 20px;
        font-size: 1.5rem;
    }
    
    .choice-box {
        padding: 25px 20px;
    }
    
    .choice-icon {
        font-size: 3rem;
    }
    
    .choice-box h4 {
        font-size: 1.3rem;
    }
    
    .choice-list li {
        font-size: 0.95rem;
        padding-left: 30px;
    }
    
    .decision-headline {
        font-size: 1.6rem;
    }
    
    .main-question {
        font-size: 1.2rem;
    }
    
    .true-question {
        font-size: 1.4rem;
    }
    
    .power-statement h3 {
        font-size: 1.5rem;
    }
    
    .power-statement p {
        font-size: 1rem;
    }
}

/* Trust Seals */
.trust-seals {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.seal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.seal-item i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 10px;
}

.seal-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

/* Footer Section */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #ccc;
}

.footer-links ul {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.footer-trust {
    text-align: right;
}

.trust-badges {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.trust-badges i {
    margin-left: 15px;
    color: #ccc;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* Exit Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 15px;
    overflow-y: auto;
}

.popup-content {
    background-color: #fff;
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin: auto;
    max-height: 95vh;
    overflow-y: auto;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
    z-index: 10;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.close-popup:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.popup-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #fff;
    padding: 18px 20px;
    text-align: center;
}

.popup-header h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
}

.popup-header h3 {
    font-size: 1rem;
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
}

.popup-body {
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.popup-image {
    width: 100%;
}

.popup-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.popup-offer {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-price {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

.popup-price-new {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b6b;
    margin: 8px 0;
    line-height: 1.3;
}

.popup-urgency {
    font-size: 0.9rem;
    color: #666;
    margin: 6px 0 12px;
    line-height: 1.4;
}

.popup-countdown {
    margin-bottom: 15px;
    background: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
}

.popup-countdown p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 6px;
}

.mini-countdown {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6b6b;
    letter-spacing: 1px;
}

.popup-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 25px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
    margin: 8px 0;
    line-height: 1.3;
}

.popup-button:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff3838 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.popup-guarantee {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.3;
}

.popup-testimonial {
    grid-column: 1 / -1;
    margin-top: 10px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    font-style: italic;
    border-left: 3px solid #ff6b6b;
}

.popup-testimonial p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 8px;
}

.popup-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-style: normal;
}

.popup-author span {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.popup-rating {
    color: #ffc107;
    font-size: 0.95rem;
}

.popup-footer {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 12px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #ddd;
}

.popup-disclaimer {
    margin: 0;
    line-height: 1.4;
}

/* Floating Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ff6b6b;
    padding: 15px;
    text-align: center;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.mobile-cta-button {
    display: block;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Recent Purchase Notifications */
/* Recent Purchase Notifications - Premium Design */
.recent-purchase-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
}

.recent-purchase {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border-left: 4px solid #10b981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 16px 18px;
    margin-bottom: 12px;
    max-width: 340px;
    transform: translateX(-120%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
}

.recent-purchase.show {
    transform: translateX(0);
}

.recent-purchase:hover {
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.25), 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.purchase-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.purchase-icon {
    display: none;
}

.purchase-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #374151;
    flex: 1;
}

.purchase-text p {
    margin: 0;
}

.purchase-text strong {
    color: #10b981;
    font-weight: 600;
}

.purchase-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1.2rem;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.purchase-close:hover {
    color: #ef4444;
    background-color: #fee2e2;
    transform: rotate(90deg);
}

/* Fade-in Animation */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1.3rem;
    }
    
    .section-headline {
        font-size: 1.8rem;
    }
    
    .timer-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 25px;
        padding: 30px 15px;
        margin: 30px 0;
    }
    
    .stat-item {
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-item p {
        font-size: 0.95rem;
    }
    
    .problem-grid,
    .solutions-grid,
    .testimonial-grid,
    .content-categories,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .product-showcase,
    .ebook-showcase,
    .emotional-hook,
    .final-cta-content {
        flex-direction: column;
    }
    
    .product-image,
    .ebooks-image,
    .emotional-image,
    .harmony-image,
    .solution-description,
    .value-proposition,
    .emotional-text,
    .final-cta-text {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        max-width: 100%;
    }
    
    .wins-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .footer-trust {
        text-align: center;
    }
    
    .trust-badges i {
        margin: 0 10px;
    }
    
    .popup-body {
        flex-direction: column;
    }
    
    .popup-image,
    .popup-offer {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .guarantee-badge {
        display: none;
    }
    
    .triple-guarantee {
        padding: 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Policy Modal Styles */
.policy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.policy-modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

.policy-modal-content {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideInDown 0.4s ease;
}

.policy-close-btn {
    position: sticky;
    top: 0;
    right: 0;
    float: right;
    font-size: 2.5rem;
    font-weight: 700;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    transition: color 0.3s ease;
    z-index: 10;
    background-color: #fff;
}

.policy-close-btn:hover {
    color: #ff6b6b;
}

.policy-content {
    padding: 40px;
    line-height: 1.8;
}

.policy-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #222;
    border-bottom: 3px solid #ff6b6b;
    padding-bottom: 15px;
}

.policy-content h2 {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.policy-content h3 {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #444;
}

.policy-content p {
    margin-bottom: 15px;
    color: #555;
}

.policy-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 15px;
}

.policy-content li {
    margin-bottom: 8px;
    color: #555;
}

.policy-content strong {
    color: #222;
    font-weight: 700;
}

.policy-content a {
    color: #667eea;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #764ba2;
}

.policy-content ol {
    list-style: decimal;
    margin-left: 30px;
    margin-bottom: 15px;
}

.policy-content code {
    background-color: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #d63384;
}

.policy-content hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-modal-content {
        max-height: 90vh;
        border-radius: 10px;
    }
    
    .policy-content {
        padding: 25px 20px;
    }
    
    .policy-content h1 {
        font-size: 1.8rem;
    }
    
    .policy-content h2 {
        font-size: 1.3rem;
    }
    
    .policy-close-btn {
        font-size: 2rem;
        padding: 8px 15px;
    }
}

/* Investment Modal - Premium Pricing Selection */
.investment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
    align-items: center;
    justify-content: center;
}

.investment-modal.active {
    display: flex;
}

.investment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.investment-modal-content {
    position: relative;
    width: 85%;
    max-width: 800px;
    max-height: 90vh;
    margin: 0 auto;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 50%, #ff4500 100%);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
    overflow-y: auto;
    animation: slideInUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-overflow-scrolling: touch;
}

/* Prevent keyboard issues on mobile */
@media (max-width: 768px) {
    .investment-modal {
        align-items: center;
    }
    
    .investment-modal-content {
        max-height: 85vh;
        width: 92%;
        margin: 0;
    }
    
    body.modal-open {
        position: fixed;
        width: 100%;
        overflow: hidden;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.investment-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    color: #ff4500;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 300;
    line-height: 1;
}

.investment-close:hover {
    background: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.investment-header {
    text-align: center;
    padding: 25px 20px 20px;
    color: #fff;
}

.investment-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.investment-header p {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 8px 12px 8px;
    max-width: 650px;
    margin: 0 auto;
}

.investment-option {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: visible;
    transform: scale(0.85);
    margin-top: 12px;
}

.investment-option:hover {
    transform: scale(0.88) translateY(-3px);
}

/* $1000 package spans all 3 columns on desktop - DESTAQUE MÁXIMO */
.investment-option:nth-child(7) {
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 8px auto 0;
    width: 100%;
    padding: 8px;
    transform: scale(0.98);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3), 0 0 0 2px rgba(255, 215, 0, 0.25);
    overflow: visible;
}

.investment-option:nth-child(7):hover {
    transform: scale(1.01) translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.45), 0 0 0 3px rgba(255, 215, 0, 0.4);
}

.investment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 154, 86, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.investment-option:hover {
    transform: translateY(-5px) scale(0.95);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35);
}

.investment-option:hover::before {
    opacity: 1;
}

.investment-option img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.investment-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #333;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 100;
    letter-spacing: 0.4px;
    white-space: nowrap;
    line-height: 1.2;
}

.investment-option:nth-child(3) .investment-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    }
}

.investment-footer {
    text-align: center;
    padding: 8px 12px 12px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.investment-footer i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Fixed Footer Button for All Modals */
.modal-footer-fixed {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0) 0%, rgba(26, 26, 46, 0.95) 20%, rgba(26, 26, 46, 1) 40%);
    padding: 20px;
    text-align: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 107, 0.2);
}

.modal-close-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #fff;
    border: none;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-close-button:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff3838 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.6);
}

.modal-close-button:active {
    transform: translateY(0);
}

.modal-close-button i {
    margin-right: 8px;
}

/* Mobile Responsive for Investment Modal */
@media (max-width: 768px) {
    .investment-modal-content {
        width: 96%;
        max-height: 94vh;
        margin: 0;
        border-radius: 15px;
    }
    
    .investment-header {
        padding: 12px 10px 8px;
    }
    
    .investment-header h2 {
        font-size: 1.25rem;
    }
    
    .investment-header p {
        font-size: 0.75rem;
    }
    
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        padding: 4px 6px 6px;
    }
    
    .investment-option {
        padding: 3px;
        margin-top: 10px;
    }
    
    /* Badge stays centered top on mobile */
    .investment-badge {
        top: -8px;
        font-size: 0.55rem;
        padding: 2px 6px;
        border-radius: 8px;
    }
    
    /* $1000 package spans both columns on mobile */
    .investment-option:nth-child(7) {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-top: 8px;
    }
    
    .investment-close {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }
    
    .investment-footer {
        padding: 6px 10px 10px;
        font-size: 0.75rem;
    }
    
    .modal-footer-fixed {
        padding: 10px;
    }
    
    .modal-close-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .investment-modal-content {
        width: 98%;
        max-height: 96vh;
    }
    
    .investment-header {
        padding: 10px 8px 6px;
    }
    
    .investment-header h2 {
        font-size: 1.1rem;
    }
    
    .investment-header p {
        font-size: 0.7rem;
    }
    
    .investment-grid {
        padding: 3px 4px 4px;
        gap: 3px;
    }
    
    .investment-option {
        padding: 2px;
        margin-top: 8px;
    }
    
    .investment-badge {
        top: -7px;
        font-size: 0.5rem;
        padding: 2px 5px;
        border-radius: 7px;
    }
    
    .investment-option:nth-child(7) {
        margin-top: 6px;
        padding: 4px;
    }
    
    .investment-footer {
        padding: 5px 8px 8px;
        font-size: 0.7rem;
    }
    
    .modal-footer-fixed {
        padding: 8px;
    }
    
    .modal-close-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

