/* static/css/landing.css */

/* ============================================ */
/* IMPORTS Y RESET */
/* ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --black: #0A0A0A;
    --dark-blue: #0F1E2E;
    --gold: #C9A44C;
    --white: #FFFFFF;
    --light-gray: #D9D9D9;
    --medium-gray: #888888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ============================================ */
/* MENÚ HAMBURGUESA (TOGGLER) - MÁS VISIBLE */
/* ============================================ */

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 6px !important;
    padding: 0.5rem 0.75rem !important;
    background: rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(201, 164, 76, 0.2) !important;
    border-color: var(--gold) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 28px;
    height: 28px;
}

/* Cuando el menú está abierto (opcional) */
.navbar-toggler[aria-expanded="true"] {
    border-color: var(--gold) !important;
    background: rgba(201, 164, 76, 0.15) !important;
}

/* ============================================ */
/* NAVBAR */
/* ============================================ */
.navbar-landing {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 164, 76, 0.2);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-landing .nav-link {
    color: var(--light-gray) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.navbar-landing .nav-link:hover,
.navbar-landing .nav-link.active {
    color: var(--gold) !important;
}

.navbar-landing .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-landing .nav-link:hover::after,
.navbar-landing .nav-link.active::after {
    width: 60%;
}

.navbar-landing .btn-gold {
    background: var(--gold);
    color: var(--black) !important;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-landing .btn-gold:hover {
    background: #d4b05a;
    box-shadow: 0 0 20px rgba(201, 164, 76, 0.4);
    transform: translateY(-2px);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--gold) !important;
}

.navbar-brand span {
    color: var(--white);
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--white);
}

.hero-title .gold {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.btn-gold-cta {
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(201, 164, 76, 0.2);
}

.btn-gold-cta:hover {
    background: #d4b05a;
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(201, 164, 76, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ============================================ */
/* SECCIONES COMUNES */
/* ============================================ */
.section-dark {
    background-color: var(--black);
    padding: 80px 0;
}

.section-dark-blue {
    background-color: var(--dark-blue);
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-title .gold {
    color: var(--gold);
}

.section-subtitle {
    color: var(--light-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ============================================ */
/* CARDS */
/* ============================================ */
.card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    height: 100%;
    backdrop-filter: blur(4px);
}

.card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 164, 76, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-premium .icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-premium h5 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.card-premium p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* ============================================ */
/* PLANES */
/* ============================================ */
.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.plan-card .plan-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.5rem;
}

.plan-card .plan-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--white);
}

.plan-card .plan-price small {
    font-size: 1rem;
    color: var(--light-gray);
}

.plan-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 1.5rem 0;
}

.plan-card ul li {
    padding: 0.5rem 0;
    color: var(--light-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-card ul li i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.plan-card .btn-plan {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    padding: 0.6rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-card .btn-plan:hover {
    background: var(--gold);
    color: var(--black);
}

.plan-card.featured {
    border-color: var(--gold);
    background: rgba(201, 164, 76, 0.05);
}

.plan-card.featured .badge-gold {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================ */
/* SECCIÓN NOSOTROS (Misión, Visión, etc.) */
/* ============================================ */
.about-item {
    text-align: center;
    padding: 1.5rem;
}

.about-item .icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-item h4 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.about-item p, .about-item li {
    color: var(--light-gray);
}

.about-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.about-item ul li {
    padding: 0.3rem 0;
}

/* ============================================ */
/* TESTIMONIAL */
/* ============================================ */
.testimonial-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-block .quote-icon {
    color: var(--gold);
    font-size: 3rem;
    opacity: 0.3;
}

.testimonial-block blockquote {
    font-size: 1.4rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-block figcaption {
    color: var(--gold);
    font-weight: 600;
}

.testimonial-block figcaption small {
    color: var(--light-gray);
    font-weight: 400;
}

/* ============================================ */
/* CTA FINAL */
/* ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--black) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(201, 164, 76, 0.2);
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer-landing {
    background: var(--black);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-landing a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-landing a:hover {
    color: var(--gold);
}

.footer-landing .social-icons a {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-landing .social-icons a:hover {
    color: var(--gold);
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .navbar-landing .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .navbar-brand {
        font-size: 1.4rem;
    }
    .plan-card {
        margin-bottom: 1.5rem;
    }
}