* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* CONTENEDOR */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}
.container h2 {
  color: #d4af37;
  margin-bottom: 12px;
}

/* HEADER */
.header {
  background: #000;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; /* CLAVE */
}

.logo {
  height: 150px;
  position: absolute;
  left: 20px;
  top: calc(50% + 8px); /* margen superior visual */
  transform: translateY(-50%);
}




/* NAV */
.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 42vh;
  min-height: 360px;
  background: url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  max-width: 850px;
  padding: 20px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 28px;
  color: #ddd;
}

/* BOTONES */
.btn-gold {
  background: linear-gradient(135deg, #d4af37, #f5e38c);
  color: #000;
  padding: 14px 34px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
}

.btn-outline {
  display: inline-block;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 12px 32px;
  text-decoration: none;
  border-radius: 30px;
}

/* QUIÉNES SOMOS */
.about {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.about-inner {
  max-width: 800px;
  text-align: center;
}

.about h2 {
  color: #d4af37;
  margin-bottom: 25px;
}

.about p {
  color: #ccc;
  line-height: 1.6;
}

/* SERVICIOS */
.services-preview {
  background: #0a0a0a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.service-card {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.service-card span {
  position: relative;
  padding: 20px;
  font-weight: 700;
}

/* GALERÍAS */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* CTA FINAL */
.cta-final {
  padding: 30px 1px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* FOOTER */
.footer {
  border-top: 1px solid #222;
  padding: 30px 20px;
  text-align: center;
}

.logo-footer {
  height: 90px;
  margin-bottom: 1px;
}

/* BOTONES FLOTANTES */
.social-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2000;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.float-btn img {
  width: 30px;
  height: 30px;
}

.whatsapp {
  background: #25d366;
}

.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo {
    height: 65px;
  }

  .hero {
    height: 38vh;
    min-height: 300px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .nav {
    position: absolute;
    top: 90px;
    right: 0;
    background: #000;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  .nav a {
    padding: 15px;
    border-top: 1px solid #222;
  }

  .menu-toggle {
    display: block;
  }

  .nav.nav-open {
    display: flex;
  }
}
/* --- TODO lo anterior se mantiene igual --- */

/* BOTONES FLOTANTES */
.social-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2000;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.float-btn img {
  width: 30px;
  height: 30px;
}

.whatsapp {
  background: #25d366;
}

.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.facebook {
  background: #1877f2;
}
/* ===== CARRUSEL OPINIONES ===== */

.reviews-carousel {
  position: relative;
  margin-top: 20px;
  padding: 0 60px; /* espacio para flechas */
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* 3 visibles */
.review-item {
  flex: 0 0 calc(100% / 3);
  display: flex;
  justify-content: center;
}

.review-item img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: #000;
  padding: 10px;
  border-radius: 12px;
}

/* FLECHAS */
.review-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: #d4af37;
  border: none;
  font-size: 36px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.review-btn.prev { left: 10px; }
.review-btn.next { right: 10px; }

/* MOBILE */
@media (max-width: 768px) {
  .review-item {
    flex: 0 0 100%;
  }

  .review-item img {
    max-height: 300px;
  }
}
/* ===== EFECTO HOVER EN OPINIONES ===== */

.review-item {
  transition: transform 0.35s ease, z-index 0.35s ease;
}

.review-item img {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover desktop */
@media (hover: hover) {
  .review-item:hover {
    z-index: 5;
  }

  .review-item:hover img {
    transform: scale(1.18);
    box-shadow: 0 25px 60px rgba(0,0,0,0.65);
  }
}

/* ===== MOMENTOS SIMMA – MARCOS NEGROS COLGADOS PREMIUM ===== */

.momentos-marcos {
  padding: 50px 20px;
  background: #0a0a0a;
  text-align: center;
}

.momentos-marcos h2 {
  color: #d4af37;
  margin-bottom: 12px;
}

.momentos-marcos .momentos-sub {
  color: #bbb;
  max-width: 720px;
  margin: 0 auto 80px;
  font-size: 15px;
}

/* GRID */
.marcos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  max-width: 1100px;
  margin: auto;
}

/* MARCO */
.marco {
  position: relative;
  background: #000;
  padding: 16px;
  border-radius: 4px;

  /* BORDE DORADO */
  box-shadow:
    0 28px 70px rgba(0,0,0,0.85),
    inset 0 0 0 2px rgba(212,175,55,0.55);

  transform-origin: top center;
  transition:
    transform 0.9s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.6s ease;

  opacity: 0;
}

/* IMAGEN */
.marco img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* CLAVITO */
.marco::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #f5e38c 35%, #b08a2e 70%);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 6px 10px rgba(0,0,0,0.7);
}

/* CUERDA */
.marco::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 26px;
  background: linear-gradient(
    to bottom,
    rgba(212,175,55,0.9),
    rgba(212,175,55,0.2)
  );
  z-index: 2;
}

/* DESORDEN REAL */
.marco-1 { --rot: -6deg; --x: -20px; }
.marco-2 { --rot: 4deg;  --x: 14px; }
.marco-3 { --rot: -3deg; --x: -12px; }
.marco-4 { --rot: 6deg;  --x: 18px; }
.marco-5 { --rot: -5deg; --x: -16px; }
.marco-6 { --rot: 3deg;  --x: 12px; }

/* ESTADO INICIAL */
.marco {
  transform:
    translateY(90px)
    translateX(var(--x))
    rotate(var(--rot))
    scale(0.9);
}

/* ENTRA EN PANTALLA */
.marco.visible {
  opacity: 1;
  transform:
    translateY(0)
    translateX(var(--x))
    rotate(var(--rot))
    scale(1);
}

/* SOMBRA PROYECTADA (pared real) */
.marco::shadow {
  content: "";
}

/* HOVER */
.marco:hover {
  transform: translateY(-10px) rotate(0deg) scale(1.06);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.9),
    inset 0 0 0 2px rgba(212,175,55,0.9);
  z-index: 4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .marcos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .marcos-grid {
    grid-template-columns: 1fr;
  }

  .marco img {
    height: 220px;
  }
}
/* ===== SERVICIOS DESTACADOS – COLECCIÓN PREMIUM ===== */

