/* 1. VARIABLES */

:root {
  --color-background: #f6efe8;
  --color-background-transparent: rgba(246, 239, 232, 0.97);
  --color-text: #2c2723;
  --color-gold: #a87945;
  --color-gold-dark: #91693b;
  --color-white: #ffffff;
  --color-shadow: rgba(44, 39, 35, 0.14);

  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;

  --max-width: 1400px;
  --page-width: 92%;
  --hero-min-height: 100vh;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4.5rem;

  --border-radius: 3px;
  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s ease;

  --z-base: 1;
  --z-content: 5;
  --z-navbar: 10;
  --z-menu: 20;
  --color-section: #FCFAF7;
  --color-cards: #F6EFE8;
}

/* 2. RESET */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

/* 3. TIPOGRAFÍA Y ESTILOS GLOBALES */

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 400;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* 4. LAYOUT GENERAL */

.container {
  width: min(var(--max-width), var(--page-width));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: var(--hero-min-height);
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(246, 239, 232, 0.97) 0%,
      rgba(246, 239, 232, 0.9) 28%,
      rgba(246, 239, 232, 0.45) 50%,
      rgba(246, 239, 232, 0.08) 70%,
      rgba(246, 239, 232, 0) 100%
    ),
    url("images/hero-inicio.png");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* 5. COMPONENTES */

/* 5.1 NAVBAR */

.navbar {
  position: relative;
  z-index: var(--z-navbar);

  width: min(var(--max-width), var(--page-width));
  margin-inline: auto;

  min-height: 165px;
  padding-top: 24px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* 5.2 LOGO */

.navbar__logo {
  display: block;
  width: clamp(245px, 14vw, 300px);
  flex-shrink: 0;
}

.navbar__logo-image {
  width: 100%;
  height: auto;
}

/* 5.3 MENÚ PRINCIPAL */

.navbar__menu {
  padding-top: 20px;
}

.navbar__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3.3vw, 50px);
}

.navbar__item {
  position: relative;
}

.navbar__link {
  position: relative;
  display: inline-block;
  padding: 10px 0 14px;

  color: var(--color-text);
  font-family: var(--font-title);
  font-size: clamp(1.125rem, 1.15vw, 1.375rem);
  font-weight: 500;
  white-space: nowrap;

  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 0;
  height: 2px;

  background-color: var(--color-gold);
  transform: translateX(-50%);

  transition: width var(--transition-fast);
}

.navbar__link:hover,
.navbar__link:focus-visible {
  color: var(--color-gold-dark);
}

.navbar__link:hover::after,
.navbar__link:focus-visible::after,
.navbar__link--active::after {
  width: 100%;
}

/* 5.4 BOTÓN DEL MENÚ MÓVIL */

.navbar__toggle {
  position: relative;
  z-index: var(--z-menu);

  display: none;
  width: 34px;
  height: 34px;

  background-color: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.navbar__toggle i {
  position: absolute;
  inset: 0;
  margin: auto;

  width: max-content;
  height: max-content;

  font-size: 1.7rem;

  transition:
    opacity var(--transition-fast),
    transform var(--transition-normal);
}

.navbar__close {
  opacity: 0;
  transform: rotate(-90deg);
}

/* 5.5 CONTENIDO DEL HERO */

.hero__content {
  position: relative;
  z-index: var(--z-content);

  width: min(820px, 90%);
  margin-left: max(4%, calc((100vw - var(--max-width)) / 2));
  padding-top: 38px;
  padding-bottom: 90px;
}

.hero__title {
  margin: 0;

  font-size: clamp(2.2rem, 4.2vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero__separator {
  display: block;

  width: 52px;
  height: 2px;
  margin: 32px 0;

  background-color: var(--color-gold);
}

.hero__text {
  max-width: 470px;
  margin-bottom: 24px;

  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

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

  min-width: 220px;
  min-height: 56px;
  margin-top: 8px;
  padding: 14px 28px;

  border: 1px solid var(--color-gold);
  border-radius: var(--border-radius);

  background-color: var(--color-gold);
  color: var(--color-white);

  font-size: 1rem;
  font-weight: 500;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.hero__button:hover,
.hero__button:focus-visible {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* 5.6 SECCIÓN ACOMPAÑAMIENTO */

.acompanamiento {
  background-color: var(--color-section);
  padding: 50px 24px;
}

.acompanamiento__container {
  width: min(680px, 100%);
  margin-inline: auto;
  text-align: center;
}

.acompanamiento__icon {
  width: 58px;
  height: auto;
  margin: 0 auto 12px;
}

.acompanamiento__title {
  color: var(--color-text);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.acompanamiento__separator {
  display: block;
  width: 42px;
  height: 2px;
  margin: 20px auto 18px;
  background-color: var(--color-gold);
}

.acompanamiento__text {
  width: min(570px, 100%);
  margin-inline: auto;
  color: var(--color-text);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.5;
}

.acompanamiento__text p {
  margin-bottom: 12px;
}

.acompanamiento__text p:last-child {
  margin-bottom: 0;
}
/* 5.7 SERVICIOS */

.servicios {
    background: var(--color-cards);

    padding: 20px 0 0;
}

.servicios__container {
    width: min(var(--max-width),100%);

    margin-inline:auto;

    display:grid;

    grid-template-columns:1fr 1fr;
}

.servicio-card{
    padding:60px 60px 70px;

    text-align:center;
}

.servicio-card:first-child{
    border-right:1px solid rgba(0,0,0,.08);
}

.servicio-card__icon{
    width:70px;

    margin:0 auto 28px;
}

.servicio-card__title{
    font-family:var(--font-title);

    font-size:2.4rem;

    line-height:1.05;

    margin-bottom:20px;
}

.servicio-card__separator{
    display:block;

    width:42px;

    height:2px;

    background:var(--color-gold);

    margin:0 auto 30px;
}

.servicio-card__text{
    max-width:470px;

    margin:0 auto 20px;

    font-size:1rem;

    line-height:1.75;
}

.servicio-card__button{
    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:230px;

    height:54px;

    margin-top:18px;

    padding:0 28px;

    background:var(--color-gold);

    color:white;

    border:1px solid var(--color-gold);

    transition:.25s;
}

.servicio-card__button:hover{
    background:var(--color-gold-dark);
}
/* 5.8 CONTACTO EN LA PÁGINA DE INICIO */

.inicio-contacto {
  position: relative;

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

  min-height: 310px;
  padding: 35px max(5%, calc((100vw - var(--max-width)) / 2));

  background-color: var(--color-section);
  overflow:hidden;
}
.inicio-contacto__background{
    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position: center 62%;

    z-index:0;
}

.inicio-contacto__content {
  width: min(570px, 50%);
  text-align: center;
  position:relative;
  z-index:2;
}

.inicio-contacto__text {
  margin-bottom: 10px;

  color: var(--color-text);
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  line-height: 1.25;
}

.inicio-contacto__title {
  margin-bottom: 16px;

  color: var(--color-gold);
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 2.6vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.inicio-contacto__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  min-height: 46px;
  padding: 11px 28px;

  border: 1px solid var(--color-gold);
  border-radius: var(--border-radius);

  background-color: var(--color-gold);
  color: var(--color-white);

  font-size: 1rem;
  font-weight: 500;

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.inicio-contacto__button:hover,
.inicio-contacto__button:focus-visible {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* 5.9 FOOTER */

.footer {
  background-color: var(--color-section);
  padding: 14px 0;
}

.footer__container {
  width: min(var(--max-width), var(--page-width));
  margin-inline: auto;

  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}


/* Logo */

.footer__logo {
  justify-self: start;
}

.footer__logo-image {
  width: 250px;
  height: auto;
}


/* Redes sociales */

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-text);
  font-size: 1.3rem;

  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  color: var(--color-gold);
  transform: translateY(-2px);
}


/* Enlaces legales */

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.footer__legal-link {
  color: var(--color-text);
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;

  transition: color var(--transition-fast);
}

.footer__legal-link:hover,
.footer__legal-link:focus-visible {
  color: var(--color-gold);
}

.footer__legal-separator {
  color: var(--color-text);
  font-size: 0.85rem;
}


/* Copyright */

.footer__copyright {
  justify-self: end;

  margin: 0;

  color: var(--color-text);
  font-size: 1rem;
  text-align: right;
  white-space: nowrap;
}

/* HEADER - CONTACTO */

.contact-header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: var(--z-navbar);

  background-color: transparent;
}

/* 5.10 HERO - CONTACTO */

.contact-hero {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;

  min-height: 710px;

  background-color: var(--color-background);
}

.contact-hero__background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  z-index: 0;
}

.contact-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(246, 239, 232, 0.98) 0%,
      rgba(246, 239, 232, 0.92) 24%,
      rgba(246, 239, 232, 0.55) 40%,
      rgba(246, 239, 232, 0.10) 57%,
      rgba(246, 239, 232, 0) 70%
    );

  z-index: 1;

  pointer-events: none;
}

.contact-hero__content {
  position: relative;
  z-index: 2;

  width: min(500px, 90%);

  margin-left:
    max(5%, calc((100vw - var(--max-width)) / 2));

  padding-top: 230px;
  padding-bottom: 75px;
}

.contact-hero__title {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.contact-hero__separator {
  display: block;

  width: 48px;
  height: 2px;

  margin: 30px 0;

  background-color: var(--color-gold);
}

.contact-hero__text {
  margin: 0 0 38px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  font-weight: 400;
  line-height: 1.4;
}

.contact-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  min-width: 305px;
  min-height: 56px;

  padding: 13px 24px;

  border: 1px solid var(--color-gold);
  border-radius: var(--border-radius);

  background-color: var(--color-gold);
  color: var(--color-white);

  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.contact-hero__button i {
  font-size: 1.45rem;
}

.contact-hero__button:hover,
.contact-hero__button:focus-visible {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);

  transform: translateY(-2px);
}

.contact-hero__response {
  display: flex;
  align-items: center;

  gap: 10px;

  margin: 20px 0 0;

  color: var(--color-text);

  font-family: var(--font-body);
  font-size: 0.95rem;
}

.contact-hero__response i {
  color: var(--color-gold);
  font-size: 1.25rem;
}
/* 5.11 CONTACTO DIRECTO */

.contacto-directo {
  padding: 48px 24px 65px;

  background-color: var(--color-background);
}

.contacto-directo__container {
  width: min(100%, var(--max-width));
  margin-inline: auto;

  text-align: center;
}

.contacto-directo__title {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.contacto-directo__title::after {
  content: "";

  display: block;

  width: 38px;
  height: 2px;

  margin: 18px auto 42px;

  background-color: var(--color-gold);
}

.contacto-directo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 0;
}

.contacto-directo__item {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 0 30px;

  text-align: center;
}

.contacto-directo__item:not(:last-child) {
  border-right: 1px solid rgba(44, 39, 35, 0.08);
}

.contacto-directo__icon {
  flex-shrink: 0;

  width: 62px;
  height: 62px;

  margin: 0 auto 18px;

  display: grid !important;
  place-items: center;

  border-radius: 50%;

  background-color: rgba(168, 121, 69, 0.08);
  color: var(--color-gold);

  font-size: 1.9rem;
  line-height: 1;

  text-align: center;
}

.contacto-directo__info {
  width: 100%;
}

.contacto-directo__label {
  margin: 0 0 12px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.contacto-directo__link,
.contacto-directo__text {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
}

.contacto-directo__link {
  transition: color var(--transition-fast);
}

.contacto-directo__link:hover,
.contacto-directo__link:focus-visible {
  color: var(--color-gold);
}
/* 5.12 PRIMER PASO - CONTACTO */

.primer-paso {
  position: relative;

  min-height: 390px;

  overflow: hidden;

  background-color: var(--color-section);
}

.primer-paso__background {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;
}

.primer-paso::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(

    to right,

    rgba(255, 255, 255, 0.12) 0%,

    rgba(255, 255, 255, 0.10) 35%,

    rgba(255, 255, 255, 0.04) 65%,

    rgba(255, 255, 255, 0) 80%

  );

  z-index: 0;

  pointer-events: none;
}

.primer-paso__content {
  position: relative;

  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  width: 50%;
  min-height: 390px;

  margin-left: 50%;

  padding: 50px 5% 50px 8%;

  text-align: left;
}

.primer-paso__text {
  margin: 0 0 18px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  font-weight: 400;
  line-height: 1.4;
}

.primer-paso__title {
  margin: 0 0 26px;

  color: var(--color-gold);

  font-family: var(--font-title);
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 1.05;
}

.primer-paso__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  min-height: 56px;

  padding: 13px 28px;

  border: 1px solid var(--color-gold);
  border-radius: var(--border-radius);

  background-color: var(--color-gold);
  color: var(--color-white);

  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.primer-paso__button i {
  font-size: 1.4rem;
}

.primer-paso__button:hover,
.primer-paso__button:focus-visible {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);

  transform: translateY(-2px);
}
/* 5.13 HERO - TARIFAS */

.tarifas-header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: var(--z-navbar);

  background-color: transparent;
}

