* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #FFE4E2;
  font-family: 'Inter', sans-serif;
  color: #3d1f1a;
  scroll-behavior: smooth;
  line-height: 1.6;
}
h1, h2, h3, .logo, .nav-links a {
  font-family: 'Cormorant Garamond', serif;
}
h1 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFF0A7;
  text-shadow: 0 2px 20px rgba(0,0,0,0.12);
  line-height: 1.1;
}
h1 span {
  color: #FFE4E2;
  font-weight: 400;
  font-size: 2rem;
}
h2 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #6E1823;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}
h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #9F6A58;
  border-radius: 4px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* HEADER */
header {
  background: rgba(110, 24, 35, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 240, 167, 0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}
.logo a {
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #FFF0A7;
  letter-spacing: -0.3px;
  transition: color 0.3s;
}
.logo a:hover { color: #ffffff; }
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: #FFE4E2;
  transition: 0.3s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active-link {
  border-bottom-color: #FFF0A7;
  color: #FFF0A7;
}
.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #FFF0A7;
}
section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(159, 106, 88, 0.10);
}
/* HERO */
.hero {
  background: linear-gradient(145deg, #6E1823 0%, #9F6A58 100%);
  padding: 4.5rem 0;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: rgba(255, 240, 167, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 228, 226, 0.03);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}
.hero-text { flex: 1.2; }
.hero-text p {
  font-size: 1.2rem;
  color: #FFE4E2;
  margin: 1.5rem 0 1rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
}
.hero-img { flex: 0.8; text-align: center; }
.hero-img img {
  width: 100%;
  max-width: 360px;
  border-radius: 20px 80px 20px 80px;
  box-shadow: 0 25px 60px -15px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
  object-fit: cover;
  aspect-ratio: 1/1.15;
  border: 3px solid rgba(255, 240, 167, 0.15);
}
.hero-img img:hover { transform: scale(1.02); }
.btn {
  display: inline-block;
  background: #FFF0A7;
  color: #6E1823;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: 0.3s;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  letter-spacing: 0.3px;
}
.btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.btn-oscuro {
  background: #6E1823;
  color: #FFF0A7;
}
.btn-oscuro:hover {
  background: #8a2632;
  color: #ffffff;
}
/* imagen + texto para secciones específicas */
.seccion-especial {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}
.seccion-especial .texto {
  flex: 1.2;
}
.seccion-especial .texto p {
  font-size: 1.15rem;
  color: #3d1f1a;
  line-height: 1.9;
  font-weight: 400;
}
.seccion-especial .imagen {
  flex: 1;
  display: flex;
  justify-content: center;
  background: #f7e1df;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(159, 106, 88, 0.08);
}
.seccion-especial .imagen img {
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(110, 24, 35, 0.06);
  transition: transform 0.4s ease;
  display: block;
}
.seccion-especial .imagen img:hover {
  transform: scale(1.01);
}
.orden-imagen-derecha .imagen { order: 2; }
.orden-imagen-derecha .texto { order: 1; }
.orden-imagen-izquierda .imagen { order: 1; }
.orden-imagen-izquierda .texto { order: 2; }

/* trabajo */
.trabajo-texto {
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  font-size: 1.15rem;
  color: #3d1f1a;
  line-height: 1.9;
}
.trabajo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.trabajo-grid .item {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(159, 106, 88, 0.08);
  box-shadow: 0 8px 30px rgba(110, 24, 35, 0.04);
  text-align: center;
  transition: all 0.35s;
}
.trabajo-grid .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(110, 24, 35, 0.08);
}
.trabajo-grid .item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(159, 106, 88, 0.06);
}
.trabajo-grid .item h3 {
  font-size: 1.35rem;
  color: #6E1823;
  font-weight: 600;
}
.trabajo-grid .item p {
  color: #4d2a24;
  font-size: 0.95rem;
  margin-top: 0.4rem;
  line-height: 1.6;
}
/* contacto */
.contacto-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  background: #ffffff;
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 10px 45px rgba(110, 24, 35, 0.06);
  border: 1px solid rgba(159, 106, 88, 0.06);
}
.info-contacto { flex: 1; }
.info-contacto p { color: #3d1f1a; }
.contacto-detalle {
  margin: 1.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #3d1f1a;
}
.contacto-detalle i {
  width: 32px;
  color: #6E1823;
  font-size: 1.1rem;
}
.contacto-detalle a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #3d1f1a;
  text-decoration: none;
}
.contacto-detalle a:hover {
  color: #6E1823;
}
.badge-horario {
  margin-top: 1rem;
  background: #FFF0A7;
  border-radius: 30px;
  padding: 0.8rem 1.2rem;
  color: #6E1823;
  display: inline-block;
  font-weight: 500;
}
.badge-horario i {
  color: #6E1823;
  margin-right: 0.5rem;
}
/* whatsapp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: white;
  border-radius: 60px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  z-index: 999;
  transition: 0.25s;
  border: none;
  letter-spacing: 0.3px;
}
.whatsapp-float i {
  font-size: 1.6rem;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  background: #20b859;
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
}
@media (max-width: 600px) {
  .whatsapp-float {
    padding: 14px 16px;
    font-size: 0.85rem;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float i { font-size: 1.3rem; }
  .whatsapp-float span { display: none; }
}
footer {
  background: #6E1823;
  text-align: center;
  padding: 2.5rem;
  color: #FFE4E2;
  font-size: 0.9rem;
}
footer p { color: #FFE4E2; }
footer .footer-destacado { color: #FFF0A7; }
/* responsive */
@media (max-width: 860px) {
  .navbar { padding: 0.8rem 1.5rem; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    background: rgba(110, 24, 35, 0.97);
    padding: 1.5rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 240, 167, 0.10);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
  }
  .nav-links.show { display: flex; }
  .menu-icon { display: block; }
  h1 { font-size: 2.6rem; }
  h1 span { font-size: 1.6rem; }
  h2 { font-size: 2rem; }
  .hero-content { flex-direction: column-reverse; text-align: center; }
  .hero-text p { margin: 1rem auto; }
  .hero-img img { max-width: 260px; }
  .container { padding: 0 1.5rem; }
  section { padding: 3.5rem 0; }
  .seccion-especial { flex-direction: column; }
  .seccion-especial .imagen { width: 100%; max-width: 340px; margin: 0 auto; }
  .seccion-especial .texto { order: 2; }
  .seccion-especial .imagen { order: 1; }
  .orden-imagen-derecha .imagen { order: 1; }
  .orden-imagen-derecha .texto { order: 2; }
  .orden-imagen-izquierda .imagen { order: 1; }
  .orden-imagen-izquierda .texto { order: 2; }
  .trabajo-grid { flex-direction: column; align-items: center; }
  .trabajo-grid .item { max-width: 100%; width: 100%; }
  .contacto-wrapper { padding: 2rem; }
}
@media (max-width: 550px) {
  .contacto-wrapper { padding: 1.5rem; }
  .btn { padding: 0.7rem 1.6rem; font-size: 0.9rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .trabajo-grid .item img { height: 140px; }
  .seccion-especial .texto p { font-size: 1rem; }
}
.highlight { color: #6E1823; font-weight: 600; }
.text-center { text-align: center; }