/* =========================================================
   Proyecto Final AEW - El Rincón del Sabor
   ========================================================= */

/* Variables generales */
:root {
    --primario: #8b1e1e;
    --primario-oscuro: #641313;
    --secundario: #f2b705;
    --secundario-oscuro: #d89d00;
    --oscuro: #24170f;
    --texto: #242424;
    --muted: #666666;
    --blanco: #ffffff;
    --gris: #f4f4f4;
    --crema: #fff8ed;
    --borde: #e2d8cf;
    --sombra: 0 18px 45px rgba(36, 23, 15, .10);
    --radius: 18px;
    --bg-nosotros-premium: url("../img/banner-rincon-sabor01.png");
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(242, 183, 5, .14), transparent 32%),
        linear-gradient(180deg, #fff8ed, #f4f4f4 46%, #fff8ed);
    color: var(--texto);
}

img {
    max-width: 100%;
}

.contenedor {
    width: min(92%, 1120px);
    margin: 0 auto;
}

/* =========================================================
   Header y navegación
   ========================================================= */

.site-header {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--borde);
    position: sticky;
    top: 0;
    z-index: 30;
}

.header-top {
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-web {
    display: inline-flex;
    align-items: center;
}

.logo-web img {
    width: 270px;
    max-height: 95px;
    object-fit: contain;
    display: block;
    transition: transform .25s ease;
}

.logo-web img:hover {
    transform: scale(1.04);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.header-actions span,
.icon-action {
    width: 34px;
    height: 34px;
    border: 1px solid var(--borde);
    border-radius: 10px;
    background: var(--crema);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.header-actions span:hover,
.icon-action:hover {
    transform: translateY(-3px);
    background: var(--secundario);
}

.mini-action {
    background: var(--secundario);
    color: var(--oscuro);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.mini-action-dark {
    background: var(--primario);
    color: var(--blanco);
}

.nav-bg {
    background: linear-gradient(90deg, var(--primario), var(--primario-oscuro));
    box-shadow: 0 10px 26px rgba(139, 30, 30, .18);
}

.navegacion-principal {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.navegacion-principal a {
    color: var(--blanco);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    padding: 1rem 1.25rem;
    transition: background-color .25s ease, color .25s ease, transform .2s ease;
}

.navegacion-principal a:hover,
.navegacion-principal a.activo {
    background-color: var(--secundario);
    color: var(--oscuro);
    transform: translateY(-2px);
}

/* =========================================================
   Estructura general
   ========================================================= */

main {
    padding: 30px 0;
}

.bienvenida,
.page-hero,
.cta {
    background: rgba(255, 255, 255, .96);
    border-left: 8px solid var(--primario);
    padding: 34px;
    margin: 32px auto;
    box-shadow: var(--sombra);
    border-radius: var(--radius);
}

.eyebrow {
    color: var(--primario);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin: 0 0 10px;
}

.bienvenida h1,
.page-hero h1 {
    color: var(--primario);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
    margin: 0 0 14px;
}

.bienvenida p,
.page-hero p {
    line-height: 1.75;
    color: #333333;
}

.section-title {
    text-align: center;
    margin: 46px 0 26px;
}

.section-title h2 {
    margin: 0;
    color: var(--primario);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.card-info,
.producto,
.panel,
.integrante {
    background: var(--blanco);
    border: 1px solid var(--borde);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-info:hover,
.producto:hover,
.panel:hover,
.integrante:hover {
    transform: translateY(-7px);
    border-color: rgba(139, 30, 30, .35);
    box-shadow: 0 24px 52px rgba(139, 30, 30, .18);
}

.card-info h3,
.producto h3,
.panel h2,
.integrante h2 {
    color: var(--primario);
}

/* =========================================================
   Botones
   ========================================================= */

.buscador button,
.producto button,
.form-contacto button,
.btn {
    padding: 12px 20px;
    border: 0;
    border-radius: 10px;
    background: var(--secundario);
    color: var(--oscuro);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 9px 22px rgba(139, 30, 30, .14);
    transition: background-color .25s ease, color .25s ease, transform .2s ease;
}

.buscador button:hover,
.producto button:hover,
.form-contacto button:hover,
.btn:hover {
    background: var(--primario);
    color: var(--blanco);
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--secundario);
}

.btn-light {
    background: var(--blanco);
    color: var(--primario);
}

.btn-outline {
    background: transparent;
    color: var(--blanco);
    border: 2px solid rgba(255, 255, 255, .78);
}

.btn-outline:hover {
    background: var(--blanco);
    color: var(--primario);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primario);
    color: var(--primario);
}

.btn-whatsapp {
    background: #25d366;
    color: #083b1d;
}

/* =========================================================
   Slider principal
   ========================================================= */

.hero-slider {
    position: relative;
    border: 1px solid var(--borde);
    overflow: hidden;
    background: #eeeeee;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
}

.hero-slider img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;
}

.slider-restaurante {
    min-height: auto;
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #24170f;
}

.slider-restaurante .slide {
    position: relative;
    display: none;
    min-height: auto;
}

.slider-restaurante .slide.activo {
    display: block;
    animation: fadeSlide .45s ease;
}

@keyframes fadeSlide {
    from {
        opacity: .35;
        transform: scale(1.01);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slider-restaurante .slide img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.slider-restaurante .slide::after,
.hero-pro::after {
    display: none !important;
}

.slide-panel,
.hero-overlay {
    display: none !important;
}

.slider-btn {
    position: absolute;
    top: 45%;
    width: 42px;
    height: 42px;
    background: rgba(139, 30, 30, .95);
    color: var(--blanco);
    border: 0;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    z-index: 7;
    transition: transform .2s ease, background .2s ease;
}

.slider-btn:hover {
    background: var(--secundario);
    color: var(--oscuro);
    transform: scale(1.08);
}

.slider-btn.left {
    left: 18px;
}

.slider-btn.right {
    right: 18px;
}

.slider-dots {
    position: absolute;
    z-index: 6;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.slider-dots button {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.slider-dots button.activo {
    background: var(--secundario);
    transform: scale(1.2);
    
/* Slider con imagen contenida */

.slider-restaurante {
    height: 430px;
    overflow: hidden;
    background: #24170f;
    border-radius: 18px;
}

.slider-restaurante .slide {
    width: 100%;
    height: 430px;
    display: none;
    background: #24170f;
}

.slider-restaurante .slide.activo {
    display: block;
}

.slider-restaurante .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #24170f;
}

/* Flechas propias del slider */
.slider-restaurante .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-restaurante .slider-btn.left {
    left: 18px;
}

.slider-restaurante .slider-btn.right {
    right: 18px;
}

/* Puntos propios del slider */
.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 10;
}

/* Responsive */
@media (max-width: 900px) {
    .slider-restaurante,
    .slider-restaurante .slide {
        height: 320px;
    }
}

@media (max-width: 520px) {
    .slider-restaurante,
    .slider-restaurante .slide {
        height: 240px;
    }
}    

/*SLIDER - 1869x580*/

.slider-restaurante {
    height: 430px !important;
    min-height: 430px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: #24170f !important;
}

.slider-restaurante .slide {
    width: 100% !important;
    height: 430px !important;
    min-height: 430px !important;
    display: none;
    overflow: hidden !important;
}

.slider-restaurante .slide.activo {
    display: block !important;
}

.slider-restaurante .slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

@media (max-width: 900px) {
    .slider-restaurante,
    .slider-restaurante .slide {
        height: 320px !important;
        min-height: 320px !important;
    }
}

@media (max-width: 520px) {
    .slider-restaurante,
    .slider-restaurante .slide {
        height: 240px !important;
        min-height: 240px !important;
    }
}

}

/* =========================================================
   Carrusel inferior / acciones
   ========================================================= */

.promo-carrusel {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.promo-card {
    position: relative;
    overflow: hidden;
    min-height: 305px;
    background:
        radial-gradient(circle at top right, rgba(242, 183, 5, .16), transparent 34%),
        var(--blanco);
    border: 1px solid var(--borde);
    border-top: 7px solid var(--primario);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--sombra);
    isolation: isolate;
    background-size: cover;
    background-position: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.promo-card:nth-child(2) {
    border-top-color: var(--secundario);
}

.promo-card:nth-child(3) {
    border-top-color: #25d366;
}

.promo-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(139, 30, 30, .17);
}

.promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 248, 237, .88));
    z-index: -1;
}

.promo-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -45px;
    width: 230px;
    height: 180px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .20;
    z-index: -1;
}

.promo-bg-sabor::after {
    background-image: url("../img/bg-sabor-casa.png");
}

.promo-bg-carta::after {
    background-image: url("../img/bg-carta-completa.png");
}

.promo-bg-pedido::after {
    background-image: url("../img/bg-pedido-online.png");
}

.promo-card p {
    margin: 0 0 10px;
    color: var(--primario);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.3px;
    font-size: .82rem;
}

.promo-card h2 {
    color: var(--primario);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.08;
    margin: 0 0 12px;
}

.promo-card span {
    display: block;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 18px;
}

.promo-card section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.promo-card .btn {
    box-shadow: none;
}

/* =========================================================
   Fecha, hora y buscador
   ========================================================= */

.fecha-hora {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
    gap: 0;
}

.fecha-hora article {
    border: 1px solid #aaaaaa;
    background: var(--blanco);
    padding: 8px 12px;
    font-size: 13px;
}

.buscador {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px auto 30px;
}

.buscador input {
    width: min(620px, 100%);
    padding: 14px;
    border: 1px solid #bbbbbb;
    border-radius: 10px;
    background: #ffffff;
}

/* =========================================================
   Inicio
   ========================================================= */

.bienvenida-pro {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 28px;
    align-items: center;
}

.bienvenida-stats {
    display: grid;
    gap: 14px;
}

.bienvenida-stats article {
    background: var(--crema);
    border: 1px solid var(--borde);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.bienvenida-stats strong {
    display: block;
    color: var(--primario);
    font-size: 2rem;
}

.bienvenida-stats span {
    color: #555555;
    font-weight: 700;
}

.beneficios-grid,
.productos-grid,
.media-grid,
.equipo-lista {
    display: grid;
    gap: 24px;
}

.beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
}

.experiencia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.experiencia-grid article,
.testimonios-grid article,
.valores-grid article {
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--sombra);
    transition: transform .25s ease, box-shadow .25s ease;
}

.experiencia-grid article:hover,
.testimonios-grid article:hover,
.valores-grid article:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 52px rgba(139, 30, 30, .16);
}

