:root {
  --cream: #fff8d2;
  --yellow: #fdf5af;
  --orange: #f69550;
  --mint: #a7d8c6;
  --brown: #501f12;
  --copper: #9e5726;
  --rose: #eb7175;
  --soft: #fffaf0;
  --text: #35150c;
  --white-soft: #fffdf4;
  --shadow: rgba(80, 31, 18, 0.14);

  /* --- fondo base + "washes" por sección (reemplazan el degradado único) --- */
  --paper: #fffdf6;
  /* base neutra cálida de toda la web */
  --wash-mint: #f2f8f2;
  /* filosofía / método: calma, confianza */
  --wash-butter: #fff7de;
  /* sobre Juana: cercanía, calidez humana */
  --on-dark: #fdf1e3;
  /* texto claro sobre fondos oscuros */
  --on-dark-soft: #d9c2ae;
  /* texto secundario sobre fondos oscuros */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: var(--brown);
}

p {
  font-size: 1.02rem;
  line-height: 1.7;
}

strong,
b {
  font-weight: 700;
  color: var(--brown);
}

.on-dark strong,
.on-dark b {
  color: var(--orange);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(80, 31, 18, 0.08);
  color: var(--brown);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  border: 0;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 30px;

  border-radius: 999px;

  background: var(--brown);
  color: #fff;

  text-decoration: none;

  font-size: .82rem;
  font-weight: 400;

  text-transform: uppercase;
  letter-spacing: .12em;

  transition: .3s ease;

  white-space: nowrap;
}

.btn-primary:hover {
  background: #6b2f20;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(80, 31, 18, .18);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 30px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .45);

  border: 1px solid rgba(80, 31, 18, .14);

  color: var(--brown);

  text-decoration: none;

  font-size: .82rem;
  font-weight: 400;

  text-transform: uppercase;
  letter-spacing: .12em;

  backdrop-filter: blur(8px);

  transition: .3s ease;

  white-space: nowrap;
}

.btn-secondary:hover {
  background: white;
  border-color: rgba(80, 31, 18, .28);
  transform: translateY(-2px);
}

section {
  position: relative;
  padding: 110px 0;
}

/* HEADER V2 */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 253, 246, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(80, 31, 18, 0.10);
}

.topbar {
  width: 100%;
  height: 64px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-isotype {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo {
  width: 350px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;

  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: rgba(80, 31, 18, .72);
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: .25s;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0;
  height: 1px;

  background: var(--brown);

  transition: .25s;
}

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

.nav-cta {
  margin-left: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  height: 40px;

  padding: 0 26px;

  border-radius: 999px;

  background: var(--brown);
  color: #fff;

  text-decoration: none;

  font-size: .80rem;
  font-weight: 400;

  letter-spacing: .15em;
  text-transform: uppercase;

  white-space: nowrap;

  transition: .3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #6a2d1f;
  box-shadow: 0 12px 28px rgba(82, 39, 27, .18);
}

/* Ajuste porque el header ahora está pegado arriba */
.hero {
  padding-top: 120px;
}

@media (max-width: 1024px) {
  .topbar {
    height: 60px;
    padding: 0 18px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand-isotype {
    width: 30px;
    height: 30px;
  }

  .brand-logo {
    width: 92px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    height: 38px;
    padding: 0 16px;
    font-size: 0.82rem;
    min-width: unset;
    margin-left: 0;
  }

  .hero {
    padding-top: 105px;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 0 12px;
    gap: 8px;
  }

  .brand {
    gap: 6px;
  }

  .brand-isotype {
    width: 26px;
    height: 26px;
  }

  .brand-logo {
    width: 78px;
  }

  .nav-cta {
    padding: 0 10px;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }
}

/* HERO */

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-mark {
  position: absolute;
  top: 40px;
  left: 50%;

  width: min(76vw, 820px);
  opacity: .18;

  transform: translateX(-50%);
  transform-origin: center center;

  pointer-events: none;
  animation: slowBreath 34s ease-in-out infinite;
  z-index: 0;
}

@keyframes slowBreath {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.035);
  }
}


.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 980px;
  margin: 14px auto 0;
  font-size: clamp(2.3rem, 5.2vw, 4.7rem);
  line-height: .92;
}

