/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #e0e0e0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@700;900&display=swap');

/* ===== PARTICLES BG ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    bottom: -10px;
    background: rgba(230, 0, 0, .15);
    border-radius: 50%;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: .6;
    }

    100% {
        transform: translateY(-110vh) scale(.3);
        opacity: 0;
    }
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(90deg, #ff0040, #ff6b00, #ff0040);
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
    animation: urgPulse 2s infinite;
}

@keyframes urgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .85;
    }
}

.urgency-bar span {
    display: inline-block;
    background: rgba(0, 0, 0, .3);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 3px;
    font-family: 'Orbitron', monospace;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 40px;
    background: radial-gradient(ellipse at 50% 0%, rgba(230, 0, 0, .12) 0%, transparent 60%), #0a0a0f;
    z-index: 1;
}

.hero.hero-compact {
    min-height: auto;
    padding: 90px 20px 30px;
}

/* Hero Previews — feature pills */
.hero-previews {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hp-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 234, 0, .06);
    border: 1px solid rgba(255, 234, 0, .15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .78rem;
    color: #b0b8c8;
    transition: all .3s;
}

.hp-item:hover {
    background: rgba(255, 234, 0, .12);
    border-color: rgba(255, 234, 0, .3);
    color: #fff;
    transform: translateY(-2px);
}

.hp-item span {
    font-weight: 600;
}

/* Scroll indicator */
.scroll-indicator {
    margin-top: 24px;
    color: #666;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 6px;
}

.scroll-arrow {
    font-size: 1rem;
    color: #FFEA00;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .6;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e60000, #b30000);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    animation: glowBadge 2s infinite alternate;
}

@keyframes glowBadge {
    from {
        box-shadow: 0 0 10px rgba(230, 0, 0, .3);
    }

    to {
        box-shadow: 0 0 25px rgba(179, 0, 0, .5);
    }
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}

.hero h1 em {
    font-style: normal;
    color: #FFEA00;
}