.tarifas-hero {
  position: relative;

  min-height: 760px;

  overflow: hidden;

  background-color: var(--color-background);
}

.tarifas-hero__background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  z-index: 0;
}

.tarifas-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(246, 239, 232, 0.96) 0%,
      rgba(246, 239, 232, 0.88) 22%,
      rgba(246, 239, 232, 0.52) 40%,
      rgba(246, 239, 232, 0.12) 58%,
      rgba(246, 239, 232, 0) 72%
    );

  z-index: 1;

  pointer-events: none;
}

.tarifas-hero__content {
  position: relative;
  z-index: 2;

  width: min(520px, 90%);

  margin-left:
    max(5%, calc((100vw - var(--max-width)) / 2));

  padding-top: 260px;
  padding-bottom: 80px;
}

.tarifas-hero__title {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(4.5rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
}

.tarifas-hero__separator {
  display: block;

  width: 52px;
  height: 2px;

  margin: 30px 0 32px;

  background-color: var(--color-gold);
}

.tarifas-hero__text {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  font-weight: 400;
  line-height: 1.4;
}

/* 5.14 TARIFAS - SERVICIOS */

.tarifas-servicios {
  padding: 42px 24px 20px;

  background-color: var(--color-background);
}

.tarifas-servicios__container {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.tarifas-evaluacion {
  display: grid;

  grid-template-columns:
    140px
    minmax(0, 1fr)
    360px;

  align-items: center;

  gap: 35px;

  padding: 10px 0 42px;

  border-bottom: 1px solid rgba(44, 39, 35, 0.12);
}

.tarifas-evaluacion__icono {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 190px;

  border-right: 1px solid rgba(44, 39, 35, 0.12);
}

.tarifas-evaluacion__icono img {
  width: 84px;
  height: auto;
}

.tarifas-evaluacion__contenido {
  padding-right: 20px;
}

.tarifas-evaluacion__title {
  margin: 0 0 6px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(2rem, 2.8vw, 2.65rem);
  font-weight: 400;
  line-height: 1;
}

.tarifas-evaluacion__meta {
  margin: 0 0 10px;

  color: var(--color-text);

  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
}

.tarifas-evaluacion__meta span {
  margin-inline: 8px;
}

.tarifas-evaluacion__precio {
  margin: 0 0 10px;

  color: var(--color-gold);

  font-family: var(--font-title);
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.tarifas-evaluacion__text {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.6;
}

.tarifas-evaluacion__accion {
  display: flex;
  justify-content: center;
}

.tarifas-evaluacion__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 330px;
  min-height: 66px;

  padding: 14px 30px;

  border: 1px solid var(--color-gold);
  border-radius: var(--border-radius);

  background-color: var(--color-gold);
  color: var(--color-white);

  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.tarifas-evaluacion__button:hover,
.tarifas-evaluacion__button:focus-visible {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);

  transform: translateY(-2px);
}

.tarifas-bloque {
  padding: 34px 0 28px;

  border-bottom: 1px solid rgba(44, 39, 35, 0.12);

  text-align: center;
}

.tarifas-bloque:last-child {
  border-bottom: none;
}

.tarifas-bloque__title {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.tarifas-bloque__separator {
  display: block;

  width: 38px;
  height: 2px;

  margin: 16px auto 24px;

  background-color: var(--color-gold);
}

.tarifas-bloque__opciones {
  display: grid;
  grid-template-columns: 1fr 1fr;

  width: min(720px, 100%);
  margin-inline: auto;
}

.tarifa-opcion {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 0 45px 12px;

  text-align: center;
}

.tarifa-opcion:first-child {
  border-right: 1px solid rgba(44, 39, 35, 0.12);
}

.tarifa-opcion__icon {
  width: 60px;
  height: 60px;

  margin: 0 auto 10px;

  object-fit: contain;
}

.tarifa-opcion__title {
  margin: 0 0 6px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
}

.tarifa-opcion__duracion {
  margin: 0 0 8px;

  color: var(--color-text);

  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.4;
}

.tarifa-opcion__precio {
  margin: 0;

  color: var(--color-gold);

  font-family: var(--font-title);
  font-size: clamp(2.6rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.tarifas-bloque__nota {
  margin: 16px auto 0;

  color: var(--color-text);

  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
}
/* 5.15 CTA FINAL - TARIFAS */

.tarifas-cta {
  position: relative;

  min-height: 330px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background-color: var(--color-background);
}


/* Imagen de fondo */

.tarifas-cta__background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  max-width: none;

  object-fit: cover;
  object-position: center 71%;

  transform: none;

  z-index: 0;
}


/* Contenido */

.tarifas-cta__content {
  position: relative;
  z-index: 1;

  width: min(var(--max-width), var(--page-width));
  margin-inline: auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}


/* Título */

.tarifas-cta__title {
  margin: 0;

  color: var(--color-gold);

  font-family: var(--font-title);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
}


/* Separador */

.tarifas-cta__separator {
  display: block;

  width: 42px;
  height: 2px;

  margin: 18px 0 20px;

  background-color: var(--color-gold);
}


/* Botón */

.tarifas-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 305px;
  min-height: 56px;

  padding: 13px 28px;

  border: 1px solid var(--color-gold);
  border-radius: var(--border-radius);

  background-color: var(--color-gold);
  color: var(--color-white);

  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.tarifas-cta__button:hover,
.tarifas-cta__button:focus-visible {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);

  transform: translateY(-2px);
}

/* 5.16 HERO - SOBRE MÍ */

.sobremi-header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: var(--z-navbar);

  background-color: transparent;
}

.sobremi-hero {
  position: relative;

  min-height: 760px;

  overflow: hidden;

  background-color: var(--color-background);
}

.sobremi-hero__background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  z-index: 0;
}

.sobremi-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(246, 239, 232, 0.98) 0%,
      rgba(246, 239, 232, 0.94) 20%,
      rgba(246, 239, 232, 0.68) 34%,
      rgba(246, 239, 232, 0.22) 48%,
      rgba(246, 239, 232, 0) 62%
    );

  z-index: 1;

  pointer-events: none;
}

.sobremi-hero__content {
  position: relative;
  z-index: 2;

  width: min(560px, 90%);

  margin-left:
    max(5%, calc((100vw - var(--max-width)) / 2));

  padding-top: 210px;
  padding-bottom: 70px;
}

.sobremi-hero__eyebrow {
  margin: 45px 65px;

  color: var(--color-gold);

  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.sobremi-hero__separator {
  display: block;

  width: 48px;
  height: 2px;

  margin: -25px 0 22px 105px;

  background-color: var(--color-gold);
}

.sobremi-hero__title {
  margin: 0 0 28px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.sobremi-hero__text {
  width: min(500px, 100%);

  color: var(--color-text);

  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
}

.sobremi-hero__text p {
  margin-bottom: 20px;
}

.sobremi-hero__text p:last-child {
  margin-bottom: 0;
}
/* 5.17 CÓMO ACOMPAÑO */

.como-acompano {
  padding: 55px 0 65px;

  background-color: var(--color-background);
}

.como-acompano__container {
  width: min(1200px, 88%);
  margin-inline: auto;
}

.como-acompano__header {
  margin-bottom: 55px;

  text-align: center;
}

.como-acompano__title {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(2.8rem, 3.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.como-acompano__separator {
  display: block;

  width: 42px;
  height: 2px;

  margin: 18px auto 24px;

  background-color: var(--color-gold);
}

.como-acompano__intro {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(1.45rem, 1.8vw, 1.8rem);
  font-weight: 400;
  line-height: 1.35;
}

.como-acompano__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  position: relative;

  gap: 100px;
}

.como-acompano__grid::after {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;

  width: 1px;

  background-color: rgba(168, 121, 69, 0.35);

  transform: translateX(-50%);
}

.como-acompano__item {
  min-width: 0;
}

.como-acompano__item-title {
  margin: 0;

  color: var(--color-gold);

  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: 500;
  line-height: 1.2;

  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.como-acompano__item-separator {
  display: block;

  width: 42px;
  height: 2px;

  margin: 14px auto 30px;

  background-color: var(--color-gold);
}

.como-acompano__text {
  color: var(--color-text);

  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
}

.como-acompano__text p {
  margin: 0 0 26px;
}

.como-acompano__text p:last-child {
  margin-bottom: 0;
}
/* 5.18 CTA FINAL - SOBRE MÍ */

.sobremi-cta {
  position: relative;

  min-height: 380px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background-color: var(--color-background);
}

.sobremi-cta__background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 65%;

  z-index: 0;
}

.sobremi-cta__content {
  position: relative;
  z-index: 1;

  width: min(var(--max-width), var(--page-width));
  margin-inline: auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.sobremi-cta__title {
  margin: 0 0 18px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(2rem, 2.7vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
}

.sobremi-cta__text {
  margin: 0 0 14px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.55;
}

.sobremi-cta__highlight {
  margin: 0 0 22px;

  color: var(--color-gold);

  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.25;
}

.sobremi-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 250px;
  min-height: 56px;

  padding: 13px 28px;

  border: 1px solid var(--color-gold);
  border-radius: var(--border-radius);

  background-color: var(--color-gold);
  color: var(--color-white);

  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.sobremi-cta__button:hover,
.sobremi-cta__button:focus-visible {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);

  transform: translateY(-2px);
}
/* 5.19 HERO - COACHING */

.coaching-header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: var(--z-navbar);

  background-color: transparent;
}

.coaching-hero {
  position: relative;

  min-height: 730px;

  overflow: hidden;

  background-color: var(--color-background);
}

.coaching-hero__background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  z-index: 0;
}

.coaching-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(246, 239, 232, 0.97) 0%,
      rgba(246, 239, 232, 0.92) 20%,
      rgba(246, 239, 232, 0.72) 30%,
      rgba(246, 239, 232, 0.30) 42%,
      rgba(246, 239, 232, 0.06) 54%,
      rgba(246, 239, 232, 0) 65%
    );

  z-index: 1;

  pointer-events: none;
}

.coaching-hero__content {
  position: relative;

  z-index: 2;

  width: min(540px, 90%);

  margin-left:
    max(5%, calc((100vw - var(--max-width)) / 2));

  padding-top: 235px;
  padding-bottom: 85px;
}