.experiencia-grid span {
    font-size: 2.2rem;
}

.experiencia-grid h3,
.testimonios-grid strong,
.valores-grid h3 {
    color: var(--primario);
}

.cta {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, var(--secundario), #ffd86b);
    border-left-color: var(--primario);
}

.cta img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: 4px solid var(--blanco);
    border-radius: 16px;
}

/* Video promocional en página principal */
.video-home {
    margin-top: 34px;
    margin-bottom: 34px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: center;
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-left: 8px solid var(--primario);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--sombra);
}

.video-home h2 {
    color: var(--primario);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
    margin: 0 0 12px;
}

.video-home p {
    color: #555555;
    line-height: 1.7;
}

.video-home-player video {
    width: 100%;
    border-radius: 18px;
    display: block;
    background: #111111;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

/* =========================================================
   Carta / productos
   ========================================================= */

.productos-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}

.productos-grid-small {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.producto {
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.producto img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--borde);
}

.producto h3 {
    margin: 13px 0 6px;
}

.producto p {
    color: var(--muted);
    margin: 4px 0;
}

.producto strong {
    display: block;
    color: var(--primario);
    margin: 12px 0;
    font-size: 1.18rem;
}

.producto button {
    margin-top: auto;
    align-self: center;
}

.producto.oculto {
    display: none;
}

