/* ============================================
   RESTAURANT MELIZ 2026 - CSS Optimizado
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============ VARIABLES ============ */
:root {
  --primary: #8B1A1A;
  --primary-light: #A52A2A;
  --accent: #D4AF37;
  --dark: #1A1A1A;
  --light: #F9F6F0;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #128C7E;
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Alturas del layout */
  --nav-h: 75px;
  --nav-h-strip: 115px;
  --nav-h-mobile: 65px;
  --nav-h-strip-mobile: 100px;
}

/* ============ RESET / BASE ============ */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: var(--nav-h-strip);
}

body {
  background: var(--white);
  font-family: 'Inter', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  padding-top: var(--nav-h-strip);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: 3.5rem; margin-bottom: 20px; }
h2 { font-size: 2.5rem; padding-bottom: 10px; }
h3 { font-size: 1.4rem; margin-bottom: 5px; }
h4 {
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

p { color: var(--text-light); font-size: 16px; line-height: 1.8; }

a { color: var(--primary); transition: var(--transition); text-decoration: none !important; }
a:hover, a:active, a:focus { color: var(--accent); outline: none; }

section { position: relative; padding: 100px 0; }

img { max-width: 100%; height: auto; }

/* ============ TÍTULOS DE SECCIÓN ============ */
.section-title { padding-bottom: 50px; }
.section-title h2 { margin: 0; position: relative; }
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 15px auto 0;
}
.section-title.text-left h2::after { margin-left: 0; }
.section-title h4 {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

#licores, #team, #menu, #testimonial { text-align: center; }

.overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  position: absolute; inset: 0;
}

/* ============ BOTONES ============ */
.section-btn {
  background: var(--primary);
  border-radius: 50px;
  border: 0;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 8px 20px rgba(139,26,26,0.3);
}
.section-btn:hover, .section-btn:focus {
  background: var(--dark);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* ============ NAVBAR ============ */
.custom-navbar {
  border: none;
  margin-bottom: 0;
  padding: 15px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar-logo {
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  transition: var(--transition);
}
.navbar-logo img { display: block; width: 100%; height: auto; }

.custom-navbar .nav li a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  padding: 12px 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}
.custom-navbar .nav li a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}
.custom-navbar .nav li a:hover::after,
.custom-navbar .nav li.active > a::after { width: 30px; }
.custom-navbar .nav li a:hover,
.custom-navbar .nav li.active > a {
  background: transparent;
  color: var(--primary);
}
.custom-navbar .navbar-nav > li > a:hover,
.custom-navbar .navbar-nav > li > a:focus { background-color: transparent; }
.custom-navbar .navbar-nav.navbar-nav-first { margin-left: 4em; }
.custom-navbar .navbar-nav.navbar-right li a { padding-right: 12px; padding-left: 12px; color: var(--dark); }
.custom-navbar .navbar-right .section-btn {
  padding: 10px 24px;
  font-size: 12px;
  margin-top: 8px;
  color: #fff !important;
}
.custom-navbar .navbar-toggle { border: none; padding-top: 10px; background: transparent; }
.custom-navbar .navbar-toggle .icon-bar { background: var(--dark); }

.custom-navbar.top-nav-collapse {
  padding: 10px 0;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}
.top-nav-collapse .navbar-logo { width: 170px; }

/* ============ HOME / SLIDER ============ */
#home { padding: 0; }
#home h1 {
  color: #fff;
  padding-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
}
#home h3 {
  color: var(--accent);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.slider .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - var(--nav-h-strip));
  min-height: 550px;
  display: flex;
  align-items: center;
  position: relative;
}
.slider .item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
}
.slider .caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}
.slider .caption .container { width: 100%; }
.slider .caption .col-md-8 { float: none !important; margin: 0 auto; padding: 0 15px; }

