@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-latin-normal.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-latin-italic.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/nunito-latin-normal.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Nunito";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/nunito-latin-italic.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --bg: #fbf4ed;
  --bg-w: #f3e8de;
  --bg-dk: #2b211d;
  --txt: #2b211d;
  --txt-m: #7a665c;
  --ac: #c98263;
  --ac-dk: #9f5c45;
  --ac-lt: #f0d6c8;
  --sg: #739484;
  --sg-lt: #c4d8ce;
  --sg-dk: #4e7364;
  --heading-green: #2f6b57;
  --bd: #ded1c4;
  --bd-lt: #eee3da;
  --wh: #ffffff;
  --fh: "Cormorant Garamond", Georgia, serif;
  --fb: "Nunito", system-ui, sans-serif;
  --nav: 66px;
  --T: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tf: 0.2s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--txt);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--fb);
}
h1,
h2,
h3,
h4 {
  font-family: var(--fh);
  line-height: 1.2;
  font-weight: 400;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}
.h-h1,
.pr-l h2,
.s-hd h2,
.svc-c h3,
.th-wh h3,
.hw-bc h3,
.co-in h2,
.rv-hd h2,
.fq-lb h2,
.legal-content h1,
.legal-content h2 {
  color: var(--heading-green);
}
.W {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec {
  padding: 88px 0;
}
.sec-sm {
  padding: 56px 0;
}
/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--T),
    transform 0.7s var(--T);
}
.rvl {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.7s var(--T),
    transform 0.7s var(--T);
}
.rvr {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 0.7s var(--T),
    transform 0.7s var(--T);
}
.rv.on,
.rvl.on,
.rvr.on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}
.d6 {
  transition-delay: 0.6s;
}
/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--fb);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--tf);
  cursor: pointer;
  white-space: nowrap;
}
.btn-p {
  background: var(--ac);
  color: #fff;
  box-shadow: 0 4px 18px rgba(196, 117, 79, 0.28);
}
.btn-p:hover {
  background: var(--ac-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(196, 117, 79, 0.38);
}
.btn-s {
  background: transparent;
  color: var(--txt);
  border: 1.5px solid var(--bd);
}
.btn-s:hover {
  border-color: var(--ac);
  color: var(--ac);
  transform: translateY(-2px);
}
.btn-g {
  background: transparent;
  color: var(--sg-dk);
  border: 1.5px solid var(--sg-lt);
  font-weight: 500;
}
.btn-g:hover {
  background: var(--sg-lt);
  transform: translateY(-2px);
}
.btn-w {
  background: #fff;
  color: var(--ac-dk);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}
.btn-w:hover {
  background: var(--bg);
  transform: translateY(-2px);
}
.btn-ow {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.btn-ow:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.125em;
  flex-shrink: 0;
}
.social-icon {
  width: 16px;
  height: 16px;
}
.contact-icon {
  width: 18px;
  height: 18px;
}
.svc-icon-svg {
  width: 24px;
  height: 24px;
  color: var(--ac-dk);
}
.wi {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}
/* PROGRESS BAR */
#pb {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  background: var(--ac);
  z-index: 2000;
  width: 0;
  transition: width 0.1s linear;
}
/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav);
  display: flex;
  align-items: center;
  transition:
    background var(--tf),
    box-shadow var(--tf);
}
.nav.sc {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--bd);
}
.nav-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--txt);
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--txt-m);
  letter-spacing: 0.02em;
  transition: color var(--tf);
}
.nav-links a:hover {
  color: var(--ac);
}
.nav-cta {
  padding: 9px 20px;
  font-size: 0.85rem;
}
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hbg span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: all var(--tf);
}
.hbg.on span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hbg.on span:nth-child(2) {
  opacity: 0;
}
.hbg.on span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mob {
  display: none;
  position: fixed;
  top: var(--nav);
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
  box-shadow: 0 4px 24px rgba(41, 33, 29, 0.1);
}
.mob.on {
  display: flex;
}
.mob a {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--txt);
  padding: 9px 0;
  border-bottom: 1px solid var(--bd-lt);
  transition: color var(--tf);
}
.mob a:last-of-type {
  border-bottom: none;
}
.mob a:hover {
  color: var(--ac);
}
.mob .mob-cta {
  color: var(--ac);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mob .mob-cta .contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
/* HERO */
#inicio {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav);
  background: var(--bg);
}
#inicio::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(250, 247, 242, 0.96) 0%,
    rgba(250, 247, 242, 0.88) 36%,
    rgba(250, 247, 242, 0.5) 64%,
    rgba(250, 247, 242, 0.18) 100%
  );
}
.h-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.h-in {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
}
.h-ey {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-dk);
  margin-bottom: 18px;
  opacity: 0;
  animation: fuU 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}