.producto.destacado {
    border: 2px solid var(--secundario);
}

.categoria-carta {
    padding-top: 8px;
    margin-bottom: 56px;
}

.categoria-nav {
    position: sticky;
    top: 150px;
    z-index: 15;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 34px;
    background: rgba(255, 248, 237, .86);
    backdrop-filter: blur(8px);
    padding: 12px;
    border-radius: 999px;
    border: 1px solid var(--borde);
}

.categoria-nav a {
    background: var(--blanco);
    color: var(--primario);
    border: 1px solid var(--borde);
    border-radius: 999px;
    padding: 11px 16px;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.categoria-nav a:hover {
    background: var(--primario);
    color: var(--blanco);
    transform: translateY(-3px);
}

/* =========================================================
   Nosotros
   ========================================================= */

.nosotros-layout,
.contacto-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.nosotros-story {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 24px;
}

.story-main {
    background:
        radial-gradient(circle at top right, rgba(242, 183, 5, .18), transparent 32%),
        var(--blanco);
}

.story-promise ul {
    line-height: 1.9;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.panel {
    line-height: 1.75;
}

.aside {
    border-left: 8px solid var(--primario);
}

/* =========================================================
   Reseñas
   ========================================================= */

.testimonios {
    margin-top: 42px;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonios-grid p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #444444;
}

.reviews-grid {
    align-items: stretch;
}

.review-card {
    position: relative;
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--sombra);
    transition: transform .25s ease, box-shadow .25s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(139, 30, 30, .16);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primario), var(--secundario));
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.review-head strong {
    display: block;
    color: var(--primario);
}