.slider .item-first { background-image: url(../images/slider-image1.jpg); }
.slider .item-second { background-image: url(../images/slider-image2.jpg); }
.slider .item-third { background-image: url(../images/ChichaMorada.jpg); }

.slider .owl-dots {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}
.owl-theme .owl-dots .owl-dot { display: block; }
.owl-theme .owl-dots .owl-dot span {
  width: 12px; height: 12px;
  margin: 0;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  border-radius: 50%;
  transition: var(--transition);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

/* ============ ABOUT ============ */
#about { padding-bottom: 100px; }
.about-info { padding: 0 3em 0 0; }
.about-info .section-title { padding-bottom: 25px; text-align: left; }
.about-info p { text-align: justify; }
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { transition: var(--transition); display: block; }
.about-image:hover img { transform: scale(1.05); }

/* ============ TARJETAS COMIDAS / LICORES ============ */
#team { background: var(--dark) !important; position: relative; }
#team .section-title h2 { color: #fff; }
#team .section-title h4 { color: var(--accent); }

.team-thumb, .licores-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: #fff;
  margin-bottom: 15px;
  transition: var(--transition);
}
.team-thumb:hover, .licores-thumb:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-thumb img, .licores-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.team-thumb:hover img, .licores-thumb:hover img { transform: scale(1.1); }

.team-hover, .licores-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(139,26,26,0.9), transparent 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  transition: var(--transition);
  transform: translateY(20px);
}
.team-thumb:hover .team-hover,
.licores-thumb:hover .licores-hover {
  opacity: 1;
  transform: translateY(0);
}
.team-item h4, .licores-item h4 {
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.social-icon { padding: 0; margin: 0; list-style: none; }
.social-icon li { display: inline-block; margin: 0 3px; }
.social-icon li a {
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  color: var(--primary);
  font-size: 18px;
  transition: var(--transition);
}
.social-icon li a:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.team-info, .licores-info {
  padding: 20px 25px 25px;
  background: #fff;
  text-align: left;
}
.team-info h3, .licores-info h3 {
  color: var(--dark);
  font-size: 1.25rem;
  margin: 0 0 5px;
}
.team-info p, .licores-info p {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}
.menus {
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}
.menus:hover { color: var(--accent) !important; }

/* Tarjeta tipo logo (insignia) */
.team-thumb.logo-card img {
  object-fit: contain;
  height: 300px;
  padding: 25px;
  background: var(--light);
}
.team-thumb.logo-card:hover img { transform: scale(1.05); }
.team-thumb.logo-card .team-hover {
  background: linear-gradient(to top, rgba(26,26,26,0.95), rgba(26,26,26,0.4) 60%, transparent);
}

/* ============ LICORES ============ */
#licores { background: var(--light); }

/* ============ TESTIMONIAL / NOVEDADES ============ */
#testimonial {
  background: url('../images/testimonial-bg.jpg') center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
#testimonial .section-title h2 { color: #fff; }
#testimonial p {
  color: #f0f0f0;
  font-size: 22px;
  line-height: 1.7;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
#testimonial .tst-author h4 { color: var(--accent); font-size: 14px; }
#testimonial .tst-author span { color: #ccc; font-size: 13px; margin-left: 8px; }
#testimonial .owl-dots { position: relative; margin-top: 30px; text-align: center; }
#testimonial .owl-theme .owl-dots .owl-dot { display: inline-block; }
#testimonial .owl-theme .owl-dots .owl-dot span { display: inline-block; margin: 20px 5px; }

/* ============ CONTACTO ============ */
#contact { background: var(--light); }
#contact .section-title { padding-bottom: 20px; text-align: left; }
#contact h2 { color: var(--dark); }

/* Columna izquierda: imagen + mapa */
.contact-duo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.contact-duo .contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 280px;
  flex-shrink: 0;
}

.contact-duo .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 25%;
  display: block;
  transition: transform 0.6s ease;
}
.contact-duo .contact-image:hover img { transform: scale(1.05); }

