/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terracota: #c4501a;
  --terracota-oscuro: #9e3e12;
  --verde: #2a4d2a;
  --verde-medio: #3d6b3d;
  --dorado: #d4882a;
  --crema: #f7f0e6;
  --crema-oscura: #ede4d4;
  --texto: #1c1c1c;
  --texto-suave: #5a5a5a;
  --blanco: #ffffff;
  --radio: 10px;
  --sombra: 0 4px 24px rgba(0,0,0,0.09);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.65;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.15rem; font-family: 'Inter', sans-serif; font-weight: 600; }
h1 em { font-style: normal; color: var(--terracota); }

a { color: inherit; text-decoration: none; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

.section-header { margin-bottom: 2.5rem; }
.section-header p { color: var(--texto-suave); font-size: 1.05rem; margin-top: 0.4rem; }
.section-header.centrado { text-align: center; }

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 0.75rem;
}

/* ===== BOTONES ===== */
.btn-cta {
  display: inline-block;
  background: var(--terracota);
  color: var(--blanco);
  padding: 0.85rem 2.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
}
.btn-cta:hover { background: var(--terracota-oscuro); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--verde);
  color: var(--verde);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--verde); color: var(--blanco); }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--verde);
  color: var(--verde);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.75rem;
}
.btn-instagram:hover { background: var(--verde); color: var(--blanco); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--verde);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: 0.02em;
}

.nav { display: flex; gap: 2.25rem; }
.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--dorado); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--verde);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
}
.nav-mobile a {
  padding: 0.75rem 0;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-mobile.open { display: flex; }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 72px);
  max-height: 820px;
  background: var(--crema);
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem 2.5rem;
  gap: 0;
}

.hero-logo-wrap { margin-bottom: 1.5rem; }

.hero-logo-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
}

.hero-content h1 { margin-bottom: 0.2rem; }
.hero-titulo-principal { font-size: clamp(2rem, 4vw, 3rem); }
.hero-subtitulo { font-size: clamp(1.2rem, 2.2vw, 1.7rem); color: var(--terracota); margin-top: -0.1rem; }
.hero-content > p {
  color: var(--texto-suave);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  max-width: 380px;
}

.hero-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--texto-suave);
  margin-bottom: 1.25rem;
}
.hero-stars { color: var(--dorado); font-size: 0.95rem; letter-spacing: 1px; }

.hero-image { overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ===== CAROUSEL ===== */
.carousel-section { background: var(--verde); }

.carousel {
  position: relative;
  overflow: hidden;
  height: 480px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide img { object-position: center; }

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: var(--blanco);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 3rem 2.5rem 1.5rem;
  letter-spacing: 0.02em;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--blanco);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: rgba(255,255,255,0.3); }
.carousel-btn.prev { left: 1.5rem; }
.carousel-btn.next { right: 1.5rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.dot.active { background: var(--blanco); transform: scale(1.25); }

/* ===== PRODUCTOS ===== */
.productos { padding: 5rem 0; background: var(--blanco); }

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

.producto-card {
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra);
  background: var(--blanco);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid #f0e8dc;
}
.producto-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(0,0,0,0.12); }

.producto-img { height: 210px; overflow: hidden; }
.producto-img img { transition: transform 0.4s; }
.producto-card:hover .producto-img img { transform: scale(1.04); }

.producto-info { padding: 1.1rem 1.25rem 1.4rem; }
.producto-info h3 { color: var(--verde); margin-bottom: 0.35rem; }
.producto-info p { color: var(--texto-suave); font-size: 0.88rem; line-height: 1.6; }

/* ===== NOSOTROS ===== */
.nosotros { background: var(--crema); padding: 5rem 0; }

.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.nosotros-image {
  position: relative;
  border-radius: var(--radio);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--sombra);
}