.h-ey::before {
  content: "";
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--sg);
}
.h-h1 {
  margin-bottom: 22px;
  opacity: 0;
  animation: fuU 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s forwards;
}
.h-h1 em {
  color: var(--ac);
}
.h-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--txt-m);
  margin-bottom: 18px;
  opacity: 0;
  animation: fuU 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}
.h-sup {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--txt-m);
  margin-bottom: 32px;
  padding-top: 14px;
  border-top: 1px solid var(--bd-lt);
  opacity: 0;
  animation: fuU 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.62s forwards;
}
.h-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 18px;
  opacity: 0;
  animation: fuU 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.76s forwards;
}
.h-mc {
  font-size: 0.78rem;
  color: var(--txt-m);
  opacity: 0;
  animation: fuU 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
  display: flex;
  flex-wrap: wrap;
}
.h-mc span {
  display: inline-flex;
  align-items: center;
}
.h-mc span:not(:last-child)::after {
  content: "·";
  margin: 0 7px;
  color: var(--bd);
}
.h-vis {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}
.pf {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  overflow: hidden;
  background: var(--ac-lt);
  opacity: 1;
  animation: none;
}
.pf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ac-lt) 0%, var(--sg-lt) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
}
.pbdg {
  position: absolute;
  bottom: -10px;
  left: -14px;
  background: #fff;
  border-radius: 14px;
  padding: 13px 17px;
  box-shadow: 0 10px 36px rgba(41, 33, 29, 0.14);
  display: none;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fuU 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
}
.pbdg-ic {
  width: 36px;
  height: 36px;
  background: var(--ac-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--ac-dk);
}
.pbdg p {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--txt-m);
}
.pbdg strong {
  font-size: 0.86rem;
  color: var(--txt);
  display: block;
}
/* TRUST */
.trust {
  background: var(--bg-dk);
  padding: 52px 0;
}
.tr-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}
.tr-i {
  background: var(--bg-dk);
  padding: 28px 22px;
  text-align: center;
}
.tr-i strong {
  display: block;
  font-family: var(--fh);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ac-lt);
  margin-bottom: 4px;
}
.tr-i p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
/* PROBLEM */
.pr-i {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.pr-l h2 {
  margin-bottom: 24px;
}
.pr-l h2 em {
  color: var(--ac);
}
.pr-t {
  font-size: 0.97rem;
  color: var(--txt-m);
  line-height: 1.8;
  margin-bottom: 18px;
}
.pr-q {
  font-size: 0.97rem;
  font-style: italic;
  color: var(--txt);
  padding: 18px 22px;
  border-left: 3px solid var(--ac);
  background: var(--bg-w);
  border-radius: 0 10px 10px 0;
  margin: 22px 0 28px;
}
.pr-q--adolescentes {
  background: rgba(196, 216, 206, 0.35);
  border-left-color: var(--sg);
  font-style: normal;
  color: var(--heading-green);
  line-height: 1.75;
}
.pr-q--adolescentes h3 {
  margin-bottom: 12px;
}
.pr-q--adolescentes p + p {
  margin-top: 12px;
}
.pr-r {
  padding-top: 40px;
}
.fl-l {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fl-i {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  background: var(--bg-w);
  border-radius: 9px;
  font-size: 0.9rem;
  color: var(--txt);
  border: 1px solid var(--bd-lt);
  transition: all var(--tf);
}
.fl-i:hover {
  border-color: var(--ac-lt);
  transform: translateX(4px);
}
.fl-d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ac);
  flex-shrink: 0;
}
/* SERVICES */
#en-que-puedo-ayudarte {
  background: var(--bg-w);
}
.s-hd {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.s-hd h2 {
  margin-bottom: 14px;
}
.s-hd p {
  font-size: 0.97rem;
  color: var(--txt-m);
  line-height: 1.7;
}
.svc-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc-c {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid var(--bd-lt);
  transition: all var(--T);
}
.svc-c:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(41, 33, 29, 0.1);
  border-color: var(--ac-lt);
}
.svc-ic {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--ac-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.svc-c h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.svc-c p {
  font-size: 0.86rem;
  color: var(--txt-m);
  line-height: 1.7;
}
.svc-note {
  max-width: 820px;
  margin: 30px auto 0;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--bd-lt);
  border-radius: 14px;
}
.svc-note h3 {
  color: var(--heading-green);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.svc-note p {
  color: var(--txt-m);
  font-size: 0.88rem;
  line-height: 1.65;
}
.svc-note p + p {
  margin-top: 8px;
}
.svc-ft {
  text-align: center;
  margin-top: 38px;
}
.svc-ft p {
  font-size: 0.93rem;
  color: var(--txt-m);
  font-style: italic;
  margin-bottom: 22px;
}
/* THERAPY */
.th-i {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.th-v {
  position: relative;
  overflow: visible;
}
.th-img {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sg-lt);
}
.th-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.th-pl {
  position: absolute;
  top: 22px;
  left: auto;
  right: -12px;
  bottom: auto;
  background: #fff;
  border-radius: 18px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sg-dk);
  box-shadow: 0 12px 36px rgba(41, 33, 29, 0.13);
  max-width: none;
  white-space: nowrap;
  z-index: 2;
}
.th-pl::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sg);
  flex-shrink: 0;
}
.th-c h2 {
  margin-bottom: 18px;
}
.th-c > p {
  color: var(--txt-m);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.97rem;
}
#terapia-online .pr-l > p {
  color: var(--txt-m);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.97rem;
}
#terapia-online .th-c + p {
  margin: 0;
  line-height: 0;
}
.th-wh {
  margin: 24px 0;
}
.th-wh h3 {
  font-size: 1.05rem;
  margin-bottom: 13px;
}
.th-bs {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.th-b {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--txt-m);
  line-height: 1.65;
}
.th-b-icon {
  width: 18px;
  height: 18px;
  color: var(--sg);
  flex-shrink: 0;
  margin-top: 4px;
}
/* HOW */
#como-trabajo {
  background: var(--bg-w);
}
.hw-i {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.hw-l h2 {
  margin-bottom: 18px;
}
.hw-l > p {
  font-size: 0.97rem;
  color: var(--txt-m);
  line-height: 1.8;
  margin-bottom: 14px;
}
.hw-bs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
}
.hw-b {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--bd-lt);
  transition: all var(--tf);
}
.hw-b:hover {
  box-shadow: 0 6px 22px rgba(41, 33, 29, 0.09);
  border-color: var(--ac-lt);
}
.hw-bn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ac-lt);
  color: var(--ac-dk);
  display: grid;
  place-items: center;
  font-family: var(--fb);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}
