
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
body {
  font-family: 'Inter', sans-serif;
  background-color: #EFF6FF;
  color: #1F2937;
}

/* ===== CONTENEDOR GLOBAL (LO QUE NECESITABAS) ===== */
.container {
  max-width: 1400px;   /* ancho máximo */
  margin: 0 auto;      /* centra el contenido */
  padding: 0 5px;     /* espacio lateral */
}

/* ==========================================
   HEADER
========================================== */

.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Contenedor interno del header */
.header-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================
   LOGO
========================================== */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* ==========================================
   MENÚ ESCRITORIO
========================================== */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #1E3A8A;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

/* Línea inferior animada */

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #2563EB;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #2563EB;
}

/* ==========================================
   BOTÓN CONTACTO
========================================== */

.btn-contacto {
  background: #2563EB;
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-contacto:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* ==========================================
   BOTÓN HAMBURGUESA
========================================== */

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 2rem;
  color: #1E3A8A;
  cursor: pointer;
}

/* ==========================================
   MENÚ MÓVIL
========================================== */

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: #1E3A8A;
  text-decoration: none;
  padding: 18px 20px;
  font-weight: 600;
  border-bottom: 1px solid #F3F4F6;
}

.mobile-menu a:hover {
  background: #F8FAFC;
}

.mobile-contact-btn {
  background: #2563EB;
  color: #FFFFFF !important;
  margin: 15px;
  border-radius: 8px;
  text-align: center;
  border-bottom: none !important;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

  .desktop-nav {
    display: none;
  }

  .desktop-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-container {
    height: 75px;
  }

  .logo {
    font-size: 1.5rem;
  }
}








/* ===== HERO ===== */

.hero {
  background-color: #EFF6FF;
  padding: 100px 0;
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero__content {
  max-width: 600px;
}

.hero__title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero__title--light {
  color: #2563EB;
  display: block;
}

.hero__title--dark {
  color: #1E3A8A;
  display: block;
}

.hero__description {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero__btn {
  background-color: #2563EB;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 28px;
  transition: all 0.3s ease;
  margin-bottom: 40px;
  display: inline-block;
  text-decoration: none;
}

.hero__btn:hover {
  background-color: #1E3A8A;
}
.hero__btn {
  margin-top: 30px;  /* esto lo baja */
}

.hero__list {
  list-style: none;
}

.hero__list li {
  font-size: 18px;
  margin-bottom: 10px;
}

.hero__list strong {
  font-weight: 800;
}
.hero__list strong {
  color: #2563EB; /* el color que quieras */
}

/* ===== IMAGEN ===== */

.hero__image img {
  max-width: 800px;
  width: 100%;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .container {
    padding: 0 20px; /* menos espacio en móvil */
  }

  .hero__container {
    flex-direction: column;
    text-align: center;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__description {
    font-size: 18px;
  }

  .hero__btn {
    font-size: 18px;
  }

  .hero__list li {
    font-size: 18px;
  }
}

/* ===== SCROLL SUAVE ===== */
html {
  scroll-behavior: smooth;
}

/* ===== PROBLEMA ===== */

.problema {
  background-color: #F8FAFC;
  padding: 100px 0;
}

/* TITULO */
.problema__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #1E3A8A;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.3;
}

.problema__title span {
  color: #2563EB;
}

/* GRID */
.problema__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}



/* CARD */
.problema__card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: left;  /* alinea a la izquierda */
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer; /* sensación de clic */
}