.hero p {
    font-size: 1.15rem;
    color: #b0b8c8;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #e60000, #b30000);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s;
    box-shadow: 0 0 30px rgba(230, 0, 0, .3);
    cursor: pointer;
    border: none;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 50px rgba(179, 0, 0, .5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    color: #FFEA00;
}

.hero-stat span {
    font-size: .8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION BASE ===== */
section {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 234, 0, .1);
    border: 1px solid rgba(255, 234, 0, .25);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #FFEA00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.section-title span {
    color: #FFEA00;
}

.section-sub {
    color: #888;
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ===== VIDEO SECTION ===== */
.video-wrapper {
    max-width: 750px;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(230, 0, 0, .1);
    border: 1px solid rgba(255, 255, 255, .06);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(20, 20, 35, .9), rgba(15, 15, 25, .95));
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 30px 25px;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFEA00, #e60000, transparent);
    opacity: 0;
    transition: opacity .4s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 234, 0, .2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.feature-card p {
    font-size: .9rem;
    color: #888;
    line-height: 1.6;
}

/* ===== NOT/IS SECTION ===== */
.not-is {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.not-box,
.is-box {
    border-radius: 16px;
    padding: 35px 30px;
}

.not-box {
    background: linear-gradient(145deg, rgba(255, 0, 50, .05), rgba(20, 10, 15, .9));
    border: 1px solid rgba(255, 0, 50, .15);
}

.is-box {
    background: linear-gradient(145deg, rgba(255, 234, 0, .05), rgba(10, 20, 15, .9));
    border: 1px solid rgba(255, 234, 0, .15);
}

.not-box h3 {
    color: #ff4060;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.is-box h3 {
    color: #FFEA00;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.not-box li,
.is-box li {
    list-style: none;
    padding: 8px 0;
    font-size: .95rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.not-box li::before {
    content: '❌ ';
}

.is-box li::before {
    content: '✅ ';
}

/* ===== PRICING ===== */
#pricing {
    background: radial-gradient(ellipse at 50% 50%, rgba(230, 0, 0, .06) 0%, transparent 70%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.price-card {
    background: linear-gradient(170deg, rgba(20, 20, 40, .95), rgba(12, 12, 22, .98));
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    position: relative;
    transition: all .4s;
    overflow: hidden;
}

.price-card.featured {
    border-color: rgba(255, 234, 0, .4);
    transform: scale(1.03);
}

.price-card.featured::after {
    content: '⭐ MAIS POPULAR';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #e60000, #b30000);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 35px;
    transform: rotate(35deg);
    letter-spacing: 1px;
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 234, 0, .3);
}

.price-card.featured:hover {
    transform: translateY(-6px) scale(1.03);
}

.price-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.price-original {
    font-size: .85rem;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-value {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.price-value small {
    font-size: .9rem;
    font-weight: 400;
    color: #888;
}

.price-period {
    font-size: .8rem;
    color: #666;
    margin-bottom: 18px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.price-features li {
    padding: 6px 0;
    font-size: .82rem;
    color: #b0b8c8;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.price-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #e60000, #b30000);
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.price-btn:hover {
    box-shadow: 0 0 25px rgba(230, 0, 0, .4);
    transform: scale(1.02);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(20, 20, 35, .8);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 25px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(255, 234, 0, .15);
    position: absolute;
    top: 5px;
    left: 15px;
    line-height: 1;
}

.testimonial-card p {
    font-size: .92rem;
    color: #ccc;
    line-height: 1.7;
    padding-top: 30px;
    font-style: italic;
}

.testimonial-card .tc-author {
    margin-top: 15px;
    font-weight: 700;
    color: #FFEA00;
    font-size: .85rem;
}

.testimonial-card .tc-stars {
    color: #ffc107;
    font-size: .85rem;
    margin-top: 5px;
}

/* ===== FAQ ===== */
.faq-item {
    background: rgba(20, 20, 35, .7);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(255, 234, 0, .2);
}

.faq-q {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: .95rem;
    color: #ddd;
}

.faq-q::after {
    content: '+';
    font-size: 1.4rem;
    color: #FFEA00;
    transition: transform .3s;
}

.faq-item.active .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s;
}

.faq-item.active .faq-a {
    max-height: 400px;
    padding: 0 22px 18px;
}

.faq-a p {
    font-size: .9rem;
    color: #999;
    line-height: 1.7;
}

/* ===== GUARANTEE ===== */
.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 234, 0, .04), rgba(15, 20, 15, .9));
    border: 1px solid rgba(255, 234, 0, .2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.guarantee-box .g-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.guarantee-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.guarantee-box p {
    color: #aaa;
    font-size: .95rem;
    line-height: 1.7;
}

/* ===== STICKY BAR ===== */
.sticky-bar {
    position: fixed;
    bottom: -80px;
    left: 0;
    width: 100%;
    z-index: 9998;
    background: rgba(10, 10, 15, .95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 234, 0, .15);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: bottom .4s;
}

.sticky-bar.show {
    bottom: 0;
}

.sticky-bar p {
    font-size: .9rem;
    color: #ccc;
    font-weight: 600;
}

.sticky-bar a {
    padding: 12px 30px;
    background: linear-gradient(135deg, #e60000, #b30000);
    color: #fff;
    font-weight: 800;
    border-radius: 30px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s;
}

.sticky-bar a:hover {
    box-shadow: 0 0 20px rgba(230, 0, 0, .4);
}

/* ===== BUYER POPUP ===== */
.buyer-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background: rgba(15, 15, 25, .95);
    border: 1px solid rgba(255, 234, 0, .2);
    border-radius: 14px;
    padding: 14px 18px;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .5);
    animation: slideInPop .4s;
}

@keyframes slideInPop {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.buyer-popup .bp-icon {
    font-size: 1.5rem;
}

.buyer-popup .bp-text {
    font-size: .82rem;
    color: #ccc;
}

.buyer-popup .bp-name {
    color: #FFEA00;
    font-weight: 700;
}

.buyer-popup .bp-time {
    color: #666;
    font-size: .75rem;
    display: block;
    margin-top: 3px;
}

/* ===== EXIT OVERLAY ===== */
.exit-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, .85);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
}

.exit-box {
    background: linear-gradient(145deg, #141428, #0d0d1a);
    border: 1px solid rgba(255, 234, 0, .2);
    border-radius: 20px;
    padding: 45px 35px;
    max-width: 480px;
    text-align: center;
    position: relative;
    animation: popIn .3s;
}

@keyframes popIn {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.exit-box .exit-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
}

.exit-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.exit-box p {
    color: #aaa;
    font-size: .95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.exit-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #e60000, #b30000);
    color: #fff;
    font-weight: 800;
    border-radius: 30px;
    font-size: 1rem;
    transition: all .3s;
}

.exit-cta-btn:hover {
    box-shadow: 0 0 25px rgba(230, 0, 0, .4);
}

.exit-dismiss {
    margin-top: 15px;
    font-size: .8rem;
    color: #555;
    cursor: pointer;
}

/* ===== PRICE BADGES ===== */
.price-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.pbadge {
    display: inline-block;
    background: rgba(255, 234, 0, .08);
    border: 1px solid rgba(255, 234, 0, .15);
    color: #FFEA00;
    font-size: .7rem;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 600;
}

.pbadge-off {
    background: rgba(255, 60, 60, .08);
    border-color: rgba(255, 60, 60, .15);
    color: #ff5555;
}

.price-avista {
    font-size: .78rem;
    color: #888;
    margin-bottom: 12px;
}

.price-installment {
    font-size: .85rem;
    color: #FFEA00;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-features li.feat-disabled {
    text-decoration: line-through;
    color: #555;
}

/* ===== VIDEO THUMBNAIL + PLAY OVERLAY ===== */
.vt-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 14px;
}

.vt-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    transition: transform .4s, filter .4s;
}

.vt-thumb:hover img {
    transform: scale(1.05);
    filter: brightness(.7);
}

.vt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, .85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
}

.vt-thumb:hover .vt-play {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(255, 0, 0, .4);
}

/* ===== VIDEO LIGHTBOX MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, .92);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.vm-box {
    position: relative;
    width: 90%;
    max-width: 850px;
}

.vm-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: color .3s;
}

.vm-close:hover {
    color: #ff4060;
}

.vm-player {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 200, 255, .15);
    border: 1px solid rgba(255, 255, 255, .1);
    position: relative;
}

.vm-player iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

#vm-yt-container,
#vsl-yt-container {
    width: 100%;
    aspect-ratio: 16/9;
}

#vm-yt-container iframe,
#vsl-yt-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
}

/* Película inteligente — cobre o iframe inteiro */
.vm-shield {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: pointer;
    background: transparent;
}

.vm-shield-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: #fff;
    opacity: 0;
    transition: opacity .3s;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .7);
    pointer-events: none;
}

/* ===== VIDEO TESTIMONIALS GRID ===== */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.vt-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: all .3s;
}

