/* ============================================
   CHE PEBETA CATERING - Estilos principales
   ============================================ */

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

:root {
  --olive: #5C6B5D;
  --olive-light: #6d7e6e;
  --burgundy: #5A2E2E;
  --burgundy-light: #7a4040;
  --dark: #1F1F1F;
  --dark-bg: #1F1F1F;
  --warm-white: #F8F7F5;
  --white: #ffffff;
  --beige: #D8CFC4;
  --beige-light: #E8E2D9;
  --gray-bg: #F2F0EC;
  --text-gray: #6b6b6b;
  --text-light: #a0a0a0;
  --max-width: 1200px;
  --font-body: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;

  /* Legacy aliases for backward compat */
  --gold: #5C6B5D;
  --gold-light: #6d7e6e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.7;
  background: var(--warm-white);
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER / NAVEGACION
   Soporta ambas estructuras:
   - Subpages: .header > .container > nav > ul.nav-menu
   - Index: .site-header > .header-inner > nav.main-nav > ul.nav-list
   ============================================ */
.header,
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

.header.scrolled,
.site-header.scrolled {
  background-color: rgba(31, 31, 31, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header .container,
.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Logo (index.html) */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-family: var(--font-heading);
  margin-right: auto;
  text-decoration: none;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--beige);
}

/* Navigation links - both structures */
.nav-menu,
.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a,
.nav-list a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-list a:hover,
.nav-list a.active {
  color: var(--beige);
}

.btn-contact-nav,
.nav-cta-btn {
  background-color: transparent !important;
  color: var(--white) !important;
  padding: 14px 24px !important;
  border-radius: 0 !important;
  border: 2px solid var(--white) !important;
  font-weight: 700 !important;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s !important;
}

.btn-contact-nav:hover,
.nav-cta-btn:hover {
  background-color: var(--olive) !important;
  color: var(--white) !important;
  border-color: var(--olive) !important;
}

/* Mobile menu toggle - both structures */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 20px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO / SLIDER (index.html)
   ============================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider .slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slider .slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.slide-content {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.slide-content h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.slide-content p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-top: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.slide-content .btn {
  margin-top: 25px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.slider-dots .dot.active {
  background: var(--olive);
}

/* ============================================
   SECCIONES GENERICAS
   ============================================ */
.section {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--dark);
  color: var(--white);
}

.section-gray {
  background-color: var(--gray-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SERVICIOS (index.html)
   ============================================ */
.servicios-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.service-card {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  padding: 20px 0;
}

.service-card.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  position: relative;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
}

.service-text {
  flex: 1;
}

.service-text h2,
.service-text h3,
.service-card-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-text p,
.service-card-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
}

/* ============================================
   ABOUT US (index.html)
   ============================================ */
.about-section {
  background-color: var(--dark);
  color: var(--white);
  padding: 100px 0;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--white);
}

.accent-text,
.gold-text {
  color: var(--olive);
}

.about-content {
  margin-bottom: 30px;
}

.about-content p,
.about-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

.about-section strong {
  color: var(--white);
}

.about-video video,
.about-video iframe {
  width: 100%;
  border-radius: 8px;
  max-height: 500px;
}

/* ============================================
   MENU (index.html)
   ============================================ */
.menu-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.menu-header h2,
.menu-header .menu-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-divider {
  width: 80px;
  height: 2px;
  background: var(--olive);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.menu-column {
  /* wrapper for menu items in a column */
}

.menu-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.menu-item h3,
.menu-item h6 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.menu-item p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

.menu-cta {
  text-align: center;
  margin-top: 30px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary,
.btn-gold {
  background-color: var(--olive);
  color: var(--white);
}

.btn-primary:hover,
.btn-gold:hover {
  background-color: var(--olive-light);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--olive);
  color: var(--white);
}

.btn-burgundy {
  background-color: var(--burgundy);
  color: var(--white);
}

.btn-burgundy:hover {
  background-color: var(--burgundy-light);
  transform: translateY(-1px);
}

.btn-sm {
  font-size: 12px;
  padding: 10px 24px;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ============================================
   EQUIPO DE TRABAJO (index.html)
   ============================================ */
.team-section {
  padding: 100px 0;
  background: var(--gray-bg);
}

.team-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.team-text {
  flex: 1;
}

.team-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.team-video {
  margin-top: 20px;
}

.team-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  border: none;
}

.team-chef {
  flex: 0 0 300px;
  text-align: center;
}

.team-chef img {
  border-radius: 4px;
  margin: 0 auto;
  max-width: 100%;
}

.chef-name {
  margin-top: 10px;
  font-style: italic;
  color: var(--text-gray);
  font-size: 14px;
}

/* ============================================
   CLIENTES (index.html carousel)
   ============================================ */
.clients-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.clients-carousel {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.clients-track {
  display: flex;
  gap: 30px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  flex: 0 0 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(30%);
  transition: filter 0.3s, transform 0.3s;
}

.client-logo img {
  max-height: 100px;
  max-width: 160px;
  object-fit: contain;
}

.client-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.cta-section h2,
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cta-section p,
.cta-content p {
  font-size: 18px;
  color: var(--text-light);
}

/* ============================================
   FOOTER - ambas estructuras
   ============================================ */
.footer,
.site-footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3,
.footer h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.footer-col p,
.footer p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  color: var(--text-light);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--olive);
}

/* Footer links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-light);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
  display: inline-block;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--olive);
}

/* Footer contact */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact li svg {
  flex-shrink: 0;
}

.footer-contact a {
  font-size: 14px;
  color: var(--text-light);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--olive);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-gray);
}