.hero h1 em {
  color: var(--copper);
  font-style: italic;
}

.hero p {
  max-width: 680px;
  margin: 30px auto 36px;
  font-size: clamp(1.06rem, 2vw, 1.24rem);
  color: rgba(53, 21, 12, 0.82);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.hero-badge img {
  width: 170px;
  max-width: 80vw;
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
}

.hero-subtitle {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 1.22rem;
  line-height: 1.6;
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(80, 31, 18, 0.48);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* SECTION TITLE */

.section-title {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-title h2 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.95;
}

.section-title p {
  margin-top: 18px;
  color: rgba(53, 21, 12, 0.75);
}

/* CONSULTA */

.consult {
  background: rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(80, 31, 18, 0.08);
  border-bottom: 1px solid rgba(80, 31, 18, 0.08);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  min-height: 292px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 252, 246, 0.56);
  border: 1px solid rgba(80, 31, 18, 0.10);
  box-shadow: 0 22px 70px rgba(80, 31, 18, 0.08);
  backdrop-filter: blur(14px);
}

.icon {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(167, 216, 198, 0.54);
  display: grid;
  place-items: center;
  color: var(--brown);
  font-size: 1.32rem;
  font-family: Georgia, serif;
}

.card h3 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1;
}

.card p {
  color: rgba(53, 21, 12, 0.78);
}

.consult-banner {
  margin-top: 34px;
  padding: 26px 30px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(255, 248, 210, 0.52);
  border: 1px solid rgba(80, 31, 18, 0.08);
  color: var(--brown);
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  text-align: center;
}

.consult-banner img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.78;
  flex-shrink: 0;
}

/*==================================================
  FILOSOFÍA
==================================================*/

.philosophy-reasons-section {
  padding: 95px 0 110px;
  background: #a7d8c6;
}

.philosophy-reasons-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.philosophy-left {
  display: flex;
  flex-direction: column;
  margin-bottom: 34px;
}

.philosophy-small-logo {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin-bottom: 34px;
}

.philosophy-text {
  max-width: 500px;
}

.philosophy-text p {
  font-size: 1.25rem;
  line-height: 1.68;
  margin-bottom: 24px auto 0;
}

.philosophy-isotype {
  width: 75px;
  margin: 26px auto 0;
}

/* TARJETAS */

.reason-flip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch
}

.reason-flip-card {
  height: 155px;
  perspective: 1200px;
}

.reason-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s ease;
  transform-style: preserve-3d;
}

.reason-flip-card:hover .reason-flip-inner,
.reason-flip-card.flipped .reason-flip-inner {
  transform: rotateY(180deg);
}

.reason-face {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 26px 28px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.reason-face.front {
  background: rgba(255, 255, 255, .82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.18;
  color: var(--brown);
  cursor: pointer;
}

.reason-face.back {
  transform: rotateY(180deg);
  background: var(--brown);
  color: var(--on-dark);
  font-family: Inter, system-ui, sans-serif;
  font-size: .88rem;
  line-height: 1.45;
  font-weight: 400;
}

/* Indicador más sutil */

.click-hint {
  display: none;
}

.reason-face.front::after {
  content: "↻";
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--brown);
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(80, 31, 18, .16);
}

@media(max-width:1100px) {
  .philosophy-reasons-grid {
    grid-template-columns: 1fr;
  }

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

@media(max-width:720px) {
  .reason-flip-grid {
    grid-template-columns: 1fr;
  }

  .reason-flip-card {
    height: 170px;
  }

  .philosophy-text p {
    font-size: 1.15rem;
  }
}

/* ABOUT */

.about-band {
  width: 100%;
  background: var(--yellow);
  border-top: 1px solid rgba(80, 31, 18, 0.08);
  border-bottom: 1px solid rgba(80, 31, 18, 0.08);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: center;
}

.photo-box {
  min-height: 510px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 248, 210, 0.76), rgba(235, 113, 117, 0.22)),
    url("img/foto-juana.jpg");
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(80, 31, 18, 0.10);
  box-shadow: 0 30px 90px rgba(80, 31, 18, 0.14);
  position: relative;
  overflow: hidden;
}

.photo-box::after {
  content: "Espacio reservado para foto profesional";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--brown);
  font-weight: 800;
  font-size: 0.88rem;
  backdrop-filter: blur(12px);
}