.contact-duo #google-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
  width: 100%;
}
.contact-duo #google-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Columna derecha: info + botón WhatsApp */
.contact-info-col {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10px;
}

.contact-lead {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-wsp-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--whatsapp);
  color: #fff !important;
  padding: 18px 32px;
  border-radius: 60px;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
  margin-bottom: 35px;
  max-width: 320px;
}
.contact-wsp-btn:hover {
  background: #1ebe5d;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37,211,102,0.6);
}
.contact-wsp-btn > i { font-size: 38px; flex-shrink: 0; }
.contact-wsp-btn span {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.contact-wsp-btn small {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-wsp-btn strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 15px;
}
.contact-feature i {
  width: 36px;
  height: 36px;
  background: rgba(139,26,26,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ============ FOOTER ============ */
footer {
  background: var(--dark);
  color: #ccc;
  padding: 80px 0 40px;
  border: none;
}
footer .section-title { padding-bottom: 15px; text-align: left; }
footer h2 { color: #fff; font-size: 1.3rem; font-family: 'Inter', sans-serif; font-weight: 600; }
footer p, footer a { color: #a8a8a8; font-size: 14px; }
footer a:hover { color: var(--accent); }
footer strong { color: #fff; display: block; margin-bottom: 5px; }
footer address p { margin-bottom: 8px; }
footer .footer-info { margin-top: 0; }
footer .footer-info .section-title h2::after { margin-left: 0; background: var(--accent); }

.footer-open-hour {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.footer-open-hour h2 { color: #fff; }
.footer-open-hour p, .footer-open-hour strong { color: #f5f5f5; }

footer .social-icon li a {
  background: rgba(255,255,255,0.1);
  color: #fff;
  width: 40px; height: 40px; line-height: 40px;
}
footer .social-icon li a:hover { background: var(--accent); }

.copyright-text p { color: #888; font-size: 12px; margin-top: 20px; }
.copyright-text a { color: var(--accent); }

/* Footer: columna redes y copyright */
.footer-social-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.footer-social-col .social-icon {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
}
.footer-social-col .social-icon li { margin: 0; list-style: none; }
.footer-social-col .copyright-text { text-align: center; margin: 0 auto; }
.footer-social-col .copyright-text p { margin: 0; line-height: 1.8; }

/* ============ WHATSAPP FLOTANTE ============ */
.float {
  position: fixed;
  width: 60px; height: 60px;
  bottom: 30px; right: 30px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wsp 2s infinite;
}
.float:hover {
  color: #fff;
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37,211,102,0.7);
}
.my-float { margin-top: 0; line-height: 60px; }

/* ============ BADGE DELIVERY EN SLIDER ============ */
.delivery-badge {
  position: absolute;
  top: 130px;
  right: 40px;
  z-index: 10;
}
.delivery-badge-inner {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  border: 3px solid #fff;
  animation: pulse-delivery 2s infinite;
  font-family: 'Inter', sans-serif;
}
.delivery-badge-inner i { font-size: 28px; margin-bottom: 3px; }
.delivery-badge-inner span { font-weight: 800; font-size: 13px; letter-spacing: 2px; }
.delivery-badge-inner small { font-size: 10px; opacity: 0.9; letter-spacing: 1px; }

/* ============ FRANJA DELIVERY (dentro del navbar) ============ */
.delivery-strip {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--whatsapp), var(--primary));
  background-size: 200% 100%;
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  z-index: 998;
  animation: bg-shift 8s linear infinite;
}
.delivery-strip-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-track 25s linear infinite;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
}
.delivery-strip-track span { flex-shrink: 0; }

/* ============ ITEM DELIVERY EN NOVEDADES ============ */
.delivery-item { padding: 10px 20px; }
.delivery-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  animation: pulse-delivery 2s infinite;
}
.delivery-icon i { font-size: 42px; color: #fff; }

.delivery-title {
  color: var(--accent) !important;
  font-size: 2rem !important;
  font-family: 'Playfair Display', serif !important;
  font-style: normal !important;
  margin-bottom: 15px;
}
.delivery-item p {
  color: #f0f0f0 !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-family: 'Inter', sans-serif !important;
  line-height: 1.6 !important;
}
.delivery-btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--whatsapp);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.delivery-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37,211,102,0.6);
  color: #fff !important;
}

/* ============ ANIMACIONES ============ */
@keyframes pulse-wsp {
  0%   { box-shadow: 0 8px 25px rgba(37,211,102,0.5); }
  50%  { box-shadow: 0 8px 25px rgba(37,211,102,0.5), 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 25px rgba(37,211,102,0.5); }
}
@keyframes pulse-delivery {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
  50%      { transform: scale(1.05); box-shadow: 0 10px 40px rgba(37,211,102,0.8), 0 0 0 15px rgba(37,211,102,0); }
}
@keyframes spinner { to { transform: rotate(360deg); } }
@keyframes scroll-track {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bg-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0;
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
}
.spinner { position: relative; }
.spinner:before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 45px; height: 45px;
  margin: -22px 0 0 -22px;
  border-radius: 50%;
  border: 2px solid #eee;
  border-top-color: var(--primary);
  animation: spinner 0.9s linear infinite;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .about-info { padding-right: 0; }
  .about-image { position: relative !important; margin-top: 30px; }
}

@media (max-width: 992px) {
  section { padding: 70px 0; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  #home h1 { font-size: 2.8rem; }
  .custom-navbar .navbar-nav.navbar-nav-first { margin-left: 0; }
  #google-map, .footer-info { margin-bottom: 40px; }
  #testimonial { background-attachment: scroll; }
  .slider .item { height: calc(85vh - var(--nav-h-strip)); min-height: 500px; }
  .contact-info-col { padding-left: 15px; margin-top: 40px; }
}

@media (max-width: 767px) {
  html { scroll-padding-top: var(--nav-h-strip-mobile); }
  body { padding-top: var(--nav-h-strip-mobile); }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  #home h1 { font-size: 2rem; }
  #home h3 { font-size: 11px; letter-spacing: 2px; }

  /* Navbar */
  .custom-navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
    text-align: center;
  }
  .custom-navbar .nav li a { color: var(--dark); line-height: normal; padding: 12px; }
  .custom-navbar .nav li a::after { display: none; }
  .custom-navbar .navbar-toggle .icon-bar { background: var(--dark); }
  .navbar-logo { width: 160px; }

  /* Slider */
  .slider .item { height: calc(100vh - var(--nav-h-strip-mobile)); }
  .slider .caption { padding: 0 15px; }
  .slider .caption .col-md-8 { padding: 0 15px; }

  /* Tarjetas */
  .team-thumb img, .licores-thumb img { height: 220px; }

  /* WhatsApp flotante */
  .float { width: 55px; height: 55px; font-size: 26px; line-height: 55px; bottom: 20px; right: 20px; }

  /* Footer */
  .footer-open-hour { padding: 25px; }
  .footer-social-col { margin-top: 30px; }

  /* Franja delivery */
  .delivery-strip { padding: 8px 0; }
  .delivery-strip-track { font-size: 11px; gap: 40px; }

  /* Badge delivery */
  .delivery-badge { top: 90px; right: 15px; }
  .delivery-badge-inner { width: 95px; height: 95px; }
  .delivery-badge-inner i { font-size: 20px; }
  .delivery-badge-inner span { font-size: 10px; letter-spacing: 1px; }
  .delivery-badge-inner small { font-size: 8px; }

  /* Contacto */
  .contact-duo { gap: 15px; }
  .contact-duo .contact-image { height: 220px; }
  .contact-duo #google-map { height: 300px; }
  .contact-wsp-btn { max-width: 100%; }
}