.rating-chip {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--blanco);
  border-radius: 8px;
  padding: 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.chip-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
}
.chip-stars { color: var(--dorado); font-size: 0.9rem; margin-bottom: 2px; }
.rating-chip span { font-size: 0.8rem; color: var(--texto-suave); }

.nosotros-texto h2 { margin-bottom: 1.25rem; }
.nosotros-texto p { color: var(--texto-suave); margin-bottom: 1rem; font-size: 0.97rem; }

/* ===== RESEÑAS ===== */
.resenas { padding: 5rem 0; background: var(--blanco); }

.resenas-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.resenas-score-bloque {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.big-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--verde);
  line-height: 1;
  font-weight: 700;
}
.big-stars { color: var(--dorado); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 0.2rem; }
.resenas-score-bloque p { color: var(--texto-suave); font-size: 0.88rem; }

.resenas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.resena-card {
  background: var(--crema);
  border-radius: var(--radio);
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--terracota);
}
.resena-stars { color: var(--dorado); font-size: 0.95rem; margin-bottom: 0.75rem; }
.resena-card p { color: var(--texto-suave); font-size: 0.92rem; line-height: 1.65; margin-bottom: 0.75rem; font-style: italic; }
.resena-autor { font-size: 0.8rem; font-weight: 600; color: var(--texto); letter-spacing: 0.02em; }

/* ===== SERVICIOS ===== */
.servicios { padding: 5rem 0; background: var(--crema); }

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servicio-item {
  background: var(--blanco);
  border-radius: var(--radio);
  padding: 1.75rem 1.5rem;
  border: 1px solid #e8ddd0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.servicio-item:hover { box-shadow: var(--sombra); transform: translateY(-3px); }

.servicio-icono {
  width: 52px;
  height: 52px;
  background: var(--crema);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--verde);
}

.servicio-item h3 { color: var(--verde); margin-bottom: 0.4rem; font-size: 1rem; }
.servicio-item p { color: var(--texto-suave); font-size: 0.88rem; line-height: 1.6; }

/* ===== CONTACTO ===== */
.contacto { padding: 5rem 0; background: var(--verde); color: var(--blanco); }

.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.info-bloque .label { color: var(--dorado); }
.info-bloque h2 { color: var(--blanco); margin-bottom: 2rem; }

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-icono {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dorado);
}

.info-item strong { display: block; margin-bottom: 0.25rem; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.7; }
.info-item p { font-size: 0.95rem; opacity: 0.9; line-height: 1.7; }
.info-item a { color: var(--dorado); }
.info-item a:hover { text-decoration: underline; }

.mapa { border-radius: var(--radio); overflow: hidden; }

.btn-mapa {
  display: block;
  text-align: center;
  background: var(--terracota);
  color: var(--blanco);
  padding: 0.9rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-mapa:hover { background: var(--terracota-oscuro); }

/* ===== FOOTER ===== */
.footer {
  background: #131f13;
  color: var(--blanco);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.footer-logo img {
  height: 110px;
  width: auto !important;
  object-fit: contain;
}

.footer-centro {
  text-align: center;
  font-size: 0.88rem;
  opacity: 0.7;
  line-height: 1.9;
}
.footer-centro a { color: var(--dorado); }
.footer-copy { opacity: 0.5; font-size: 0.8rem; margin-top: 0.2rem; }

.footer-ig {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s;
}
.footer-ig:hover { background: rgba(255,255,255,0.16); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .productos-grid { grid-template-columns: repeat(2, 1fr); }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .nosotros-inner, .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .nosotros-image { height: 340px; }
}

@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 3rem 1.5rem 2rem; }
  .hero-image { height: 300px; }
  .nav { display: none; }
  .menu-btn { display: flex; }
  .productos-grid { grid-template-columns: 1fr; }
  .servicios-grid { grid-template-columns: 1fr; }
  .resenas-grid { grid-template-columns: 1fr; }
  .carousel { height: 320px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-logo { justify-content: center; }
}
