:root{
  --container: 1180px;
  --container-narrow: 980px;


  --section-space-mobile: 48px;

  /* Fondo general del sitio */
  --color-bg: #F4F1EA;

  /* Superficie de cards / bloques */
  --color-surface: rgba(255,255,255,.7);

  /* Texto principal */
  --color-text: #2E2E2E;

  /* Títulos */
  --color-heading: #2F4A3D;

  /* Color de acción (botones) */
  --color-accent: #C77A3F;

  /* Color secundario (calipso bienestar) */
  --color-accent-2: #6FA8A1;

  /* Bordes suaves */
  --color-border: #E4DDD2;

  /* Bordes destacados */
  --color-border-2: #6FA8A1;
}

body{
  margin: 0;
  font-family: Georgia, serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

.container{
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding:20px 0;
}


.container--narrow{
  width: min(100% - 32px, var(--container-narrow));
  margin-inline: auto;
}
*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}



img{
  max-width: 100%;
  height: auto;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

ul{
  margin: 0;
  padding: 0;
}



.site-main{
  min-height: 60vh;
}


/* =========================
   HEADER
========================= */

/* Header sobre el hero */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(47, 74, 61, 0.22);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

/* Header cuando baja */
.site-header.scrolled{
  background: rgba(47, 74, 61, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Contenedor interno */
.site-header__inner{
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  transition: min-height .3s ease, padding .3s ease;
}

/* Opcional: más compacto al bajar */
.site-header.scrolled .site-header__inner{
  min-height: 70px;
  padding: 12px 0;
}

/* Branding */
.site-branding{
  display: flex;
  align-items: center;
  gap: 12px;
  width:130px;
}

.site-branding a{
  font-weight: 700;
  color: #ffffff;
  transition: color .25s ease;
}

/* Navegación */
.main-nav ul{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.main-nav a{
  font-size: 15px;
  font-weight: 600;
   color:#2F4A3D;
  transition: color .25s ease, opacity .25s ease;
}

/* Hover general */
.main-nav a:hover,
.site-branding a:hover{
  color: var(--color-accent);
}

/* Si quieres que al bajar se mantenga blanco */
.site-header.scrolled .main-nav a,
.site-header.scrolled .site-branding a{
  color: #ffffff;
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .site-branding a:hover{
  color: var(--color-accent);
}
/* FOOTER */
.site-footer{
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
  background: var(--color-soft);
}

/* CONTENT */
.entry-content{
  padding: 40px 0;
}

.entry-title{
  margin: 0 0 20px;
  color: var(--color-title);
}

/* MOBILE */
.menu-toggle{
  display: none;
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 900px){
  .menu-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav{
    display: none;
    width: 100%;
  }

  .main-nav.is-open{
    display: block;
  }

  .site-header__inner{
    min-height: 72px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .main-nav ul{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0 16px;
  }
}




.section{
  padding: var(--section-space) 0;
}

.section--soft{
  background: rgba(255,255,255,.28);
}

.section--card{
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 0;
  padding: 28px;
}

.section-title{
  margin: 0 0 20px;
  color: var(--color-heading);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
}

.section-text{
  max-width: 65ch;
  margin: 0;
}

@media (max-width: 767px){
  .section{
    padding: var(--section-space-mobile) 0;
  }

  .section--card{
    padding: 20px;
  }
}


.site-main--fullwidth{
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.site-main--fullwidth .entry-content{
  padding: 0;
  margin: 0;
}

.site-main--fullwidth > *{
  width: 100%;
}



.section{
  padding: var(--section-space) 0;
}

.section--soft{
  background: rgba(255,255,255,.18);
}

.section-title{
  margin: 0 0 24px;
  color: var(--color-heading);
  font-size: clamp(34px, 5vw, 64px);
  text-align: left;
}

.section-title--center{
  text-align: center;
}

.section-text{
  font-size: 18px;
  max-width: 700px;
}

.section-text--center{
  text-align: center;
  margin-inline: auto;
}

.hero-main{
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-main__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(47, 74, 61, 0.82) 0%,
      rgba(47, 74, 61, 0.66) 38%,
      rgba(47, 74, 61, 0.24) 100%
    );
}

.hero-main__content{
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 110px;
  color: #fff;
  max-width: 850px;
  margin-left: 10%;
}

.hero-main__eyebrow{
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(244,241,234,0.14);
  border: 1px solid rgba(244,241,234,0.28);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #F4F1EA;
}

.hero-main__title{
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 700;
  color: #fffdf8;
  max-width: 15ch;
}

.hero-main__text{
  max-width: 620px;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255, 250, 244, 0.92);
}

.hero-main__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn--primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:52px;
  padding:0 24px;

  border-radius:999px;
  text-decoration:none;
  font-weight:600;

  background:#D98A3A!important;
  color:#ffffff !important;

  border:1px solid #D98A3A;

  transition:all .25s ease;

  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.btn--primary:hover{
  background:#C5762E;
  border-color:#C5762E;
  transform:translateY(-1px);
}

/* BOTÓN SECUNDARIO: claro cálido */
.btn--light{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: rgba(255,255,255,.9);
  border:1px solid rgba(255,255,255,.95);
  color:#2F4A3D;
  transition: all .25s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

.btn--light:hover{
  background: #ffffff;
  color:#2F4A3D;
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 991px){
  .hero-main{
    min-height: 70vh;
    background-position: center;
  }

  .hero-main__content{
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .hero-main__title{
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .hero-main{
    min-height: 64vh;
  }

  .hero-main__overlay{
    background:
      linear-gradient(180deg, rgba(32, 47, 40, 0.74) 0%, rgba(32, 47, 40, 0.60) 100%);
  }

  .hero-main__content{
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .hero-main__title{
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.1;
  }

  .hero-main__text{
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-main__actions{
    flex-direction: column;
  }

  .btn--primary,
  .btn--light{
    width: 100%;
  }
}
/* BUTTONS */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 600;
  transition: .25s ease;
}

.btn--primary{
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-heading);
}

.btn--primary:hover{
  background: rgba(215,154,87,.12);
}

.btn--outline{
  border-color: var(--color-border-2);
  color: var(--color-heading);
}

.btn--outline:hover{
  background: rgba(154,164,96,.12);
}

/* GRID */
.grid{
  display: grid;
  gap: 24px;
}

.grid-3{
  grid-template-columns: repeat(3, 1fr);
}

/* CARDS */
.card{
  padding: 28px;
}

.card--soft{
  background: rgba(255,255,255,.28);
  border: 2px solid var(--color-border);
}

.card__title{
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 28px;
}

/* SCHEDULE */
.schedule{
  display: grid;
  gap: 22px;
}

.schedule__item{
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 20px;
  padding: 18px 22px;
  background: rgba(255,255,255,.16);
}

.schedule__item--orange{
  border: 3px solid var(--color-border);
}

.schedule__item--green{
  border: 3px solid var(--color-border-2);
  background: rgba(215, 201, 144, .18);
}

.schedule__day{
  font-size: 34px;
  line-height: 1.1;
}

.schedule__content{
  font-size: 24px;
  line-height: 1.6;
}

/* CTA */
.cta-box{
  padding: 36px;
  border: 2px solid var(--color-border);
  background: rgba(255,255,255,.28);
  text-align: center;
}

.cta-box__actions{
  margin-top: 24px;
}

@media (max-width: 991px){
  .hero__grid{
    grid-template-columns: 1fr;
  }

  .grid-3{
    grid-template-columns: 1fr;
  }

  .schedule__item{
    grid-template-columns: 1fr;
  }

  .schedule__day{
    font-size: 30px;
  }

  .schedule__content{
    font-size: 22px;
  }
}

@media (max-width: 767px){
  .section{
    padding: var(--section-space-mobile) 0;
  }

  .hero{
    padding-top: 40px;
  }

  .hero__title{
    font-size: 44px;
  }

  .section-title{
    font-size: 38px;
  }

  .hero__text,
  .section-text,
  .schedule__content{
    font-size: 18px;
  }

  .schedule__day{
    font-size: 28px;
  }
}




.ama-hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.ama-hero__eyebrow {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  font-size: 14px;
  margin-bottom: 22px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}

.ama-hero__content {
  max-width: 720px;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.ama-hero__title {
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
  text-wrap: balance;
}

.ama-hero__text {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
}

.ama-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}



.ama-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #d79a57;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: #c88844;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}



.ama-intro {
 
  text-align: center;

  margin-top: -60px;
  padding:40px 0 40px;
  position: relative;
  z-index: 3;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background: linear-gradient(180deg, #f6f3ee 0%, #f2eee8 100%);
}
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
}


.ama-intro__title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 28px;
  color: #2f443c;
  letter-spacing: -0.015em;
}

.ama-intro__text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #5a6f66;
  max-width: 880px;
  margin: 0 auto;
}

.ama-intro__title {
  letter-spacing: -0.01em;
}

.ama-intro__text {
  font-weight: 300;
}


.ama-intro::before {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background: #d79a57;
  margin: 0 auto;
  opacity: 0.7;
}




.ama-story {
  background: linear-gradient(180deg, #f8f5f1 0%, #f1ece5 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.ama-story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.ama-story__content {
  max-width: 620px;
}

.ama-story__eyebrow {
  display: inline-block;
  margin-bottom: 9px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b27d47;
  font-weight: 600;
}

.ama-story__title {
  font-size: clamp(1rem, 2.5vw, 1.85rem);
  line-height: 1.05;
  margin-bottom: 26px;
  color: #2f443c;
  letter-spacing: -0.02em;
  max-width: 28ch;
}

.ama-story__text {
  font-size: 1.08rem;
  line-height: 1.5;
  color: #5c6f67;
  margin: 0 0 22px;
}

.ama-story__lead {
  font-size: 1.24rem;
  line-height: 1.65;
  color: #31473f;
  margin: 0 0 20px;
  font-weight: 600;
}

.ama-story__media {
  position: relative;
  transform: translateY(18px);
}

.ama-story__media::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 88%;
  right: -18px;
  bottom: -18px;
  background: rgba(215, 154, 87, 0.14);
  border-radius: 32px;
  z-index: 0;
}

.ama-story__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(47, 68, 60, 0.12);
}

@media (max-width: 980px) {
  .ama-story__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ama-story__media {
    transform: none;
  }

  .ama-story__title {
    max-width: none;
  }
}




.ama-reasons {
  z-index: 3;
  position: relative;
}

.ama-reasons__header {
  text-align: center;
  margin-bottom: 16px;
}

.ama-reasons__title {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  line-height: 1.08;
  color: #2f443c;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}

.ama-reasons__intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #60736a;
}

.ama-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.ama-reason-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 68, 60, 0.08);
  border-radius: 28px;
  padding: 34px 28px 30px;
  box-shadow: 0 16px 40px rgba(47, 68, 60, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.ama-reason-card:hover {
  transform: translateY(-6px) translateZ(0);
  box-shadow: 0 22px 48px rgba(47, 68, 60, 0.10);
  border-color: rgba(215, 154, 87, 0.22);
}

.ama-reason-card__number {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #c58a49;
}

.ama-reason-card__title {
  font-size: 1.38rem;
  line-height: 1.28;
  color: #2f443c;
  margin-bottom: 16px;
}

.ama-reason-card__text {
  font-size: 1rem;
  line-height: 1.85;
  color: #5f7068;
  margin: 0;
}

@media (max-width: 980px) {
  .ama-reasons__grid {
    grid-template-columns: 1fr;
  }

  .ama-reason-card {
    padding: 30px 24px;
  }
}
.ama-ribbon {
  background: linear-gradient(135deg, #2f443c 0%, #3e5a4f 100%);
  color: #fff;
  padding: 10px 0;
  text-align: center;
}


.ama-cta-final {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.ama-cta-final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(35, 49, 43, 0.88) 0%,
    rgba(49, 71, 63, 0.78) 45%,
    rgba(77, 101, 91, 0.68) 100%
  );
  z-index: 1;
}

.ama-cta-final .container {
  position: relative;
  z-index: 2;
}

.ama-cta-final__content {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 0;
}

.ama-cta-final__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d9a66a;
  font-weight: 600;
}

.ama-cta-final__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.ama-cta-final__text {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 1.12rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.92);
}

.ama-cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ama-ribbon h2 {
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 10px;
  margin-top: 0;
}

.ama-ribbon p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.ama-vision {
  background: linear-gradient(180deg, #e9efe9 0%, #edf3ed 100%);
  position: relative;
  overflow: hidden;
}

.ama-vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ama-vision__media {
  position: relative;
}

.ama-vision__media::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  left: -20px;
  bottom: -20px;
  background: rgba(215, 154, 87, 0.12);
  border-radius: 30px;
  z-index: 0;
}

.ama-vision__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(47, 68, 60, 0.12);
}

.ama-vision__content {
  max-width: 640px;
}

.ama-vision__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b27d47;
  font-weight: 600;
}

.ama-vision__title {
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  line-height: 1.05;
  color: #2f443c;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.ama-vision__intro {
  font-size: 1rem;
  line-height: 1.9;
  color: #5f7269;
  margin: 0 0 34px;
}

.ama-vision__list {
  display: grid;
  gap: 26px;
}

.ama-vision-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(47, 68, 60, 0.1);
}
.ama-vision-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ama-vision-item__line {
  width: 28px;
  height: 3px;
  background: #d79a57;
  margin-top: 38px;
  border-radius: 999px;
  opacity: 0.9;
}
.ama-vision-item__title {
  font-size: 1rem;
  line-height: 1.25;
  color: #2f443c;
  margin: 0 0 10px;
}
.ama-vision-item h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #2f443c;
}

