

:root {
  --black: #070707;
  --soft-black: #141414;
  --charcoal: #242424;
  --white: #ffffff;
  --ivory: #faf8f3;
  --cream: #efe7da;
  --nude: #d8b7a6;
  --gold: #c9a24a;
  --soft-gold: #ead79a;
  --gray: #676767;
  --light-gray: #f5f1ea;
  --border: rgba(201, 162, 74, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.11);
  --radius-large: 30px;
  --radius-medium: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--ivory);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 162, 74, 0.48);
}

.navbar {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 170px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--white);
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--soft-gold));
  color: var(--black) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 36px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--soft-gold);
  margin: 7px 0;
  transition: 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--black);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--soft-gold));
  color: var(--black);
  border-color: rgba(201, 162, 74, 0.65);
}

.btn-outline {
  background: transparent;
  color: var(--black);
}

section {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 86px 0;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.08;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading p,
.section-text p,
.hero-description {
  color: var(--gray);
  font-size: 1.04rem;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 34px;
  padding-top: 58px;
}

.hero-content {
  max-width: 800px;
}

.hero-description {
  margin-top: 22px;
  max-width: 650px;
}

.hero-buttons,
.location-buttons,
.contact-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags span {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-image-card,
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image-card {
  position: relative;
}

.hero-image-card img,
.about-card img {
  border-radius: 24px;
  height: 360px;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(7, 7, 7, 0.82);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.about,
.location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.feature-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.feature-list span {
  color: var(--gold);
  font-weight: 900;
}

.feature-list p {
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-card img {
  height: 220px;
  object-fit: cover;
  background: var(--cream);
}

.service-content {
  padding: 22px;
}

.service-category {
  color: var(--gold) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.service-card p,
.contact-card p,
.transform-card p {
  color: var(--gray);
}

.service-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--black);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.personalized-card {
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  color: var(--white);
  border-radius: var(--radius-large);
  padding: clamp(28px, 6vw, 70px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.personalized-card::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.35), transparent 68%);
}

.personalized-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.personalized-card .btn {
  margin-top: 26px;
}

.products {
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(239,231,218,0.4));
  border-radius: var(--radius-large);
  padding-left: clamp(0px, 2vw, 24px);
  padding-right: clamp(0px, 2vw, 24px);
}

.product-note {
  max-width: 900px;
  margin: -12px auto 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: var(--gray);
  font-size: 0.96rem;
}

.product-note strong {
  color: var(--black);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-card {
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  padding: 24px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.045);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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


.product-image {
  margin: -10px -10px 18px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(201, 162, 74, 0.22);
  min-height: 290px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  display: block;
}

.product-placeholder {
  min-height: 290px;
  background: linear-gradient(135deg, rgba(250, 248, 243, 0.95), rgba(239, 231, 218, 0.75));
  border: 1px dashed rgba(201, 162, 74, 0.55);
}

.product-placeholder span {
  color: var(--gray);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-align: center;
}

.product-tag {
  width: max-content;
  max-width: 100%;
  background: rgba(201, 162, 74, 0.14);
  color: var(--black);
  border: 1px solid rgba(201, 162, 74, 0.32);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 18px;
}

.product-card h3 {
  font-size: 1.35rem;
}

.product-card p {
  color: var(--gray);
  margin-bottom: 22px;
}

.product-bottom {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-bottom strong {
  font-size: 1.22rem;
  color: var(--black);
}

.product-bottom a {
  color: var(--black);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.transform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  padding: 16px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.045);
}

.transform-card img {
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
  background: var(--cream);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}


.before-after {
  background: linear-gradient(135deg, rgba(250, 248, 243, 0.95), rgba(255, 255, 255, 0.96));
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.before-after-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 24px;
  box-shadow: var(--shadow);
}

.comparison-frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.comparison-box {
  min-height: 260px;
  border-radius: 24px;
  border: 1px dashed rgba(201, 162, 74, 0.55);
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.92), rgba(45, 42, 36, 0.9));
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  overflow: hidden;
}

.comparison-box span {
  background: rgba(201, 162, 74, 0.18);
  border: 1px solid rgba(201, 162, 74, 0.42);
  color: var(--gold);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.comparison-box p {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.before-after-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.before-after-card > p {
  color: var(--gray);
  margin-bottom: 18px;
}

@media (min-width: 760px) {
  .comparison-frame {
    grid-template-columns: 1fr 1fr;
  }

  .before-after-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.gallery-item {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-item img {
  height: 285px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: contrast(1.04);
}

.gallery-item.hidden {
  display: none;
}

.info-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.map-box {
  min-height: 340px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--black);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.035);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--black);
}

.faq-list p {
  margin-top: 12px;
  color: var(--gray);
}

.contact {
  text-align: center;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.contact-actions {
  justify-content: center;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(201, 162, 74, 0.62);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: none;
  background: var(--white);
  color: var(--black);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
}

.footer {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 34px 0;
  color: var(--gray);
  border-top: 1px solid var(--border);
  text-align: center;
}

.section-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .brand-logo {
    width: 140px;
  }

  .nav-links {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border: 1px solid rgba(201, 162, 74, 0.55);
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px 12px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  section {
    width: min(100% - 24px, var(--max-width));
    padding: 66px 0;
  }

  .hero-buttons,
  .location-buttons,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}

@media (min-width: 640px) {
  .services-grid,
  .transform-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 960px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .about,
  .location {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .transform-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: span 2;
  }
}


.single-before-after {
  max-width: 980px;
  margin: 0 auto;
}

.comparison-photo {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, 0.35);
  background: var(--black);
}

.comparison-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.comparison-photo span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(201, 162, 74, 0.55);
  color: var(--gold);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

@media (min-width: 760px) {
  .single-before-after {
    grid-template-columns: 1fr;
  }

  .single-before-after .comparison-frame {
    grid-template-columns: 1fr 1fr;
  }
}


/* Ajuste de seguridad para que la galería siempre se vea en móvil */
.gallery.section-animate {
  opacity: 1;
  transform: none;
}

.gallery-item img {
  width: 100%;
  display: block;
}