.about-copy h2 {
  font-size: clamp(2.4rem, 3.4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
}

.about-copy p {
  color: rgba(53, 21, 12, 0.80);
}

.quote {
  margin-top: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--orange);
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.42;
  color: var(--brown);
}

.section-brand {
  margin-bottom: 2rem;
}

.section-brand img {
  display: block;
  width: 320px;
  /* prueba entre 300 y 360px */
  max-width: 100%;
  height: auto;
}

/*======================================
MÉTODO ECOSISTEMA
======================================*/

.method-section {

  padding: 140px 0;
  background: var(--paper);

}

.method-title {

  text-align: center;
  margin-bottom: 70px;

}

.method-label {

  display: flex;
  justify-content: center;
  margin-bottom: 20px;

}

.method-label img {

  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;

}

.method-title h2 {

  font-size: clamp(2.4rem, 3.4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.03em;

  max-width: 950px;

  margin: 0 auto 30px;

}

.method-title p {

  max-width: 760px;

  margin: auto;

  font-size: 1.15rem;

  line-height: 1.8;

  color: var(--text);

}


.method-grid {

  display: grid;

  grid-template-columns: repeat(3, minmax(340px, 1fr));

  gap: 34px;

}


.method-card {

  background: rgba(255, 255, 255, .70);

  border-radius: 34px;

  padding: 42px;

  backdrop-filter: blur(18px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

}


.method-card-header {

  display: flex;

  align-items: flex-start;

  gap: 22px;

  margin-bottom: 28px;

}


.method-icon {

  width: 68px;

  height: auto;

  flex-shrink: 0;

}


.method-card h3 {

  margin: 0;

  font-family: Inter, sans-serif;

  font-size: .98rem;

  font-weight: 800;

  line-height: 1.45;

  letter-spacing: .06em;

  text-transform: uppercase;

  color: var(--brown);

}


.method-card p {

  margin: 0;

  font-size: 1.1rem;

  line-height: 1.85;

}

.method-list {
  max-width: 900px;
  margin: 70px auto 0;
}

.method-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 32px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1.5px solid rgba(80, 31, 18, 0.22);
}

.method-item:first-child {
  border-top: 1.5px solid rgba(80, 31, 18, 0.22);
}

.method-item-icon {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.method-item-copy h3 {
  margin: 0 0 12px;
  font-family: Inter, Manrope, system-ui, sans-serif;
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: .055em;
  font-weight: 400;
  color: var(--brown);
  text-transform: uppercase;
}

.method-item-copy p {
  margin: 0;
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(53, 21, 12, 0.78);
}

@media (max-width: 720px) {
  .method-list {
    margin-top: 48px;
  }

  .method-item {
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .method-item-icon {
    width: 48px;
  }

  .method-item-copy h3 {
    font-size: .92rem;
  }

  .method-item-copy p {
    font-size: .98rem;
  }
}


/* REASONS */

.reasons {
  padding-top: 120px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  perspective: 1200px;
}

.flip-card {
  height: 230px;
  position: relative;
  transform-style: preserve-3d;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.65s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.note {
  position: absolute;
  inset: 0;
  padding: 28px;
  border-radius: 30px;
  backface-visibility: hidden;
  background: rgba(255, 252, 246, 0.62);
  border: 1px solid rgba(80, 31, 18, 0.10);
  box-shadow: 0 18px 54px rgba(80, 31, 18, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--brown);
}

.note.back {
  transform: rotateY(180deg);
  background: rgba(167, 216, 198, 0.76);
  font-family: Inter, Manrope, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 700;
}

/* TELECONSULTA EDITORIAL */

.teleconsulta {
  padding: 130px 0;
  background: var(--orange);
}

.teleconsulta-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.teleconsulta-label {
  width: 210px;
  height: auto;
  margin-bottom: 28px;
}

.teleconsulta-left h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.04em;
  max-width: 520px;
  margin-bottom: 30px;
}

.teleconsulta-left p {
  max-width: 500px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(53, 21, 12, .78);
}

.teleconsulta-path {
  position: relative;
  padding: 20px 0;
}

.path-line {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 20px;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(255, 248, 210, .85),
      rgba(80, 31, 18, .55),
      rgba(255, 248, 210, .85));
}

.path-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: none;
}

.path-step:last-child {
  border-bottom: 0;
}

.path-dot {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--mint);
  border: 3px solid var(--brown);
  box-shadow: 0 0 0 10px rgba(255, 248, 210, .55);
}