/* HOVER (sube bastante más) */
.problema__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
/* CLICK (se hunde claramente) */
.problema__card:active {
  transform: translateY(4px) scale(0.96);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.problema__card h3 {
  margin-bottom: 10px;
}

.problema__card p {
  line-height: 1.6;
}


.problema__card:hover {
  transform: translateY(-5px);
}

 

/* ICONO */
.problema__card img {
  width: 60px;
  margin-bottom: 20px;
}

/* TITULO CARD */
.problema__card h3 {
  font-size: 18px;
  color: #1E3A8A;
  margin-bottom: 15px;
}

/* TEXTO */
.problema__card p {
  font-size: 16px;
  color: #1F2937;
  line-height: 1.5;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .problema__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .problema__grid {
    grid-template-columns: 1fr;
  }

  .problema__title {
    font-size: 28px;
  }
}

.problema__card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.problema__card:nth-child(2) { animation-delay: 0.2s; }
.problema__card:nth-child(3) { animation-delay: 0.4s; }
.problema__card:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SOLUCION ===== *//* ===== SOLUCION ===== */

.solucion {
  background: #ffffff;
  padding: 100px 0;
}

/* TITULO */
.solucion__title {
  font-size: 40px;
  font-weight: 700;
  color: #1E3A8A;
  margin-bottom: 60px;
}

.solucion__title span {
  color: #2563EB;
}

/* LAYOUT */
.solucion__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* IZQUIERDA */
.solucion__content {
  max-width: 600px;
}


/* ITEM */
.solucion__item {
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.solucion__item:hover {
  transform: translateY(-6px);
  border-color: #2563EB;
}

/* TITULO ITEM */
.solucion__item h3 {
  font-size: 18px;
  color: #1E3A8A;
  margin-bottom: 8px;
}

/* TEXTO */
.solucion__item p {
  font-size: 16px;
  color: #1F2937;
  line-height: 1.5;
}

.solucion__item span {
  color: #2563EB;
  font-weight: 600;
}

/* LISTA */
.solucion__list {
  margin-top: 10px;
  padding-left: 20px;
}

.solucion__list li {
  font-size: 16px;
  margin-bottom: 5px;
  color: #1F2937;
}

/* BOTON */
.solucion__btn {
  display: inline-block;   /* 👈 clave */
  margin: 30px auto 0;
  padding: 16px 40px;
  font-size: 20px;
  border-radius: 40px;
  background: #2563EB;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
    align-self: center; /*  SOLO esto centra el botón */
}
.solucion__btn:hover {
  background: #1E3A8A;
  transform: translateY(-2px);
}


/* IMAGEN DERECHA */
.solucion__visual img {
  max-width: 800px;
  width: 100%;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .solucion__wrapper {
    flex-direction: column;
    text-align: center;
  }

  .solucion__content {
    max-width: 100%;
  }

  .solucion__title {
    text-align: center;
  }

  .solucion__visual img {
    margin-top: 40px;
    max-width: 100%;
  }
}
/* ===== SCROLL ANIMATION ===== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ===== BENEFICIOS ===== */

.beneficios {
  background: #F8FAFC;
  padding: 100px 0;
  text-align: center;
}

/* TITULO */
.beneficios__title {
  font-size: 40px;
  font-weight: 700;
  color: #1E3A8A;
  margin-bottom: 20px;
}

.beneficios__title span {
  color: #2563EB;
}

/* SUBTITULO */
.beneficios__subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #1F2937;
  line-height: 1.6;
}

/* GRID */
.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

/* CARD */
.beneficios__card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #2563EB;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.beneficios__card:hover {
  transform: translateY(-8px);
}

/* TITULO CARD */
.beneficios__card h3 {
  color: #1E3A8A;
  font-size: 20px;
  margin-bottom: 20px;
}

/* LISTA */
.beneficios__card ul {
  list-style: none;
  padding: 0;
}

.beneficios__card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #1F2937;
}

/* ICONO CHECK */
.beneficios__card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1E3A8A;
  font-weight: bold;
}
.beneficios__card {
  border: 2px solid #E5E7EB;
}

.beneficios__card:hover {
  border-color: #2563EB;
}

