/* ============================================
   LA CUINETA ROSTISSERIA — Custom Styles
   Color Palette: Burgundy (#7B2D3B) + Blush (#E8A0B0)
   Fonts: Playfair Display + Inter
   ============================================ */

/* CSS Custom Properties */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5A1F2B;
  --burgundy-light: #9B3D4F;
  --blush: #E8A0B0;
  --blush-light: #F2C4CE;
  --blush-pale: #FDE8EC;
  --cream: #F5E6D3;
  --cream-light: #FDF6EE;
  --cream-dark: #E8D5C0;
  --text-dark: #1A0A0E;
  --text-mid: #4A2030;
  --text-light: #7A5060;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.08);
  --shadow-md: 0 8px 30px rgba(123, 45, 59, 0.12);
  --shadow-lg: 0 20px 60px rgba(123, 45, 59, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(253, 246, 238, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--burgundy);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blush);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--burgundy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--burgundy) !important;
  color: var(--cream) !important;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--burgundy-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--burgundy);
  padding: 8px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--burgundy);
}

.mobile-cta-link {
  margin-top: 16px;
  font-size: 1.1rem;
  font-family: var(--font-body);
  background: var(--burgundy);
  color: var(--cream);
  padding: 14px 36px;
  border-radius: var(--radius-xl);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--blush-pale) 50%, var(--cream) 100%);
  padding: 120px 24px 80px;
}

/* Geometric background shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo {
  position: absolute;
}

.geo-circle-1 {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.15;
  top: -100px;
  right: -100px;
}

.geo-circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--burgundy);
  opacity: 0.06;
  bottom: 10%;
  left: -50px;
}

.geo-rect-1 {
  width: 200px;
  height: 200px;
  background: var(--blush-light);
  opacity: 0.2;
  top: 20%;
  left: 5%;
  border-radius: var(--radius-lg);
  transform: rotate(15deg);
}

.geo-triangle {
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 200px solid var(--burgundy);
  opacity: 0.05;
  bottom: 5%;
  right: 10%;
}

.geo-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--burgundy) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.15;
  top: 30%;
  right: 5%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero text */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blush);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--burgundy);
  font-style: italic;
  position: relative;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--blush);
  opacity: 0.5;
  border-radius: 3px;
  z-index: -1;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

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

.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--blush);
  opacity: 0.6;
}

/* Hero visual / collage */
.hero-visual {
  position: relative;
}

.hero-collage {
  position: relative;
  height: 600px;
}

.collage-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.collage-main {
  width: 320px;
  height: 420px;
  top: 40px;
  right: 20px;
}

.collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  box-shadow: var(--shadow-md);
}

.collage-small {
  width: 220px;
  height: 150px;
}

.collage-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-top {
  top: 0;
  left: 0;
}

.collage-bottom {
  bottom: 20px;
  left: 0;
}

.collage-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.accent-block {
  position: absolute;
  border-radius: var(--radius-md);
}

.accent-block-1 {
  width: 100px;
  height: 100px;
  background: var(--burgundy);
  opacity: 0.1;
  top: -20px;
  left: 30%;
  border-radius: 50%;
}

.accent-block-2 {
  width: 60px;
  height: 60px;
  background: var(--blush);
  opacity: 0.4;
  bottom: 60px;
  right: -10px;
  border-radius: var(--radius-sm);
  transform: rotate(30deg);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: -10px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--burgundy);
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -10px; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--burgundy);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--blush);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title .accent {
  color: var(--burgundy);
  font-style: italic;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ============================================
   NOSOTROS
   ============================================ */
.nosotros {
  background: var(--cream-light);
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nosotros-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.nosotros-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--blush-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

.nosotros-visual {
  position: relative;
}

.nosotros-img-wrapper {
  position: relative;
}

.nosotros-img-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.geo-accent {
  position: absolute;
  border-radius: var(--radius-md);
}

.geo-accent-1 {
  width: 120px;
  height: 120px;
  background: var(--burgundy);
  opacity: 0.08;
  top: -30px;
  right: -30px;
  border-radius: 50%;
}

.geo-accent-2 {
  width: 80px;
  height: 80px;
  background: var(--blush);
  opacity: 0.3;
  bottom: -20px;
  left: -20px;
  transform: rotate(25deg);
}

.nosotros-quote-card {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}

.nosotros-quote-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-top: 8px;
}

/* ============================================
   PRODUCTOS
   ============================================ */
.productos {
  background: var(--white);
  overflow: hidden;
}

.productos-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-circle-3 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--burgundy);
  opacity: 0.03;
  top: -100px;
  left: -100px;
}

