

/* Paleta elegante para cervecería - Verde oscuro / Petróleo / Detalles en ámbar */
:root {
    --verde-cerveceria: #1a4d3e;
    --verde-claro: #2a6b56;
    --ambar: #c97e2c;
    --ambar-claro: #e09d4a;
    --fondo-claro: #f7f5f0;
    --texto-oscuro: #1e2a2a;
    --texto-gris: #4a5b5b;
    --borde: #e2ddd4;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--fondo-claro);
    color: var(--texto-oscuro);
}

/* Navbar */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid var(--ambar-claro);
}

.navbar-brand {
    font-weight: 800;
    color: var(--verde-cerveceria) !important;
    font-size: 1.5rem;
}

.navbar-brand i {
    color: var(--ambar);
}

.nav-link {
    color: var(--texto-gris) !important;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--verde-cerveceria) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--verde-cerveceria) 0%, #0d3328 100%);
    color: white;
    padding: 90px 0;
    position: relative;
}

.hero h1 {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.badge-cerveza {
    background-color: var(--ambar);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Botones */
.btn-primary-cerveza {
    background-color: var(--ambar);
    color: white;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s;
}

.btn-primary-cerveza:hover {
    background-color: var(--ambar-claro);
    transform: translateY(-2px);
    color: white;
}

.btn-outline-cerveza {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s;
}

.btn-outline-cerveza:hover {
    background-color: white;
    color: var(--verde-cerveceria);
}

/* Cards de características */
.card-feature {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.card-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--ambar);
    margin-bottom: 1.2rem;
}

.card-feature h4 {
    color: var(--verde-cerveceria);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Sección de tipos de cerveza */
.seccion-titulo {
    text-align: center;
    font-weight: 800;
    color: var(--verde-cerveceria);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.seccion-subtitulo {
    text-align: center;
    color: var(--texto-gris);
    margin-bottom: 3rem;
}

.tipo-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--borde);
}

.tipo-card:hover {
    border-color: var(--ambar);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tipo-icono {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

/* CTA final */
.cta-final {
    background: linear-gradient(135deg, var(--verde-cerveceria) 0%, #0d3328 100%);
    border-radius: 24px;
    padding: 3rem;
    color: white;
}

/* Footer */
footer {
    background-color: #1a2a25;
    color: #a8bcb5;
    margin-top: 4rem;
    padding: 3rem 0 1.5rem;
}

footer a {
    color: #c9dbd4;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--ambar);
}

.footer-legal {
    border-top: 1px solid #2d4a42;
    font-size: 0.8rem;
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 50px 0;
    }

    .cta-final {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 50px 0;
    }

    .cta-final {
        padding: 1.5rem;
    }

    /* 👇 AÑADE ESTO PARA SEPARAR LOS BOTONES EN MÓVIL */
    .hero .mt-4 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero .btn {
        width: auto;
        min-width: 220px;
        margin: 0 !important;
    }
}

