/* style.css - Upsell 23 Técnicas */
:root {
    --primary: #ff0000;
    --primary-dark: #cc0000;
    --primary-glow: rgba(255, 0, 0, 0.4);
    --bg: #050505;
    --surface: #111111;
    --surface-light: #1a1a1a;
    --border: rgba(255, 255, 255, 0.06);
    --text: #e5e5e5;
    --text-muted: #9ca3af;
    --green: #22c55e;
    --green-dark: #16a34a;
    --yellow: #eab308;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.text-green {
    color: var(--green);
}

.text-yellow {
    color: var(--yellow);
    font-weight: 600;
}

.hidden {
    display: none !important;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* ==================
   TOP BANNER
   ================== */
.top-attention-banner {
    background: var(--yellow);
    color: #000;
    text-align: center;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* ==================
   CONFIRMATION HEADER
   ================== */
.confirmation-header {
    background: linear-gradient(to bottom, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
    padding: 40px 0 10px;
}

.success-alert {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 30px;
}

@media (max-width: 600px) {
    .success-alert {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.success-icon-check {
    width: 32px;
    height: 32px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.success-alert-text h3 {
    color: var(--green);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.success-alert-text p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ==================
   STEP 2: OFFER REVEAL
   ================== */
.offer-step {
    padding: 0 0 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Transition Box */
.transition-box {
    text-align: center;
    padding: 50px 20px 40px;
    background: radial-gradient(circle at 50% 0%, rgba(234, 179, 8, 0.1) 0%, transparent 60%);
}

.transition-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: bounce 1.5s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.transition-title {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.transition-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.transition-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6666;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulseSubtle 2s ease infinite;
}

.transition-badge svg {
    width: 16px;
    height: 16px;
}

@keyframes pulseSubtle {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.15);
    }
}

/* Timer */
.timer-section {
    text-align: center;
    margin: 30px auto 40px;
}

.timer-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timer-label svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.timer-block {
    background: linear-gradient(135deg, #1a0505, var(--surface));
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    padding: 15px 25px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.timer-number {
    display: block;
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.timer-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    display: block;
}

.timer-separator {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    animation: blink 1s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.product-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: cardReveal 0.5s ease forwards;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.1);
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    font-size: 1rem;
    color: white;
    margin-bottom: 6px;
    font-weight: 700;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Summary Box */
.summary-box {
    background: var(--surface);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.summary-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
    text-align: center;
}

.summary-emoji {
    font-size: 2rem;
}

.summary-header h3 {
    font-size: 1.3rem;
}

.summary-arrow {
    font-size: 1.5rem;
    animation: bounce 1.5s ease infinite;
}

.summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.summary-list li svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 3px;
}

.summary-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.summary-list li strong {
    font-size: 1rem;
    display: block;
}

.summary-list li span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Price Anchor Box */
.price-anchor-box {
    background: linear-gradient(to bottom, var(--surface), #0a0a0a);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 50px 25px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-bottom: 50px;
    overflow: hidden;
}

.price-anchor-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.price-anchor-box h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.price-anchor-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.price-original {
    font-size: 3.5rem;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--primary);
    text-decoration: line-through;
    margin-bottom: 20px;
    opacity: 0.8;
}

.price-divider-badge {
    display: inline-block;
    background: var(--green);
    color: #000;
    font-weight: 800;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
}

.price-final {
    font-size: 5rem;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.price-access {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.price-access strong {
    color: white;
}

/* Benefits Chips */
.benefits-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text);
}

.chip svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    text-align: center;
    border: none;
}

.btn-accept {
    background: linear-gradient(135deg, var(--green), #15803d);
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    border-bottom: 4px solid #0f5132;
    margin: 0 auto;
}

.btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.6);
}

.btn-accept:active {
    transform: translateY(2px);
    border-bottom-width: 0;
    margin-top: 4px;
}

.btn-accept svg {
    width: 20px;
    height: 20px;
}

.pulse {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    }

    100% {
        transform: scale(1);
    }
}

.secure-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.secure-line svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

/* Decline Button */
.btn-decline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 16px 25px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

/* FAQ */
.faq-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
    font-family: var(--font-main);
    text-align: left;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Guarantee */
.guarantee-section {
    margin-top: 50px;
}

.guarantee-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    background: var(--surface);
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

@media (min-width: 600px) {
    .guarantee-box {
        flex-direction: row;
        text-align: left;
    }
}

.guarantee-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    flex-shrink: 0;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.guarantee-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    margin-top: 50px;
    text-align: center;
    padding: 50px 20px;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.08) 0%, transparent 60%);
    border-radius: 20px;
}

.final-cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text);
}

.final-cta .btn-accept {
    margin: 0 auto;
}

.final-cta .btn-decline {
    margin: 15px auto 0;
}

/* WhatsApp Section */
.whatsapp-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.whatsapp-box {
    text-align: center;
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: 20px;
    padding: 35px 25px;
}

.wpp-icon {
    width: 40px;
    height: 40px;
    color: #25D366;
    margin-bottom: 15px;
}

.whatsapp-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.whatsapp-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.wpp-hint {
    font-size: 0.85rem !important;
    color: var(--yellow) !important;
    font-weight: 500;
    margin-bottom: 20px !important;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid #1da851;
    margin-top: 10px;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.site-footer {
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-gradient-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin-bottom: 25px;
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    max-width: 600px;
    margin: 0 auto 15px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 480px) {
    .confirmation-title {
        font-size: 1.6rem;
    }

    .transition-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .timer-number {
        font-size: 2.5rem;
    }

    .timer-block {
        min-width: 80px;
        padding: 12px 18px;
    }

    .price-original {
        font-size: 2.5rem;
    }

    .price-final {
        font-size: 3.5rem;
    }

    .btn {
        font-size: 1rem;
        padding: 16px 24px;
    }

    .product-info h3 {
        font-size: 0.9rem;
    }

    .product-info p {
        font-size: 0.8rem;
    }
}