.review-head small {
    color: #777777;
}

.stars {
    color: var(--secundario);
    letter-spacing: 2px;
    font-size: 1.15rem;
    margin: 10px 0;
}

.review-card p:last-child {
    color: #444444;
    line-height: 1.65;
    margin-bottom: 0;
}

/* =========================================================
   Contacto / reservas / mapa
   ========================================================= */

.reserva-rapida {
    background: linear-gradient(135deg, var(--primario), var(--primario-oscuro));
    color: var(--blanco);
    border-radius: var(--radius);
    box-shadow: var(--sombra);
    padding: 26px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.reserva-rapida h2 {
    margin: 0 0 8px;
}

.reserva-rapida p {
    margin: 0;
    color: #ffe8a3;
}

.form-contacto {
    display: grid;
    gap: 13px;
}

.form-contacto label {
    font-weight: 800;
    color: var(--primario);
}

.form-contacto input,
.form-contacto textarea,
.form-contacto select {
    width: 100%;
    padding: 13px;
    border: 1px solid #bbbbbb;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.form-contacto textarea {
    min-height: 135px;
    resize: vertical;
}

.mapa,
.youtube {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 14px;
}

.mapa-contacto {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--borde);
}

.mapa-contacto h3 {
    color: var(--primario);
    margin-bottom: 6px;
}

.mapa-contacto p {
    color: #555555;
    line-height: 1.55;
}

.contacto-layout .mapa {
    min-height: 300px;
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--borde);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .08);
}

/* =========================================================
   Multimedia / audio / video
   ========================================================= */

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.media-card.full {
    grid-column: span 2;
}

audio,
video {
    width: 100%;
    margin-top: 12px;
    border-radius: 14px;
}

/* Audio premium */
.audio-premium-card {
    background:
        radial-gradient(circle at top right, rgba(242, 183, 5, .20), transparent 35%),
        linear-gradient(135deg, #ffffff, #fff8ed);
    border-left: 8px solid var(--secundario);
}

.audio-premium-info {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
}

.audio-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primario), var(--secundario));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 14px 28px rgba(139, 30, 30, .18);
}

.audio-premium-card h2 {
    margin: 0 0 8px;
    color: var(--primario);
}

.audio-premium-card .eyebrow {
    margin-bottom: 6px;
}

.audio-premium-card p {
    color: #555555;
    line-height: 1.6;
}

.audio-player-box,
.soundcloud-box {
    margin-top: 20px;
    background: #ffffff;
    border: 1px solid var(--borde);
    border-radius: 18px;
    padding: 14px;
    box-shadow: inset 0 0 0 1px rgba(139, 30, 30, .04);
}

.audio-player-box audio {
    width: 100%;
    display: block;
    margin: 0;
}

.soundcloud-box iframe {
    border-radius: 14px;
    display: block;
}

/* Título premium multimedia */
.section-title-premium {
    max-width: 780px;
    margin: 50px auto 34px;
    text-align: center;
    padding: 28px 24px;
    background:
        radial-gradient(circle at top, rgba(242, 183, 5, .18), transparent 45%),
        #ffffff;
    border: 1px solid var(--borde);
    border-radius: 22px;
    box-shadow: var(--sombra);
}

.section-title-premium .section-badge {
    display: inline-block;
    background: var(--secundario);
    color: var(--oscuro);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 14px;
}

.section-title-premium h2 {
    color: var(--primario);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    margin: 0 0 12px;
    text-transform: none;
}

