/* =============================================
   EL COCHITO SINALOENSE — website.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@800;900&family=Pacifico&family=Inter:wght@400;600&display=swap');

/* --- Variables --- */
:root {
    --azul-profundo:  #153A6A;
    --azul-medio:     #1B447D;
    --azul-brillante: #2E90F4;
    --azul-claro:     #6AB7FF;
    --amarillo:       #F5C518;
    --naranja:        #E96C19;
    --blanco:         #FFFFFF;
    --cafe:           #8A4F24;
    --verde:          #49A94D;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: var(--azul-profundo);
    background-image:
        radial-gradient(ellipse at top, #1a5296 0%, #153A6A 50%, #0a1f3d 100%),
        url('../images/qr_back.jpg');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* --- Main Wrapper --- */
.main-wrapper {
    width: 100%;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Brand Card --- */
.brand-card {
    width: 100%;
    background: linear-gradient(160deg, rgba(27,68,125,0.85) 0%, rgba(21,58,106,0.95) 100%);
    border: 2px solid var(--azul-brillante);
    border-radius: 24px;
    box-shadow:
        0 0 40px rgba(46,144,244,0.25),
        0 8px 32px rgba(0,0,0,0.5);
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(6px);
}

/* --- Logo --- */
.brand-logo {
    width: 160px;
    max-width: 60%;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

/* --- Títulos --- */
.brand-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--blanco);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow:
        2px 2px 0 var(--azul-brillante),
        0 4px 16px rgba(0,0,0,0.6);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.brand-subtitle {
    font-family: 'Pacifico', cursive;
    font-size: 1.4rem;
    color: var(--naranja);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    margin-bottom: 0.6rem;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--azul-claro);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.85;
}

/* --- Botones --- */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-cochito {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-cochito:hover {
    transform: translateY(-3px);
}

.btn-cochito:active {
    transform: translateY(0);
}

/* Botón Menú — Amarillo */
.btn-menu {
    background-color: var(--amarillo);
    color: var(--azul-profundo);
    box-shadow: 0 4px 20px rgba(245,197,24,0.4);
}

.btn-menu:hover {
    background-color: #ffd740;
    color: var(--azul-profundo);
    box-shadow: 0 8px 28px rgba(245,197,24,0.55);
}

/* Botón Opiniones — Naranja */
.btn-review {
    background-color: var(--naranja);
    color: var(--blanco);
    box-shadow: 0 4px 20px rgba(233,108,25,0.4);
}

.btn-review:hover {
    background-color: #ff7d2a;
    color: var(--blanco);
    box-shadow: 0 8px 28px rgba(233,108,25,0.55);
}

/* --- Divider --- */
.divider {
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--azul-brillante), transparent);
    margin: 1.25rem auto;
}

/* --- En Construcción --- */
.construction-icon {
    font-size: 2.5rem;
    color: var(--amarillo);
    text-shadow: 0 2px 12px rgba(245,197,24,0.5);
    margin-bottom: 0.75rem;
}

.construction-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--amarillo);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
}

.construction-text {
    font-size: 0.95rem;
    color: var(--azul-claro);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Responsive --- */
@media (max-width: 400px) {
    .brand-title  { font-size: 2.4rem; }
    .brand-card   { padding: 2rem 1.25rem; }
}
