
:root {
  --bg-body: #f5f2ee;
  --bg-soft: #faf7f3;
  --bg-dark: #141314;
  --accent-gold: #b58b4c;
  --accent-gold-soft: #e3c9a1;
  --accent-lime: #d4e09b;
  --text-main: #2b2623;
  --text-muted: #6a5f57;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 40px rgba(15, 10, 6, 0.18);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #fdf8f2 0, #f5f2ee 45%, #f0ece6 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  margin: 0.4rem 0 0.8rem;
  letter-spacing: 0.02em;
}

.section-intro {
  max-width: 680px;
  margin: 0.75rem auto 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent-gold);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(245, 242, 238, 0.9);
  border-bottom: 1px solid rgba(181, 139, 76, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.75rem 0.5rem;
}

.logo img {
  height: 48px;
  width: auto;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-lime));
  transition: width 0.22s ease-out;
}

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

.call-header {
  display: inline-flex;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, background 0.18s ease-out, color 0.18s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background-image: linear-gradient(120deg, var(--accent-gold), var(--accent-lime));
  color: #201711;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(15, 10, 6, 0.22);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(181, 139, 76, 0.4);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(181, 139, 76, 0.04);
}

.btn-outline {
  border: 1px solid rgba(181, 139, 76, 0.5);
  background: transparent;
  color: var(--text-main);
  padding-inline: 1rem;
  font-size: 0.8rem;
}

.btn-outline:hover {
  background: rgba(181, 139, 76, 0.06);
}

.btn.full {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr);
  align-items: stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(14, 11, 8, 0.13), transparent 52%), linear-gradient(to right, rgba(13, 8, 5, 0.76), rgba(13, 8, 5, 0.1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.hero-text {
  max-width: 540px;
  color: #fdf7ee;
  padding: 5rem 0 4rem;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3.35vw, 3rem);
  margin: 0.4rem 0 0.7rem;
  letter-spacing: 0.035em;
}

.hero-subtitle {
  margin: 0;
  font-size: 0.96rem;
  color: #f3e2d0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0 1.5rem;
}

.hero-tags span {
  border-radius: 999px;
  border: 1px solid rgba(228, 199, 150, 0.7);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: #f9f0e4;
  background: rgba(0, 0, 0, 0.1);
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

.hero-location {
  font-size: 0.85rem;
  color: #f1dac2;
}

/* Benefits */

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

.benefit-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.benefit-media {
  background-size: cover;
  background-position: center;
  height: 180px;
}

.benefit-body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.benefit-body h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.benefit-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Post lipo */

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

.postlipo-item {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.postlipo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.postlipo-text {
  padding: 1.5rem 1.6rem;
}

.postlipo-text h3 {
  font-size: 0.98rem;
  margin: 0 0 0.4rem;
}

.postlipo-text p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Video */

.video-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.video-text p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.video-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.ratio-16x9 {
  position: relative;
  padding-top: 56.25%;
}

.ratio-16x9 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease-out;
}

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

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 5, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.lightbox-overlay img {
  max-width: min(900px, 96vw);
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-overlay button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border-radius: 999px;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Redes */

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

.social-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.social-card h3 {
  margin-top: 0;
  font-size: 1rem;
}

.social-embed iframe {
  width: 100%;
  min-height: 340px;
  border-radius: 16px;
}

.social-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
}

/* Contacto */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.8rem;
}

.contact-list li + li {
  margin-top: 0.7rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
}

.contact-list a {
  color: var(--text-main);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.map-embed iframe {
  width: 100%;
  height: 230px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.6rem 1.9rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
  margin-top: 0;
}

.contact-form-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form .form-row {
  margin-top: 0.9rem;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.6rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
  background: #fcfaf8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 1px rgba(181, 139, 76, 0.3);
  background: #fffdf8;
}

/* Footer */

.site-footer {
  background: #15100b;
  color: #f2e0cc;
  padding: 1.8rem 0 2.1rem;
  margin-top: 2rem;
}

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

.footer-brand {
  font-size: 0.85rem;
}

.footer-madeby {
  font-size: 0.82rem;
}

.footer-madeby a {
  color: var(--accent-lime);
  text-decoration: none;
}

.footer-madeby a:hover {
  text-decoration: underline;
}

/* WhatsApp floating button */

.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-image: radial-gradient(circle at 20% 0, #ffffff, #e9ffe3 32%, #1fa855 80%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 80;
}

.whatsapp-icon {
  font-size: 1.6rem;
}

/* Responsive */

@media (max-width: 960px) {
  .header-inner {
    padding-inline: 0;
  }
  .main-nav {
    display: none;
  }
  .call-header {
    margin-left: auto;
  }
  .hero-content {
    min-height: 70vh;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .postlipo-item {
    grid-template-columns: 1fr;
  }
  .postlipo-item img {
    max-height: 230px;
  }
  .video-block {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .social-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    backdrop-filter: blur(12px);
  }
  .hero-text {
    padding-top: 4.2rem;
  }
  .hero {
    min-height: 82vh;
  }
  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section {
    padding: 3.5rem 0;
  }
  .section-header {
    margin-bottom: 2.2rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