/* BOTON */
.beneficios__btn {
  display: inline-block;
  margin-top: 50px;
  padding: 16px 40px;
  background: #2563EB;
  color: #fff;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.beneficios__btn:hover {
  background: #1E3A8A;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .beneficios__grid {
    grid-template-columns: 1fr;
  }

  .beneficios__title {
    font-size: 28px;
  }
}




/* =========================
   EJEMPLOS - VERSION FIGMA
========================= */

.ejemplos {
  padding: 100px 20px;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.ejemplos__container {
  max-width: 1200px;
  margin: 0 auto;
}


/* HEADER */

.ejemplos__header {
  text-align: center;
  max-width: 1250px; /* MÁS ANCHO */
  margin: 0 auto 70px;
}

/* TÍTULO */

.ejemplos__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
  white-space: nowrap;
}

.ejemplos__title .blue {
  color: #2563EB;
}

.ejemplos__title .dark {
  color: #1E3A8A;
}

/* TEXTO */

.ejemplos__text {
  max-width: 1180px; /* CLAVE */
  margin: 0 auto;
}

.ejemplos__text p {
  font-size: 18px;
  color: #1F2937;
  line-height: 1.15; /* MÁS JUNTO */
  margin: 0 !important; /* ELIMINA ESPACIOS */
  padding: 0;
}
.ejemplos__text p + p {
  margin-top: 2px !important;
}


/* quitar margen final */

.ejemplos__text p:last-child {
  margin-bottom: 0;
}

/* GRID */

.ejemplos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: start;
}

/* COLUMN */

.ejemplos__col {
  text-align: center;
}

/* IMAGEN */

.ejemplos__image-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #f9fafb;
  padding: 12px; /* simula margen interior del mockup */
   width: 100%;
}

.ejemplos__col {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.ejemplos__image-wrap img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* BOTÓN */

.ejemplos__btn {
  display: inline-block;
  margin-top: 30px;
  margin-left: 20px; /* mueve un poco a la derecha */
  background: #2563EB;
  color: #fff;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ejemplos__btn:hover {
  background: #1E40AF;
  transform: translateY(-2px);
}

/* ANIMACIÓN SUAVE */

.ejemplos__col {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.ejemplos__col:nth-child(2) {
  animation-delay: 0.2s;
}

.ejemplos__col:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .ejemplos__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


@media (max-width: 640px) {
  .ejemplos {
    padding: 70px 20px;
  }

  .ejemplos__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ejemplos__title {
    font-size: 28px;
  }

  .ejemplos__text {
    font-size: 16px;
  }
}

/* ========================================
   PROCESO
======================================== */

.proceso {
  background: #F8FAFC;
  padding: 90px 20px;
  font-family: 'Inter', sans-serif;
}

.proceso__container {
  max-width: 1280px;
  margin: 0 auto;
}

/* HEADER */

.proceso__header {
  text-align: center;
  margin-bottom: 65px;
}

.proceso__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #1E3A8A;
}

/* GRID */

.proceso__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* CARD */

.proceso__card {
  background: #ffffff;
  border: 2px solid #2563EB;
  border-radius: 14px;
  padding: 34px 24px 28px;
  min-height: 460px;
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  cursor: pointer;
  position: relative;

  display: flex;
  flex-direction: column;
}

/* HOVER */

.proceso__card:hover {
  background: #1E3A8A;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

/* NUMBER */

.proceso__number {
  font-size: 108px;
  font-weight: 700;
  line-height: 0.9;
  color: #1E3A8A;
  text-align: center;
  margin-bottom: 26px;
  transition: color 0.35s ease;
}

/* TITLE */

.proceso__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: #1E3A8A;
  text-align: center;
  margin-bottom: 28px;
  transition: color 0.35s ease;
}

/* TEXT */

.proceso__card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #1F2937;
  transition: color 0.35s ease;
}

/* HOVER COLORS */

.proceso__card:hover .proceso__number,
.proceso__card:hover .proceso__card-title,
.proceso__card:hover .proceso__card-text {
  color: #ffffff;
}

