/* style.css para JitsManager - Versión Final Pulida */

/* --- VARIABLES Y FUENTES (Sin cambios) --- */
:root {
    --gold-premium: #D4AF37;
    --gold-accent: #E5C100;
    --gold-dark-brown: #3E2712;
    --bg-deep-space: #0A0A0C;
    --bg-card: #141418;
    --text-light: #EBEBEB;
    --text-muted: #999999;
    --border-bronze: #4A3F2B;
    --font-title: 'Orbitron', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep-space);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 35px 35px;
    color: var(--text-muted);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ... (Animaciones se mantienen igual) ... */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.anim-fade-in-up { animation: fadeInUp 1s ease-out forwards; opacity: 0; }
.anim-scale-in { animation: scaleIn 1s ease-out forwards; opacity: 0; }

.anim-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.anim-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.anim-on-scroll[data-delay] { transition-delay: calc(var(--delay, 0) * 1ms); }


/* --- HEADER (AJUSTADO) --- */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-bronze);
}
.navbar { display: flex; justify-content: space-between; align-items: center; height: 90px; /* Aumentado */ }
.nav-logo img { height: 70px; /* Aumentado para legibilidad */ }
.nav-list { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-link {
    color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 1rem;
    position: relative; padding: 5px 0;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--gold-premium); }
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold-premium);
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ... (Botones, Títulos se mantienen igual) ... */
.btn {
    display: inline-block; padding: 0.8rem 2rem; border-radius: 8px; text-decoration: none;
    font-family: var(--font-title); font-weight: 700; transition: all 0.3s ease;
    border: 1px solid var(--border-bronze); position: relative; overflow: hidden;
}
.btn-primary {
    background: linear-gradient(145deg, #4d3a1d, #2c1e0e); color: var(--gold-premium);
    box-shadow: 0 0 15px rgba(0,0,0,0.5), inset 0 0 5px rgba(212, 175, 55, 0.1);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.2);
    color: var(--gold-accent); border-color: var(--gold-premium);
}
.btn-large { padding: 1rem 3rem; font-size: 1.1rem; }
h1, h2, h3 { font-family: var(--font-title); color: var(--text-light); letter-spacing: 1px; }
.section-title { font-size: 2.8rem; text-align: center; margin-bottom: 1rem; line-height: 1.3; }
.section-subtitle { font-size: 1.1rem; max-width: 600px; margin: 0 auto 4rem auto; text-align: center; }


/* --- HERO SECTION (REDISEÑADO) --- */
.hero {
    padding: 16rem 0;
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--border-bronze);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Capas de fondo: Aurora sutil + Overlay oscuro + Imagen de fondo */
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(62, 39, 18, 0.2) 0%, transparent 50%),
        linear-gradient(rgba(10, 10, 12, 0.85), rgba(10, 10, 12, 0.85)),
        url('hero-background.jpg'); /* ¡ACÁ VA TU IMAGEN! */
    background-size: cover;
    background-position: center center;
}
.hero-title { font-size: 4.2rem; line-height: 1.2; text-shadow: 0 3px 25px rgba(0,0,0,0.8); }
.hero-subtitle { font-size: 1.25rem; max-width: 700px; margin: 1.5rem auto 2.5rem auto; }
.hero-social-proof { color: var(--text-muted); margin-top: 2rem; font-style: italic; }

/* ... (Otras secciones se mantienen igual) ... */
.features-section { padding: 6rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.feature-card {
    background-color: var(--bg-card); padding: 2.5rem; border-radius: 12px;
    border: 1px solid var(--border-bronze); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 0 25px rgba(212, 175, 55, 0.1); }
.feature-icon { font-size: 2.2rem; color: var(--gold-premium); margin-bottom: 1.5rem; }
.feature-card h3 { font-size: 1.5rem; }
.feature-card .feature-benefit { color: var(--text-muted); font-size: 0.9rem; margin-top: -0.5rem; margin-bottom: 1rem; font-style: italic; }
.how-it-works-section { padding: 6rem 0; background-color: var(--bg-card); border-top: 1px solid var(--border-bronze); border-bottom: 1px solid var(--border-bronze); }
.how-it-works-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 4rem; }
.step-card { text-align: center; }
.step-number { font-family: var(--font-title); font-size: 2.5rem; color: var(--gold-premium); border: 2px solid var(--border-bronze); width: 70px; height: 70px; line-height: 66px; border-radius: 50%; margin: 0 auto 1.5rem auto; }
.step-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pricing-contact-section { padding: 8rem 0; }
.pricing-contact-grid { display: grid; grid-template-columns: 1fr; gap: 5rem; align-items: center; }
@media (min-width: 992px) { .pricing-contact-grid { grid-template-columns: 1fr 1fr; } }
.pricing-card { background-color: var(--bg-card); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border-bronze); margin-bottom: 1.5rem; position: relative; transition: all 0.3s ease; }
.pricing-card.featured { border-color: var(--gold-premium); transform: scale(1.05); box-shadow: 0 0 35px rgba(212, 175, 55, 0.15); }
.featured-tag { position: absolute; top: -15px; right: 20px; background: var(--gold-premium); color: var(--bg-deep-space); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.9rem; font-family: var(--font-title); }
.price { font-size: 3rem; font-family: var(--font-title); color: var(--text-light); margin: 0.5rem 0; }
.price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-card ul { list-style: none; margin-top: 1.5rem; padding-left: 0; }
.pricing-card li { margin-bottom: 0.75rem; padding-left: 1.5rem; position: relative; }
.pricing-card li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold-premium); position: absolute; left: 0; }
.contact-column h3 { font-size: 2rem; color: var(--text-light); }
.contact-form input { width: 100%; padding: 1rem; background-color: var(--bg-card); border: 1px solid var(--border-bronze); border-radius: 8px; color: var(--text-light); font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-body); }
.contact-form input:focus { outline: none; border-color: var(--gold-premium); box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
#form-status { margin-top: 1rem; font-weight: bold; }


/* --- FOOTER (REDISEÑADO) --- */
.footer {
    background-color: var(--bg-card);
    padding-top: 4rem;
    border-top: 1px solid var(--border-bronze);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}
.footer-col h4 {
    font-family: var(--font-title);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.footer-col .logo-footer { height: 70px; margin-bottom: 1rem; }
.footer-col p { max-width: 350px; color: var(--text-muted); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold-premium); }
.footer-socials a {
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.footer-socials a:hover {
    color: var(--gold-premium);
    transform: scale(1.1);
}
.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-bronze);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col p { margin: 0 auto; }
    .footer-col .logo-footer { margin: 0 auto 1rem auto; }
}