.hw-bc h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.hw-bc p {
  font-size: 0.85rem;
  color: var(--txt-m);
  line-height: 1.65;
}
/* ABOUT */
.ab-i {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ab-v {
  position: relative;
}
.ab-pf {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--ac-lt) 0%, var(--sg-lt) 100%);
}
.ab-pf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ab-ct {
  position: absolute;
  bottom: 22px;
  right: -12px;
  background: #fff;
  border-radius: 13px;
  padding: 13px 17px;
  box-shadow: 0 12px 36px rgba(41, 33, 29, 0.13);
  font-size: 0.76rem;
  max-width: 195px;
}
.ab-ct strong {
  display: block;
  color: var(--sg-dk);
  margin-bottom: 2px;
}
.ab-ct p {
  color: var(--txt-m);
  line-height: 1.5;
}
.ab-c h2 {
  margin-bottom: 18px;
}
.ab-c > p {
  font-size: 0.95rem;
  color: var(--txt-m);
  line-height: 1.8;
  margin-bottom: 14px;
}
.ab-q {
  font-size: 0.97rem;
  font-style: italic;
  color: var(--txt);
  padding: 17px 22px;
  background: var(--bg-w);
  border-radius: 0 10px 10px 0;
  border-left: 3px solid var(--sg);
  margin: 18px 0 22px;
}
.bdgs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}
.bdg {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
}
.bdg-s {
  background: var(--sg-lt);
  color: var(--sg-dk);
}
.bdg-a {
  background: var(--ac-lt);
  color: var(--ac-dk);
}
/* SESSION */
#primera-sesion {
  background: var(--bg-dk);
  color: #fff;
}
#primera-sesion h2 {
  color: #fff;
}
.ss-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ss-m h2 {
  margin-bottom: 22px;
}
.ss-m p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}
#primera-sesion .rvl > p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.ss-bl {
  margin-top: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.ss-bl h3 {
  color: var(--ac-lt);
  font-size: 1.05rem;
  margin-bottom: 11px;
}
.ss-bl p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.7;
}
.pc {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.pa {
  font-family: var(--fh);
  font-size: 3.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.pl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 22px;
}
.pds {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  margin-bottom: 26px;
}
.pd {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.58);
}
.pd::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--ac-lt);
  flex-shrink: 0;
}
.bwa {
  background: var(--ac);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--tf);
  box-shadow: 0 4px 18px rgba(196, 117, 79, 0.3);
}
.bwa:hover {
  background: var(--ac-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 117, 79, 0.42);
}
.smc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
  margin-top: 11px;
  line-height: 1.6;
}
/* CONTACT */
#contacto {
  background: var(--bg-w);
}
.co-in {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.co-in h2 {
  margin-bottom: 16px;
}
.co-in > p {
  color: var(--txt-m);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}
.pill {
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--txt);
}
.co-bt {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: center;
  margin-bottom: 16px;
}
.co-nt {
  font-size: 0.8rem;
  color: var(--txt-m);
  font-style: italic;
}
/* REVIEWS */
#opiniones {
  background: var(--bg);
}
.rv-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 22px;
  flex-wrap: wrap;
}
.rv-hd h2 {
  max-width: 380px;
}
.db {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 13px;
  border: 1px solid var(--bd-lt);
  box-shadow: 0 2px 8px rgba(41, 33, 29, 0.06);
}
.stars {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 1.05rem;
}
.db p {
  font-size: 0.78rem;
  color: var(--txt-m);
}
.db strong {
  font-size: 0.9rem;
  color: var(--txt);
  display: block;
}
.rv-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.rc {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  border: 1px solid var(--bd-lt);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--tf);
}
.rc:hover {
  box-shadow: 0 8px 28px rgba(41, 33, 29, 0.1);
  transform: translateY(-4px);
}
.rt {
  font-size: 0.9rem;
  color: var(--txt);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}