.footer-bottom a {
  color: var(--text-gray);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--olive);
}

/* ============================================
   BOTONES FLOTANTES
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn,
.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.float-btn:hover,
.floating-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn,
.floating-btn.whatsapp {
  background: #25D366;
}

.instagram-btn,
.floating-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* ============================================
   PAGINA HEADER (subpages)
   ============================================ */
.page-header {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: -80px;
  padding: 120px 0 60px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-header p {
  color: rgba(255,255,255,0.9);
  margin-top: 10px;
  font-size: 16px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ============================================
   PAGINA CLIENTES
   ============================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.client-item {
  background: var(--white);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: transform 0.3s, border-color 0.3s;
}

.client-item:hover {
  transform: translateY(-2px);
  border-color: var(--olive);
}

.client-item img {
  max-height: 80px;
  object-fit: contain;
}

/* ============================================
   PAGINA GALERIA
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 20px;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay p {
  font-size: 14px;
  font-weight: 600;
}

/* Gallery Carousel */
.gallery-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.carousel-track {
  display: flex;
  gap: 10px;
  will-change: transform;
}

.gallery-carousel:hover .carousel-track {
  animation-play-state: paused !important;
}

.carousel-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 20px 12px 12px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.carousel-slide:hover .carousel-caption {
  opacity: 1;
}

.carousel-caption p {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
}

@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(var(--scroll-distance)); }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ============================================
   PAGINA CONTACTO
   ============================================ */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-gray);
}

.contact-info ul li svg {
  width: 20px;
  height: 20px;
  fill: var(--olive);
  flex-shrink: 0;
}

.contact-info ul li a {
  color: var(--text-gray);
  transition: color 0.3s;
}

.contact-info ul li a:hover {
  color: var(--olive);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid var(--beige);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s;
  background: var(--gray-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--olive);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* Contact form submit button */
.contact-form .btn-gold,
.contact-form button[type="submit"] {
  display: block;
  width: 100%;
  padding: 16px 36px;
  background: var(--olive);
  color: var(--white);
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.contact-form .btn-gold:hover,
.contact-form button[type="submit"]:hover {
  background: var(--olive-light);
  transform: translateY(-1px);
}

/* ============================================
   CTA BANNER (subpages)
   ============================================ */
.cta-banner {
  background: var(--olive);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ============================================
   VIDEO INSTITUCIONAL
   ============================================ */

/* ============================================
   POR QUE ELEGIRNOS
   ============================================ */
.why-section {
  padding: 100px 0;
  background: var(--gray-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.why-item {
  text-align: center;
  padding: 30px 20px;
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
}

.why-icon svg {
  width: 48px;
  height: 48px;
}

.why-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.why-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* ============================================
   MODALIDADES DE SERVICIO
   ============================================ */
.modalities-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.modalities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.modality-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
}

.modality-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.modality-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 20px;
}

/* ============================================
   NOVEDADES / BLOG
   ============================================ */
.novedades-section {
  padding: 100px 0;
  background: var(--gray-bg);
}

.novedades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.novedad-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s;
}

.novedad-card:hover {
  transform: translateY(-3px);
}

.novedad-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.novedad-card-body {
  padding: 25px;
}

.novedad-card-body .date {
  font-size: 12px;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.novedad-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.novedad-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* ============================================
   LANDING PAGES (Coffee Break / Finger Food)
   ============================================ */
.landing-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  padding: 120px 20px 80px;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 31, 31, 0.5);
  z-index: 1;
}

.landing-hero .container {
  position: relative;
  z-index: 2;
}

.landing-hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.landing-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: 300;
}