.path-step:nth-child(3) .path-dot {
  background: var(--rose);
}

.path-step:nth-child(4) .path-dot {
  background: var(--yellow);
}

.path-step:nth-child(5) .path-dot {
  background: var(--brown);
}

.path-step h3 {
  margin: 0 0 10px;
  font-family: Inter, Manrope, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: .055em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brown);
}

.path-step p {
  margin: 0;
  max-width: 580px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(53, 21, 12, .75);
}

@media (max-width: 920px) {
  .teleconsulta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .teleconsulta-label {
    width: 180px;
  }

  .path-step {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .path-dot {
    width: 36px;
    height: 36px;
  }

  .path-line {
    left: 17px;
  }
}

/* CTA FINAL */

.cta-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 32px;

  background: #ffffff;
  color: #5b2115;

  border-radius: 999px;

  font-family: Inter, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;

  text-decoration: none;

  transition: .3s;
  margin: 48px 0 20px;
  margin-left: 0;
}

.cta-final:hover {
  background: #ffffff;
  color: #5b2115;
  transform: translateY(-2px);
}

.final-cta {
  padding: 150px 0 170px;
  text-align: center;
  background: var(--brown);
}

.final-cta-kicker {
  margin-bottom: 24px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
}

.final-cta h2 {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(3.2rem, 5vw, 6.4rem);
  line-height: .95;
  letter-spacing: -.045em;
  color: var(--on-dark);
}

.final-cta-text {
  max-width: 620px;
  margin: 34px auto 0;
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--on-dark-soft);
}

.final-cta-text strong {
  color: var(--orange);
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--brown);
  font-size: .95rem;
  font-weight: 700;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
  transition: all .25s ease;
}

.final-cta-button:hover {
  transform: translateY(-2px);
  background: #ffa669;
}

.final-cta-inner {
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .final-cta {
    padding: 110px 0 130px;
  }

  .final-cta h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .final-cta-text {
    font-size: 1.05rem;
  }

  .final-cta-button {
    width: 100%;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  background: var(--brown);
  color: var(--on-dark);
  padding: 72px 0 30px;
  border-top: 1px solid rgba(253, 241, 227, 0.30);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr;
  gap: 80px;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
}

.footer-logo {
  width: 120px;
  height: auto;
  display: block;
}

.footer-lema {
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-column h4 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 22px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  transition: .25s ease;
}

.footer-column a:hover {
  color: #fff;
  opacity: .8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .18);
  margin-top: 60px;
  padding-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
}

@media (max-width:900px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px) {

  .footer-content {

    grid-template-columns: 1fr;

    gap: 50px;

    text-align: center;

  }

  .footer-brand {

    align-items: center;

  }

  .footer-column {

    align-items: center;

  }

}

/* RESPONSIVE */

@media (max-width: 920px) {
  .nav {
    height: 72px;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .nav-links,
  .nav>.btn {
    display: none;
  }

  section {
    padding: 82px 0;
  }

  .hero {
    min-height: 96vh;
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.2rem);
  }

  .hero p {
    font-size: 1.04rem;
  }

  .cards-3,
  .philosophy-grid,
  .about-grid,
  .reason-grid,
  .tele-card,
  .cta-card,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .big-phrase {
    font-size: clamp(3.9rem, 17vw, 6rem);
  }

  .philosophy-copy,
  .tele-left,
  .cta-left,
  .cta-right {
    padding: 34px;
  }

  .photo-box {
    min-height: 390px;
  }

  .tele-right {
    grid-template-columns: 1fr;
  }

  .flip-card {
    height: 205px;
  }

  .footer-logo {
    width: 180px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    width: calc(100% - 22px);
    padding: 0 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-bg-mark {
    width: 118vw;
    opacity: 0.14;
  }

  .consult-banner {
    flex-direction: column;
  }

  .note {
    font-size: 1.18rem;
  }

  .cta-card {
    border-radius: 34px;
  }
}