.ra {
  font-size: 0.8rem;
  color: var(--txt-m);
  font-weight: 600;
  border-top: 1px solid var(--bd-lt);
  padding-top: 11px;
}
/* MEDIA */
#medios {
  background: var(--bg-w);
}
.md-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mc {
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 22px;
  background: #fff;
  transition: all var(--tf);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.mc:hover {
  border-color: var(--ac-lt);
  box-shadow: 0 8px 28px rgba(41, 33, 29, 0.1);
  transform: translateY(-4px);
}
.ms {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-m);
}
.mc h3 {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--txt);
  flex: 1;
}
.ml {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--ac);
  font-weight: 500;
  margin-top: auto;
  transition: gap var(--tf);
}
.mc:hover .ml {
  gap: 9px;
}
/* FAQ */
#faq {
  background: var(--bg-w);
}
.fq-i {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}
.fq-lb {
  position: sticky;
  top: calc(var(--nav) + 28px);
}
.fq-lb h2 {
  margin-bottom: 14px;
}
.fq-lb p {
  font-size: 0.9rem;
  color: var(--txt-m);
  line-height: 1.7;
}
.fq-l {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fq-it {
  border: 1px solid var(--bd-lt);
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
}
.fq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--txt);
  gap: 14px;
  transition: color var(--tf);
  width: 100%;
  text-align: left;
}
.fq-q:hover {
  color: var(--ac);
}
.fq-t {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--bg-w);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--tf);
}
.fq-t svg {
  width: 13px;
  height: 13px;
  color: var(--txt-m);
  transition: transform var(--tf);
}
.fq-t .icon {
  stroke-width: 2.5;
}
.fq-it.open .fq-t {
  background: var(--ac-lt);
}
.fq-it.open .fq-t svg {
  transform: rotate(45deg);
  color: var(--ac-dk);
}
.fq-a {
  height: 0;
  overflow: hidden;
  transition: height var(--T);
}
.fq-ai {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--txt-m);
  line-height: 1.72;
}
/* FINAL CTA */
.fcta {
  background: linear-gradient(138deg, var(--ac) 0%, var(--ac-dk) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fcta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background:
    radial-gradient(circle at 20% 50%, #fff 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, #fff 0%, transparent 50%);
}

.fcta-c {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.fcta-c h2 {
  color: #fff;
  margin-bottom: 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.fcta-c > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 32px;
}

.fcta-bt {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 18px;
}
.fcta-mc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
}
/* FOOTER */
footer {
  background: var(--bg-dk);
  color: rgba(255, 255, 255, 0.65);
  padding: 52px 0 32px;
}
.ft-i {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(300px, 1.35fr) minmax(260px, 1.15fr);
  gap: 48px;
  margin-bottom: 38px;
}
.ft-br h3 {
  font-family: var(--fh);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 7px;
}
.ft-br p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  margin-bottom: 4px;
}
.ft-br a {
  color: rgba(255, 255, 255, 0.56);
  transition: color var(--tf);
}
.ft-br a:hover {
  color: var(--ac-lt);
}
.ft-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.45;
}
.ft-contact .contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transform: translateY(1px);
}
.ft-br h4,
.ft-col h4 {
  font-family: var(--fh);
  font-size: 0.88rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 13px;
}
.ft-col ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 8px;
}
.ft-col a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.56);
  transition: color var(--tf);
}
.ft-col a:hover {
  color: var(--ac-lt);
}
.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38);
}
.ft-bot a {
  color: rgba(255, 255, 255, 0.54);
  transition: color var(--tf);
}
.ft-bot a:hover {
  color: var(--ac-lt);
}
.ft-soc {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ft-soc a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--tf);
}
.ft-soc a:hover {
  background: var(--ac);
  color: #fff;
}
.ft-soc .social-icon {
  width: 18px;
  height: 18px;
}
/* FLOATING WA */
.fwa {
  position: fixed;
  bottom: 26px;
  right: 22px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 9px;
}
.fwa-lb {
  background: #fff;
  border-radius: 50px;
  padding: 8px 15px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--txt);
  box-shadow: 0 4px 16px rgba(41, 33, 29, 0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--tf);
}
.fwa:hover .fwa-lb {
  opacity: 1;
  transform: translateX(0);
}
.fwa-btn {
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.38);
  animation: waP 3s ease-in-out infinite;
  transition: all var(--tf);
  color: #fff;
}
.fwa-btn .icon {
  width: 25px;
  height: 25px;
}
.fwa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.5);
  animation: none;
}
/* LEGAL */
.legal-page {
  background: var(--bg);
  padding-top: var(--nav);
}
.legal-sec {
  padding: 64px 0 88px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--txt-m);
}
.breadcrumbs a {
  color: var(--sg-dk);
  font-weight: 600;
  transition: color var(--tf);
}
.breadcrumbs a:hover {
  color: var(--ac);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  color: var(--ac-dk);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color var(--tf);
}
.legal-back:hover {
  color: var(--ac);
}
.legal-content {
  max-width: 860px;
}
.legal-content h1 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  margin-bottom: 28px;
}
.legal-content h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  margin: 34px 0 12px;
}
.legal-content p {
  color: var(--txt-m);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 18px 20px;
  color: var(--txt-m);
}
.legal-content li {
  line-height: 1.75;
  margin-bottom: 8px;
}
.legal-content a {
  color: var(--ac-dk);
  font-weight: 700;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 0.9rem;
  color: var(--txt-m);
}
.legal-content th,
.legal-content td {
  border: 1px solid var(--bd);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}