/* ANIMATION */

.proceso__card {
  opacity: 0;
  transform: translateY(40px);
  animation: procesoFade 0.8s ease forwards;
}

.proceso__card:nth-child(2) {
  animation-delay: 0.1s;
}

.proceso__card:nth-child(3) {
  animation-delay: 0.2s;
}

.proceso__card:nth-child(4) {
  animation-delay: 0.3s;
}

.proceso__card:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes procesoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1200px) {

  .proceso__grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 768px) {

  .proceso {
    padding: 70px 20px;
  }

  .proceso__title {
    font-size: 32px;
  }

  .proceso__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .proceso__card {
    min-height: auto;
  }

  .proceso__number {
    font-size: 90px;
  }

}
/* =========================
   GARANTÍA SECTION
========================= */

.garantia-section {
    width: 100%;
    background: #ffffff;
    padding: 90px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.garantia-container {
    width: 100%;
    max-width: 1200px;
}

.garantia-box {

    border: 2px solid #2563EB;
    border-radius: 16px;

    padding: 55px 60px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(37, 99, 235, 0.06),
        0 2px 10px rgba(0, 0, 0, 0.03);

    position: relative;

    opacity: 0;

    animation:
        garantiaFade 1s ease forwards,
        garantiaPulse 5s ease-in-out infinite 1.2s;
}

/* =========================
   TITULO
========================= */

.garantia-title {

    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;

    color: #2563EB;

    margin-bottom: 38px;

    letter-spacing: -0.5px;
}

/* =========================
   CONTENIDO
========================= */

.garantia-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.garantia-text {

    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;

    color: #1F2937;

    margin: 0;
}

.garantia-highlight {

    color: #2563EB;
    font-weight: 700;
}

/* =========================
   ANIMACION ENTRADA
========================= */

@keyframes garantiaFade {

    from {
        opacity: 0;
        translate: 0 45px;
    }

    to {
        opacity: 1;
        translate: 0 0;
    }
}

/* =========================
   EFECTO RESPIRACIÓN / ZOOM
========================= */

@keyframes garantiaPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.97);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================
   HOVER
========================= */

.garantia-box:hover {

    transform: translateY(-4px);

    transition: all 0.35s ease;

    box-shadow:
        0 18px 40px rgba(37, 99, 235, 0.10),
        0 5px 15px rgba(0, 0, 0, 0.05);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .garantia-box {
        padding: 45px 35px;
    }

    .garantia-title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .garantia-text {
        font-size: 17px;
    }
}

@media (max-width: 768px) {

    .garantia-section {
        padding: 70px 18px;
    }

    .garantia-box {
        padding: 35px 25px;
        border-radius: 14px;
    }

    .garantia-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 25px;
    }

    .garantia-text {
        font-size: 16px;
        line-height: 1.75;
    }

    .garantia-content {
        gap: 22px;
    }
}

@media (max-width: 480px) {

    .garantia-box {
        padding: 30px 22px;
    }

    .garantia-title {
        font-size: 25px;
    }

    .garantia-text {
        font-size: 15.5px;
    }
}

/* =========================
   PRICING SECTION
========================= */

.pricing-section {
    background: #EFF6FF;
    padding: 90px 20px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.pricing-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 34px;
}

/* =========================
   LEFT TEXT
========================= */

.pricing-intro {
    flex: 0.9;
    max-width: 290px;
    padding-top: 20px;
}

.pricing-title {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.pricing-title .light-blue {
    color: #2563EB;
}

.pricing-description {
    font-size: 19px;
    line-height: 1.7;
    color: #1F2937;
    font-weight: 400;
}

.pricing-description span {
    color: #2563EB;
    font-weight: 600;
}

/* =========================
   MAIN CARD
========================= */

.pricing-main-card {
    position: relative;
    flex: 1;
    max-width: 470px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    z-index: 1;
    transform: translateY(-10px);
}

/* animated border */

.pricing-main-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(
        130deg,
        #2563EB,
        #4F8CFF,
        #2563EB,
        #6BA3FF,
        #2563EB
    );
    background-size: 300% 300%;
    animation: borderMove 6s linear infinite;
    z-index: -2;
}