.ama-vision-item p {
  margin: 0;
  line-height: 1.8;
  color: #5f7068;
}

@media (max-width: 980px) {
  .ama-vision__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ama-vision__media {
    order: -1;
  }

  .ama-vision__content {
    max-width: none;
  }
}




.ama-transform {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #fff;
}

.ama-transform__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(47, 68, 60, 0.75) 0%,
    rgba(68, 92, 82, 0.65) 45%,
    rgba(120, 140, 130, 0.55) 100%
  );
}


.ama-transform .container {
  position: relative;
  z-index: 2;
}

.ama-transform__content {
  max-width: 940px;
  margin: 0 auto;
  padding: 30px 0;
}

.ama-transform__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d9a66a;
  font-weight: 600;
}

.ama-transform__title2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem)!important;
  line-height: 1.05;
  margin: 0 auto 24px auto; /* 👈 centra el bloque */
  color: #fff;
  letter-spacing: -0.02em;
  text-align: center!important;
  display: block; /* 👈 asegura comportamiento correcto */
  max-width: 800px; /* opcional para que no se estire demasiado */
}

.ama-transform__text {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 1.12rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.ama-transform__text p {
  margin: 0 0 18px;
}

.ama-transform__text p:last-child {
  margin-bottom: 0;
}

.ama-reasons,
.ama-vision {
  position: relative;
  z-index: 1;
  overflow: hidden;
}





/* ===== CTA FINAL AMA ===== */



.ama-cta-final {
  position: relative;
  background: #f7f5f2; /* puedes cambiar a blanco si quieres */
  padding: 15px 0;
}

/* Caja verde */
.ama-cta-final__content {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  border-radius: 28px;

  background: linear-gradient(
    135deg,
    #2f443c 0%,
    #445c52 100%
  );

  color: #fff;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

/* Eyebrow */
.ama-cta-final__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e8b27a;
}

/* Título */
.ama-cta-final__title2 {
  margin: 0 auto 22px;
  max-width: 700px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Texto */
.ama-cta-final__text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

/* Botones */
.ama-cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.ama-cta-final__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Botón principal */
.ama-cta-final__actions .btn-primary {
  background: #e5a86f;
  color: #24352f;
}

.ama-cta-final__actions .btn-primary:hover {
  transform: translateY(-2px);
  background: #edb882;
}

/* Botón secundario */
.ama-cta-final__actions .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.ama-cta-final__actions .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}