.coaching-hero__title {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(4rem, 5.3vw, 5.3rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.025em;
}

.coaching-hero__separator {
  display: block;

  width: 48px;
  height: 2px;

  margin: 32px 0 38px;

  background-color: var(--color-gold);
}

.coaching-hero__text {
  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
}

.coaching-hero__text p {
  margin: 0 0 34px;
}

.coaching-hero__text p:last-child {
  margin-bottom: 0;
}

/* 5.20 BLOQUES - COACHING */

.coaching-bloques {
  padding: 70px 0 75px;
  background-color: var(--color-section);
}

.coaching-bloques__container {
  width: min(var(--max-width), 90%);
  margin-inline: auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
}

.coaching-bloques__item {
  position: relative;

  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: auto auto auto auto;
  column-gap: 18px;

  min-width: 0;
  align-content: start;
}

.coaching-bloques__icon {
  grid-column: 1;
  grid-row: 1 / 3;

  width: 64px;
  height: 64px;

  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.coaching-bloques__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coaching-bloques__title {
  grid-column: 2;
  grid-row: 1;

  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(1.7rem, 2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.12;
  text-align: center;
}

.coaching-bloques__separator {
  grid-column: 2;
  grid-row: 2;

  display: block;

  width: 46px;
  height: 2px;
  margin: 24px auto 40px;

  background-color: var(--color-gold);
}

.coaching-bloques__text {
  grid-column: 1 / -1;
  grid-row: 3;

  min-width: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: 1.25rem;
  line-height: 1.6;
}

.coaching-bloques__text p {
  margin: 0 0 22px;
}

.coaching-bloques__text p:last-child {
  margin-bottom: 0;
}

.coaching-bloques__highlight {
  grid-column: 1 / -1;
  grid-row: 4;

  margin: 40px 0 0;

  color: var(--color-gold);

  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.15;
}

/* 5.21 CTA - COACHING */

.coaching-cta {
  position: relative;

  min-height: 330px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background-color: var(--color-background);
}

.coaching-cta__background {
  position: absolute;

  top: 60%;

  right: 0;

  height: auto;

  max-width: none;

  transform: translateY(-55%);

  z-index: 0;
}

.coaching-cta__content {
  position: relative;
  z-index: 1;

  width: min(var(--max-width), var(--page-width));
  margin-inline: auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.coaching-cta__title {
  margin: 0;

  color: var(--color-gold);

  font-family: var(--font-title);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
}

.coaching-cta__separator {
  display: block;

  width: 42px;
  height: 2px;

  margin: 18px 0 20px;

  background-color: var(--color-gold);
}

/* 5.22 HERO - PROGRAMA 21 DÍAS */

.programa-header {
  position: relative;

  min-height: 820px;

  background-image: url("images/hero-programa-21-dias.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.programa-hero__content {
  position: relative;
  z-index: 2;

  width: min(var(--max-width), var(--page-width));
  margin-inline: auto;

  padding-top: 70px;
  padding-bottom: 70px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.programa-hero__title {
  margin: 0;

  display: flex;
  flex-direction: column;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(4.6rem, 6.2vw, 6.8rem);
  font-weight: 400;
  line-height: 0.88;

  letter-spacing: 0.01em;
}

.programa-hero__title span {
  display: block;
}

.programa-hero__title span:first-child {
  font-size: 0.66em;

  margin-bottom: 18px;
}

.programa-hero__separator {
  display: block;

  width: 62px;
  height: 3px;

  margin: 38px 0 40px;

  background-color: var(--color-gold);
}

.programa-hero__intro {
  max-width: 600px;

  margin: 0 0 28px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.55;
}

.programa-hero__highlight {
  color: var(--color-gold);

  font-size: 1.45em;
  font-weight: 400;
}

.programa-hero__text {
  max-width: 610px;

  margin: 0 0 48px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.55;
}

.programa-hero__button {
  min-width: 250px;

  padding: 17px 34px;

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

  border-radius: 4px;

  background-color: var(--color-gold);
  color: #ffffff;

  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;

  text-decoration: none;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.programa-hero__button:hover {
  background-color: var(--color-gold-dark);

  transform: translateY(-2px);
}
/* 5.23 PROGRAMA 21 DÍAS - LO ESENCIAL */

.programa-esencial {
  background-color: var(--color-background);

  padding: 70px 0 85px;
}

.programa-esencial__container {
  width: min(var(--max-width), var(--page-width));
  margin-inline: auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.programa-esencial__bloque {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.programa-esencial__text {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.45;
}

.programa-esencial__text--secondary {
  margin-top: 22px;
}

.programa-esencial__separator {
  display: block;

  width: 42px;
  height: 2px;

  margin: 30px 0;

  background-color: var(--color-gold);
}

.programa-esencial__bloque--last {
  margin-top: 0;
}
/* 5.24 PROGRAMA 21 DÍAS - PILARES */

.programa-pilares {
  background-color: #f2e8df;
  padding: 65px 0 70px;
}

.programa-pilares__container {
  width: min(var(--max-width), var(--page-width));
  margin-inline: auto;
}

.programa-pilares__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  max-width: 1100px;
  margin-inline: auto;
}

.programa-pilares__item {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 0 55px;

  text-align: center;
}

.programa-pilares__item:not(:last-child) {
  border-right: 1px solid rgba(176, 126, 67, 0.20);
}

.programa-pilares__icon {
  display: block;

  width: 78px;
  height: 78px;

  margin: 0 auto 18px;

  object-fit: contain;
}

.programa-pilares__title {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.programa-pilares__separator {
  display: block;

  width: 42px;
  height: 2px;

  margin: 18px auto 28px;

  background-color: var(--color-gold);
}

.programa-pilares__text {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.55;
}

.programa-pilares__footer {
  margin-top: 55px;

  text-align: center;
}

.programa-pilares__footer-title {
  margin: 0 0 10px;

  color: var(--color-gold);

  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
}

.programa-pilares__footer-text {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

/* 5.25 PROGRAMA 21 DÍAS - CTA FINAL */

.programa-cta {
  position: relative;

  min-height: 480px;

  overflow: hidden;

  background-color: var(--color-background);
}

.programa-cta__background {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: right 90%;

  z-index: 0;
}

.programa-cta__container {
  position: relative;
  z-index: 1;

  width: min(var(--max-width), var(--page-width));
  min-height: 430px;

  margin-inline: auto;
  padding: 48px 0 38px;
}

.programa-cta__etapas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  width: 68%;
  max-width: 850px;

  margin-inline: auto;
}

.programa-cta__etapa {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.programa-cta__etapa-title {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: clamp(2.2rem, 2.7vw, 2.9rem);
  font-weight: 400;
  line-height: 1.15;
}

.programa-cta__etapa-separator {
  display: block;

  width: 42px;
  height: 2px;

  margin-top: 17px;

  background-color: var(--color-gold);
}

.programa-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 330px;
  min-height: 62px;

  margin: 42px auto 0;

  border-radius: 3px;

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

  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.programa-cta__button:hover {
  transform: translateY(-2px);
}

.programa-cta__text {
  position: absolute;

  left: 0;
  bottom: 38px;

  text-align: left;
}

.programa-cta__text-main {
  margin: 0 0 8px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 1.3;
}

.programa-cta__text-highlight {
  margin: 0;

  color: var(--color-gold);

  font-family: var(--font-title);
  font-size: 2.65rem;
  font-weight: 400;
  line-height: 1.25;
}

.programa-cta__text-separator {
  display: block;

  width: 42px;
  height: 2px;

  margin: 18px auto 0;

  background-color: var(--color-gold);
}

/* =========================================================
   AVISO LEGAL - PANTALLAS NORMALES
   ========================================================= */

/* HEADER - PÁGINAS LEGALES */

.legal-header {
  position: relative;
  width: 100%;
  background-color: var(--color-background);
  z-index: var(--z-navbar);
}

/* Fondo general de la página */

.legal-page {
  background-color: var(--color-background);
  padding: 90px 0 110px;
}


/* Contenedor principal */

.legal-card {
  width: 88%;
  max-width: 1050px;
  margin-inline: auto;

  background-color: var(--color-section);

  padding: 65px 75px;
}


/* Cabecera del aviso legal */

.legal-card__header {
  margin-bottom: 55px;
  text-align: center;
}


/* Título principal */

.legal-card__title {
  margin: 0;

  color: var(--color-text);

  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.15;
}


/* Pequeño separador dorado */

.legal-card__separator {
  display: block;

  width: 45px;
  height: 1px;

  margin: 20px auto;

  background-color: var(--color-gold);
}


/* Texto introductorio */

.legal-card__intro {
  max-width: 720px;
  margin: 0 auto;

  color: var(--color-text);

  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}


/* Secciones */

.legal-card__section {
  margin-bottom: 38px;
}


/* Títulos de las secciones */

.legal-card__subtitle {
  margin: 0 0 14px;

  color: var(--color-text);

  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.25;
}


/* Párrafos */

.legal-card__section p {
  margin: 0 0 12px;

  color: var(--color-text);

  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
}


/* Negrita */

.legal-card__section strong {
  font-weight: 600;
}


/* Enlaces */

.legal-card__section a {
  color: var(--color-gold);
  text-decoration: none;

  transition: opacity var(--transition-fast);
}

.legal-card__section a:hover,
.legal-card__section a:focus-visible {
  opacity: 0.7;
  text-decoration: underline;
}


/* Última actualización */

.legal-card__updated {
  margin: 55px 0 0;
  padding-top: 22px;

  border-top: 1px solid rgba(0, 0, 0, 0.12);

  color: var(--color-text);

  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;

  opacity: 0.65;
}

/* 6. ESTADOS CONTROLADOS POR JAVASCRIPT */

.navbar__menu.show-menu {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.navbar__toggle.show-icon .navbar__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.navbar__toggle.show-icon .navbar__close {
  opacity: 1;
  transform: rotate(0);
}

/* 7. ACCESIBILIDAD */

.navbar__link:focus-visible,
.navbar__toggle:focus-visible,
.hero__button:focus-visible,
.contact-hero__button:focus-visible,
.contacto-directo__link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* 8. RESPONSIVE */

@media screen and (max-width: 900px) {
  .hero {
    min-height: 760px;

    background-image:
      linear-gradient(
        rgba(246, 239, 232, 0.8),
        rgba(246, 239, 232, 0.8)
      ),
      url("images/hero-inicio.png");

    background-position: 62% center;
  }

  .navbar {
    min-height: 125px;
    padding-top: 18px;
  }

  .navbar__logo {
    width: 130px;
  }

  .navbar__toggle {
    display: block;
    margin-top: 12px;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;

    width: min(320px, 84%);
    height: 100vh;
    padding: 110px 32px 40px;

    overflow-y: auto;

    background-color: var(--color-background-transparent);
    box-shadow: -8px 0 30px var(--color-shadow);

    opacity: 0;
    visibility: hidden;

    transition:
      right var(--transition-normal),
      opacity var(--transition-normal),
      visibility var(--transition-normal);
  }

  .navbar__list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
  }

  .navbar__link {
    font-size: 1.25rem;
  }

  .hero__content {
    width: auto;
    max-width: 590px;
    margin: 0;
    padding: 55px 28px 80px;
  }

  .hero__title {
    font-size: clamp(2.8rem, 9vw, 4.4rem);
  }

  .hero__text {
    font-size: 1rem;
  }

  .inicio-contacto {
    min-height: 480px;

    justify-content: center;
    align-items: center;

    padding: 40px 28px;
  }

  .inicio-contacto__background{
    object-position: 65% 62%;
  }

  .inicio-contacto__content {
    width: 100%;
    max-width: 520px;
  }

  .inicio-contacto__text {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  .inicio-contacto__title {
    font-size: 2.8rem;
  }

.contact-hero {
  min-height: 720px;
}

.contact-hero__background {
  object-position: 62% center;
}

.contact-hero::after {
  background:

    linear-gradient(

      90deg,

      rgba(246, 239, 232, 0.96) 0%,

      rgba(246, 239, 232, 0.88) 38%,

      rgba(246, 239, 232, 0.45) 65%,

      rgba(246, 239, 232, 0.15) 100%

    );
}

.contact-hero__content {
  width: min(500px, calc(100% - 56px));

  margin-left: 28px;

  padding-top: 175px;

  padding-bottom: 70px;
}

.contact-hero__title {
  font-size: 4rem;
}

.contact-hero__text {
  font-size: 1.45rem;
}

  .contacto-directo {
    padding: 48px 28px 58px;
  }

  .contacto-directo__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
  }

  .contacto-directo__item {
    padding: 0 25px;
  }

  .contacto-directo__item:nth-child(2) {
    border-right: none;
  }

  .contacto-directo__item:nth-child(1),
  .contacto-directo__item:nth-child(2) {
    padding-bottom: 35px;
  }

  .tarifas-servicios {
    padding: 38px 28px 20px;
  }

  .tarifas-evaluacion {
    grid-template-columns: 110px minmax(0, 1fr);

    gap: 28px;

    padding: 10px 0 38px;
  }

  .tarifas-evaluacion__icono {
    min-height: 175px;
  }

  .tarifas-evaluacion__icono img {
    width: 76px;
  }

  .tarifas-evaluacion__contenido {
    padding-right: 0;
  }

  .tarifas-evaluacion__title {
    font-size: 2.3rem;
  }

  .tarifas-evaluacion__precio {
    font-size: 3.4rem;
  }

.tarifas-cta__content {
  z-index: 2;
}

  .tarifas-evaluacion__accion {
    grid-column: 1 / -1;

    justify-content: center;

    margin-top: 5px;
  }

  .tarifas-evaluacion__button {
    width: min(330px, 100%);

    min-height: 58px;

    font-size: 1.1rem;
  }

  .tarifas-bloque {
    padding: 32px 0 28px;
  }

  .tarifas-bloque__title {
    font-size: 2.4rem;
  }

  .tarifas-bloque__opciones {
    width: min(620px, 100%);
  }

  .tarifa-opcion {
    padding: 0 30px 12px;
  }

  .tarifa-opcion__icon {
    width: 56px;
    height: 56px;
  }

  .tarifa-opcion__precio {
    font-size: 3rem;
  }

  .tarifas-bloque__nota {
    width: min(580px, 90%);

    font-size: 0.9rem;
  }

.sobremi-hero {
  min-height: 760px;
}

.sobremi-hero__background {
  object-position: 62% center;
}

.sobremi-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(246, 239, 232, 0.96) 0%,
      rgba(246, 239, 232, 0.90) 38%,
      rgba(246, 239, 232, 0.60) 65%,
      rgba(246, 239, 232, 0.20) 100%
    );
}

.sobremi-hero__content {
  width: min(540px, calc(100% - 56px));

  margin-left: 28px;

  padding-top: 170px;
  padding-bottom: 70px;
}

.sobremi-hero__eyebrow {
  margin: 20px 0 0 40px;

  font-size: 1.7rem;
}

.sobremi-hero__separator {
  width: 36px;

  margin: 10px 0 20px 86px;
}

.sobremi-hero__title {
  font-size: clamp(3rem, 7vw, 4rem);
}

.sobremi-hero__text {
  max-width: 450px;

  font-size: 0.95rem;
  line-height: 1.65;
}

.como-acompano {
  padding: 48px 28px 55px;
}

.como-acompano__container {
  width: 100%;
}

.como-acompano__header {
  margin-bottom: 45px;
}

.como-acompano__title {
  font-size: 3rem;
}

.como-acompano__intro {
  font-size: 1.5rem;
}

.como-acompano__grid {
  gap: 55px;
}

.como-acompano__item-title {
  font-size: 1.25rem;
}

.como-acompano__item-separator {
  margin: 12px auto 24px;
}

.como-acompano__text {
  font-size: 0.94rem;
  line-height: 1.7;
}

.como-acompano__text p {
  margin-bottom: 22px;
}

.sobre-cta {
  min-height: 520px;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.sobre-cta__background {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 62% center;
}

.sobre-cta__content {
  width: min(440px, 52%);

  padding: 50px 0;
}

.sobre-cta__title {
  font-size: 2.3rem;
  line-height: 1.08;
}

.sobre-cta__text {
  font-size: 1rem;
  line-height: 1.65;
}

.sobre-cta__button {
  min-width: 220px;
}

.coaching-hero {
  min-height: 700px;
}

.coaching-hero__background {
  object-position: 60% center;
}

.coaching-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(246, 239, 232, 0.96) 0%,
      rgba(246, 239, 232, 0.90) 34%,
      rgba(246, 239, 232, 0.62) 58%,
      rgba(246, 239, 232, 0.20) 82%,
      rgba(246, 239, 232, 0) 100%
    );
}

.coaching-hero__content {
  width: min(500px, calc(100% - 56px));

  margin-left: 28px;

  padding-top: 185px;
  padding-bottom: 70px;
}

.coaching-hero__title {
  font-size: clamp(3.4rem, 7.5vw, 4.5rem);
  line-height: 0.92;
}

.coaching-hero__separator {
  margin: 28px 0 32px;
}

.coaching-hero__text {
  font-size: 1.2rem;
  line-height: 1.5;
}

.coaching-hero__text p {
  margin-bottom: 30px;
}

.coaching-bloques {
  padding: 55px 28px 60px;
}

.coaching-bloques__container {
  width: 100%;

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

  gap: 36px;
}

.coaching-bloques__item {
  grid-template-columns: 60px 1fr;

  column-gap: 16px;
}

.coaching-bloques__icon {
  width: 52px;
  height: 52px;
}

.coaching-bloques__title {
  font-size: 1.55rem;
  line-height: 1.12;
}

.coaching-bloques__separator {
  width: 38px;

  margin: 18px auto 30px;
}

.coaching-bloques__text {
  font-size: 1.05rem;
  line-height: 1.55;
}

.coaching-bloques__text p {
  margin-bottom: 18px;
}

.coaching-bloques__highlight {
  margin-top: 24px;

  font-size: 1.55rem;
}
  .programa-header {
    min-height: 760px;

    background-position: 58% center;
  }

  .programa-hero__content {
    padding-top: 55px;
    padding-bottom: 60px;

    width: 88%;
  }

  .programa-hero__title {
    font-size: clamp(3.8rem, 8vw, 5.2rem);
  }

  .programa-hero__title span:first-child {
    margin-bottom: 14px;
  }

  .programa-hero__separator {
    width: 52px;
    height: 2px;

    margin: 28px 0 30px;
  }

  .programa-hero__intro {
    max-width: 480px;

    margin-bottom: 24px;

    font-size: 1.3rem;
    line-height: 1.5;
  }

  .programa-hero__text {
    max-width: 490px;

    margin-bottom: 36px;

    font-size: 1.2rem;
    line-height: 1.5;
  }

  .programa-hero__button {
    min-width: 220px;

    padding: 15px 28px;

    font-size: 1rem;
  }

  .programa-esencial {
    padding: 60px 0 70px;
  }

  .programa-esencial__container {
    width: 88%;
  }

  .programa-esencial__text {
    font-size: 1.55rem;
    line-height: 1.45;
  }

  .programa-esencial__text--secondary {
    margin-top: 20px;
  }

  .programa-esencial__separator {
    width: 40px;
    height: 2px;

    margin: 27px 0;
  }

  .programa-pilares {
    padding: 55px 0 60px;
  }

  .programa-pilares__container {
    width: 90%;
  }

  .programa-pilares__grid {
    max-width: 820px;
  }

  .programa-pilares__item {
    padding: 0 28px;
  }

  .programa-pilares__icon {
    width: 68px;
    height: 68px;

    margin-bottom: 16px;
  }

  .programa-pilares__title {
    font-size: 1.55rem;
  }

  .programa-pilares__separator {
    width: 38px;

    margin: 16px auto 24px;
  }

  .programa-pilares__text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .programa-pilares__footer {
    margin-top: 45px;
  }

  .programa-pilares__footer-title {
    font-size: 1.1rem;
  }

  .programa-pilares__footer-text {
    font-size: 1.05rem;
  }
    .programa-cta {
    min-height: 400px;
  }

  .programa-cta__background {
    object-fit: cover;
    object-position: 65% 80%;
  }

  .programa-cta__container {
    width: 90%;
    min-height: 400px;

    padding: 42px 0 34px;
  }

  .programa-cta__etapas {
    width: 82%;
    max-width: 700px;
  }

  .programa-cta__etapa-title {
    font-size: 2rem;
  }

  .programa-cta__etapa-separator {
    width: 38px;

    margin-top: 14px;
  }

  .programa-cta__button {
    width: 290px;
    min-height: 58px;

    margin-top: 36px;

    font-size: 1rem;
  }

  .programa-cta__text {
    left: 0;
    bottom: 32px;
  }

  .programa-cta__text-main {
    font-size: 1.4rem;
  }

  .programa-cta__text-highlight {
    font-size: 1.75rem;
  }

  .programa-cta__text-separator {
    width: 38px;

    margin-top: 15px;
  }
/* =========================================================
   AVISO LEGAL - TABLETS HASTA 900px
   ========================================================= */

@media (max-width: 900px) {

  .legal-page {
    padding: 70px 0 85px;
  }


  /* Contenedor principal */

  .legal-card {
    width: 88%;
    max-width: 760px;

    padding: 50px 50px;
  }


  /* Cabecera */

  .legal-card__header {
    margin-bottom: 45px;
  }


  /* Título principal */

  .legal-card__title {
    font-size: 2.5rem;
    line-height: 1.15;
  }


  /* Separador */

  .legal-card__separator {
    width: 40px;

    margin: 18px auto;
  }


  /* Introducción */

  .legal-card__intro {
    max-width: 600px;

    font-size: 0.9rem;
    line-height: 1.7;
  }


  /* Secciones */

  .legal-card__section {
    margin-bottom: 32px;
  }


  /* Títulos de sección */

  .legal-card__subtitle {
    margin-bottom: 12px;

    font-size: 1.5rem;
    line-height: 1.25;
  }


  /* Párrafos */

  .legal-card__section p {
    margin-bottom: 11px;

    font-size: 0.9rem;
    line-height: 1.7;
  }


  /* Última actualización */

  .legal-card__updated {
    margin-top: 45px;
    padding-top: 20px;

    font-size: 0.75rem;
  }

}
.footer__container {
  grid-template-columns: 1fr auto;
}

.footer__copyright {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

.footer__logo-image {
  width: 160px;
}
}

@media screen and (max-width: 520px) {

  .navbar {
    width: calc(100% - 32px);
  }

  .navbar__logo {
    width: 115px;
  }

 /* =========================================================
 HERO INICIO — MÓVIL PEQUEÑO
 ========================================================= */

.hero {
  position: relative;

  min-height: 880px;

  background-image: url("images/hero-inicio.png");

  background-size: auto 42%;
  background-repeat: no-repeat;
  background-position: 85% bottom;

  background-color: #f6efe8;

  overflow: hidden;
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(246, 239, 232, 1) 0%,
    rgba(246, 239, 232, 1) 58%,
    rgba(246, 239, 232, 0.98) 59%,
    rgba(246, 239, 232, 0.90) 64%,
    rgba(246, 239, 232, 0.68) 69%,
    rgba(246, 239, 232, 0.38) 74%,
    rgba(246, 239, 232, 0.12) 79%,
    rgba(246, 239, 232, 0) 85%
  );

  z-index: 1;
  pointer-events: none;
}

/* Navbar siempre por encima */

.hero .navbar {
  position: relative;
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 2;

  width: calc(100% - 40px);

  margin-left: 20px;
  margin-right: 20px;

  padding: 42px 0 0;
}

.hero__title {
  max-width: 100%;

  font-size: clamp(2.45rem, 12vw, 3.45rem);
  line-height: 1.05;
}

.hero__separator {
  margin: 26px 0;
}

.hero__text {
  max-width: 100%;

  margin-bottom: 20px;

  line-height: 1.65;
}

.hero__text p {
  margin-bottom: 20px;
}

.hero__text p:last-child {
  margin-bottom: 0;
}

.hero__button {
  width: 100%;
  max-width: 240px;
  margin-top: 120px;
  box-shadow:
  0 0 4px 5px rgba(246, 239, 232, 0.20),
  0 0 8px 10px rgba(246, 239, 232, 0.10) !important;
  }

  .acompanamiento {
    padding: 38px 20px 42px;
  }

  .acompanamiento__icon {
    width: 34px;
  }

  .acompanamiento__title {
    font-size: 2.25rem;
    line-height: 1;
  }

  .acompanamiento__text {
    font-size: 0.95rem;
  }

.servicios {
  background-color: #f2e9e1;
}

.servicios__container {
  grid-template-columns: 1fr;
  background-color: transparent;
}

.servicio-card {
  padding: 55px 28px;
  background-color: transparent;
}

.servicio-card:first-child {
  border-right: none;
  border-bottom: 1px solid rgba(44, 39, 35, 0.10);
}

.servicio-card__title {
    font-size: 2rem;
}

.servicio-card__icon {
    width: 60px;
}

.inicio-contacto {
  min-height: 720px;

  padding: 45px 20px 55px;

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

  overflow: hidden;
}

.inicio-contacto__background {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 0% bottom;

  content: url("images/loto-contacto-moviles.png");
}

.inicio-contacto__text {
  font-size: 1.2rem;
  line-height: 1.3;
}

.inicio-contacto__title {
  font-size: 2.2rem;
}

.inicio-contacto__button {
  width: 210px;
}
/* =========================================================
  HERO CONTACTO — MÓVIL PEQUEÑO
  ========================================================= */

.contact-hero {
  position: relative;

  min-height: 800px;

  display: block;

  overflow: hidden;

  background-color: #f6efe8;
}

.contact-hero__background {
  position: absolute;

  inset: auto 0 0 0;

  width: 100%;
  height: 48%;

  object-fit: cover;
  object-position: 67% center;

  z-index: 0;
}

.contact-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(246, 239, 232, 1) 0%,
    rgba(246, 239, 232, 1) 54%,
    rgba(246, 239, 232, 0.98) 59%,
    rgba(246, 239, 232, 0.88) 64%,
    rgba(246, 239, 232, 0.62) 69%,
    rgba(246, 239, 232, 0.32) 74%,
    rgba(246, 239, 232, 0.08) 79%,
    rgba(246, 239, 232, 0) 84%
  );

  z-index: 1;
  pointer-events: none;
}
.contact-hero .navbar {
  position: relative;
  z-index: 3;
}

.contact-hero__content {
  position: relative;
  z-index: 2;

  width: calc(100% - 40px);

  margin-left: 20px;
  margin-right: 20px;

  padding-top: 145px;
  padding-bottom: 0;
}

.contact-hero__title {
  font-size: clamp(3rem, 13vw, 4rem);
  line-height: 1;
}
.contact-hero__separator {
  width: 42px;

  margin: 28px 0 30px;
}
.contact-hero__text {
  max-width: 100%;

  margin-bottom: 34px;

  font-size: 1.5rem;
  line-height: 1.5;
}

.contact-hero__button {
  width: 100%;
  max-width: 300px;
  min-width: 0;

  min-height: 56px;

  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;

  display: flex;

  font-size: 1rem;
}

.contact-hero__response {
  width: 100%;

  margin-top: 22px;

  justify-content: center;

  font-size: 0.95rem;
}

  .contacto-directo {
    padding: 42px 20px 50px;
  }

  .contacto-directo__title {
    font-size: 2.35rem;
  }

  .contacto-directo__title::after {
    margin: 16px auto 34px;
  }

  .contacto-directo__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contacto-directo__item {
    padding: 0 0 30px;

    border-right: none !important;
    border-bottom: 1px solid rgba(44, 39, 35, 0.08);
  }

  .contacto-directo__item:last-child {
    padding-bottom: 0;

    border-bottom: none;
  }

  .contacto-directo__icon {
    width: 58px;
    height: 58px;

    font-size: 1.65rem;
  }

  .contacto-directo__label {
    font-size: 1.45rem;
  }

  .contacto-directo__link,
  .contacto-directo__text {
    font-size: 0.95rem;
  }

.primer-paso {
  position: relative;

  min-height: 600px;

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

  overflow: hidden;

  background-color: var(--color-section);
}

.primer-paso__background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: 27% 22%;

  content: url("images/loto-primer-paso-fade-moviles.png");

  z-index: 0;
}

.primer-paso::after {
  display: none;
}

.primer-paso__content {
  position: relative;
  z-index: 1;

  width: 100%;
  min-height: 0;

  margin-left: 0;

  padding: 20px 24px 36px;

  display: flex;
  flex-direction: column;
  align-items: center;

  transform: translateY(-45px);

  text-align: center;
}

.primer-paso__text {
  margin-top: 450px;

  font-size: 1.7rem;
  line-height: 1.3;
}

.primer-paso__title {
  margin: 0 0 24px;

  font-size: 2.5rem;
  line-height: 1.3;
}

.primer-paso__button {
  width: 100%;
  max-width: 300px;
  margin-top: 10px;

  min-height: 54px;
}
/* =========================================================
  HERO TARIFAS — MÓVIL PEQUEÑO
  ========================================================= */

.tarifas-hero {
  position: relative;

  min-height: 600px;
  overflow: hidden;
  background-color: #f6efe8;
}

.tarifas-hero__background {
  position: absolute;

  inset: auto 0 0 0;

  width: 100%;
  height: 45%;

  object-fit: cover;
  object-position: 90% bottom;

  z-index: 0;
}


.tarifas-hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(246, 239, 232, 1) 0%,
    rgba(246, 239, 232, 1) 48%,
    rgba(246, 239, 232, 0.98) 53%,
    rgba(246, 239, 232, 0.90) 58%,
    rgba(246, 239, 232, 0.68) 63%,
    rgba(246, 239, 232, 0.38) 68%,
    rgba(246, 239, 232, 0.12) 73%,
    rgba(246, 239, 232, 0) 79%
  );

  z-index: 1;
  pointer-events: none;
}

.tarifas-header {
  position: absolute;
  z-index: 3;
}

.tarifas-header .navbar {
  position: relative;
  z-index: 3;
}

.tarifas-hero__content {
  position: relative;
  z-index: 2;

  width: calc(100% - 40px);

  margin-left: 20px;
  margin-right: 20px;

  padding-top: 150px;
  padding-bottom: 0;
}

.tarifas-hero__title {
  margin: 0;

  font-size: clamp(3.6rem, 15vw, 4.8rem);
  line-height: 0.95;
}

.tarifas-hero__separator {
  width: 42px;
  height: 2px;

  margin: 26px 0 28px;
}
.tarifas-hero__text {
  width: 100%;
  max-width: 100%;

  font-size: 1.35rem;
  line-height: 1.5;
}
  .tarifas-servicios {
    padding: 34px 20px 18px;
  }

  .tarifas-evaluacion {
    display: flex;
    flex-direction: column;

    gap: 0;

    padding: 0 0 38px;

    text-align: center;
  }

  .tarifas-evaluacion__icono {
    min-height: 0;

    margin-bottom: 18px;

    border-right: none;
  }

  .tarifas-evaluacion__icono img {
    width: 72px;
  }

  .tarifas-evaluacion__contenido {
    width: 100%;

    padding-right: 0;
  }

  .tarifas-evaluacion__title {
    margin-bottom: 8px;

    font-size: 2.15rem;
  }

  .tarifas-evaluacion__meta {
    margin-bottom: 12px;

    font-size: 0.95rem;
  }

  .tarifas-evaluacion__precio {
    margin-bottom: 14px;

    font-size: 3.3rem;
  }

  .tarifas-evaluacion__text {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .tarifas-evaluacion__accion {
    width: 100%;

    margin-top: 24px;
  }

  .tarifas-evaluacion__button {
    width: 100%;
    max-width: 300px;

    min-height: 54px;

    padding: 12px 20px;

    font-size: 1rem;
  }

  .tarifas-bloque {
    padding: 30px 0 26px;
  }

  .tarifas-bloque__title {
    font-size: 2rem;
    line-height: 1.05;
  }

  .tarifas-bloque__separator {
    width: 34px;

    margin: 14px auto 24px;
  }

  .tarifas-bloque__opciones {
    grid-template-columns: 1fr 1fr;

    width: 100%;
  }

  .tarifa-opcion {
    padding: 0 12px 10px;
  }

  .tarifa-opcion__icon {
    width: 50px;
    height: 50px;

    margin-bottom: 10px;
  }

  .tarifa-opcion__title {
    font-size: 1.3rem;
  }

  .tarifa-opcion__duracion {
    font-size: 0.82rem;
  }

  .tarifa-opcion__precio {
    font-size: 2.35rem;
  }

  .tarifa-opcion:first-child {
    border-right: 1px solid rgba(44, 39, 35, 0.12);
  }

  .tarifas-bloque__nota {
    width: 92%;

    margin-top: 18px;

    font-size: 0.82rem;
    line-height: 1.5;
  }
/* =========================================================
  CTA TARIFAS — MÓVIL PEQUEÑO
========================================================= */

.tarifas-cta {
  position: relative;

  min-height: 620px;
  height: auto;

  display: flex;
  align-items: flex-start;

  overflow: hidden;

  background-color: #f6efe8;
}
.tarifas-cta__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  max-width: none;

  object-fit: cover;
  object-position: 83% bottom;

  transform: none;

  content: url("images/loto-tarifas-cta-moviles.png");

  z-index: 0;
}

.tarifas-cta::after {
  display: none;
}

.tarifas-cta__content {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 720px;

  margin: 0;

  padding: 55px 24px 40px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.tarifas-cta__title {
  width: 100%;
  max-width: 100%;

  font-size: 2.3rem;
  line-height: 1.2;
}

.tarifas-cta__separator {
  width: 42px;
  height: 2px;

  margin: 22px 0 26px;
}

.tarifas-cta__button {
  width: 100%;
  max-width: 300px;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  align-self: center;
  min-height: 54px;
  padding: 12px 20px;
  font-size: 1rem;
}
/* =========================================================
HERO SOBRE MÍ — MÓVIL PEQUEÑO
========================================================= */

.sobremi-hero {
  position: relative;

  min-height: 1200px;

  background-color: #f6efe8;

  overflow: hidden;
}
.sobremi-hero__background {
  position: absolute;
  inset: auto 0 0 0;

  width: 100%;
  height: 48%;

  object-fit: cover;
  object-position: 88% center;

  z-index: 0;
}

.sobremi-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(246, 239, 232, 1) 0%,
    rgba(246, 239, 232, 1) 59%,
    rgba(246, 239, 232, 0.96) 64%,
    rgba(246, 239, 232, 0.75) 69%,
    rgba(246, 239, 232, 0.38) 72%,
    rgba(246, 239, 232, 0.10) 76%,
    rgba(246, 239, 232, 0) 80%
  );

  z-index: 1;
  pointer-events: none;
}

.sobremi-hero .navbar {
  position: relative;
  z-index: 3;
}

.sobremi-hero__content {
  position: relative;
  z-index: 2;

  width: calc(100% - 40px);

  margin-left: 20px;
  margin-right: 20px;

  padding-top: 145px;
  padding-bottom: 0;
}

.sobremi-hero__eyebrow {
  margin: 15px 0 0 25px;

  font-size: 1.55rem;
}

.sobremi-hero__separator {
  width: 34px;

  margin: 9px 0 18px 67px;
}

.sobremi-hero__title {
  margin-bottom: 24px;

  font-size: clamp(2.25rem, 11vw, 3.25rem);
  line-height: 1.02;
}

.sobremi-hero__text {
  width: 100%;
  max-width: 100%;

  font-size: 0.92rem;
  line-height: 1.6;
}

.sobremi-hero__text p {
  margin-bottom: 16px;
}

.sobremi-hero__text p:last-child {
  margin-bottom: 0;
}

.como-acompano {
  padding: 42px 20px 48px;
}

.como-acompano__header {
  margin-bottom: 40px;
}

.como-acompano__title {
  font-size: 2.55rem;
}

.como-acompano__separator {
  width: 36px;
  margin: 15px auto 20px;
}

.como-acompano__intro {
  font-size: 1.3rem;
  line-height: 1.35;
}

.como-acompano__grid {
  grid-template-columns: 1fr;

  gap: 42px;
}

.como-acompano__grid::after {
  display: none;
}

.como-acompano__item {
  width: 100%;
}

.como-acompano__item-title {
  font-size: 1.2rem;
  line-height: 1.25;
}

.como-acompano__item-separator {
  width: 36px;

  margin: 12px auto 22px;
}

.como-acompano__text {
  font-size: 0.92rem;
  line-height: 1.65;

  text-align: left;
}

.como-acompano__text p {
  margin-bottom: 20px;
}

.como-acompano__item + .como-acompano__item {
  padding-top: 36px;

  border-top: 1px solid rgba(44, 39, 35, 0.10);
}

.sobremi-cta {
  min-height: 720px;

  display: flex;
  align-items: flex-end;

  overflow: hidden;
}

.sobremi-cta__background {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  content: url("images/piedras-sobre-mi-movil.png");
}

.sobremi-cta__content {
  position: relative;
  z-index: 2;

  width: 100%;

  padding: 0 50px 50px;

  text-align: center;
}

.sobremi-cta__title {
  font-size: 2rem;
  line-height: 1.08;
}

.sobremi-cta__text {
  max-width: 360px;

  margin-left: auto;
  margin-right: auto;

  font-size: 0.95rem;
  line-height: 1.6;
}

.sobremi-cta__highlight {
  font-size: 1.25rem;
}

.sobremi-cta__button {
  width: 100%;
  max-width: 280px;

  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
HERO COACHING — MÓVIL PEQUEÑO
========================================================= */

.coaching-hero {
  position: relative;

  min-height: 840px;

  overflow: hidden;

  background-color: #f6efe8;
}

.coaching-hero__background {
  position: absolute;

  width: 100%;
  height: 85%;

  left: 0;
  bottom: 0;
  top: auto;

  object-fit: cover;
  object-position: 82% bottom;

  z-index: 0;
}

.coaching-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(246, 239, 232, 1) 0%,
    rgba(246, 239, 232, 1) 28%,
    rgba(246, 239, 232, 0.98) 32%,
    rgba(246, 239, 232, 0.88) 38%,
    rgba(246, 239, 232, 0.65) 44%,
    rgba(246, 239, 232, 0.38) 50%,
    rgba(246, 239, 232, 0.14) 56%,
    rgba(246, 239, 232, 0) 63%
  );

  z-index: 1;
  pointer-events: none;
}

.coaching-hero .navbar {
  position: relative;
  z-index: 3;
}

.coaching-hero__content {
  position: relative;
  z-index: 2;

  width: calc(100% - 40px);

  margin-left: 20px;
  margin-right: 20px;

  padding-top: 90px;
  padding-bottom: 0;
}

.coaching-hero__title {
  font-size: clamp(2.8rem, 12vw, 3.5rem);
  line-height: 1.4;
}

.coaching-hero__separator {
  width: 42px;

  margin: 24px 0 28px;
}

.coaching-hero__text {
  max-width: 330px;

  font-size: 1.25rem;
  line-height: 1.55;
}

.coaching-hero__text p {
  margin-bottom: 26px;
}

.coaching-hero__text p:last-child {
  margin-bottom: 0;
}
.coaching-bloques {
  padding: 45px 20px 50px;
}

.coaching-bloques__container {
  width: 100%;

  grid-template-columns: 1fr;

  gap: 0;
}

.coaching-bloques__item {
  display: grid;
  grid-template-columns: 58px 1fr;

  column-gap: 16px;

  padding: 0 0 38px;
  margin-bottom: 38px;

  border-bottom: 1px solid rgba(44, 39, 35, 0.10);
}

.coaching-bloques__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;

  border-bottom: none;
}

