/* ============================================
   RESET
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Readex Pro', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}


/* ============================================
   VARIABLES
   ============================================ */
:root {
  --color-bg:         #FFF9EA;
  --color-active:     #1D1D1D;
  --color-inactive:   rgba(29, 29, 29, 0.70);
  --color-hover:      #1D1D1D;
  --color-underline:  #F1AA2E;
  --navbar-height:    80px;
  --transition:       0.25s ease;
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
  width: 100%;
  height: var(--navbar-height);
  /* Subtle bottom separator */
  border-bottom: 1px solid rgba(29, 29, 29, 0.08);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
}


/* ---- Logo ---- */
.navbar__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}


/* ---- Nav list ---- */
.navbar__nav {
  display: flex;
  align-items: center;
}

.navbar__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-inactive);
  position: relative;
  transition: color var(--transition);
}

/* Underline indicator */
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-underline);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar__link:hover {
  color: var(--color-hover);
}

.navbar__link:hover::after {
  width: 50%;
}

.navbar__link.active {
  color: var(--color-active);
  font-weight: 600;
}

.navbar__link.active::after {
  width: 50%;
}


/* ---- Hamburger (hidden on desktop) ---- */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 2px;
  z-index: 200;
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-active);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

/* Hamburger → X animation */
.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ---- Overlay ---- */
.navbar__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  transition: opacity var(--transition);
}

.navbar__overlay.visible {
  display: block;
  opacity: 1;
}


/* ============================================
   MOBILE  (≤ 768px)
   ============================================ */
@media (max-width: 768px) {

  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100dvh;
    background-color: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 32px;
    z-index: 150;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(29, 29, 29, 0.08);
  }

  .navbar__nav.open {
    right: 0;
  }

  .navbar__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .navbar__link {
    font-size: 1.1rem;
  }
}


/* ============================================
   HERO SLIDER
   ============================================ */
.slider {
  position: relative;
  background-color: var(--color-bg);
  width: 100%;
}

.slider__inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider__container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---- Single slide ---- */
.slider__slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 100%;
  min-height: 640px;
  padding: 0px 80px 0px 120px;
  gap: 56px;
}

/* ---- Left: text block ---- */
.slider__content {
  flex: 1 1 44%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  animation: fadeSlideIn 0.55s ease both;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slider__title {
  font-family: 'Readex Pro', sans-serif;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-active);
  letter-spacing: -0.02em;
}

.slider__highlight {
  color: var(--color-underline);
}

.slider__text {
  font-family: 'Readex Pro', sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-inactive);
  max-width: 420px;
}

.slider__text strong {
  font-weight: 600;
  color: var(--color-active);
  display: block;
  margin-top: 4px;
}

.slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background-color: var(--color-underline);
  color: var(--color-active);
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 16px rgba(241, 170, 46, 0.30);
}

.slider__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 170, 46, 0.45);
  background-color: #e8a01e;
}

.slider__btn:active {
  transform: translateY(0);
}

/* ---- Right: image ---- */
.slider__image {
  flex: 1 1 52%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.slider__image img {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  animation: fadeSlideIn 0.65s ease 0.1s both;
}

/* ---- Arrows ---- */
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #1D1D1D;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.slider__arrow svg {
  width: 20px;
  height: 20px;
}

.slider__arrow:hover {
  background-color: #333333;
  transform: translateY(-50%) scale(1.08);
}

.slider__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.slider__arrow--prev {
  left: 28px;
}

.slider__arrow--next {
  right: 28px;
}


/* ============================================
   SLIDER — TABLET  (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .slider__slide {
    padding: 64px 56px 64px 80px;
    gap: 36px;
    min-height: 520px;
  }
}


/* ============================================
   SLIDER — MOBILE  (≤ 768px)
   ============================================ */
@media (max-width: 768px) {

  .slider__slide {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 52px 24px 64px;
    gap: 32px;
    min-height: unset;
  }

  .slider__content {
    align-items: center;
    gap: 20px;
    order: 2;
  }

  .slider__image {
    order: 1;
    justify-content: center;
    width: 100%;
  }

  .slider__image img {
    max-width: 340px;
    border-radius: 12px;
  }

  .slider__text {
    max-width: 100%;
  }

  .slider__title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .slider__arrow {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .slider__arrow:hover {
    transform: scale(1.08);
  }

  .slider__arrow:active {
    transform: scale(0.96);
  }

  .slider__arrow--prev {
    left: calc(50% - 56px);
  }

  .slider__arrow--next {
    right: calc(50% - 56px);
  }
}


/* ============================================
   SECCIÓN: ¿EN QUÉ CONSISTE?
   ============================================ */
.consiste {
  background: linear-gradient(160deg, #f9f9f9 0%, #f1f1f1 100%);
  padding: 96px 120px;
}

.consiste__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ---- Intro centered block ---- */
.consiste__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}

/* ---- Eyebrow ---- */
.consiste__eyebrow {
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-underline);
  margin-bottom: 14px;
}