.pricing-main-card::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #fff;
    border-radius: 14px;
    z-index: -1;
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.pricing-offer-top {
    background: #2563EB;
    text-align: center;
    color: white;
    font-weight: 700;
    padding: 16px;
    font-size: 17px;
}

.pricing-offer-top span {
    color: #FFD192;
}

.pricing-main-content {
    padding: 26px 30px 34px;
}

.pricing-main-content h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 14px;
    line-height: 1.3;
}

.old-price {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    text-decoration: line-through;
    color: #1E3A8A;
}

.main-price {
    text-align: center;
    font-size: 68px;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    margin-top: 8px;
}

.special-badge {
    margin: 18px auto 28px;
    background: #FFD192;
    color: #2563EB;
    text-align: center;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    width: fit-content;
    font-size: 16px;
}

.service-title {
    color: #1E3A8A;
    font-weight: 700;
    margin-bottom: 22px;
    font-size: 19px;
}

.pricing-list,
.bonus-list,
.maintenance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li,
.maintenance-list li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 18px;
    color: #1F2937;
    font-size: 18px;
    line-height: 1.55;
}

.pricing-list li::before,
.maintenance-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    border: 2px solid #2563EB;
    border-radius: 50%;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* BONUS */

.bonus-box {
    background: #EFF6FF;
    border-radius: 14px;
    padding: 22px;
    margin-top: 30px;
}

.bonus-title {
    color: #2563EB;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 18px;
}

.bonus-list li {
    position: relative;
    padding-left: 22px;
    color: #2563EB;
    margin-bottom: 12px;
    font-size: 17px;
}

.bonus-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFD192;
    font-size: 24px;
    top: -5px;
}

.bonus-value {
    margin-top: 18px;
    color: #F59E0B;
    font-size: 17px;
    font-weight: 700;
}

/* BUTTON */

.pricing-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2563EB;
    color: white;
    text-decoration: none;
    height: 64px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 22px;
    margin-top: 36px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.pricing-btn:hover {
    transform: translateY(-4px);
}

.pricing-bottom-text {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 24px;
    color: #2563EB;
    font-size: 13px;
    font-weight: 500;
}

/* =========================
   MAINTENANCE CARD
========================= */

.pricing-maintenance-card {
    background: #fff;
    border-radius: 16px;
    padding: 34px;
    max-width: 410px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    margin-top: 110px;
}

.maintenance-small-title {
    text-align: center;
    color: #2563EB;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
}

.maintenance-title {
    text-align: center;
    color: #1E3A8A;
    font-size: 30px;
    line-height: 1.45;
    font-weight: 800;
}

.maintenance-title span {
    color: #2563EB;
}

.maintenance-price {
    text-align: center;
    color: #2563EB;
    font-size: 62px;
    font-weight: 800;
    margin-top: 18px;
    margin-bottom: 28px;
}

.maintenance-price span {
    font-size: 28px;
    font-weight: 500;
}

.maintenance-subtitle {
    color: #1E3A8A;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
}

.no-include {
    margin-top: 28px;
}

.no-list li::before {
    content: "✕";
    border-color: #F59E0B;
    color: #F59E0B;
    font-size: 12px;
}

.maintenance-bottom {
    text-align: center;
    margin-top: 16px;
    color: #2563EB;
    font-size: 13px;
}