.coaching-bloques__icon {
  width: 50px;
  height: 50px;
}

.coaching-bloques__title {
  font-size: 1.65rem;
  line-height: 1.1;
}

.coaching-bloques__separator {
  width: 36px;

  margin: 16px auto 26px;
}

.coaching-bloques__text {
  grid-column: 1 / -1;

  font-size: 1.08rem;
  line-height: 1.6;
}

.coaching-bloques__text p {
  margin-bottom: 17px;
}

.coaching-bloques__highlight {
  grid-column: 1 / -1;

  margin-top: 22px;

  font-size: 1.6rem;
}
/* =========================================================
CTA COACHING — MÓVIL
========================================================= */

.coaching-cta {
  position: relative;

  min-height: 650px;
  height: auto;

  display: flex;
  align-items: flex-start;

  overflow: hidden;

  background-color: #f6efe8;
}

.coaching-cta__background {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  max-width: none;

  object-fit: cover;
  object-position: center bottom;

  transform: none;

  content: url("images/loto-coaching-cta-moviles.png");

  z-index: 0;
}

.coaching-cta::after {
  display: none;
}

.coaching-cta__content {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 720px;

  margin: 0;

  padding: 55px 24px 40px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.coaching-cta .tarifas-cta__button {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  align-self: center;
}

/* =========================================================
HERO PROGRAMA 21 DÍAS — MÓVIL PEQUEÑO
========================================================= */

.programa-header {
  position: relative;

  min-height: 900px;

  background-image: url("images/hero-programa-21-dias.png");

  /* La imagen ocupa solamente la zona inferior */
  background-size: auto 58%;
  background-repeat: no-repeat;
  background-position: 75% bottom;

  background-color: #f6efe8;

  overflow: hidden;
}

.programa-header::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(246, 239, 232, 1) 0%,
    rgba(246, 239, 232, 1) 50%,
    rgba(246, 239, 232, 0.98) 54%,
    rgba(246, 239, 232, 0.90) 59%,
    rgba(246, 239, 232, 0.68) 64%,
    rgba(246, 239, 232, 0.38) 69%,
    rgba(246, 239, 232, 0.12) 74%,
    rgba(246, 239, 232, 0) 80%
  );

  z-index: 1;
  pointer-events: none;
}

