:root {
    --plaspy-green: #7BC62D;
    --plaspy-green-hover: #8ED62B;
    --plaspy-green-glow: rgba(123, 198, 45, 0.2);
    --asphalt-black: #FFFFFF;
    --slate-gray: #F8FAFC;
    --glass-bg: #FFFFFF;
    --glass-border: rgba(0, 0, 0, 0.08);
    --vapor-white: #0F172A;
    --muted-text: #64748B;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--asphalt-black);
    color: var(--vapor-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #0F172A;
}

.gradient-text {
    background: linear-gradient(90deg, #0F172A 0%, var(--plaspy-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background-color: var(--plaspy-green);
    color: #FFFFFF;
    box-shadow: 0 4px 14px 0 var(--plaspy-green-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px 0 var(--plaspy-green-glow);
    background-color: var(--plaspy-green-hover);
}

.btn-ghost {
    border: 1px solid var(--glass-border);
    color: var(--vapor-white);
    background: var(--asphalt-black);
    box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
    background: var(--slate-gray);
    border-color: var(--plaspy-green);
}

/* Nav */
nav {
    height: 70px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--plaspy-green);
    font-family: var(--font-heading);
}

/* Hero */
.hero {
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 85vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('fondo.jpeg');
    background-size: cover;
    background-position: center;
    filter: brightness(1.05) contrast(0.95);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero h1 span {
    color: var(--plaspy-green);
}

.hero p {
    font-size: 1.25rem;
    color: #111;
    margin-bottom: 32px;
    max-width: 550px;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

.hero-tax-included-muted {
    font-size: 0.65rem;
    color: #666;
    font-weight: 600;
    position: relative;
    top: -0.6em;
}

.hero-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--plaspy-green);
    margin-bottom: 24px;
    display: block;
}

.hero .hero-microcopy {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #444;
    max-width: 520px;
}

.btn-primary {
    background-color: #9DE63E;
    /* Bright green from image */
    color: #000;
    font-weight: 900;
    padding: 20px 48px;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(157, 230, 62, 0.3);
}

.btn-primary:hover {
    background-color: #87C932;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 230, 62, 0.4);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 0 30px rgba(157, 230, 62, 0.6));
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Utility Classes */
.section-alt {
    background-color: var(--slate-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--muted-text);
    max-width: 600px;
    margin: 0 auto;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--muted-text);
}

.text-success {
    color: var(--plaspy-green) !important;
}

.small {
    font-size: 0.85rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

/* Margin Utilities */
.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Text Alignment */
.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Components */
.hero-features {
    margin-top: 32px;
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.check-icon {
    color: var(--plaspy-green);
    margin-top: 5px;
}

.steps-container {
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    background: var(--asphalt-black);
}

.row-benefits {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.d-flex {
    display: flex;
}

.align-items-start {
    align-items: flex-start;
}

/* Sticky Footer */
.sticky-footer .btn {
    width: 100%;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .col-sm-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .section-title {
        font-size: 2rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    border-color: var(--plaspy-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card i {
    font-size: 2rem;
    color: var(--plaspy-green);
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

/* Steps Section */
.step {
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: -40px;
    width: 2px;
    background: var(--plaspy-green);
    opacity: 0.4;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--plaspy-green);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px var(--plaspy-green-glow);
}

/* FAQ */
.faq-item {
    margin-bottom: 12px;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0F172A;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--muted-text);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active i {
    transform: rotate(180deg);
    color: var(--plaspy-green);
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-top: 1px solid var(--glass-border);
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 960px) {
    body {
        padding-bottom: 100px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 32px;
    }

    .hero-image {
        justify-content: center;
        order: -1;
        margin-bottom: 40px;
    }

    .section {
        padding: 60px 0;
    }

    .sticky-footer {
        display: block;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(123, 198, 45, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(123, 198, 45, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(123, 198, 45, 0);
    }
}

.btn-primary {
    animation: pulse 2s infinite;
}