*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --lavender: #c9b8e8;
  --lavender-light: #ede6f7;
  --lavender-deep: #9b82cc;
  --lavender-dark: #6b4fa0;
  --gold: #c8a96e;
  --gold-light: #f0e0bb;
  --gold-dark: #8a6530;
  --blush: #f5eef8;
  --white: #fdfaff;
  --text-dark: #3a2d52;
  --text-mid: #6b5a84;
  --text-light: #9d8fb5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(253, 250, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 184, 232, 0.3);
  transition: all 0.3s;
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lavender-dark);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover {
  color: var(--lavender-dark);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5% 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 80% 50%,
      rgba(201, 184, 232, 0.25) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 50% at 10% 80%,
      rgba(200, 169, 110, 0.12) 0%,
      transparent 60%
    ),
    linear-gradient(160deg, #fdfaff 0%, #f4edfc 50%, #fdf6ee 100%);
}

.hero-ornament {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 420px;
  height: 420px;
  opacity: 0.15;
  pointer-events: none;
}

.hero-ornament svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  height: 1px;
  width: 32px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}

.hero-title em {
  font-style: italic;
  color: var(--lavender-dark);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-mid);
  margin-bottom: 2.8rem;
  max-width: 440px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  background: var(--lavender-dark);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.35s;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--lavender-dark);
  color: var(--lavender-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  transition: all 0.35s;
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lotus-frame {
  width: 380px;
  height: 380px;
  position: relative;
}

.lotus-frame img {
  max-width: 100%;
  max-height: 100%;
}

/* ── SECTION BASE ── */
section {
  padding: 7rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

#contacto .section-header {
  margin-bottom: 2rem !important;
}

.section-tag {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.section-title em {
  color: var(--lavender-dark);
  font-style: italic;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 1.5rem;
}

.section-divider::before,
.section-divider::after {
  content: "";
  display: block;
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.section-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.section-divider span {
  color: var(--gold);
  font-size: 1.1rem;
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* ── QUIÉNES SOMOS ── */
#quienes {
  background: linear-gradient(135deg, #fdf8ff 0%, #f4edfc 50%, #fdf6ee 100%);
}

.quienes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.quienes-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* .quienes-visual img {
  max-width: 100%;
  max-height: 100%;
} */
.quienes-visual img {
  width: 100%;
  max-width: 380px;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 220px 220px 180px 180px;
  border: 3px solid rgba(201, 184, 232, 0.5);
  box-shadow:
    0 20px 60px rgba(107, 79, 160, 0.15),
    0 0 0 8px rgba(201, 184, 232, 0.12);
}

.quienes-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.quienes-text p {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

.values-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.value-icon img {
  filter: invert(32%) sepia(10%) saturate(3484%) hue-rotate(219deg)
    brightness(101%) contrast(83%);
}

.value-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender-dark);
  font-weight: 500;
}

/* ── SERVICIOS ── */
#servicios {
  background: var(--white);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(
    145deg,
    var(--lavender-light) 0%,
    rgba(240, 224, 187, 0.15) 100%
  );
  border: 1px solid rgba(201, 184, 232, 0.4);
  border-radius: 20px;
  padding: 2.8rem 2.2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender-deep), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(107, 79, 160, 0.12);
  border-color: rgba(201, 184, 232, 0.7);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.3rem;
  display: block;
  line-height: 1;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--lavender-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
}

.service-tag {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.35rem 1rem;
  background: rgba(107, 79, 160, 0.1);
  color: var(--lavender-dark);
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── CONTACTO ── */
#contacto {
  background: linear-gradient(
    160deg,
    var(--text-dark) 0%,
    #4a3870 60%,
    #2d1f50 100%
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 60% at 20% 50%,
      rgba(201, 184, 232, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 30%,
      rgba(200, 169, 110, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}

#contacto .section-tag {
  color: var(--gold-light);
}

#contacto .section-title {
  color: white;
}

#contacto .section-divider span {
  color: var(--gold-light);
}

#contacto .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 4rem auto 0;
  position: relative;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  text-decoration: none;
  color: white;
  transition: all 0.35s;
  min-width: 200px;
  flex: 1;
  max-width: 240px;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-icon.wpp {
  background: rgba(37, 211, 102, 0.2);
}
.contact-icon.mail {
  background: rgba(201, 184, 232, 0.2);
}
.contact-icon.ig {
  background: rgba(200, 169, 110, 0.2);
}
.contact-icon.fb {
  background: rgba(100, 149, 237, 0.2);
}

.contact-info {
  text-align: left;
}
.contact-network {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}
.contact-handle {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.contact-phrase {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4rem;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: #1a1228;
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
  margin-right: 10px;
}

footer img {
  height: 15px;
  opacity: 0.8;
}

/* ── MOBILE NAV ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

#home {
  grid-template-columns: 1fr;
  text-align: center;
  padding-top: 7rem;
}
.hero-content {
  margin: 0 auto;
}
.hero-visual {
  display: none;
}
.hero-eyebrow {
  justify-content: center;
}

.icons-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icons-footer .icon-footer {
  width: 40px;
  height: 40px;
  background-color: var(--text-light);
  padding: 7px;
  border-radius: 99px;
  transition: all ease 0.3s;
}

.icons-footer .icon-footer:hover {
  background-color: #ffffff60;
  transform: scale(1.1);
}

.icons-footer .icon-footer:hover svg path {
  fill: #ffffff;
}

.icons-footer .icon-footer svg path {
  fill: #2d1f50;
  transition: all ease 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .quienes-grid {
    grid-template-columns: 1fr;
  }
  .quienes-visual {
    display: none;
  }
  .servicios-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .contact-link {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .servicios-grid {
    grid-template-columns: 1fr;
  }
  .values-row {
    flex-wrap: wrap;
  }
  .btn-secondary {
    margin-left: 0;
    margin-top: 0.8rem;
  }
}

/* WPP floating btn */
.wpp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0.3rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 200;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.wpp-float svg path {
  fill: #ffffff;
}

.beneficio-card {
  background: white;
  border: 1px solid rgba(201, 184, 232, 0.35);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.35s,
    border-color 0.35s;
}
.beneficio-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender-deep), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.beneficio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(107, 79, 160, 0.1);
  border-color: rgba(201, 184, 232, 0.65);
}
.beneficio-card:hover::after {
  opacity: 1;
}
.beneficio-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  opacity: 0.7;
  position: absolute;
  top: 1rem;
  right: 1.4rem;
}
.beneficio-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.beneficio-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lavender-dark);
  margin-bottom: 0.7rem;
  line-height: 1.3;
  max-width: calc(100% - 50px);
}
.beneficio-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
}
@media (max-width: 900px) {
  #beneficios > div:last-of-type {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 600px) {
  #beneficios > div:last-of-type {
    grid-template-columns: 1fr !important;
  }
}