/* ---- Título ---- */
.consiste__title {
  font-family: 'Readex Pro', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #1D1D1D;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* ---- Párrafo ---- */
.consiste__text {
  font-family: 'Readex Pro', sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 300;
  color: rgba(29, 29, 29, 0.65);
  line-height: 1.85;
  max-width: 740px;
  margin-bottom: 0;
}

/* ---- Grid de 4 cajas ---- */
.consiste__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}

/* ---- Caja individual ---- */
.consiste__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.consiste__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

/* ---- Círculo icono ---- */
.consiste__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 172, 75, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consiste__icon-wrap img {
  width: 30px;
  height: 30px;
  object-fit: contain;

}

/* ---- Texto de la caja ---- */
.consiste__card-title {
  font-family: 'Readex Pro', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1D1D1D;
  line-height: 1.2;
}

.consiste__card-text {
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(29, 29, 29, 0.60);
  line-height: 1.65;
}

/* ---- Número paso (decorativo) ---- */
.consiste__card::before {
  content: attr(data-step);
  font-family: 'Readex Pro', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(241, 170, 46, 0.45);
  letter-spacing: 0.08em;
  align-self: flex-end;
}


/* ============================================
   CONSISTE — TABLET  (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .consiste {
    padding: 72px 56px;
  }

  .consiste__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}


/* ============================================
   CONSISTE — MOBILE  (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .consiste {
    padding: 60px 24px;
  }


  .consiste__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .consiste__card {
    padding: 28px 24px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }

  .consiste__icon-wrap {
    width: 52px;
    height: 52px;
  }

  .consiste__icon-wrap img {
    width: 24px;
    height: 24px;
  }

  .consiste__card-body {
    flex: 1;
    min-width: 0;
  }

  .consiste__card::before {
    display: none;
  }
}

/* ============================================
   SECCIÓN: TE ASESORAMOS
   ============================================ */
.asesoria {
  background-color: var(--color-bg);
  padding: 96px 0 80px;
}

.asesoria__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ---- Intro centrada ---- */
.asesoria__intro {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.asesoria__eyebrow {
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F1AA2E;
}

.asesoria__title {
  font-family: 'Readex Pro', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: #1D1D1D;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.asesoria__text {
  font-family: 'Readex Pro', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  color: rgba(29, 29, 29, 0.65);
  line-height: 1.7;
  max-width: 480px;
}

/* ---- Carrusel ---- */
.asesoria__carousel {
  overflow: hidden;
  width: 100%;
}

.asesoria__track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---- Tarjeta ---- */
.asesoria__card {
  /* Desktop: 4 visible, partial 5th for hint */
  flex: 0 0 calc((100% - 3 * 24px) / 3.2);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.asesoria__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.11);
}

/* ---- Imagen ---- */
.asesoria__img-wrap {
  width: 100%;
  aspect-ratio: 607 / 480;
  overflow: hidden;
}

.asesoria__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.asesoria__card:hover .asesoria__img-wrap img {
  transform: scale(1.04);
}

/* ---- Footer de la tarjeta ---- */
.asesoria__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  gap: 12px;
}

.asesoria__card-label {
  font-family: 'Readex Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1D1D1D;
}

.asesoria__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  background-color: #FFCB45;
  color: #1D1D1D;
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 10px rgba(255, 203, 69, 0.30);
  white-space: nowrap;
}

.asesoria__card-btn:hover {
  background-color: #f0bc2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 203, 69, 0.45);
}

/* ---- Controles (flechas centradas debajo) ---- */
.asesoria__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.asesoria__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #1D1D1D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.asesoria__arrow svg {
  width: 20px;
  height: 20px;
}

.asesoria__arrow:hover {
  background-color: #333;
  transform: scale(1.08);
}

.asesoria__arrow:active {
  transform: scale(0.95);
}

.asesoria__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}


/* ============================================
   ASESORIA — TABLET  (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .asesoria__inner {
    padding: 0 48px;
  }

  .asesoria__card {
    /* 2 cards visible + hint */
    flex: 0 0 calc((100% - 24px) / 2.1);
  }
}