.services-featured {
  background: #000;
  padding: 5px 20px;
  text-align: center;
}

.services-featured h2 {
  color: #d4af37;
  margin-bottom: 12px;
}

.services-sub {
  color: #bbb;
  max-width: 700px;
  margin: 0 auto 10px;
  font-size: 15px;
}

/* GRID */
.services-collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 900px;   /* un poco más angosto */
  margin: 0 auto;      /* CENTRADO */
}


/* ITEM */
.service-item {
  position: relative;
  height: 280px;
  background-size: 250%;        /* 🔥 IMAGEN MÁS GRANDE */
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* OVERLAY */
.service-item::before {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.15)
  );
}


/* BORDE DORADO FINO */
.service-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

/* TEXTO */
.service-item span {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  margin-top: 16px;
  text-align: center;     /* 👈 TEXTO CENTRADO */
  width: 100%;            /* 👈 OCUPA TODO EL ANCHO */
}



/* HOVER */
@media (hover: hover) {
  .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.9);
  }

  .service-item:hover::after {
    box-shadow: inset 0 0 0 2px rgba(212,175,55,0.7);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-collection {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    height: 280px;
  }
}

@media (max-width: 520px) {
  .services-collection {
    grid-template-columns: 1fr;
  }

  .service-item {
    height: 240px;
  }
}
/* BOTÓN VER TODOS LOS SERVICIOS */
.services-btn {
  margin-top: 50px;
  text-align: center;
}

/* TARJETA VER TODOS LOS SERVICIOS */
.service-all {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-all::before {
  background: none;
}

.service-all::after {
  box-shadow: inset 0 0 0 2px rgba(212,175,55,0.6);
}

.service-all span {
  font-size: 18px;
  line-height: 1.4;
  color: #d4af37;
}

/* Hover especial */
@media (hover: hover) {
  .service-all:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.9);
  }

  .service-all:hover span {
    color: #fff;
  }
}