/* =========================
   ANIMATIONS
========================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(2) {
    animation-delay: .2s;
}

.fade-up:nth-child(3) {
    animation-delay: .4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-intro {
        text-align: center;
        max-width: 700px;
        padding-top: 0;
    }

    .pricing-main-card,
    .pricing-maintenance-card {
        width: 100%;
        max-width: 700px;
    }

    .pricing-maintenance-card {
        margin-top: 0;
    }
}

@media (max-width: 768px) {

    .pricing-section {
        padding: 70px 18px;
    }

    .pricing-title {
        font-size: 38px;
        text-align: center;
    }

    .pricing-description {
        text-align: center;
        font-size: 18px;
    }

    .pricing-main-content,
    .pricing-maintenance-card {
        padding: 24px;
    }

    .pricing-main-content h3 {
        font-size: 24px;
    }

    .maintenance-title {
        font-size: 26px;
    }

    .main-price {
        font-size: 56px;
    }

    .maintenance-price {
        font-size: 52px;
    }

    .pricing-btn {
        font-size: 18px;
        height: 58px;
    }

    .pricing-bottom-text {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .pricing-list li,
    .maintenance-list li,
    .bonus-list li {
        font-size: 17px;
    }

    .pricing-main-card,
    .pricing-maintenance-card {
        max-width: 100%;
    }
}
/* ===== FAQ ===== */

.faq {
  background: #ffffff;
  padding: 100px 0;
}

/* TITULO */
.faq__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #1E3A8A;
  margin-bottom: 70px;
}

.faq__title span {
  color: #2563EB;
}

/* ITEM */
.faq__item {
  border-bottom: 1px solid #2563EB;
  padding: 30px 0;
}

/* PREGUNTA */
.faq__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq__question span {
  font-size: 22px;
  font-weight: 700;
  color: #1E3A8A;
}

/* ICONO */
.faq__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2563EB;
  position: relative;
  flex-shrink: 0;
}

/* LINEAS DEL + */
.faq__icon span {
  position: absolute;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

.faq__icon span:first-child {
  width: 16px;
  height: 2px;
}

.faq__icon span:last-child {
  width: 2px;
  height: 16px;
}

/* RESPUESTA */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq__answer p {
  margin-top: 25px;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.7;
  color: #1F2937;
}

/* ITEM ACTIVO */
.faq__item.active .faq__answer {
  max-height: 300px;
}

/* CAMBIAR + A X */
.faq__item.active .faq__icon span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq__item.active .faq__icon span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .faq {
    padding: 70px 0;
  }

  .faq__title {
    font-size: 30px;
    margin-bottom: 50px;
  }

  .faq__question span {
    font-size: 18px;
    padding-right: 20px;
  }

  .faq__answer p {
    font-size: 16px;
  }

  .faq__icon {
    width: 34px;
    height: 34px;
  }
}
/* =========================================
   CONTACTO
========================================= */

.contacto {
  padding: 100px 20px;
  background: #EFF6FF;
  font-family: 'Inter', sans-serif;
}

/* CONTAINER */

.contacto__container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
}

/* BOX */

.contacto__box {
  width: 100%;
  max-width: 820px;

  background: #ffffff;

  border: 14px solid #2563EB;
  border-radius: 20px;

  padding: 55px 85px 65px;

  animation: contactoFade 0.9s ease;
}

/* TITULO */

.contacto__title {
  text-align: center;

  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;

  margin-bottom: 24px;
}

.contacto__title .dark {
  color: #1E3A8A;
}

.contacto__title .blue {
  color: #2563EB;
}

/* TEXTO */

.contacto__text {
  max-width: 720px;

  margin: 0 auto 40px;

  text-align: center;

  font-size: 16px;
  line-height: 1.45;
  color: #1F2937;
}

/* FORM */

.contacto__form {
  width: 100%;
}

/* FIELD */

.contacto__field {
  margin-bottom: 16px;
}

.contacto__field label {
  display: block;

  margin-bottom: 8px;

  font-size: 15px;
  color: #1F2937;
}

/* INPUTS */