.landing-content {
  padding: 100px 0;
}

.landing-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.landing-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.landing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.option-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 35px;
  transition: transform 0.3s, border-color 0.3s;
}

.option-card:hover {
  transform: translateY(-3px);
  border-color: var(--olive);
}

.option-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.option-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
}

.landing-cta {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.landing-cta h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.landing-cta p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.landing-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  border-radius: 0;
}

/* ============================================
   ANIMACIONES
   ============================================ */

/* --- Fade In Up (default) --- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
}

.fade-in.visible {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Fade In Left --- */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

.fade-in-left.visible {
  animation: fadeInLeft 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- Fade In Right --- */
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
}

.fade-in-right.visible {
  animation: fadeInRight 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- Zoom In --- */
.zoom-in {
  opacity: 0;
  transform: scale(0.85);
}

.zoom-in.visible {
  animation: zoomIn 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Float (Elementor-style hover float) --- */
.float-anim {
  animation: elementorFloat 3s ease-in-out infinite;
}

@keyframes elementorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* --- Stagger delays for grid children --- */
.stagger-children .fade-in:nth-child(1),
.stagger-children .zoom-in:nth-child(1) { animation-delay: 0s; }
.stagger-children .fade-in:nth-child(2),
.stagger-children .zoom-in:nth-child(2) { animation-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3),
.stagger-children .zoom-in:nth-child(3) { animation-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4),
.stagger-children .zoom-in:nth-child(4) { animation-delay: 0.3s; }
.stagger-children .fade-in:nth-child(5),
.stagger-children .zoom-in:nth-child(5) { animation-delay: 0.4s; }
.stagger-children .fade-in:nth-child(6),
.stagger-children .zoom-in:nth-child(6) { animation-delay: 0.5s; }
.stagger-children .fade-in:nth-child(7),
.stagger-children .zoom-in:nth-child(7) { animation-delay: 0.6s; }
.stagger-children .fade-in:nth-child(8),
.stagger-children .zoom-in:nth-child(8) { animation-delay: 0.7s; }
.stagger-children .fade-in:nth-child(9),
.stagger-children .zoom-in:nth-child(9) { animation-delay: 0.8s; }
.stagger-children .fade-in:nth-child(10),
.stagger-children .zoom-in:nth-child(10) { animation-delay: 0.9s; }
.stagger-children .fade-in:nth-child(n+11),
.stagger-children .zoom-in:nth-child(n+11) { animation-delay: 1s; }

/* --- Slide content animation (Hero) --- */
.slide.active .slide-content h1 {
  animation: heroTextIn 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s both;
}

@keyframes heroTextIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Pulse (for CTA buttons) --- */
.pulse-hover:hover {
  animation: pulse 0.6s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* --- Smooth counter / number animation helper --- */
.count-up {
  opacity: 0;
}

.count-up.visible {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* --- Gold underline reveal --- */
.reveal-underline {
  position: relative;
  display: inline-block;
}

.reveal-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--olive);
  transition: width 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-underline.visible::after {
  width: 100%;
}

/* --- Image hover lift (for service/gallery cards) --- */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 921px) {
  /* Subpage nav */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 998;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    font-size: 18px;
  }

  /* Index nav */
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 998;
    justify-content: center;
    align-items: center;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .main-nav .nav-list a {
    font-size: 18px;
  }

  .menu-toggle,
  .hamburger {
    display: flex;
  }

  /* Logo visible on mobile */
  .logo {
    margin-right: auto;
  }

  .slide-content h1 {
    font-size: 32px;
  }

  .service-card {
    flex-direction: column !important;
    gap: 30px;
    text-align: center;
  }

  .service-image img {
    margin: 0 auto;
  }

  .about-title {
    font-size: 32px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    flex-direction: column;
  }

  .team-chef {
    flex: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .modalities-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero h1 {
    font-size: 32px;
  }

  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }

  .cta-section h2,
  .cta-content h2 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .clients-carousel {
    gap: 15px;
  }

  .client-logo {
    flex: 0 0 130px;
    height: 90px;
  }

  .page-header {
    min-height: 250px;
    padding: 100px 0 40px;
  }

}

@media (max-width: 544px) {
  .slide-content h1 {
    font-size: 26px;
  }

  .page-header h1 {
    font-size: 30px;
  }

  .clients-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }

  .floating-buttons {
    bottom: 15px;
    right: 15px;
  }

  .float-btn,
  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .contact-form {
    padding: 25px;
  }

  .menu-header {
    flex-direction: column;
    gap: 10px;
  }

  .menu-divider {
    display: none;
  }
}
