/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0F0A08;
    color: #E5DED9;
    overflow-x: hidden;
}

/* Texto con degradado (terracota → naranja) */
.gradient-text {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F97316;
    margin-bottom: 12px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: rgba(15, 10, 8, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FAFAFA;
}

.nav-cta {
    color: #E5DED9;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background-color: #F97316;
    color: #0F0A08;
    border-color: #F97316;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,10,8,0.85) 0%, rgba(15,10,8,0.6) 50%, rgba(15,10,8,0.95) 100%);
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(194, 65, 12, 0.05) 45%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.badge {
    position: relative;
    font-size: 0.85rem;
    padding: 6px 16px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 20px;
    background: rgba(249, 115, 22, 0.15);
    color: #FDBA74;
    margin-bottom: 28px;
}

.hero h1 {
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    line-height: 1.05;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero .subtitulo {
    position: relative;
    font-size: 1.2rem;
    color: #E5DED9;
    max-width: 520px;
    margin-bottom: 40px;
}

.cta-btn {
    position: relative;
    background-color: #F97316;
    color: #0F0A08;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
}

/* Sección Menú */
.menu {
    padding: 140px 48px;
    text-align: center;
    background-color: #0F0A08;
}

.menu h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: left;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.menu-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-6px);
}

.menu-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.menu-content {
    padding: 24px 24px 28px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    gap: 12px;
}

.menu-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #FAFAFA;
    font-size: 1.2rem;
}

.precio {
    font-family: 'Space Grotesk', sans-serif;
    color: #F97316;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-card p {
    color: #B8ADA5;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Sección Historia */
.historia {
    padding: 140px 48px;
    text-align: center;
    background-color: #16100C;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.historia h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.historia p {
    max-width: 600px;
    margin: 0 auto;
    color: #B8ADA5;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Sección Info */
.info {
    padding: 140px 48px;
    text-align: center;
    background-color: #0F0A08;
}

.info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item .numero {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.info-item p {
    color: #B8ADA5;
    font-size: 0.95rem;
}

/* CTA Final */
.cta-final {
    padding: 160px 48px;
    text-align: center;
    background-color: #16100C;
}

.cta-final h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-final p {
    font-size: 1.1rem;
    color: #B8ADA5;
    margin-bottom: 36px;
}

/* Footer */
.footer {
    padding: 60px 48px 40px;
    text-align: center;
    background-color: #0F0A08;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .logo {
    display: block;
    margin-bottom: 16px;
}

.footer p {
    color: #6B5F58;
    font-size: 0.85rem;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 28px;
}

.footer-links a {
    color: #B8ADA5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #F97316;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    .menu-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    .cta-final h2 {
        font-size: 2.2rem;
    }
}