.legal-content th {
  color: var(--txt);
  background: var(--bg-w);
  font-weight: 700;
}
/* KEYFRAMES */
@keyframes fuU {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fuR {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes waP {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fwa-btn {
    animation: none;
  }
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .h-in,
  .pr-i,
  .th-i,
  .hw-i,
  .ab-i,
  .ss-g,
  .ft-i {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .h-in {
    padding: 36px 0;
  }
  .h-vis {
    display: block;
  }
  #inicio::after {
    background: linear-gradient(
      180deg,
      rgba(250, 247, 242, 0.95) 0%,
      rgba(250, 247, 242, 0.86) 55%,
      rgba(250, 247, 242, 0.62) 100%
    );
  }
  .svc-g,
  .rv-g,
  .md-g {
    grid-template-columns: 1fr 1fr;
  }
  .tr-g {
    grid-template-columns: repeat(2, 1fr);
  }
  .fq-i {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fq-lb {
    position: static;
  }
  .pr-r {
    padding-top: 0;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hbg {
    display: flex;
  }
}
@media (max-width: 600px) {
  .th-pl {
    top: 18px;
    left: auto;
    right: -8px;
    max-width: calc(100% - 16px);
    border-radius: 16px;
    font-size: 0.72rem;
    padding: 10px 14px;
    white-space: normal;
  }
  .svc-g,
  .rv-g,
  .md-g {
    grid-template-columns: 1fr;
  }
  .tr-g {
    grid-template-columns: repeat(2, 1fr);
  }
  .h-cta {
    flex-direction: column;
  }
  .h-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .sec .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .sec .btn-g,
  .sec .btn-s {
    width: 100%;
  }
  .rv-hd {
    flex-direction: column;
    align-items: flex-start;
  }
  .legal-sec {
    padding: 48px 0 64px;
  }
  .legal-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .legal-content th,
  .legal-content td {
    padding: 10px 12px;
  }
  .ft-i {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sec {
    padding: 64px 0;
  }
}
