/* =====================================================
   FINIPLAG V3 — Premium Sales Landing Page CSS
   Fuentes: Oswald (Títulos) + Inter (Cuerpo)
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --black: #060a0f;
    --green-dark: #0d3b1e;
    --green-mid: #16a34a;
    --orange: #ff4500;
    --orange-dk: #cc3800;
    --gold: #fbbf24;
    --off-white: #f9fafb;
    --light-gray: #e5e7eb;
    --text-dark: #111827;
    --text-mid: #4b5563;
    --white: #ffffff;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    line-height: 1.15;
}

p {
    line-height: 1.75;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Urgency Bar ── */
.urgency-bar {
    background: var(--orange);
    color: var(--white);
    text-align: center;
    padding: .6rem 1rem;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .5px;
}

/* ── Header ── */
.header {
    background: var(--black);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-link img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all .3s;
    text-decoration: none;
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: 0 6px 25px rgba(255, 69, 0, .4);
}

.btn-orange:hover {
    background: var(--orange-dk);
    transform: translateY(-2px);
}

.btn-orange-lg {
    font-size: 1.4rem;
    padding: 1.3rem 3rem;
    border-radius: 10px;
}

.btn-orange-block {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-green {
    background: var(--green-dark);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-green:hover {
    background: #0b2e17;
    transform: translateY(-2px);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(255, 69, 0, .4);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 10px 35px rgba(255, 69, 0, .6);
    }
}

.btn-pulse {
    animation: pulse 2.5s infinite;
}

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--black) 55%, #0b2415 100%);
    padding: 5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-pretitle {
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero-sub {
    font-size: 1.2rem;
    color: #adb5bd;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--white);
    font-size: .9rem;
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.hero-badges {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #e0e0e0;
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 163, 74, .35) 0%, transparent 70%);
    filter: blur(30px);
}

.hero-image-wrap img {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .5));
}

/* ── Section Headings ── */
.section-label {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: .5rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    line-height: 1.2;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 680px;
    margin: 1rem auto 0;
}

/* ── Problem Section ── */
.problem-section {
    background: var(--white);
    padding: 5rem 0;
}

.problem-section .section-title {
    color: var(--text-dark);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.problem-card {
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-card.bad {
    background: var(--black);
    border: 2px solid #ff000030;
}

.problem-card.bad h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #ff4444;
}

.problem-card.bad p {
    color: #9ca3af;
}

.problem-card.good {
    background: var(--green-dark);
    border: 2px solid rgba(22, 163, 74, .3);
}

.problem-card.good h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #4ade80;
}

.problem-card.good p {
    color: #d1fae5;
}

.problem-card img {
    object-fit: contain;
    width: 100%;
    max-height: 280px;
    border-radius: 10px;
    margin-top: auto;
}

.cross-list,
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.cross-list li {
    color: #f87171;
    font-weight: 600;
}

.cross-list li::before {
    content: '✗ ';
    font-size: 1.1rem;
}

.check-list li {
    color: #86efac;
    font-weight: 600;
}

.check-list li::before {
    content: '✓ ';
    font-size: 1.1rem;
}

/* ── Benefits ── */
.benefits-section {
    background: var(--off-white);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: all .3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    border-color: var(--orange);
}

.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.benefit-card h4 {
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: .5rem;
}

.benefit-card p {
    font-size: .95rem;
    color: var(--text-mid);
    margin: 0;
}

/* ── Social Proof bar ── */
.social-bar {
    background: var(--green-dark);
    padding: 2rem 0;
    text-align: center;
}

.social-bar p {
    color: #d1fae5;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.social-bar strong {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
}

/* ── Testimonials ── */
.testi-section {
    background: var(--white);
    padding: 5rem 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testi-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--light-gray);
    position: relative;
}

.testi-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testi-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.testi-author strong {
    display: block;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 1rem;
}

.testi-author span {
    font-size: .875rem;
    color: var(--text-mid);
}

.testi-quote {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: 'Oswald', sans-serif;
    color: rgba(13, 59, 30, .08);
    line-height: 1;
}

/* ── Pricing ── */
.pricing-section {
    background: var(--off-white);
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all .3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.pricing-card.featured {
    border: 3px solid var(--orange);
    box-shadow: 0 20px 50px rgba(255, 69, 0, .15);
    padding: 3rem 2rem;
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: .35rem 1.5rem;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: .85rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.pricing-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: .25rem;
}

.pricing-desc {
    font-size: .9rem;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}

.price-old {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    display: block;
}

.price-new {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-dark);
    display: block;
    line-height: 1.1;
}

.pricing-card.featured .price-new {
    color: var(--orange);
    font-size: 3.5rem;
}

.saving {
    display: inline-block;
    background: rgba(22, 163, 74, .1);
    color: var(--green-mid);
    padding: .3rem .9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .875rem;
    margin: .5rem 0 1.5rem;
}

.pricing-perks {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.pricing-perks li {
    font-size: .9rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.pricing-perks li::before {
    content: '✓';
    color: var(--green-mid);
    font-weight: 700;
}

/* ── How it works ── */
.process-section {
    background: var(--green-dark);
    padding: 5rem 0;
}

.process-section .section-title {
    color: var(--white);
    margin-bottom: .5rem;
}

.process-section .section-label {
    color: #4ade80;
}

.process-section .section-sub {
    color: #d1fae5;
    margin: 1rem 0 3rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, .06);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.process-step p {
    color: #9ca3af;
    font-size: .9rem;
    margin: 0;
}

/* ── Contact / Form ── */
.form-section {
    background: var(--black);
    padding: 5rem 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.form-info .section-title {
    color: var(--white);
}

.form-info .section-sub {
    color: #9ca3af;
    margin: 1rem 0 2rem;
}

.form-guarantees {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.form-guarantees li {
    color: #d1fae5;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.form-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-box h3 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-dark);
    margin-bottom: .4rem;
}

.form-control {
    width: 100%;
    padding: .9rem 1rem;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color .3s;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 69, 0, .1);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* ── Footer ── */
.footer {
    background: #010305;
    padding: 4rem 0 2rem;
    color: #9ca3af;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
}

.footer h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    letter-spacing: .5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: .9rem;
    transition: color .3s;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-phone {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: var(--orange);
    font-weight: 700;
    display: block;
    margin-top: .5rem;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: .85rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #9ca3af;
    transition: color .3s;
}

.legal-links a:hover {
    color: var(--white);
}

/* ── Reveal Animation ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3.5rem 0 3rem;
    }

    .hero-grid,
    .problem-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-image-wrap {
        order: -1;
    }

    .hero-cta-wrap {
        align-items: center;
        text-align: center;
    }

    .hero-sub {
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.9rem;
    }
}