.contacto__field input,
.contacto__field textarea,
.contacto__phone select {
  width: 100%;

  border: 1.5px solid #6B7280;
  border-radius: 4px;

  background: #ffffff;

  padding: 10px 12px;

  font-size: 15px;
  font-family: 'Inter', sans-serif;

  transition: all 0.25s ease;
}

/* INPUT HEIGHT */

.contacto__field input {
  height: 42px;
}

/* TEXTAREA */

.contacto__field textarea {
  height: 120px;
  resize: none;
}

/* FOCUS */

.contacto__field input:focus,
.contacto__field textarea:focus,
.contacto__phone select:focus {
  outline: none;

  border-color: #2563EB;

  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* PHONE */

.contacto__phone {
  display: flex;
}

.contacto__phone select {
  width: 150px;

  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.contacto__phone input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* CHECK */

.contacto__check {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 20px;
  margin-bottom: 42px;
}

.contacto__check input {
  width: 16px;
  height: 16px;

  cursor: pointer;
}

.contacto__check label {
  font-size: 14px;
  color: #374151;
}

.contacto__check a {
  color: #374151;
  text-decoration: underline;
}

/* BOTON */

.contacto__btn {
  width: 250px;
  height: 60px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 999px;

  background: #2563EB;
  color: #ffffff;

  font-size: 20px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* HOVER */

.contacto__btn:hover {
  background: #1D4ED8;

  transform: translateY(-3px);

  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

/* ANIMACION */

@keyframes contactoFade {

  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

  .contacto {
    padding: 70px 20px;
  }

  .contacto__box {
    padding: 45px 24px 50px;

    border-width: 10px;
  }

  .contacto__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .contacto__text {
    font-size: 15px;
  }

  .contacto__phone {
    flex-direction: column;
    gap: 10px;
  }

  .contacto__phone select {
    width: 100%;

    border-radius: 4px;
  }

  .contacto__phone input {
    border-radius: 4px;
  }

  .contacto__btn {
    width: 100%;
    font-size: 18px;
  }

}
/* =========================================
   FOOTER
========================================= */

.pie {
  background: #1E3A8A;
  padding: 80px 20px 55px;
  font-family: 'Inter', sans-serif;
}

/* CONTAINER */

.pie__container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 80px;
}

/* COLUMNAS */

.pie__col {
  color: #ffffff;
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}


/* DESCRIPCION */

.pie__description {
  max-width: 320px;

  color: #ffffff !important;

  font-size: 16px;
  font-weight: 400 !important;
  line-height: 1.5;

  margin-bottom: 30px;
}

/* TITULOS */

.pie__title {
  color: #ffffff !important;

  font-size: 20px;
  font-weight: 700;

  margin-bottom: 16px;
}

/* LINKS */

.pie__menu,
.pie__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pie a {
  color: #ffffff !important;

  text-decoration: none;

  font-size: 16px;
  font-weight: 400;

  transition: color 0.25s ease;
}

/* HOVER */

.pie a:hover {
  color: #FF9F06 !important;
}

/* HORARIO */

.pie__info p {
  color: #ffffff !important;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;

  margin: 0 0 4px;
}

/* COPYRIGHT */

.pie__bottom {
  text-align: center;

  margin-top: 70px;

  color: rgba(255,255,255,0.65);

  font-size: 15px;
  font-weight: 400;
}

/* ANIMACION */

.pie__col {
  opacity: 0;
  transform: translateY(30px);
  animation: pieFade 0.8s ease forwards;
}

.pie__col:nth-child(2) {
  animation-delay: 0.15s;
}

.pie__col:nth-child(3) {
  animation-delay: 0.3s;
}

.pie__col:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes pieFade {

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

  .pie__container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

}

@media (max-width: 768px) {

  .pie {
    padding: 65px 20px 45px;
  }

  .pie__container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .pie__description {
    max-width: 100%;
  }

  .pie__bottom {
    margin-top: 50px;
    font-size: 14px;
  }

}