.section-title-premium p {
    max-width: 620px;
    margin: 0 auto;
    color: #555555;
    line-height: 1.7;
}

/* Videos multimedia corregidos */
.videos-restaurante-grid {
    width: min(92%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.video-card {
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--sombra);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.video-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 52px rgba(139, 30, 30, .16);
}

.video-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    display: block;
    background: #111111;
    border-radius: 0;
    margin: 0;
}

.video-card section {
    padding: 18px;
    flex: 1;
}

.video-card h3 {
    margin: 0 0 8px;
    color: var(--primario);
    font-size: 1.15rem;
}

.video-card p {
    margin: 0;
    color: #555555;
    line-height: 1.55;
    font-size: .95rem;
}

.iframe-info {
    margin-top: 36px;
}

.iframe-info a {
    color: inherit;
}

.youtube-fallback {
    margin-top: 18px;
    background: var(--crema);
    border: 1px solid var(--borde);
    border-radius: 16px;
    padding: 18px;
}

.youtube-fallback h3 {
    color: var(--primario);
    margin-top: 0;
}

.youtube-fallback p {
    color: #555555;
    line-height: 1.6;
}

.media-card.full .youtube-fallback {
    max-width: 720px;
}

.video-credit {
    margin-top: 14px;
    background: var(--crema);
    border: 1px solid var(--borde);
    border-radius: 14px;
    padding: 14px;
}

.video-credit p {
    margin-top: 0;
    color: #555555;
    line-height: 1.6;
}

.video-credit a {
    color: var(--primario);
    font-weight: 900;
    text-decoration: none;
}

.video-credit a:hover {
    text-decoration: underline;
}

/* =========================================================
   Equipo
   ========================================================= */

.equipo-hero {
    background:
        radial-gradient(circle at top left, rgba(242, 183, 5, .28), transparent 32%),
        linear-gradient(135deg, #24170f, #8b1e1e);
    color: #ffffff;
    padding: 46px;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
    text-align: center;
    margin-bottom: 34px;
}

.equipo-hero .eyebrow {
    color: var(--secundario);
}

.equipo-hero h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    margin: 10px auto 16px;
    max-width: 820px;
}

.equipo-hero p {
    max-width: 820px;
    margin: auto;
    line-height: 1.75;
    color: #fff5d6;
}

.organigrama-equipo {
    display: grid;
    gap: 34px;
}

.team-lead {
    max-width: 420px;
    margin: 0 auto;
    border: 2px solid var(--secundario);
}

.team-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.equipo-grid-unificado {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.team-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--borde);
    border-radius: 22px;
    padding: 22px;
    text-align: center;
    box-shadow: var(--sombra);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.team-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: linear-gradient(90deg, var(--primario), var(--secundario));
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(139, 30, 30, .20);
    border-color: rgba(139, 30, 30, .35);
}

.team-card img {
    width: 100%;
    max-width: 240px;
    height: 275px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .14);
    margin: 18px auto 16px;
    display: block;
}

.team-card h2 {
    color: var(--primario);
    margin: 8px 0 4px;
    font-size: 1.35rem;
}

.team-card .cargo {
    color: var(--oscuro);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 14px;
    font-size: .86rem;
}

.team-card p {
    line-height: 1.65;
    color: #555555;
}

.team-equal {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
}

.team-equal img {
    max-width: 210px;
    height: 245px;
}

.team-equal h2 {
    min-height: 54px;
}

.team-equal .cargo {
    min-height: 34px;
}

.team-equal p:last-child {
    flex: 1;
}