.programa-header .navbar {
  position: relative;
  z-index: 3;
}

.programa-hero__content {
  position: relative;
  z-index: 2;

  width: calc(100% - 40px);

  margin-left: 20px;
  margin-right: 20px;

  padding-top: 45px;
  padding-bottom: 0;
}

.programa-hero__intro,
.programa-hero__text {
  max-width: 100%;
}

.programa-hero__button {
  min-width: 200px;
  padding: 14px 24px;
  font-size: 0.95rem;
  margin-top: 160px;
  box-shadow:
  0 0 4px 5px rgba(246, 239, 232, 0.20),
  0 0 8px 10px rgba(246, 239, 232, 0.10) !important;
}

  .programa-esencial {
    padding: 50px 0 58px;
  }

  .programa-esencial__container {
    width: 88%;
  }

  .programa-esencial__text {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .programa-esencial__text--secondary {
    margin-top: 18px;
  }

  .programa-esencial__separator {
    width: 36px;
    height: 2px;

    margin: 23px 0;
  }
  .programa-pilares {
    padding: 48px 0 52px;
  }

  .programa-pilares__container {
    width: 88%;
  }

  .programa-pilares__grid {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
  }

  .programa-pilares__item {
    width: 100%;

    padding: 0 0 38px;
  }

  .programa-pilares__item:not(:last-child) {
    border-right: none;
  }

  .programa-pilares__item:not(:last-child)::after {
    content: "";

    display: block;

    width: 80px;
    height: 1px;

    margin: 38px auto 0;

    background-color: rgba(176, 126, 67, 0.20);
  }

  .programa-pilares__item:last-child {
    padding-bottom: 0;
  }

  .programa-pilares__icon {
    width: 66px;
    height: 66px;

    margin: 0 auto 14px;
  }

  .programa-pilares__title {
    font-size: 1.5rem;
  }

  .programa-pilares__separator {
    width: 36px;
    height: 2px;

    margin: 14px auto 20px;
  }

  .programa-pilares__text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .programa-pilares__footer {
    margin-top: 42px;
  }

  .programa-pilares__footer-title {
    margin-bottom: 8px;

    font-size: 1.05rem;
  }

  .programa-pilares__footer-text {
    font-size: 1rem;
    line-height: 1.45;
  }

/* =========================================================
   PROGRAMA 21 DÍAS — CTA MÓVIL
   ========================================================= */
.programa-cta {
  position: relative;

  min-height: 780px;

  overflow: hidden;

  background-color: #f6efe8;
}

/* ---------------------------------------------------------
   IMAGEN DE FONDO MÓVIL
  --------------------------------------------------------- */

.programa-cta__background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 75% bottom;

  content: url("images/loto-programa-cta-moviles.png");
  z-index: 0;
}

