/* ==========================================
   /public/landing/landing.css - DISEÑO DE LA LANDING
   ========================================== */

body {
    margin: 0; padding: 0;
    font-family: 'Roboto', sans-serif;
    background: #09090b;
    color: #e4e4e7;
    overflow-x: hidden;
}

/* NAVEGACIÓN */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px; background: rgba(9, 9, 11, 0.9);
    position: fixed; top: 0; width: 100%; box-sizing: border-box;
    border-bottom: 1px solid #3f3f46; z-index: 1000;
    backdrop-filter: blur(5px);
}

.logo { font-family: 'Cinzel', serif; font-size: 24px; color: #fbbf24; font-weight: 900; text-shadow: 2px 2px 5px #000; }

.nav-links a {
    color: #a1a1aa; text-decoration: none; margin-left: 30px; font-weight: bold; transition: 0.3s;
}

.nav-links a:hover { color: #fbbf24; }

.btn-nav-login {
    background: linear-gradient(to bottom, #b45309, #78350f);
    color: #fef3c7 !important; padding: 10px 20px; border-radius: 4px;
    border: 1px solid #d97706; text-transform: uppercase; font-family: 'Cinzel', serif;
}

.btn-nav-login:hover { filter: brightness(1.2); }

/* SECCIÓN HERO (PORTADA) */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    background-image: radial-gradient(circle at 50% 50%, rgba(180, 83, 9, 0.2) 0%, #09090b 80%),
                      url('https://www.transparenttextures.com/patterns/aged-paper.png'); /* Textura sutil */
    text-align: center; padding: 0 20px; margin-top: 40px;
}

.hero-content { max-width: 800px; }

.hero h1 { font-family: 'Cinzel', serif; font-size: 4rem; color: #fbbf24; margin-bottom: 20px; text-shadow: 2px 4px 10px #000; }

.hero p { font-size: 1.2rem; color: #d4d4d8; line-height: 1.6; margin-bottom: 40px; }

.hero-buttons { display: flex; justify-content: center; gap: 20px; }

.btn-cta, .btn-secondary {
    padding: 15px 30px; font-size: 1.1rem; font-family: 'Cinzel', serif; font-weight: bold;
    cursor: pointer; border-radius: 4px; transition: 0.3s; text-transform: uppercase;
}

.btn-cta { background: linear-gradient(to bottom, #b45309, #78350f); color: #fef3c7; border: 1px solid #d97706; box-shadow: 0 4px 15px rgba(180, 83, 9, 0.4); }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(180, 83, 9, 0.6); }

.btn-secondary { background: transparent; color: #fbbf24; border: 2px solid #fbbf24; }
.btn-secondary:hover { background: rgba(251, 191, 36, 0.1); }

/* CARACTERÍSTICAS */
.features { padding: 80px 50px; background: #18181b; border-top: 1px solid #27272a; text-align: center; }

.section-title { font-family: 'Cinzel', serif; font-size: 2.5rem; color: #f8fafc; margin-bottom: 50px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }

.feature-card {
    background: #09090b; padding: 40px 30px; border-radius: 8px; border: 1px solid #3f3f46;
    transition: 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-card:hover { transform: translateY(-10px); border-color: #fbbf24; }

.feature-icon { font-size: 3rem; margin-bottom: 20px; }

.feature-card h3 { color: #fbbf24; font-family: 'Cinzel', serif; font-size: 1.5rem; margin-bottom: 15px; }

.feature-card p { color: #a1a1aa; line-height: 1.5; }

/* FOOTER */
footer { background: #000; text-align: center; padding: 30px; color: #71717a; border-top: 1px solid #27272a; font-size: 0.9rem; }