.geo-rect-2 {
  width: 150px;
  height: 150px;
  background: var(--blush);
  opacity: 0.1;
  bottom: 10%;
  right: 5%;
  border-radius: var(--radius-lg);
  transform: rotate(-20deg);
}

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

.producto-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(123, 45, 59, 0.06);
}

.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.producto-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.producto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.producto-card:hover .producto-img img {
  transform: scale(1.08);
}

.producto-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.producto-info {
  padding: 24px;
}

.producto-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.producto-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ============================================
   SERVICIOS
   ============================================ */
.servicios {
  background: var(--burgundy);
  overflow: hidden;
}

.servicios-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.servicios-accent {
  background: var(--burgundy-dark);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.servicios-accent::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.06;
  top: -80px;
  right: -80px;
}

.servicios-accent .section-label {
  color: var(--blush);
}

.servicios-accent .section-label::before {
  background: var(--blush);
}

.servicios-accent .section-title {
  margin-bottom: 20px;
}

.servicios-accent-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.servicio-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
}

.servicio-mini:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(6px);
}

.servicios-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.servicio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  transition: all var(--transition);
  border: 1px solid rgba(123, 45, 59, 0.06);
}

.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.servicio-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--blush);
  line-height: 1;
}

.servicio-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.servicio-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ============================================
   HORARIO
   ============================================ */
.horario {
  background: var(--cream-light);
}

.horario-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.horario-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.horario-table {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.horario-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(123, 45, 59, 0.06);
  align-items: center;
  transition: background var(--transition);
}

.horario-row:last-child {
  border-bottom: none;
}

.horario-row:hover {
  background: var(--blush-pale);
}

.horario-dia {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.horario-horas {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.horario-cerrado .horario-dia {
  color: var(--burgundy);
}

.horario-cerrado .horario-horas {
  color: var(--burgundy);
  font-weight: 600;
}

.horario-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
}

.horario-visual {
  position: relative;
}

.horario-img-stack {
  position: relative;
}

.horario-img-stack img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.horario-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}

.horario-floating-card svg {
  color: var(--burgundy);
}

.horario-floating-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.horario-floating-card span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   CONTACTO
   ============================================ */
.contacto {
  background: var(--white);
  overflow: hidden;
}

.contacto-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-circle-4 {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.08;
  bottom: -100px;
  right: -50px;
}

.geo-rect-3 {
  width: 120px;
  height: 120px;
  background: var(--burgundy);
  opacity: 0.04;
  top: 10%;
  left: 5%;
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacto-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.contacto-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contacto-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contacto-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--blush-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

.contacto-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contacto-item span,
.contacto-item a {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.contacto-item a:hover {
  color: var(--burgundy);
  text-decoration: underline;
}

/* Form */
.contacto-form-wrapper {
  background: var(--cream-light);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid rgba(123, 45, 59, 0.06);
  position: relative;
  overflow: hidden;
}

.contacto-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush));
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(123, 45, 59, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--blush-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: var(--cream);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--cream);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 230, 211, 0.6);
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.6);
  transition: color var(--transition);
}

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

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.6);
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(245, 230, 211, 0.6);
  transition: color var(--transition);
}

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

.footer-contact svg {
  margin-top: 3px;
  min-width: 14px;
  color: var(--blush);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245, 230, 211, 0.4);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }

  .nosotros-grid,
  .servicios-layout,
  .horario-wrapper,
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .nosotros-quote-card {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .section {
    padding: 72px 0;
  }

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

  .servicios-accent {
    padding: 36px 28px;
  }

  .contacto-form-wrapper {
    padding: 28px;
  }

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

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

  .horario-row {
    grid-template-columns: 100px 1fr;
    padding: 12px 20px;
  }

  .horario-floating-card {
    left: 10px;
    bottom: -10px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .nosotros-quote-card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 16px;
  }
}