.programa-cta::after {
  display: none;
}

.programa-cta__container {
  position: relative;
  z-index: 2;

  width: 88%;
  min-height: 880px;

  margin-inline: auto;

  padding: 42px 0 40px;
}

.programa-cta__etapas {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
  max-width: none;

  gap: 22px;

  margin-inline: auto;
}

.programa-cta__etapa {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;

  text-align: center;
}

.programa-cta__etapa-title {
  margin: 0;

  font-size: 2.3rem;
  line-height: 1.3;
}

.programa-cta__etapa-separator {
  width: 32px;
  height: 2px;
  margin-top: 10px;
}

.programa-cta__button {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  align-self: center;
}

.programa-cta__text {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 300px;

  width: 88%;
  margin-inline: auto;
  text-align: center;
}

.programa-cta__text-main {
  margin: 0 0 6px;
  font-size: 2.15rem;
  line-height: 1.3;
}

.programa-cta__text-highlight {
  margin: 0;

  font-size: 2.45rem;
  line-height: 1.25;
}

.programa-cta__text-separator {
  width: 34px;
  height: 2px;

  margin: 14px auto 0;
}
.legal-page {
    padding: 40px 0 55px;
  }


  /* Contenedor principal */

  .legal-card {
    width: 92%;
    max-width: none;

    padding: 35px 24px;
  }


  /* Cabecera */

  .legal-card__header {
    margin-bottom: 35px;
  }


  /* Título principal */

  .legal-card__title {
    font-size: 2.1rem;
    line-height: 1.15;
  }


  /* Separador */

  .legal-card__separator {
    width: 36px;

    margin: 15px auto;
  }


  /* Introducción */

  .legal-card__intro {
    max-width: 100%;

    font-size: 0.85rem;
    line-height: 1.65;
  }


  /* Secciones */

  .legal-card__section {
    margin-bottom: 28px;
  }


  /* Títulos de sección */

  .legal-card__subtitle {
    margin-bottom: 10px;

    font-size: 1.4rem;
    line-height: 1.25;
  }


  /* Párrafos */

  .legal-card__section p {
    margin-bottom: 10px;

    font-size: 0.85rem;
    line-height: 1.7;
  }


  /* Enlaces largos */

  .legal-card__section a {
    overflow-wrap: anywhere;
  }


  /* Última actualización */

  .legal-card__updated {
    margin-top: 35px;
    padding-top: 18px;

    font-size: 0.72rem;
    line-height: 1.5;
  }

.footer {
  padding: 22px 0;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}


/* Logo */

.footer__logo {
  align-self: center;
}

.footer__logo-image {
  width: 150px;
}


/* Redes sociales */

.footer__social {
  gap: 24px;
}

.footer__social-link {
  font-size: 1.55rem;
}


/* Enlaces legales */

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
}

.footer__legal-link {
  font-size: 0.8rem;
  white-space: nowrap;
}

.footer__legal-separator {
  font-size: 0.8rem;
}


/* Copyright */

.footer__copyright {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
}
}

/* 8.3 PANTALLAS GRANDES - PÁGINA DE INICIO */