.cargo-badge {
    display: inline-block;
    background: var(--crema);
    color: var(--primario);
    border: 1px solid var(--borde);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 900;
    font-size: .78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.equipo-resumen {
    margin-top: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.equipo-resumen article {
    background: var(--blanco);
    border-left: 8px solid var(--primario);
    padding: 26px;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
}

.equipo-resumen h2 {
    color: var(--primario);
    margin-top: 0;
}

.equipo-resumen p {
    line-height: 1.7;
    color: #555555;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
    background: var(--oscuro);
    color: var(--blanco);
    margin-top: 34px;
}

.footer-grid {
    padding: 32px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer h3 {
    color: var(--secundario);
}

.footer-pro {
    margin-top: 46px;
}

.footer-grid-pro {
    grid-template-columns: 1.2fr .8fr 1fr 1fr;
}

.footer-grid-pro a {
    display: block;
    color: var(--blanco);
    text-decoration: none;
    margin: 7px 0;
    opacity: .88;
}

.footer-grid-pro a:hover {
    color: var(--secundario);
}

.footer-social {
    display: grid;
    gap: 4px;
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
    padding: 12px;
    color: #cfc2b8;
}

/* =========================================================
   WhatsApp
   ========================================================= */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 31px;
    box-shadow: 0 14px 32px rgba(37, 211, 102, .40);
    z-index: 60;
    transition: transform .25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.chatbot-box {
    position: fixed;
    right: 22px;
    bottom: 96px;
    width: min(360px, calc(100vw - 34px));
    background: white;
    border-radius: 18px;
    border: 1px solid var(--borde);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
    z-index: 65;
    overflow: hidden;
    display: none;
}

.chatbot-box.abierto {
    display: block;
    animation: subir .25s ease;
}

@keyframes subir {
    from {
        transform: translateY(12px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chatbot-header {
    background: linear-gradient(90deg, var(--primario), var(--primario-oscuro));
    color: white;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1rem;
}

.chatbot-header button {
    border: 0;
    background: transparent;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.chatbot-body {
    padding: 16px;
}

.chatbot-body p {
    margin-top: 0;
    color: #444444;
}

.chatbot-actions {
    display: grid;
    gap: 10px;
}

.chatbot-actions a {
    background: var(--crema);
    border: 1px solid var(--borde);
    padding: 11px;
    border-radius: 12px;
    color: var(--oscuro);
    text-decoration: none;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.chatbot-actions a:hover {
    background: var(--secundario);
    transform: translateX(4px);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {
    .equipo-grid-unificado {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-restaurante-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 950px) {
    .bienvenida-pro,
    .experiencia-grid,
    .testimonios-grid,
    .nosotros-story,
    .valores-grid,
    .footer-grid-pro {
        grid-template-columns: 1fr;
    }

    .reserva-rapida {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .header-top,
    .buscador {
        flex-direction: column;
        text-align: center;
    }

    .navegacion-principal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navegacion-principal a {
        flex: 1 1 160px;
        text-align: center;
    }

    .fecha-hora,
    .beneficios-grid,
    .productos-grid,
    .nosotros-layout,
    .contacto-layout,
    .media-grid,
    .equipo-lista,
    .footer-grid,
    .cta,
    .promo-carrusel,
    .video-home,
    .team-row,
    .equipo-resumen {
        grid-template-columns: 1fr;
    }

    .media-card.full {
        grid-column: auto;
    }

    .buscador input {
        width: 100%;
    }

    .hero-slider img {
        height: 320px;
    }

    .slider-restaurante .slide img {
        height: 320px;
    }

    .logo-web img {
        width: 230px;
        margin: auto;
    }

    .cta img {
        height: 190px;
    }

    .team-lead {
        max-width: 100%;
    }

    .equipo-hero {
        padding: 28px;
    }

    .categoria-nav {
        position: static;
        border-radius: 20px;
    }
}

@media (max-width: 620px) {
    .mini-action {
        display: none;
    }

    .productos-grid-small,
    .equipo-grid-unificado,
    .videos-restaurante-grid {
        grid-template-columns: 1fr;
    }

    .team-equal h2,
    .team-equal .cargo {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .audio-premium-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .audio-icon {
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .bienvenida,
    .page-hero,
    .cta,
    .panel,
    .card-info,
    .producto {
        padding: 18px;
    }

    .hero-slider img,
    .slider-restaurante .slide img {
        height: 240px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
    }

    .integrante {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .integrante span {
        margin: auto;
    }

    .promo-card section,
    .hero-cta {
        flex-direction: column;
    }

    .promo-card .btn,
    .hero-cta .btn {
        text-align: center;
    }
}


/* =========================================================
   Imágenes 3 cuadros del inicio
   ========================================================= */

.promo-card {
    min-height: 320px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

.promo-card::before {
    background: linear-gradient(
        90deg,
        rgba(255, 248, 237, .96) 0%,
        rgba(255, 248, 237, .88) 42%,
        rgba(255, 248, 237, .45) 68%,
        rgba(255, 248, 237, .12) 100%
    ) !important;
    z-index: -1;
}

.promo-card::after {
    display: none !important;
}

.promo-bg-sabor {
    background-image: url("../img/bg-sabor-casa.png") !important;
}

.promo-bg-carta {
    background-image: url("../img/bg-carta-completa.png") !important;
}

.promo-bg-pedido {
    background-image: url("../img/bg-pedido-online.png") !important;
}

@media (max-width: 900px) {
    .promo-card {
        min-height: 280px;
    }
}

@media (max-width: 520px) {
    .promo-card {
        min-height: 260px;
    }
}

/* =========================================================
   Nosotros Premium
   ========================================================= */

.nosotros-premium-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(36, 23, 15, .86), rgba(139, 30, 30, .78)),
        var(--bg-nosotros-premium);
    background-size: cover;
    background-position: center;
    color: var(--blanco);
    border-left: 0;
    padding: 58px 46px;
}

.nosotros-premium-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(242, 183, 5, .26), transparent 38%);
    pointer-events: none;
}

.nosotros-hero-texto {
    position: relative;
    max-width: 760px;
    z-index: 1;
}

.nosotros-premium-hero .eyebrow {
    color: var(--secundario);
}

.nosotros-premium-hero h1 {
    color: var(--blanco);
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.02;
    margin-bottom: 18px;
}

.nosotros-premium-hero p {
    color: #fff3cf;
    font-size: 1.08rem;
    line-height: 1.8;
}

.nosotros-premium-layout {
    display: grid;
    grid-template-columns: 1.5fr .9fr;
    gap: 28px;
    margin-top: 34px;
}

.nosotros-card-principal,
.nosotros-promesa-premium {
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--borde);
    border-radius: 24px;
    box-shadow: var(--sombra);
    padding: 34px;
}

.nosotros-card-principal {
    position: relative;
    overflow: hidden;
}

.nosotros-card-principal::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    background: var(--secundario);
    opacity: .12;
    border-radius: 50%;
}

.nosotros-card-principal h2,
.nosotros-promesa-premium h2 {
    color: var(--primario);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.12;
    margin: 0 0 18px;
}

.nosotros-card-principal p,
.nosotros-promesa-premium p {
    color: #444;
    line-height: 1.8;
}

.nosotros-firma {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--crema);
    border: 1px solid var(--borde);
    border-radius: 18px;
    padding: 16px;
    width: fit-content;
}

.nosotros-firma span {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primario), var(--secundario));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.nosotros-firma strong {
    display: block;
    color: var(--primario);
    font-size: 1.05rem;
}

.nosotros-firma small {
    color: #666;
    font-weight: 700;
}

.nosotros-promesa-premium {
    border-top: 7px solid var(--secundario);
    background:
        radial-gradient(circle at top right, rgba(242, 183, 5, .18), transparent 38%),
        #ffffff;
}

.nosotros-promesa-premium ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
}

.nosotros-promesa-premium li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--crema);
    border: 1px solid var(--borde);
    border-radius: 16px;
    padding: 14px;
    color: #444;
    font-weight: 800;
}

.nosotros-promesa-premium li span {
    width: 38px;
    height: 38px;
    background: var(--blanco);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valores-premium {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.valores-premium article {
    position: relative;
    overflow: hidden;
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--sombra);
    transition: transform .25s ease, box-shadow .25s ease;
}

.valores-premium article:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 52px rgba(139, 30, 30, .16);
}

.valores-premium article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: linear-gradient(90deg, var(--primario), var(--secundario));
}

.valores-premium span {
    width: 58px;
    height: 58px;
    background: var(--crema);
    border: 1px solid var(--borde);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.valores-premium h3 {
    color: var(--primario);
    font-size: 1.35rem;
    margin: 0 0 10px;
}

.valores-premium p {
    color: #555;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .nosotros-premium-layout,
    .valores-premium {
        grid-template-columns: 1fr;
    }

    .nosotros-premium-hero {
        padding: 38px 24px;
    }

    .nosotros-firma {
        width: 100%;
    }
}

/* =========================================================
   Slider contenido + vínculos
   ========================================================= */

.slider-restaurante {
    width: 100% !important;
    height: 430px !important;
    min-height: 430px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: #24170f !important;
    position: relative !important;
}

.slider-restaurante .slide {
    width: 100% !important;
    height: 430px !important;
    min-height: 430px !important;
    overflow: hidden !important;
    display: none;
    position: relative !important;
    cursor: pointer;
}

.slider-restaurante .slide.activo {
    display: block !important;
}

.slider-restaurante .slide img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 0 !important;
    margin: 0 !important;
    background: #24170f !important;
}

.slider-restaurante .slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;
    cursor: pointer !important;
}

.slider-restaurante .slider-btn.left {
    left: 18px !important;
}

.slider-restaurante .slider-btn.right {
    right: 18px !important;
}

.slider-restaurante .slider-dots,
.slider-dots {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 18px !important;
    z-index: 20 !important;
}

.slider-restaurante a.btn,
.slider-restaurante .btn {
    position: relative;
    z-index: 25;
}

@media (max-width: 900px) {
    .slider-restaurante,
    .slider-restaurante .slide {
        height: 320px !important;
        min-height: 320px !important;
    }
}

@media (max-width: 520px) {
    .slider-restaurante,
    .slider-restaurante .slide {
        height: 240px !important;
        min-height: 240px !important;
    }
}


/* =========================================================
   Slider Home - altura proporcionada
   ========================================================= */

.slider-restaurante {
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
}

.slider-restaurante .slide {
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
}

.slider-restaurante .slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #24170f !important;
}

@media (max-width: 900px) {
    .slider-restaurante,
    .slider-restaurante .slide {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }
}

@media (max-width: 520px) {
    .slider-restaurante,
    .slider-restaurante .slide {
        height: 230px !important;
        min-height: 230px !important;
        max-height: 230px !important;
    }
}


/* =========================================================
   Hero Premium para Carta / Contacto / Multimedia
   ========================================================= */

:root {
    --bg-carta-hero: url("../img/banner-carta.png");
    --bg-contacto-hero: url("../img/banner-contacto.png");
    --bg-multimedia-hero: url("../img/banner-multimedia.png");
}

.page-hero.hero-carta,
.page-hero.hero-contacto,
.page-hero.hero-multimedia {
    position: relative;
    overflow: hidden;
    border-left: 0;
    color: var(--blanco);
    padding: 54px 46px;
    min-height: 245px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.page-hero.hero-carta {
    background-image:
        linear-gradient(90deg, rgba(36, 23, 15, .88), rgba(139, 30, 30, .72), rgba(36, 23, 15, .24)),
        var(--bg-carta-hero);
}

.page-hero.hero-contacto {
    background-image:
        linear-gradient(90deg, rgba(36, 23, 15, .90), rgba(139, 30, 30, .72), rgba(36, 23, 15, .22)),
        var(--bg-contacto-hero);
}

.page-hero.hero-multimedia {
    background-image:
        linear-gradient(90deg, rgba(36, 23, 15, .90), rgba(139, 30, 30, .72), rgba(36, 23, 15, .24)),
        var(--bg-multimedia-hero);
}

.page-hero.hero-carta::before,
.page-hero.hero-contacto::before,
.page-hero.hero-multimedia::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(242, 183, 5, .22), transparent 38%);
    pointer-events: none;
}

.page-hero.hero-carta > *,
.page-hero.hero-contacto > *,
.page-hero.hero-multimedia > * {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.page-hero.hero-carta .eyebrow,
.page-hero.hero-contacto .eyebrow,
.page-hero.hero-multimedia .eyebrow {
    color: var(--secundario);
}

.page-hero.hero-carta h1,
.page-hero.hero-contacto h1,
.page-hero.hero-multimedia h1 {
    color: var(--blanco);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.02;
    margin-bottom: 16px;
}

.page-hero.hero-carta p,
.page-hero.hero-contacto p,
.page-hero.hero-multimedia p {
    color: #fff3cf;
    font-size: 1.05rem;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .page-hero.hero-carta,
    .page-hero.hero-contacto,
    .page-hero.hero-multimedia {
        padding: 38px 24px;
        min-height: 220px;
    }
}

@media (max-width: 520px) {
    .page-hero.hero-carta,
    .page-hero.hero-contacto,
    .page-hero.hero-multimedia {
        min-height: 240px;
    }
}
