* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Adamina", serif;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(39, 76, 119, 0.558) 100%,
    rgba(96, 150, 186, 0.558) 100%
  );
  z-index: 2;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 30px;
  z-index: 5;
  text-align: center;
}

.content span {
  display: inline-block;
  margin-bottom: 22px;
  color: #a3cef1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.content h1 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.content p {
  width: 100%;
  max-width: 760px;
  margin: auto auto 42px;
  color: #e7ecef;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  width: 220px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border 0.25s ease;
}

.btn-primary {
  background: linear-gradient(to right, #274c77, #6096ba);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  z-index: 20;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.05);
}

.prev {
  left: 28px;
}

.next {
  right: 28px;
}

.pagination {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.25s ease;
}

.dot.active {
  width: 42px;
  border-radius: 100px;
  background: #a3cef1;
}

.empresas-title {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.empresas-title span {
  display: inline-block;
  margin-bottom: 16px;
  color: #6096ba;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.empresas-title h2 {
  color: #274c77;
  font-size: 46px;
  font-weight: 800;
  line-height: 56px;
  text-transform: uppercase;
}

.empresas-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.empresas-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 30px;
  animation: empresasMove 28s linear infinite;
}

.empresa-item {
  width: 240px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid rgba(39, 76, 119, 0.08);
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.empresa-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.empresa-item img {
  width: 150px;
  max-width: 80%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.empresa-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

@keyframes empresasMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========================================
   silder - empresa
======================================== */

.empresas {
  position: relative;
  width: 100%;
  height: 137px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #274c77, #6096ba);
}

.empresas-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.empresas-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: empresasMove 28s linear infinite;
}

.empresa-item {
  width: 180px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empresa-item img {
  width: 140px;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.empresa-item:hover img {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes empresasMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.mision-vision {
  position: relative;
  width: 100%;
  height: 696px;
  padding: 45px 0 0;
  background: #eef3f8;
  overflow: hidden;
}

.mv-container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.mv-image {
  width: 38%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.mv-personaje {
  width: 100%;
  object-fit: contain;
  display: block;
}

.mv-content {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mv-title {
  width: 100%;
  margin-bottom: 35px;
  text-align: right;
}

.mv-title span {
  display: inline-block;
  margin-bottom: 14px;
  color: #6096ba;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mv-title h2 {
  color: #274c77;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "ADLaM Display", system-ui;
}

.mv-cards {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.mv-card {
  width: 375px;
  height: 455px;
  padding: 25px 25px;
  background: linear-gradient(180deg, #274c77 0%, #6096ba 100%);
  border-top-left-radius: 75px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 75px;
  box-shadow: 14px -14px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 18px 18px 0px rgba(0, 0, 0, 0.12);
}

.mv-card h3 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 17px;
  text-transform: uppercase;
  font-family: "ADLaM Display", system-ui;
}

.mv-card p {
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Adamina", serif;
}

.trabajo {
  width: 100%;
  padding: 110px 0;
  background: linear-gradient(to right, #6096ba 0%, #274c77 100%);
  overflow: hidden;
}

.trabajo-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 60px;
}

.trabajo-top {
  margin-bottom: 70px;
}

.trabajo-title h2 {
  color: #e7ecef;
  font-size: 40px;
  font-weight: 800;
  line-height: 66px;
  font-family: "ADLaM Display", system-ui;
}

.trabajo-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trabajo-card {
  width: 390px;
  padding: 38px 30px;
  background: rgba(231, 236, 239, 0.98);
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.trabajo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: 0.7s ease;
}

.trabajo-card:hover::before {
  left: 100%;
}

.trabajo-card:hover {
  transform: translateY(-12px);
  background: #ffffff;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.15);
}

.trabajo-icon {
  width: 78px;
  height: 78px;
  margin: auto auto 24px;
  border-radius: 22px;
  background: linear-gradient(to right, #6096ba, #274c77);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.trabajo-card:hover .trabajo-icon {
  transform: scale(1.08) rotate(4deg);
}

.trabajo-icon i {
  color: #e7ecef;
  font-size: 28px;
}

.trabajo-card h3 {
  color: #274c77;
  font-size: 24px;
  font-weight: 800;
  line-height: 38px;
  margin-bottom: 18px;
  font-family: "ADLaM Display", system-ui;
}

.trabajo-card p {
  color: #8b8c89;
  font-size: 15px;
  line-height: 24px;
  font-family: "Adamina", serif;
}

.trabajo-progress {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 65px;
}

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

.progress-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(231, 236, 239, 0.18);
  border: 2px solid rgba(231, 236, 239, 0.35);
  color: #e7ecef;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.35s ease,
    border 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.progress-line {
  width: 180px;
  height: 4px;
  border-radius: 100px;
  background: rgba(231, 236, 239, 0.22);
  transition: background 0.35s ease;
}

.trabajo-wrapper:has(.trabajo-card:nth-child(1):hover)
  ~ .trabajo-progress
  .progress-item:nth-child(1)
  .progress-circle {
  background: #e7ecef;
  border-color: #a3cef1;
  color: #274c77;
  transform: scale(1.08);
}

/* CIRCULO 1 */
.trabajo-wrapper:has(.trabajo-card:nth-child(2):hover)
  ~ .trabajo-progress
  .progress-item:nth-child(1)
  .progress-circle {
  background: #e7ecef;
  border-color: #a3cef1;
  color: #274c77;
  transform: scale(1.08);
}

/* LINEA 1 */
.trabajo-wrapper:has(.trabajo-card:nth-child(2):hover)
  ~ .trabajo-progress
  .progress-line:nth-child(2) {
  background: #e7ecef;
}

/* CIRCULO 2 */
.trabajo-wrapper:has(.trabajo-card:nth-child(2):hover)
  ~ .trabajo-progress
  .progress-item:nth-child(3)
  .progress-circle {
  background: #e7ecef;
  border-color: #a3cef1;
  color: #274c77;
  transform: scale(1.08);
}

/* TODOS LOS CIRCULOS */
.trabajo-wrapper:has(.trabajo-card:nth-child(3):hover)
  ~ .trabajo-progress
  .progress-circle {
  background: #e7ecef;
  border-color: #a3cef1;
  color: #274c77;
  transform: scale(1.08);
}

/* TODAS LAS LINEAS */
.trabajo-wrapper:has(.trabajo-card:nth-child(3):hover)
  ~ .trabajo-progress
  .progress-line {
  background: #e7ecef;
}

.cotizacion {
  width: 100%;
  padding: 120px 0;
  background: #e7ecef;
  overflow: hidden;
  position: relative;
}

.cotizacion-container {
  width: 100%;
  max-width: 1450px;
  margin: auto;
  padding: 0 40px;
}

.cotizacion-title {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 60px;
}

.cotizacion-title h2 {
  color: #274c77;
  font-size: 78px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2px;
  transition: 0.4s ease;
}

.cotizacion-title h2:hover {
  transform: translateY(-3px);
  text-shadow: 0 12px 25px rgba(39, 76, 119, 0.18);
}

.cotizacion-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.cotizacion-form {
  width: 390px;
  min-height: 520px;
  padding: 42px 32px;
  border-radius: 42px;
  background: linear-gradient(135deg, #6096ba 0%, #274c77 100%);
  box-shadow: 0 20px 40px rgba(39, 76, 119, 0.18);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: 0.45s ease;
}

/* EFECTOS */

.cotizacion-form::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cotizacion-form::after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cotizacion-form:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(39, 76, 119, 0.28);
}

.cotizacion-form-title {
  width: 100%;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.cotizacion-form-title h3 {
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
}

.cotizacion-services {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.service-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: 0.35s ease;
}

.service-option:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.service-option input {
  width: 20px;
  height: 20px;
  accent-color: #a3cef1;
  cursor: pointer;
}

.service-option span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.cotizacion-row {
  width: 100%;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}

.cotizacion-row h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cotizacion-select {
  width: 100%;
  position: relative;
}

.cotizacion-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #6096ba;
  pointer-events: none;
}

.cotizacion-select select {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  border-radius: 14px;
  background: #ffffff;
  padding: 0 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #274c77;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  transition: 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(39, 76, 119, 0.08);
}

.cotizacion-select select:hover {
  background: #f8fafc;
}

.cotizacion-select select:focus {
  box-shadow: 0 0 0 4px rgba(163, 206, 241, 0.35);
}

.cuota-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cuota-row h4 {
  min-width: 180px;
  margin-bottom: 0;
}

.cuota-select {
  width: 140px;
}

.cotizacion-price {
  width: 100%;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.cotizacion-price h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  min-width: 135px;
  margin: 0;
}

/* CONTENEDOR PRECIO */

.price-box {
  flex: 1;
  height: 45px;
  border-radius: 20px;
  background: #ffffff;
  border: 2px solid rgba(163, 206, 241, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(39, 76, 119, 0.05);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  background: rgba(163, 206, 241, 0.18);
  border-radius: 50%;
}

.price-box:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

/* TEXTO PRECIO */

.price-box span {
  color: #274c77;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.cotizacion-arrow {
  width: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: moverFlecha 2.5s infinite ease-in-out;
}

.cotizacion-arrow img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(39, 76, 119, 0.18));
}

@keyframes moverFlecha {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

/* ========================================
   PROCESOS
======================================== */

.cotizacion-process {
  position: relative;
  width: 790px;
  height: 520px;
  padding: 45px 38px;
  border-radius: 42px;
  background: linear-gradient(135deg, #6096ba 0%, #274c77 100%);
  box-shadow: 0 20px 40px rgba(39, 76, 119, 0.18);
  overflow: hidden;
  transition: 0.45s ease;
}

.cotizacion-process:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(39, 76, 119, 0.28);
}

/* EFECTOS */

.cotizacion-process::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cotizacion-process::after {
  content: "";
  position: absolute;
  bottom: -130px;
  left: -130px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* ========================================
   FLOW
======================================== */

.process-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ========================================
   FLECHAS
======================================== */

.flow-arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.flow-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========================================
   POSICIONES
======================================== */

.arrow-top-1 {
  width: 85px;
  height: 55px;
  top: 22px;
  left: 230px;
}

.arrow-top-2 {
  width: 85px;
  height: 55px;
  top: 22px;
  left: 475px;
}

.arrow-right {
  width: 85px;
  height: 55px;
  top: 220px;
  right: 0;
  transform: rotate(90deg);
}

.arrow-bottom-1 {
  width: 85px;
  height: 55px;
  bottom: 18px;
  left: 475px;
  transform: rotate(180deg);
}

.arrow-bottom-2 {
  width: 85px;
  height: 55px;
  bottom: 18px;
  left: 230px;
  transform: rotate(180deg);
}

/* ========================================
   GRID
======================================== */

.process-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 55px;
  justify-items: center;
  align-items: center;
}

/* ========================================
   CARDS
======================================== */

.process-card {
  position: relative;
  width: 180px;
  height: 132px;
  padding: 18px 16px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition: 0.35s ease;
  cursor: pointer;
}

.process-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}

.process-card h4 {
  color: #274c77;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
}

.process-card p {
  color: #8b8c89;
  font-size: 13px;
  font-weight: 600;
}

/* ========================================
   NUMERO
======================================== */

.process-number {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #6096ba;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: 0.35s ease;
}

.process-card:hover .process-number {
  transform: scale(1.12) rotate(8deg);
  background: #274c77;
}

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

@media (max-width: 1200px) {
  .cotizacion-content {
    flex-direction: column;
  }

  .cotizacion-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 992px) {
  .cotizacion-title {
    justify-content: center;
  }

  .cotizacion-title h2 {
    font-size: 58px;
  }

  .cotizacion-process {
    width: 100%;
    height: auto;
  }

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

  .process-flow {
    display: none;
  }
}

@media (max-width: 768px) {
  .cotizacion {
    padding: 90px 0;
  }

  .cotizacion-container {
    padding: 0 20px;
  }

  .cotizacion-title h2 {
    font-size: 44px;
  }

  .cotizacion-form {
    width: 100%;
    min-height: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    width: 100%;
    max-width: 270px;
  }
}

@media (max-width: 480px) {
  .cotizacion-title h2 {
    font-size: 34px;
    text-align: center;
  }

  .cotizacion-form {
    padding: 30px 22px;
    border-radius: 30px;
  }

  .cotizacion-form-title h3 {
    font-size: 22px;
  }

  .service-option {
    padding: 12px 14px;
  }

  .service-option span {
    font-size: 14px;
  }

  .cuota-row,
  .cotizacion-price {
    flex-direction: column;
    align-items: flex-start;
  }

  .cuota-select {
    width: 100%;
  }

  .price-box {
    width: 100%;
    height: 68px;
  }

  .price-box span {
    font-size: 24px;
  }
}

/* ========================================
   AYUDA
======================================== */

.ayuda {
  width: 100%;

  padding: 120px 20px;

  background: linear-gradient(90deg, #274c77 0%, #6096ba 100%);

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

/* ========================================
   CONTENEDOR
======================================== */

.ayuda-container {
  width: 100%;
  max-width: 1160px;

  background: #dce1e5;

  border-radius: 80px;

  padding: 70px 40px;

  text-align: center;
}

/* ========================================
   TITULO
======================================== */

.ayuda-container h2 {
  color: #274c77;

  font-size: 56px;
  font-weight: 800;

  text-transform: uppercase;

  margin-bottom: 30px;

  font-family: "Montserrat", sans-serif;
}

/* ========================================
   TEXTO
======================================== */

.ayuda-container p {
  color: #274c77;

  font-size: 22px;

  line-height: 1.7;

  max-width: 850px;

  margin: 0 auto 50px;
}

/* ========================================
   BOTONES
======================================== */

.ayuda-buttons {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 35px;

  flex-wrap: wrap;
}

/* ========================================
   BOTON
======================================== */

.ayuda-btn {
  width: 225px;
  height: 60px;

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

  text-decoration: none;

  border-radius: 50px;

  color: #ffffff;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 1px;

  background: linear-gradient(90deg, #274c77 0%, #6096ba 100%);

  transition: all 0.3s ease;
}

/* ========================================
   HOVER
======================================== */

.ayuda-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 12px 25px rgba(39, 76, 119, 0.25);
}

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

@media (max-width: 992px) {
  .ayuda-container {
    border-radius: 60px;

    padding: 60px 30px;
  }

  .ayuda-container h2 {
    font-size: 44px;
  }

  .ayuda-container p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .ayuda {
    padding: 90px 20px;
  }

  .ayuda-container {
    border-radius: 40px;

    padding: 50px 25px;
  }

  .ayuda-container h2 {
    font-size: 34px;
  }

  .ayuda-container p {
    font-size: 18px;

    line-height: 1.6;
  }

  .ayuda-buttons {
    gap: 20px;
  }

  .ayuda-btn {
    width: 210px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .ayuda-container h2 {
    font-size: 28px;
  }

  .ayuda-container p {
    font-size: 16px;
  }

  .ayuda-btn {
    width: 100%;
    max-width: 250px;
  }
}

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

@media (max-width: 1200px) {
  .content h1 {
    font-size: 72px;

    line-height: 78px;
  }
}

@media (max-width: 992px) {
  .content h1 {
    font-size: 58px;

    line-height: 64px;
  }

  .content p {
    font-size: 16px;

    line-height: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100svh;
  }

  .content {
    padding: 0 20px;
  }

  .content span {
    font-size: 12px;

    letter-spacing: 3px;
  }

  .content h1 {
    font-size: 42px;

    line-height: 48px;
  }

  .content p {
    font-size: 15px;

    line-height: 28px;
  }

  .btn {
    width: 190px;
    height: 54px;

    font-size: 12px;
  }

  .nav {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 34px;

    line-height: 40px;
  }

  .pagination {
    bottom: 28px;
  }
}

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

@media (max-width: 992px) {
  .empresas {
    padding: 90px 0;
  }

  .empresas-title h2 {
    font-size: 36px;

    line-height: 46px;
  }

  .empresa-item {
    width: 210px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .empresas {
    padding: 80px 0;
  }

  .empresas-title {
    margin-bottom: 45px;
  }

  .empresas-title span {
    font-size: 12px;

    letter-spacing: 3px;
  }

  .empresas-title h2 {
    font-size: 28px;

    line-height: 38px;
  }

  .empresa-item {
    width: 180px;
    height: 105px;
  }

  .empresa-item img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .empresas {
    height: 105px;
  }

  .empresas-track {
    gap: 45px;

    animation-duration: 22s;
  }

  .empresa-item {
    width: 140px;
    height: 70px;
  }

  .empresa-item img {
    width: 105px;
  }
}

@media (max-width: 480px) {
  .empresas {
    height: 90px;
  }

  .empresas-track {
    gap: 30px;
  }

  .empresa-item {
    width: 110px;
    height: 55px;
  }

  .empresa-item img {
    width: 85px;
  }
}

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

@media (max-width: 1200px) {
  .mv-container {
    flex-direction: column;

    padding: 0 40px;
  }

  .mv-image,
  .mv-content {
    width: 100%;
  }

  .mv-image {
    justify-content: center;
  }

  .mv-personaje {
    max-width: 430px;
  }
}

@media (max-width: 992px) {
  .mv-title h2 {
    font-size: 44px;

    line-height: 54px;
  }

  .mv-cards {
    flex-direction: column;
  }

  .mv-card {
    width: 100%;
    max-width: 420px;

    height: auto;

    min-height: 420px;
  }

  .mv-card h3 {
    font-size: 38px;
  }

  .mv-card p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .mision-vision {
    padding: 45px 0 0;
  }

  .mv-container {
    padding: 0 20px;
  }

  .mv-title {
    margin-bottom: 40px;
  }

  .mv-title span {
    font-size: 12px;

    letter-spacing: 3px;
  }

  .mv-title h2 {
    font-size: 34px;

    line-height: 44px;
  }

  .mv-personaje {
    max-width: 340px;
  }

  .mv-card {
    padding: 40px 28px;
  }

  .mv-card h3 {
    font-size: 32px;
  }

  .mv-card p {
    font-size: 16px;

    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .mv-title h2 {
    font-size: 28px;

    line-height: 38px;
  }

  .mv-personaje {
    max-width: 280px;
  }

  .mv-card {
    min-height: auto;
  }

  .mv-card h3 {
    font-size: 28px;
  }

  .mv-card p {
    font-size: 15px;
  }
}

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

@media (max-width: 1200px) {
  .trabajo-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 992px) {
  .trabajo {
    padding: 90px 0;
  }

  .trabajo-container {
    padding: 0 40px;
  }

  .trabajo-title h2 {
    font-size: 46px;

    line-height: 56px;
  }

  .trabajo-card {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .trabajo {
    padding: 80px 0;
  }

  .trabajo-container {
    padding: 0 20px;
  }

  .trabajo-title h2 {
    font-size: 34px;

    line-height: 44px;
  }

  .progress-line {
    width: 90px;
  }
}

@media (max-width: 480px) {
  .trabajo-title h2 {
    font-size: 28px;

    line-height: 38px;
  }

  .progress-circle {
    width: 40px;
    height: 40px;

    font-size: 14px;
  }

  .progress-line {
    width: 50px;
  }
}