/* ============================================
   ASESORIA — MOBILE  (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .asesoria {
    padding: 64px 0 60px;
  }

  .asesoria__inner {
    padding: 0 20px;
  }

  .asesoria__intro {
    margin-bottom: 40px;
  }

  .asesoria__track {
    gap: 16px;
  }

  .asesoria__card {
    /* 1 card visible + hint of next */
    flex: 0 0 calc(100% - 40px);
  }

  .asesoria__controls {
    margin-top: 28px;
  }

  .asesoria__arrow {
    width: 42px;
    height: 42px;
  }
}



/* ============================================
   SECCIÓN: CLIENTES SATISFECHOS
   ============================================ */
.clientes {
  background: linear-gradient(160deg, #f9f9f9 0%, #f1f1f1 100%);
  padding: 96px 0 80px;
}

.clientes__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ---- Intro centrada ---- */
.clientes__intro {
  text-align: center;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.clientes__eyebrow {
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F1AA2E;
}

.clientes__title {
  font-family: 'Readex Pro', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: #1D1D1D;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ---- Grid 4 imágenes ---- */
.clientes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.clientes__photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  aspect-ratio: 285 / 244;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.clientes__photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.clientes__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.clientes__photo:hover img {
  transform: scale(1.04);
}

/* ---- Slider de testimonios ---- */
.testimonios {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.testimonios__track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonios__card {
  flex: 0 0 calc((100% - 2 * 24px) / 3);
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonios__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.testimonios__stars {
  display: flex;
  gap: 4px;
}

.testimonios__star {
  font-size: 1.1rem;
  line-height: 1;
}

.testimonios__star.filled  { color: #F1AA2E; }
.testimonios__star.empty   { color: #e0e0e0; }

.testimonios__text {
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(29,29,29,0.72);
  line-height: 1.7;
  flex: 1;
}

.testimonios__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 14px;
}

.testimonios__name {
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1D1D1D;
}

.testimonios__date {
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(29,29,29,0.45);
}

/* controles */
.testimonios__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.testimonios__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #1D1D1D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.testimonios__arrow svg {
  width: 18px;
  height: 18px;
}

.testimonios__arrow:hover { background-color: #333; transform: scale(1.08); }
.testimonios__arrow:active { transform: scale(0.95); }
.testimonios__arrow:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }


/* ============================================
   CLIENTES — TABLET  (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .clientes__inner { padding: 0 48px; }

  .clientes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonios__card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}


/* ============================================
   CLIENTES — MOBILE  (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .clientes { padding: 64px 0 60px; }
  .clientes__inner { padding: 0 20px; }

  .clientes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 48px;
  }

  .testimonios__card {
    flex: 0 0 calc(100% - 32px);
  }
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  width: 100%;
  height: 332px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bgdivfinal.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: 0;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  padding: 0 24px;
}

.cta-banner__title {
  font-family: 'Readex Pro', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background-color: #F1AA2E;
  color: #1D1D1D;
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(241,170,46,0.40);
}

.cta-banner__btn:hover {
  background-color: #e8a01e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(241,170,46,0.55);
}

@media (max-width: 768px) {
  .cta-banner { height: 280px; }
  .cta-banner__title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #1D1D1D;
  color: rgba(255,255,255,0.85);
  padding: 72px 0 0;
  font-family: 'Readex Pro', sans-serif;
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Columna brand */
.footer__brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer__brand-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover {
  background-color: #F1AA2E;
  color: #1D1D1D;
  transform: translateY(-3px);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

/* Columnas de links */
.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F1AA2E;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s ease;
  line-height: 1.4;
}

.footer__link:hover {
  color: #F1AA2E;
}

.footer__link--icon {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__link--icon svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.30);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
}

.footer__copy {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.30);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.30);
  transition: color 0.2s ease;
}

.footer__legal a:hover { color: #F1AA2E; }


/* ============================================
   FOOTER — TABLET  (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .footer__inner { padding: 0 48px; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}


/* ============================================
   FOOTER — MOBILE  (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .footer { padding: 56px 0 0; }
  .footer__inner { padding: 0 24px; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* ============================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================ */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wppPulse 2.5s ease-in-out infinite;
  text-decoration: none;
}

.wpp-float svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.wpp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

.wpp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background-color: #1D1D1D;
  color: #fff;
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.wpp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1D1D1D;
}

.wpp-float:hover .wpp-float__tooltip {
  opacity: 1;
}

@keyframes wppPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.10); }
}

@media (max-width: 768px) {
  .wpp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wpp-float svg { width: 26px; height: 26px; }
  .wpp-float__tooltip { display: none; }
}