/* RESET Y VARIABLES GLOBALES */
:root {
    --color-neon-green: #C0DD28;
    --color-neon-hover: #d2ec4e;
    --color-dark-green: #2E4D2B;
    --color-dark-bg: #152213;
    --color-black: #0c120b;
    --color-white: #ffffff;
    --color-light-bg: #f5f8f5;
    --color-gray: #dddddd;
    --color-text-dark: #333333;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* UTILIDADES Y TEXTO */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-neon {
    color: var(--color-neon-green);
}

.text-dark {
    color: var(--color-text-dark);
}

.text-white {
    color: var(--color-white);
}

.text-gray {
    color: var(--color-gray);
}

.text-green {
    color: #1e872c;
}

.bg-dark {
    background-color: var(--color-dark-bg);
}

.bg-light {
    background-color: var(--color-light-bg);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-black {
    background-color: var(--color-black);
}

.uppercase {
    text-transform: uppercase;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.black-text {
    font-weight: 900;
}

.text-sm {
    font-size: 0.9rem;
}

.text-lg {
    font-size: 1.25rem;
}

.title-huge {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.title-dark {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark-green);
}

.opacity-80 {
    opacity: 0.8;
}

.w-100 {
    width: 100%;
    display: block;
}

.w-50 {
    width: 50%;
    display: block;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.inline-block {
    display: inline-block;
}

.d-inline-block {
    display: inline-block;
}

.b-radius-sm {
    border-radius: var(--radius-sm);
}

.b-radius-md {
    border-radius: var(--radius-md);
}

.b-radius-lg {
    border-radius: var(--radius-lg);
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.drop-shadow-img {
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.2));
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 2rem;
}

.py-4 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-5 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 2.5rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1.5rem;
}

.mt-3 {
    margin-top: 2.5rem;
}

.mt-4 {
    margin-top: 4rem;
}

.pl-3 {
    padding-left: 2rem;
}

.pr-3 {
    padding-right: 2rem;
}

.max-w-600 {
    max-width: 600px;
}

.max-w-800 {
    max-width: 800px;
}

.author-img {
    max-width: 200px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.border-t {
    border-top: 1px solid #eee;
}

.border-neon {
    border: 2px solid var(--color-neon-green);
}

.box-neon {
    border: 2px solid var(--color-neon-green);
    border-radius: var(--radius-md);
    padding: 1rem 2rem;
}

/* REJILLAS Y ESTRUCTURA */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.items-center {
    align-items: center;
}

.gap-3 {
    gap: 2rem;
}

.gap-4 {
    gap: 3rem;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* COMPONENTES COMPLEJOS */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.glass-card.dark-bg {
    background: rgba(21, 34, 19, 0.8);
    border: 1px solid rgba(192, 221, 40, 0.2);
    color: var(--color-white);
}

.hover-lift {
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* BOTONES */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-neon-green);
    color: var(--color-dark-green);
    box-shadow: 0 4px 15px rgba(192, 221, 40, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-neon-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 221, 40, 0.6);
}

.btn-secondary {
    background-color: var(--color-dark-green);
    color: var(--color-neon-green);
    border: 2px solid var(--color-neon-green);
}

.btn-secondary:hover {
    background-color: var(--color-neon-green);
    color: var(--color-dark-green);
    box-shadow: 0 0 20px rgba(192, 221, 40, 0.5);
}

/* HERO SECTION */
.hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.parallax-bg {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 77, 43, 0.85) 0%, rgba(21, 34, 19, 0.95) 100%);
    z-index: 1;
}

.overlay-green {
    position: absolute;
    inset: 0;
    background: rgba(21, 34, 19, 0.85);
    z-index: 1;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.logo {
    width: 280px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(192, 221, 40, 0.5));
}

.slogan {
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--color-dark-green), #4a7c45);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #444;
}

/* CTA WRAPPERS */
.text-center-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* VIDEO WRAPPER VIMEO (VERTICAL) */
.video-wrapper {
    position: relative;
    width: 100%;
    /* 9:16 vertical ratio */
    aspect-ratio: 9 / 16;
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* BENEFITS SECTION */
.benefits-grid {
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-fast);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.icon-neon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--color-dark-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* LISTAS COSTUMIZADAS */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.custom-list li::before {
    content: "✖";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.custom-check-list {
    list-style: none;
    padding-left: 0;
}

.custom-check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.custom-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-neon-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.custom-check-list.light-theme li::before {
    color: var(--color-dark-green);
}

/* PILARES */
.pillar-card {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.pillar-icon {
    height: 60px;
    margin-bottom: 1.5rem;
}

/* PRICING */
.price-tag {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.price-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-neon-green);
}

/* FORMS */
.simple-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

/* TIMELINE */
.timeline {
    border-left: 2px solid var(--color-neon-green);
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2.45rem;
    top: 0.3rem;
    width: 15px;
    height: 15px;
    background: var(--color-neon-green);
    border-radius: 50%;
}

/* ANIMACIONES */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .grid-2-col,
    .grid-3-col {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .title-huge {
        font-size: 2rem;
    }

    .flex-reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .mt-mobile {
        margin-top: 2rem;
    }

    .pl-3,
    .pr-3 {
        padding-left: 0;
        padding-right: 0;
    }
}