.vt-item:hover {
    border-color: rgba(0, 200, 255, .25);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 200, 255, .1);
}

/* ===== SMALL VIDEO WRAPPER ===== */
.video-wrapper-sm {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 200, 255, .05);
}

.video-wrapper-sm iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

/* ===== CONTENT VIDEOS ROW ===== */
.content-videos-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.content-videos-row.three {
    grid-template-columns: repeat(3, 1fr);
}

.cv-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: all .3s;
}

.cv-item:hover {
    border-color: rgba(0, 200, 255, .2);
    transform: translateY(-3px);
}

/* ===== PRINTS WHATSAPP GRID ===== */
.prints-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.print-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(20, 20, 35, .6);
    transition: all .4s;
    cursor: pointer;
}

.print-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 200, 255, .3);
    box-shadow: 0 10px 40px rgba(0, 200, 255, .12);
}

.print-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

/* ===== COMBO DETAILS (Pricing Modules) ===== */
.combo-details {
    text-align: left;
    margin-top: 10px;
}

.combo-heading {
    font-size: .85rem;
    font-weight: 700;
    margin: 14px 0 8px;
    padding: 6px 12px;
    border-radius: 8px;
}

.combo-heading-blue {
    color: #FFEA00;
    background: rgba(255, 234, 0, .06);
    border-left: 3px solid #FFEA00;
}

.combo-heading-gold {
    color: #fff;
    background: rgba(255, 234, 0, .06);
    border-left: 3px solid #FFEA00;
}

.combo-modules {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.combo-module-item {
    font-size: .8rem;
    color: #c0c8d8;
    padding: 8px 12px;
    background: rgba(255, 234, 0, .04);
    border: 1px solid rgba(255, 234, 0, .1);
    border-radius: 8px;
    line-height: 1.5;
    transition: all .3s;
}

.combo-module-item:hover {
    background: rgba(255, 234, 0, .08);
    border-color: rgba(255, 234, 0, .25);
    transform: translateX(4px);
}

/* ===== FOOTER ===== */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, .04);
    color: #555;
    font-size: .8rem;
    line-height: 1.8;
}

footer a {
    color: #00c8ff;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .not-is {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 25px;
    }

    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-videos-row.three {
        grid-template-columns: repeat(2, 1fr);
    }

    .prints-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .urgency-bar {
        font-size: 11px;
        padding: 8px 10px;
    }

    .hero {
        padding: 80px 15px 40px;
    }

    .sticky-bar {
        flex-direction: column;
        gap: 8px;
    }

    .sticky-bar p {
        font-size: .8rem;
    }

    .video-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .content-videos-row,
    .content-videos-row.three {
        grid-template-columns: 1fr;
    }

    .prints-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== OUTROS PLANOS SECTION ===== */
.plans-footer {
    margin-top: 50px;
    padding: 35px 25px;
    background: linear-gradient(145deg, rgba(20, 20, 35, 0.8), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(255, 234, 0, 0.15);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plans-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 234, 0, 0.5), transparent);
}

.pf-btn {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid #FFEA00;
    color: #FFEA00;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 234, 0, 0.1);
}

.pf-btn:hover {
    background: #FFEA00;
    color: #000;
    box-shadow: 0 0 40px rgba(255, 234, 0, 0.5);
    transform: translateY(-4px) scale(1.02);
}

.pf-explanation {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.pf-item {
    font-size: .95rem;
    color: #ccc;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all .3s;
    max-width: 600px;
    width: 100%;
}

.pf-item:hover {
    background: rgba(255, 234, 0, 0.05);
    border-color: rgba(255, 234, 0, 0.2);
}

.pf-item strong {
    color: #FFEA00;
    font-weight: 700;
    margin-right: 5px;
}

.pf-icon {
    margin-right: 8px;
    font-size: 1.2rem;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .pf-explanation {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .pf-item {
        width: auto;
    }
}

/* Plano Econômico R$50 — oculto no desktop, visível em mobile */
.price-card-eco { display: none; }
@media(max-width: 900px) {
    .price-card-eco { display: block !important; }
}