@media screen and (min-width: 2200px) {

/* 8.3 INICIO - PANTALLAS MUY GRANDES */

/* HERO */

.hero {
  min-height: 100vh;

  background-size: cover;
  background-position: center center;
}

/* NAVBAR */

.navbar {
  width: 92%;
  max-width: 3500px;

  margin-inline: auto;

  min-height: 290px;
  padding-top: 50px;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* LOGO */

.navbar__logo {
  width: 560px;
  flex: 0 0 660px;
  margin-left: 3%;
}

.navbar__logo-image {
  width: 100%;
  height: auto;
}

/* MENÚ */

.navbar__menu {
  width: 56%;

  margin-left: auto;
  margin-right: 5%;

  padding-top: 34px;
}

.navbar__list {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 0;
}

.navbar__item {
  position: relative;
  flex-shrink: 0;
}


/* ENLACES */

.navbar__link {
  position: relative;

  display: inline-block;

  padding: 16px 0 22px;

  color: var(--color-text);

  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.15;

  white-space: nowrap;

  transition: color var(--transition-fast);
}


/* SUBRAYADO */

.navbar__link::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  width: 0;
  height: 4px;

  background-color: var(--color-gold);

  transform: translateX(-50%);

  transition: width var(--transition-fast);
}

.navbar__link:hover,
.navbar__link:focus-visible {
  color: var(--color-gold-dark);
}

.navbar__link:hover::after,
.navbar__link:focus-visible::after,
.navbar__link--active::after {
  width: 100%;
}


/* HERO - CONTENIDO */

.hero__content {
  width: 1350px;

  margin-left: 9%;

  padding-top: 160px;
  padding-bottom: 150px;
}

.hero__title {
  font-size: 9rem;
  line-height: 1.1;
}

.hero__separator {
  width: 110px;
  height: 6px;

  margin: 70px 0px;
}

.hero__text {
  max-width: 1100px;

  margin-bottom: 44px;

  font-size: 3rem;
  line-height: 1.6;
}

.hero__button {
  min-width: 550px;
  min-height: 120px;

  margin-top: 60px;

  padding: 22px 52px;

  font-size: 2.2rem;
  font-weight: 500;
}


/* ACOMPAÑAMIENTO */

.acompanamiento {
  padding: 155px 24px 170px;
}

.acompanamiento__container {
  width: min(1500px, 100%);
}

.acompanamiento__icon {
  width: 165px;
  margin-bottom: 34px;
}

.acompanamiento__title {
  font-size: 5.4rem;
  line-height: 1;
}

.acompanamiento__separator {
  width: 72px;
  height: 3px;

  margin: 38px auto;
}

.acompanamiento__text {
  width: min(1350px, 100%);

  font-size: 3rem;
  line-height: 1.55;
}

.acompanamiento__text p {
  margin-bottom: 34px;
}


/* SERVICIOS - DOS COLUMNAS */

.servicios {
  padding-top: 40px;
}

.servicios__container {
  width: 94%;
  max-width: 3200px;

  margin-inline: auto;

  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.servicio-card {
  padding: 150px 100px 165px;
}

.servicio-card__icon {
  width: 200px;
  margin-bottom: 48px;
}

.servicio-card__title {
  margin-bottom: 34px;

  font-size: 6rem;
  line-height: 1.05;
}

.servicio-card__separator {
  width: 110px;
  height: 6px;

  margin: 50px auto 50px;
}

.servicio-card__text {
  max-width: 1250px;

  margin: 0 auto 40px;

  font-size: 3rem;
  line-height: 1.55;
}

.servicio-card__button {
  min-width: 550px;
  height: 120px;

  margin-top: 32px;

  padding: 0 52px;

  font-size: 2.2rem;
  font-weight: 500;
}


/* CTA FINAL */

.inicio-contacto {
  min-height: 820px;

  padding: 90px 7%;
}

.inicio-contacto__content {
  width: 52%;
  max-width: 1350px;

  margin-left: auto;
  margin-right: 0.5%;

  text-align: center;
}

.inicio-contacto__text {
  margin-bottom: 34px;

  font-size: 4rem;
  line-height: 1.3;
}

.inicio-contacto__title {
  margin-bottom: 42px;

  font-size: 5.4rem;
  line-height: 1.05;
}

.inicio-contacto__button {
  min-width: 550px;
  min-height: 120px;

  padding: 22px 52px;

  font-size: 2.2rem;
  font-weight: 500;
}


/* FOOTER */

.footer {
  padding: 48px 0;
}

.footer__container {
  width: 92%;
  max-width: 3400px;
  margin-inline: auto;

  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  justify-content: space-between;

  gap: 100px;
}


/* Logo */

.footer__logo {
  justify-self: start;
}

.footer__logo-image {
  width: 600px;
  height: auto;
}


/* Redes sociales */

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 70px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-text);

  font-size: 4rem;
  line-height: 1;
}

.footer__social-link i {
  display: block;

  font-size: 4rem;
  line-height: 1;
}


/* Enlaces legales */

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 1.4rem;
  flex-wrap: nowrap;
}

.footer__legal-link {
  color: var(--color-text);

  font-size: 2.5rem;
  line-height: 1.3;

  text-decoration: none;
  white-space: nowrap;

  transition: color var(--transition-fast);
}

.footer__legal-link:hover,
.footer__legal-link:focus-visible {
  color: var(--color-gold);
}

.footer__legal-separator {
  color: var(--color-text);

  font-size: 2rem;
  line-height: 1;
}


/* Copyright */

.footer__copyright {
  justify-self: end;

  margin: 0;

  color: var(--color-text);

  font-size: 2.5rem;
  line-height: 1.35;

  text-align: right;
  white-space: nowrap;
}

/* =========================================================
   SOBRE MÍ — 4K / PANTALLAS DE 2200 PX O MÁS
   ========================================================= */

/* =========================================================
   HERO
   ========================================================= */

.sobremi-hero {
  min-height: 1250px;
}

.sobremi-hero__background {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

.sobremi-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(246, 239, 232, 0.98) 0%,
      rgba(246, 239, 232, 0.94) 22%,
      rgba(246, 239, 232, 0.72) 36%,
      rgba(246, 239, 232, 0.28) 50%,
      rgba(246, 239, 232, 0.05) 62%,
      rgba(246, 239, 232, 0) 72%
    );
}

.sobremi-hero__content {
  width: 1200px;

  margin-left: 10%;

  /*
    Lo bajamos claramente para que "Sobre mí"
    no pueda entrar en la zona ocupada por el logo.
  */
  padding-top: 530px;
  padding-bottom: 130px;
}

.sobremi-hero__eyebrow {
  margin: 0 0 26px;

  font-size: 4rem;
  line-height: 1.1;
}

.sobremi-hero__separator {
  width: 72px;
  height: 3px;

  margin: 0 0 42px;
}

.sobremi-hero__title {
  max-width: 1100px;

  margin: 0 0 48px;

  font-size: 6.4rem;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.sobremi-hero__text {
  width: 1100px;
  max-width: 100%;

  font-size: 2.55rem;
  line-height: 1.6;
}

.sobremi-hero__text p {
  margin-bottom: 38px;
}

.sobremi-hero__text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CÓMO ACOMPAÑO
   ========================================================= */

.como-acompano {
  padding: 140px 0 155px;
}

.como-acompano__container {
  width: min(2500px, 90%);
  margin-inline: auto;
}

.como-acompano__header {
  margin-bottom: 115px;
}

.como-acompano__title {
  font-size: 5.8rem;
  line-height: 1;
}

.como-acompano__separator {
  width: 110px;
  height: 6px;

  margin: 30px auto 50px;
}

.como-acompano__intro {
  font-size: 3.5rem;
  line-height: 1.4;
}

.como-acompano__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  gap: 450px;
}

.como-acompano__grid::after {
  width: 1px;
}

.como-acompano__item-title {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.como-acompano__item-separator {
  width: 110px;
  height: 6px;

  margin: 40px auto 40px;
}

.como-acompano__text {
  font-size: 2.8rem;
  line-height: 1.65;
}

.como-acompano__text p {
  margin-bottom: 42px;
}

.como-acompano__text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.sobremi-cta {
  min-height: 1050px;
}

.sobremi-cta__background {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 60%;
}

.sobremi-cta__content {
  width: 86%;
  max-width: 2500px;
  margin-left: 10%;
  margin-right: auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.sobremi-cta__title {
  max-width: 1200px;

  margin: 0 0 36px;

  font-size: 5.5rem;
  line-height: 1.08;
}

.sobremi-cta__text {
  max-width: 950px;

  margin: 0 0 28px;

  font-size: 3.5rem;
  line-height: 1.55;
}

.sobremi-cta__highlight {
  max-width: 1000px;

  margin: 0 0 42px;

  font-size: 4.2rem;
  line-height: 1.3;
}

.sobremi-cta__button {
  min-width: 550px;
  min-height: 120px;

  padding: 22px 52px;

  font-size: 2.2rem;
  font-weight: 500;
}

/* =========================================================
   COACHING — 4K / PANTALLAS DE 2200 PX O MÁS
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.coaching-hero {
  min-height: 1550px;
}

.coaching-hero__background {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

.coaching-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(246, 239, 232, 0.97) 0%,
      rgba(246, 239, 232, 0.92) 22%,
      rgba(246, 239, 232, 0.72) 34%,
      rgba(246, 239, 232, 0.30) 47%,
      rgba(246, 239, 232, 0.06) 60%,
      rgba(246, 239, 232, 0) 70%
    );
}

.coaching-hero__content {
  width: 1150px;

  margin-left: 8%;
  padding-top: 580px;
  padding-bottom: 140px;
}

.coaching-hero__title {
  max-width: 1050px;

  font-size: 7.5rem;
  line-height: 1;
}

.coaching-hero__separator {
  width: 110px;
  height: 6px;

  margin: 50px 0 50px;
}

.coaching-hero__text {
  max-width: 1050px;

  font-size: 4rem;
  line-height: 1.6;
}

.coaching-hero__text p {
  margin-bottom: 44px;
}

.coaching-hero__text p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   BLOQUES — TRES COLUMNAS
   ========================================================= */

.coaching-bloques {
  padding: 150px 0 175px 10%;
}

.coaching-bloques__container {
  width: 95%;
  max-width: 3300px;

  margin-inline: auto;

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

  gap: 120px;
}

.coaching-bloques__item {
  grid-template-columns: 125px minmax(0, 1fr);
  grid-template-rows: auto auto auto auto;

  column-gap: 20px;
  align-content: start;
}

.coaching-bloques__icon {
  grid-column: 1;
  grid-row: 1 / 3;

  width: 140px;
  height: 140px;

  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.coaching-bloques__icon img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

.coaching-bloques__title {
  grid-column: 2;
  grid-row: 1;

  margin: 0;

  font-size: 4.5rem;
  line-height: 1.1;

  /*
    Sangría hacia la izquierda:
    el título se acerca visualmente al icono.
  */
  text-align: left;
  padding-left: 60px;
}

.coaching-bloques__separator {
  grid-column: 2;
  grid-row: 2;

  width: 110px;
  height: 6px;

  /*
    El separador sigue la misma sangría
    que el título.
  */
  margin: 50px 0 50px 60px;
}

.coaching-bloques__text {
  grid-column: 1 / -1;
  grid-row: 3;

  font-size: 3.5rem;
  line-height: 1.65;

  /*
    Pequeña sangría horizontal para que el cuerpo
    no quede pegado al borde de cada columna.
  */
  padding-inline: 12px;
}

.coaching-bloques__text p {
  margin: 0 0 50px;
}

.coaching-bloques__text p:last-child {
  margin-bottom: 0;
}

.coaching-bloques__highlight {
  grid-column: 1 / -1;
  grid-row: 4;

  margin: 70px 0 0;

  padding-inline: 12px;

  font-size: 4.5rem;
  line-height: 1.2;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.coaching-cta {
  min-height: 800px;
}

.coaching-cta__background {
  top: 0;
  right: 0;

  width: 100%;
  height: 100%;

  max-width: none;

  object-fit: cover;
  object-position: center center;

  transform: none;
}

.coaching-cta__content {
  width: 86%;
  max-width: 2600px;
  margin-left: 7%;
  margin-right: auto;
}

.coaching-cta__title {
  max-width: 1600px;
  font-size: 6rem;
  line-height: 1.2;
}

.coaching-cta__separator {
  width: 110px;
  height: 6px;

  margin: 60px 0 60px;
}

/* Botón igualado al de Inicio en 4K */
.coaching-cta .tarifas-cta__button {
  min-width: 550px;
  min-height: 120px;

  padding: 22px 52px;

  font-size: 2.3rem;
  font-weight: 500;
}

/* =========================================================
   PROGRAMA 21 DÍAS — 4K / PANTALLAS DE 2200 PX O MÁS
   ========================================================= */

/* =========================================================
   HERO
   ========================================================= */

.programa-header {
  min-height: 2000px;

  background-size: cover;
  background-position: center center;
}

.programa-hero__content {
  width: 90%;
  max-width: 2800px;

  margin-left: 8%;
  margin-right: auto;

  padding-top: 120px;
  padding-bottom: 150px;
}

.programa-hero__title {
  font-size: 12rem;
  line-height: 0.86;
}

.programa-hero__title span:first-child {
  margin-bottom: 50px;
}

.programa-hero__separator {
  width: 110px;
  height: 6px;

  margin: 60px 0 60px;
}

.programa-hero__intro {
  max-width: 1850px;

  margin-bottom: 50px;

  font-size: 4rem;
  line-height: 1.55;
}

.programa-hero__text {
  max-width: 1350px;

  margin-bottom: 62px;

  font-size: 4rem;
  line-height: 1.6;
}

.programa-hero__button {
  min-width: 550px;
  min-height: 120px;

  padding: 22px 52px;

  font-size: 2.3rem;
  font-weight: 500;
}


/* =========================================================
   SECCIÓN ESENCIAL
   ========================================================= */

.programa-esencial {
  padding: 150px 0 170px;
}

.programa-esencial__container {
  width: 88%;
  max-width: 2500px;

  margin-inline: auto;
}

.programa-esencial__text {
  font-size: 4rem;
  line-height: 1.5;
}

.programa-esencial__text--secondary {
  margin-top: 40px;
}

.programa-esencial__separator {
  width: 110px;
  height: 6px;

  margin: 60px 0;
}


/* =========================================================
   PILARES — TRES COLUMNAS
   ========================================================= */

.programa-pilares {
  padding: 145px 0 160px;
}

.programa-pilares__container {
  width: 92%;
  max-width: 3100px;

  margin-inline: auto;
}

.programa-pilares__grid {
  width: 100%;
  max-width: 3000px;

  margin-inline: auto;

  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.programa-pilares__item {
  padding: 0 80px;
}

.programa-pilares__icon {
  width: 250px;
  height: 250px;

  margin-bottom: 38px;
}

.programa-pilares__icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.programa-pilares__title {
  font-size: 5rem;
  line-height: 1.1;
}

.programa-pilares__separator {
  width: 110px;
  height: 6px;

  margin: 60px auto 60px;
}

.programa-pilares__text {
  font-size: 3rem;
  line-height: 1.65;
}

.programa-pilares__footer {
  margin-top: 105px;
}

.programa-pilares__footer-title {
  margin-bottom: 18px;

  font-size: 4rem;
}

.programa-pilares__footer-text {
  font-size: 4rem;
  line-height: 1.5;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.programa-cta {
  min-height: 850px;
}

.programa-cta__background {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: right 95%;
}

.programa-cta__container {
  width: 88%;
  max-width: 2700px;

  min-height: 950px;

  margin-inline: auto;

  padding: 95px 0 75px;
}

.programa-cta__etapas {
  width: 88%;
  max-width: 2500px;

  margin-inline: auto;
}

.programa-cta__etapa-title {
  font-size: 7rem;
  line-height: 1.1;
}

.programa-cta__etapa-separator {
  width: 110px;
  height: 6px;

  margin-top: 60px;
}

.programa-cta__button {
  width: 550px;
  min-height: 120px;

  margin-top: 75px;

  font-size: 2.3rem;
  font-weight: 500;
}

.programa-cta__text {
  left: 0;
  bottom: 70px;
}

.programa-cta__text-main {
  margin-bottom: 26px;

  font-size: 5rem;
  line-height: 1.3;
}

.programa-cta__text-highlight {
  font-size: 6rem;
  line-height: 1.15;
}

.programa-cta__text-separator {
  width: 110px;
  height: 6px;

  margin-top: 60px;
}

/* =========================================================
   TARIFAS — 4K / PANTALLAS DE 2200 PX O MÁS
   ========================================================= */

/* =========================================================
   HERO
   ========================================================= */

.tarifas-hero {
  min-height: 1550px;
}

.tarifas-hero__background {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 75%;
}

.tarifas-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(246, 239, 232, 0.97) 0%,
      rgba(246, 239, 232, 0.92) 22%,
      rgba(246, 239, 232, 0.68) 36%,
      rgba(246, 239, 232, 0.28) 50%,
      rgba(246, 239, 232, 0.05) 63%,
      rgba(246, 239, 232, 0) 74%
    );
}

.tarifas-hero__content {
  width: 1000px;

  margin-left: 8%;

  padding-top: 650px;
  padding-bottom: 150px;
}

.tarifas-hero__title {
  font-size: 10rem;
  line-height: 0.95;
}

.tarifas-hero__separator {
  width: 110px;
  height: 6px;

  margin: 46px 0 48px;
}

.tarifas-hero__text {
  max-width: 1200px;

  font-size: 4rem;
  line-height: 1.55;
}

/* =========================================================
   SERVICIOS
   ========================================================= */

.tarifas-servicios {
  padding: 120px 0 110px;
}

.tarifas-servicios__container {
  width: 92%;
  max-width: 3000px;

  margin-inline: auto;
}

/* =========================================================
   SESIÓN DE EVALUACIÓN
   ========================================================= */

.tarifas-evaluacion {
  grid-template-columns:
    300px
    minmax(0, 1fr)
    600px;

  gap: 75px;

  padding: 40px 0 95px 8%;
}

.tarifas-evaluacion__icono {
  min-height: 360px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.tarifas-evaluacion__icono img {
  width: 275px;
  height: 275px;

  object-fit: contain;
}

.tarifas-evaluacion__contenido {
  padding-right: 60px;
}

.tarifas-evaluacion__title {
  margin-bottom: 16px;

  font-size: 6rem;
  line-height: 1.1;
}

.tarifas-evaluacion__meta {
  margin-bottom: 20px;

  font-size: 3.8rem;
  line-height: 1.4;
}

.tarifas-evaluacion__precio {
  margin-bottom: 22px;

  font-size: 7rem;
  line-height: 1;
}

.tarifas-evaluacion__text {
  max-width: 1900px;

  font-size: 3.5rem;
  line-height: 1.6;
}

.tarifas-evaluacion__button {
  width: 650px;
  max-width: none;
  min-height: 120px;

  padding: 22px 48px;

  font-size: 2.8rem;
  font-weight: 500;
  transform: translateX(-100px);
}


/* =========================================================
   BLOQUES DE TARIFAS
   ========================================================= */

.tarifas-bloque {
  padding: 95px 0 90px;
}

.tarifas-bloque__title {
  font-size: 5.5rem;
  line-height: 1.1;
}

.tarifas-bloque__separator {
  width: 110px;
  height: 6px;

  margin: 68px auto 68px;
}

.tarifas-bloque__opciones {
  width: 88%;
  max-width: 2200px;

  margin-inline: auto;
}

.tarifa-opcion {
  padding: 0 130px 30px;
}

.tarifa-opcion__icon {
  width: 250px;
  height: 250px;

  margin-bottom: 28px;
}

.tarifa-opcion__icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.tarifa-opcion__title {
  margin-bottom: 14px;

  font-size: 5rem;
  line-height: 1.15;
}

.tarifa-opcion__duracion {
  margin-bottom: 20px;

  font-size: 3rem;
  line-height: 1.4;
}

.tarifa-opcion__precio {
  font-size: 8rem;
  line-height: 1;
}

.tarifas-bloque__nota {
  max-width: 1700px;

  margin-top: 42px;

  font-size: 3rem;
  line-height: 1.6;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.tarifas-cta {
  min-height: 780px;
}

.tarifas-cta__background {
  top: 0;
  right: 0;

  width: 100%;
  height: 100%;

  max-width: none;

  object-fit: cover;
  object-position: center 25%;

  transform: none;
}

.tarifas-cta__content {
  width: 88%;
  max-width: 2700px;

  margin-inline: auto;

  padding-top: 120px;
  padding-bottom: 110px;
}

.tarifas-cta__title {
  max-width: 1500px;

  font-size: 6rem;
  line-height: 1.15;
}

.tarifas-cta__separator {
  width: 110px;
  height: 6px;

  margin: 50px 0 50px;
}

.tarifas-cta__button {
  min-width: 650px;
  min-height: 120px;

  padding: 22px 48px;

  font-size: 2.8rem;
  font-weight: 500;
}

.contact-hero {
  min-height: 1600px;
}

.contact-hero__background {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

.contact-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(246, 239, 232, 0.98) 0%,
      rgba(246, 239, 232, 0.93) 22%,
      rgba(246, 239, 232, 0.70) 36%,
      rgba(246, 239, 232, 0.28) 50%,
      rgba(246, 239, 232, 0.05) 62%,
      rgba(246, 239, 232, 0) 73%
    );
}

.contact-hero__content {
  width: 950px;

  margin-left: 7%;

  padding-top: 465px;
  padding-bottom: 120px;
}

.contact-hero__title {
  font-size: 12rem;
  line-height: 0.95;
}

.contact-hero__separator {
  width: 140px;
  height: 6px;

  margin: 78px 0 78px;
}

.contact-hero__text {
  max-width: 1000px;

  margin-bottom: 44px;

  font-size: 4.5rem;
  line-height: 1.45;
}

.contact-hero__button {
  min-width: 650px;
  min-height: 110px;

  gap: 16px;

  padding: 16px 32px;

  font-size: 2.1rem;
}

.contact-hero__button i {
  font-size: 2.1rem;
}

.contact-hero__response {
  gap: 14px;

  margin-top: 46px;

  font-size: 2.1rem;
}

.contact-hero__response i {
  font-size: 2.3rem;
}

.contacto-directo {
  padding: 90px 0 105px;
}

.contacto-directo__container {
  width: min(2800px, 92%);

  margin-inline: auto;
}

.contacto-directo__title {
  font-size: 6.5rem;
}

.contacto-directo__title::after {
  width: 110px;
  height: 6px;

  margin: 50px auto 50px;
}

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

.contacto-directo__item {
  padding: 55px 55px 55px 55px;
}

.contacto-directo__icon {
  width: 150px;
  height: 150px;

  margin-bottom: 28px;

  font-size: 4.4rem;
}

.contacto-directo__label {
  margin-bottom: 16px;

  font-size: 4rem;
}

.contacto-directo__link,
.contacto-directo__text {
  font-size: 2.25rem;
  line-height: 1.65;
}

.primer-paso {
  min-height: 750px;
}

.primer-paso__background {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

.primer-paso::after {
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0.08) 35%,
      rgba(255, 255, 255, 0.03) 65%,
      rgba(255, 255, 255, 0) 82%
    );
}

.primer-paso__content {
  width: 50%;
  min-height: 650px;

  margin-left: 52%;

  padding: 75px 9% 75px 7%;
}

.primer-paso__text {
  max-width: 1250px;

  margin-bottom: 26px;

  font-size: 3.8rem;
  line-height: 1.45;
}

.primer-paso__title {
  max-width: 1200px;

  margin-bottom: 34px;

  font-size: 7rem;
  line-height: 1.08;
}

.primer-paso__button {
  min-width: 800px;
  min-height: 150px;

  gap: 16px;

  padding: 16px 32px;

  font-size: 2.8rem;
}

.primer-paso__button i {
  font-size: 2.8rem;
}

}

/* =========================================================
   PÁGINAS LEGALES - PANTALLAS GRANDES
   ========================================================= */

@media screen and (min-width: 2200px) {

  .legal-page {
    padding: 140px 0 170px;
  }


  /* Contenedor principal */

  .legal-card {
    width: 72%;
    max-width: 2500px;

    padding: 120px 150px;
  }


  /* Cabecera */

  .legal-card__header {
    margin-bottom: 95px;
  }


  /* Título principal */

  .legal-card__title {
    font-size: 6.8rem;
    line-height: 1.1;
  }


  /* Separador */

  .legal-card__separator {
    width: 90px;
    height: 3px;

    margin: 34px auto;
  }


  /* Introducción */

  .legal-card__intro {
    max-width: 1250px;

    font-size: 2.9rem;
    line-height: 1.7;
  }


  /* Secciones */

  .legal-card__section {
    margin-bottom: 70px;
  }


  /* Títulos de sección */

  .legal-card__subtitle {
    margin-bottom: 24px;

    font-size: 4.2rem;
    line-height: 1.25;
  }


  /* Párrafos */

  .legal-card__section p {
    margin-bottom: 20px;

    font-size: 2.8rem;
    line-height: 1.8;
  }


  /* Última actualización */

  .legal-card__updated {
    margin-top: 90px;
    padding-top: 35px;

    font-size: 2.45rem;
    line-height: 1.6;
  }

}

/* 9. REDUCCIÓN DE MOVIMIENTO */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
