
/* style servciios*/

.card-servicio {
  background: #fefefe;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
}

.card-servicio:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-servicio-barra {
  height: 6px;
  background: linear-gradient(to right, #f57c00, #26c6da);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.card-servicio-body i {
  transition: color 0.3s ease;
}

.card-servicio:hover i {
  color: #006eff !important;
}

/* Responsive fix */
@media (max-width: 767px) {
  .card-servicio {
    margin-bottom: 1.5rem;
  }
}






/* Sección del formulario de testimonio con fondo degradado elegante */
#testimonio-form {
  /* background: linear-gradient(135deg, #001f4d, #26c6da); */
  background: linear-gradient(to right, #f57c00, #26c6da);
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

#testimonio-form h2 {
  color: #fff;
}

#testimonio-form .form-control {
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#testimonio-form .form-label {
  color: #fff;
}

#testimonio-form .btn-primary {
  background: #f57c00;
  border: none;
}

#testimonio-form .btn-primary:hover {
  background: #d45500;
}

/* Estilos para las estrellas */
.rating-stars label i {
  transition: transform 0.3s, color 0.3s;
}

.rating-stars label:hover i {
  transform: scale(1.2);
}

.rating-stars input:checked + label i,
.rating-stars label:hover i,
.rating-stars label:hover ~ label i {
  color: #ffd700 !important;
}


/* styles section contactos */


/* Sección personalizada */
.contacto-section {
  background-color: #f9f9f9;
}

/* Fondo degradado formulario */
.bg-formulario {
  background: linear-gradient(to bottom right, #001f4d,  #1a7b88);
  color: white;
  border-radius: 12px;
}

/* Fondo de las cards */
.bg-info-card {
  background: linear-gradient(to right, #001f4d, #1a7b88);
  border-left: 5px solid #f57c00;
  border-radius: 12px;
}




/* styles section  navegtion*/

.navbar .nav-link:hover,
.navbar .nav-link.active {
  text-decoration: underline;
  color: #ffc107 !important; /* Color amarillo dorado para contraste */
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f0f0f0;
  color: #0d6efd;
}


/* Fondo del dropdown */
.dropdown-menu {
    background-color: #002855; /* Azul oscuro */
    border-radius: 10px;
    border: none;
    padding: 10px;
}

/* Enlaces blancos con hover */

.dropdown-menu .dropdown-item {
    color: #ffffff;
    padding: 8px 20px;
    transition: background-color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #0056b3; /* Azul claro */
    color: #ffffff;
    border-radius: 5px;
}

/* El menú principal alineado a la derecha */
.navbar-nav {
    justify-content: flex-end;
}



/* styles section quines somos <<<<< mision, vision, e historia */

.card-hover {
  transition: transform 0.3s;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(to right, #001f4d, #26c6da) 1;
}

.card-hover:hover {
  transform: scale(1.05);
  border-bottom: 4px solid;
  border-image: linear-gradient(to right, #001f4d, #26c6da) 1;
}

.titulo-hover {
  transition: transform 0.3s;
}

.titulo-hover:hover {
  transform: scale(1.1);
}

.btn-custom {
  background-color: #f57c00;
  border: none;
  color: white;
  transition: background-color 0.3s;
}

.btn-custom:hover {
  background-color: #e65100;
}

/*section, quieornes somos, section, equipo de trabajjo, */

equipo-card {
  border-bottom: 4px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.equipo-card::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(to right, #001f4d, #26c6da);
  margin-top: 10px;
}

.equipo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.titulo-zoom:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.btn-naranja {
  background-color: #f57c00;
  border: none;
  color: #fff;
  transition: background-color 0.3s;
}

.btn-naranja:hover {
  background-color: #d45500;
}

  /* EFECTO PREMIUM */
  .modal-elegante .modal-content {
    animation: zoomIn .3s ease;
    border-radius: 20px !important;
    backdrop-filter: blur(6px);
  }

  /* FOTO DEL MODAL */
  .foto-modal {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    margin-top: -90px;
    background: white;
  }

  /* FONDOS GRADIENT MODERNOS */
  .bg-gradient-primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
  }
  .bg-gradient-success {
    background: linear-gradient(135deg, #10b981, #059669);
  }

  /* TITULOS */
  .titulo-seccion {
    font-weight: bold;
    font-size: 1.25rem;
    color: #1e40af;
  }

  /* TEXTO */
  .texto-seccion {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
  }

  /* CARDS INTERNAS */
  .tarjeta-info {
    background: #f9fafb;
    border-left: 5px solid #2563eb;
  }

  .tarjeta-lista .list-group-item {
    background: transparent;
    border: none;
    padding-left: 0;
  }

  /* ANIMACIÓN */
  @keyframes zoomIn {
    0% { transform: scale(.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }

/* styles section home */

.btn-orange {
    background-color: #ff6f00; /* Naranja vibrante */
    color: white;
    border: none;
}

.btn-orange:hover {
    background-color: #e65100; /* Más oscuro al pasar mouse */
    color: white;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.img-hover:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.acordeon-elegante .accordion-item {
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #f8fafc;
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }

  .acordeon-elegante .accordion-button {
    background: #eef2ff;
    font-weight: bold;
    color: #1e3a8a;
    transition: .3s ease;
  }

  .acordeon-elegante .accordion-button:not(.collapsed) {
    background: #dbeafe;
    color: #1e40af;
    box-shadow: inset 0 -1px 5px rgba(0,0,0,0.1);
  }

  .acordeon-elegante .accordion-button::after {
    filter: hue-rotate(30deg) brightness(0.7);
  }

  .accordion-body {
    background: white;
    padding: 20px;
    color: #374151;
    line-height: 1.7;
  }



/*stiles section, llamado a la accion :*/

.card-cascada {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.card-cascada:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.card-borde-inferior {
  height: 6px;
  /* background: linear-gradient(to right, #f57c00, #ff9800); */
  background: linear-gradient(to right, #f57c00, #26c6da);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.card-cuerpo {
  padding: 2rem;
  background-color: #fff;
}

@media (max-width: 767px) {
  .card-cascada {
    margin-bottom: 1.5rem;
  }
}

/*estilo trabajo con nosostros  vista home*/


/* --- Sección a pantalla completa dentro de un container limitado --- */
.fullscreen-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

.seccion-hero {
  /* height: 100vh; */
  height: 400px;
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.caja-llamada {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 3rem 2rem;
  border-radius: 20px;
  z-index: 2;
  color: #fff;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .caja-llamada {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  .caja-llamada .btn {
    width: 100%;
    justify-content: center;
  }

  .caja-llamada .d-flex.align-items-end {
    align-items: center !important;
  }
}

.form-check-input:checked {
        background-color: #0dcaf0;
        border-color: #0dcaf0;
    }
/* stylos, terminos y condiciones,  */

/* Estilos para el Acordeón de Política Legal */
/* Estilos para el Acordeón de Política Legal (Actualizado con degradado) */
.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: .375rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
    border-radius: .375rem !important;
}

.accordion-button {
    font-size: 1.1rem;
    color: #343a40;
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: #f8f9fa;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), 0.25);
}

.accordion-body {
    font-size: 1.05rem;
    line-height: 1.6;
    /* Degradado sutil de izquierda a derecha */
    background: linear-gradient(to right, #f57c00, #26c6da); /* Un blanco suave a un azul muy claro */
    border-left: 5px solid var(--bs-primary); /* Línea vertical del color primario como acento */
}

/* stils de l apolictica de provasidad, */

/* --- Estilos para la Sección de Resumen de Privacidad --- */
.privacy-feature .privacy-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.privacy-feature:hover .privacy-icon-wrapper {
    transform: scale(1.1);
    background-color: rgba(var(--bs-primary-rgb), 0.2);
}

/* --- Estilos para el Modal Personalizado --- */
@media (min-width: 992px) {
    .modal-dialog.modal-custom-width {
        max-width: 80%; /* Ocupa el 80% del ancho en pantallas grandes */
    }
}

.modal-content {
    border-radius: .75rem;
    border: none;
}

.modal-header {
    padding: 1.5rem 1.5rem 0.5rem;
}

.modal-body {
    padding: 1rem 1.5rem;
}

.modal-footer {
    padding: 0.5rem 1.5rem 1.5rem;
}

/* --- Estilos para el Acordeón DENTRO del Modal --- */
/* (Es el mismo estilo que te gustó de la sección anterior) */
#acordeonPrivacidad .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: .375rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

#acordeonPrivacidad .accordion-item:first-of-type,
#acordeonPrivacidad .accordion-item:last-of-type {
    border-radius: .375rem !important;
}

#acordeonPrivacidad .accordion-button {
    font-size: 1.1rem;
    color: #343a40;
    background-color: #fff;
}

#acordeonPrivacidad .accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: #f8f9fa;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

#acordeonPrivacidad .accordion-button:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), 0.25);
}

#acordeonPrivacidad .accordion-body {
    font-size: 1.05rem;
    line-height: 1.6;
    background: linear-gradient(to right, #f57c00, #26c6da); /* Degradado suave */
    border-left: 5px solid var(--bs-primary); /* Acento de color */
    padding: 1.5rem;
}

/* ------------------------------------------------------------------
   Shared site system
------------------------------------------------------------------ */

:root {
  --brand-navy: #001f4d;
  --brand-blue: #0d47a1;
  --brand-cyan: #26c6da;
  --brand-gold: #f5a623;
  --brand-orange: #f57c00;
  --surface-soft: #f5f7fb;
  --surface-card: rgba(255, 255, 255, 0.92);
  --text-strong: #122033;
  --text-muted-2: #5b6677;
  --site-shadow: 0 24px 70px rgba(0, 31, 77, 0.14);
  --site-radius: 28px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-offset) + 12px);
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-strong);
  background:
    radial-gradient(circle at top right, rgba(38, 198, 218, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
}

.site-main {
  width: 100%;
}

.site-main-contained {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

:root {
  --site-header-offset: 118px;
}

.site-main {
  padding-top: var(--site-header-offset);
}

.site-body--hero .site-main {
  padding-top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1035;
}

.site-navbar {
  width: min(100% - 1.25rem, 1320px);
  margin: 0.85rem auto 0;
  padding: 0.8rem 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(0, 31, 77, 0.78) 0%, rgba(13, 71, 161, 0.74) 55%, rgba(38, 198, 218, 0.68) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 31, 77, 0.12);
  transition:
    padding 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-header.is-scrolled .site-navbar {
  padding: 0.55rem 0;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(0, 31, 77, 0.98) 0%, rgba(13, 71, 161, 0.97) 58%, rgba(38, 198, 218, 0.92) 100%);
  box-shadow: 0 24px 60px rgba(0, 31, 77, 0.22);
}

.site-body--plain .site-navbar {
  background:
    linear-gradient(90deg, rgba(0, 31, 77, 0.94) 0%, rgba(13, 71, 161, 0.92) 58%, rgba(38, 198, 218, 0.88) 100%);
  box-shadow: 0 24px 60px rgba(0, 31, 77, 0.2);
}

.site-navbar__shell {
  padding-inline: clamp(1rem, 2vw, 1.5rem);
}

.site-navbar__brand {
  margin-right: 1rem;
  padding: 0;
}

.site-navbar__logo {
  height: 64px;
  width: auto;
  transition: height 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled .site-navbar__logo {
  height: 56px;
}

.site-navbar__brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-navbar__tagline {
  max-width: 23rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.4;
}

.site-navbar__toggler {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.site-navbar__toggler:focus {
  box-shadow: none;
}

.site-navbar__collapse {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-navbar .nav-link {
  padding: 0.8rem 1rem !important;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active,
.site-navbar .nav-link.show {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.site-navbar .dropdown-toggle::after {
  margin-left: 0.55rem;
  vertical-align: 0.15em;
}

.site-navbar .dropdown-menu {
  margin-top: 0.85rem;
  padding: 0.75rem;
  min-width: 17rem;
  border-radius: 20px;
  background: rgba(9, 27, 58, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.site-navbar .dropdown-item {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
  background: rgba(38, 198, 218, 0.18);
  color: #fff;
}

.site-navbar__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}

.site-navbar__auth {
  gap: 0.85rem;
}

.site-navbar__notification {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.15rem;
}

.site-navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--text-strong);
  box-shadow: 0 16px 30px rgba(245, 166, 35, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-navbar__cta:hover {
  color: var(--text-strong);
  box-shadow: 0 20px 36px rgba(245, 166, 35, 0.36);
}

@media (min-width: 992px) {
  .site-navbar__collapse {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .site-navbar__actions {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
  }

  .site-navbar__cta {
    align-self: center;
  }
}

.site-float-action {
  position: fixed;
  right: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  z-index: 1030;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-float-action:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.22);
}

.site-float-action--phone {
  bottom: 180px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
}

.site-float-action--whatsapp {
  bottom: 110px;
  background: linear-gradient(135deg, #0c8f54, #25d366);
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--brand-navy);
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__media {
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

.page-hero__overlay {
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(0, 31, 77, 0.95) 0%, rgba(0, 31, 77, 0.78) 45%, rgba(38, 198, 218, 0.64) 100%);
}

.page-hero__ornament {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}

.page-hero__ornament--top {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.2) 0%, transparent 68%);
}

.page-hero__ornament--bottom {
  width: 340px;
  height: 340px;
  bottom: 8%;
  left: 4%;
  background: radial-gradient(circle, rgba(38, 198, 218, 0.22) 0%, transparent 70%);
}

.page-hero__container {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 7rem;
}

.page-hero__badge {
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(245, 166, 35, 0.2);
}

.page-hero__title {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-hero__description {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero__highlights {
  row-gap: 1rem;
}

.page-hero__highlight {
  min-width: 150px;
  text-align: center;
  padding: 0 1.25rem;
}

.page-hero__highlight:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
}

.page-hero__wave svg {
  width: 100%;
  height: 100px;
}

.section-surface {
  background: #fff;
}

.section-surface--muted {
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.92) 0%, rgba(236, 242, 249, 0.92) 100%);
}

.section-surface--brand {
  background:
    radial-gradient(circle at top left, rgba(245, 124, 0, 0.2), transparent 28%),
    linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 58%, var(--brand-cyan) 100%);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-heading__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(38, 198, 218, 0.12);
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading__title {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2vw + 1.5rem, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading__text {
  color: var(--text-muted-2);
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-heading--light .section-heading__eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.section-heading--light .section-heading__title,
.section-heading--light .section-heading__text {
  color: #fff;
}

.premium-card {
  display: block;
  position: relative;
  padding: 2rem;
  border-radius: var(--site-radius);
  background: var(--surface-card);
  border: 1px solid rgba(18, 32, 51, 0.06);
  box-shadow: var(--site-shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-cyan));
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(0, 31, 77, 0.18);
}

.premium-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1.4rem;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 18px 36px rgba(0, 31, 77, 0.18);
}

.premium-card__icon--brand {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-cyan));
}

.premium-card__icon--sunset {
  background: linear-gradient(135deg, var(--brand-orange), #ffb64c);
}

.premium-card__icon--aqua {
  background: linear-gradient(135deg, var(--brand-cyan), #6ce5f5);
}

.premium-card__icon--violet {
  background: linear-gradient(135deg, #6d28d9, #a855f7);
}

.premium-card__icon--rose {
  background: linear-gradient(135deg, #d946ef, #fb7185);
}

.premium-card__icon--slate {
  background: linear-gradient(135deg, #334155, #64748b);
}

.premium-card__title {
  margin-bottom: 0.85rem;
  font-size: 1.45rem;
  font-weight: 800;
}

.premium-card__text {
  margin-bottom: 0;
  color: var(--text-muted-2);
  line-height: 1.8;
}

.premium-list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
}

.premium-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-strong);
}

.premium-list li + li {
  margin-top: 0.65rem;
}

.premium-list i {
  color: var(--brand-cyan);
}

.content-panel,
.form-panel,
.info-banner,
.cta-strip {
  padding: clamp(2rem, 2vw + 1rem, 3rem);
  border-radius: var(--site-radius);
  box-shadow: var(--site-shadow);
}

.content-panel,
.form-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 32, 51, 0.06);
}

.form-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 252, 0.98) 100%);
}

.form-panel__header {
  margin-bottom: 2rem;
}

.form-panel__header h3,
.info-card h3,
.info-banner h3,
.stack-list__item h3,
.team-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.form-panel__header p,
.info-card p,
.info-banner p,
.stack-list__item p,
.team-card p {
  margin-bottom: 0;
  color: var(--text-muted-2);
  line-height: 1.75;
}

.stack-list {
  display: grid;
  gap: 1rem;
}

.stack-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: rgba(245, 247, 251, 0.96);
  border: 1px solid rgba(18, 32, 51, 0.05);
}

.stack-list__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  border-radius: 18px;
  font-size: 1.4rem;
}

.image-panel {
  position: relative;
  border-radius: calc(var(--site-radius) + 4px);
  overflow: hidden;
  box-shadow: var(--site-shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.image-panel__badge {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 0.25rem;
}

.image-panel__badge strong {
  font-size: 1rem;
  font-weight: 800;
}

.image-panel__badge span {
  color: var(--text-muted-2);
}

.image-panel__badge--compact {
  max-width: 380px;
}

.glass-panel {
  padding: clamp(2rem, 2vw + 1rem, 3rem);
  border-radius: calc(var(--site-radius) + 2px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 18, 45, 0.22);
  backdrop-filter: blur(16px);
}

.form-label--light {
  color: #fff;
}

.form-control-soft {
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  box-shadow: none;
}

.form-control-soft:focus {
  border-color: rgba(38, 198, 218, 0.7);
  box-shadow: 0 0 0 0.25rem rgba(38, 198, 218, 0.16);
}

.legal-check {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(245, 247, 251, 0.9);
}

.legal-check a {
  font-weight: 700;
}

.info-stack {
  display: grid;
  gap: 1rem;
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 32, 51, 0.06);
  box-shadow: var(--site-shadow);
}

.info-banner {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 55%, var(--brand-cyan) 100%);
  color: #fff;
}

.info-banner h3,
.info-banner p {
  color: #fff;
}

.team-card {
  padding: 2.2rem 1.8rem;
  border-radius: var(--site-radius);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 32, 51, 0.06);
  box-shadow: var(--site-shadow);
}

.team-card__avatar {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 1.4rem;
  border: 6px solid rgba(38, 198, 218, 0.14);
  box-shadow: 0 16px 32px rgba(0, 31, 77, 0.12);
}

.profile-modal .modal-dialog {
  padding: 1rem;
}

.profile-modal .modal-content,
.profile-modal.modal-elegante .modal-content {
  border-radius: 34px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 252, 0.98) 100%);
  box-shadow: 0 42px 120px rgba(0, 18, 45, 0.34);
  overflow: hidden;
}

.profile-modal .modal-header {
  padding: 3.5rem 3rem 2.6rem !important;
}

.profile-modal__header {
  background:
    radial-gradient(circle at top left, rgba(245, 166, 35, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(0, 31, 77, 0.98) 0%, rgba(13, 71, 161, 0.96) 54%, rgba(38, 198, 218, 0.92) 100%) !important;
}

.profile-modal__header--story {
  background:
    radial-gradient(circle at top left, rgba(245, 166, 35, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(0, 31, 77, 0.98) 0%, rgba(8, 54, 116, 0.96) 54%, rgba(17, 138, 178, 0.92) 100%) !important;
}

.profile-modal__header::before {
  content: "";
  position: absolute;
  inset: auto -10% -26% auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.profile-modal .w-100.text-center.pt-5 {
  position: relative;
  z-index: 1;
}

.profile-modal .foto-modal,
.profile-modal .profile-modal__avatar {
  width: 124px;
  height: 124px;
  margin-top: -84px;
  border: 6px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(0, 18, 45, 0.28);
}

.profile-modal h3.fw-bold.mt-4 {
  margin-top: 1.4rem !important;
  margin-bottom: 0.45rem;
  font-size: clamp(2rem, 2vw + 1rem, 2.7rem);
  letter-spacing: -0.04em;
}

.profile-modal .modal-header p {
  max-width: 34rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.profile-modal .btn-close,
.profile-modal .profile-modal__close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  opacity: 1;
}

.profile-modal .btn-close:hover,
.profile-modal .profile-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.profile-modal__body {
  padding: clamp(2rem, 2vw + 1rem, 3.25rem) !important;
  background:
    radial-gradient(circle at top right, rgba(38, 198, 218, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 252, 0.98) 100%);
}

.profile-modal__body--story {
  display: grid;
  gap: 1rem;
}

.profile-modal .titulo-seccion {
  margin-bottom: 1rem;
  color: var(--brand-navy);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.profile-modal .texto-seccion {
  color: var(--text-muted-2);
  font-size: 1.04rem;
  line-height: 1.85;
}

.profile-modal .tarjeta-lista {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.profile-modal .tarjeta-lista .list-group-item {
  position: relative;
  padding: 1rem 1.1rem 1rem 3rem;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 32, 51, 0.06);
  box-shadow: 0 18px 36px rgba(0, 18, 45, 0.08);
  color: var(--text-strong);
}

.profile-modal .tarjeta-lista .list-group-item::before {
  content: "\F26A";
  position: absolute;
  left: 1.1rem;
  top: 1rem;
  font-family: "bootstrap-icons";
  color: var(--brand-cyan);
  font-size: 1.1rem;
}

.profile-modal .acordeon-elegante {
  display: grid;
  gap: 1rem;
}

.profile-modal .acordeon-elegante .accordion-item {
  margin-bottom: 0;
  border-radius: 24px !important;
  border: 1px solid rgba(18, 32, 51, 0.06);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 42px rgba(0, 18, 45, 0.08);
}

.profile-modal .acordeon-elegante .accordion-button {
  padding: 1.2rem 1.4rem;
  background: rgba(242, 246, 252, 0.96);
  color: var(--brand-navy);
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: none;
}

.profile-modal .acordeon-elegante .accordion-button:not(.collapsed) {
  background:
    linear-gradient(135deg, rgba(0, 31, 77, 0.96) 0%, rgba(13, 71, 161, 0.9) 58%, rgba(38, 198, 218, 0.84) 100%);
  color: #fff;
}

.profile-modal .acordeon-elegante .accordion-button::after {
  filter: none;
}

.profile-modal .acordeon-elegante .accordion-body {
  padding: 1.35rem 1.45rem 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-muted-2);
  line-height: 1.8;
}

#modalHistoria .texto-seccion {
  position: relative;
  padding: 1.25rem 1.4rem 1.25rem 3rem;
  margin-bottom: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 32, 51, 0.06);
  box-shadow: 0 18px 36px rgba(0, 18, 45, 0.07);
}

#modalHistoria .texto-seccion::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-cyan));
  box-shadow: 0 0 0 8px rgba(38, 198, 218, 0.08);
}

.profile-modal__quote {
  margin-top: 1.8rem !important;
  padding: 1.7rem 1.8rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 31, 77, 0.98) 0%, rgba(13, 71, 161, 0.92) 58%, rgba(38, 198, 218, 0.88) 100%);
  box-shadow: 0 24px 54px rgba(0, 18, 45, 0.16);
}

.profile-modal__quote p {
  margin-bottom: 0;
  color: #fff !important;
  font-size: 1.1rem;
  line-height: 1.8;
}

.cta-strip {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 55%, var(--brand-cyan) 100%);
}

.cta-strip .section-heading__eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.cta-strip .section-heading__title,
.cta-strip .section-heading__text {
  color: #fff;
}

.legal-side-panel {
  position: sticky;
  top: 110px;
}

.legal-shell__header {
  margin-bottom: 2rem;
}

.legal-accordion {
  display: grid;
  gap: 1rem;
}

.legal-accordion .accordion-item {
  margin-bottom: 0;
  border: 1px solid rgba(18, 32, 51, 0.06);
  border-radius: 24px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(0, 31, 77, 0.08);
}

.legal-accordion .accordion-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-strong);
  background: rgba(245, 247, 251, 0.85);
  box-shadow: none;
}

.legal-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-blue);
  background: linear-gradient(135deg, rgba(38, 198, 218, 0.12), rgba(245, 124, 0, 0.12));
  box-shadow: none;
}

.legal-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(38, 198, 218, 0.16);
}

.legal-accordion .accordion-body,
#acordeonPrivacidad.legal-accordion .accordion-body,
#politicaLegalAcordeon.legal-accordion .accordion-body {
  padding: 1.4rem 1.4rem 1.5rem;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted-2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 253, 0.98) 100%);
  border-top: 1px solid rgba(38, 198, 218, 0.18);
  border-left: 0;
}

.legal-accordion__icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-cyan));
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 14px 30px rgba(0, 31, 77, 0.18);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(245, 124, 0, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(38, 198, 218, 0.18), transparent 24%),
    linear-gradient(135deg, #06152b 0%, #0a2a57 52%, #0f4d73 100%);
  color: rgba(255, 255, 255, 0.9);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(0deg, rgba(6, 21, 43, 0.24), rgba(6, 21, 43, 0.24));
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer__panel {
  padding: clamp(2.6rem, 2vw + 2rem, 4rem) 0 2rem;
}

.site-footer__brand,
.site-footer__block {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
  padding: 2rem;
  border-radius: calc(var(--site-radius) + 4px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 8, 22, 0.22);
  backdrop-filter: blur(14px);
}

.site-footer__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__logo-group {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.site-footer__logo-group > div {
  display: grid;
  gap: 0.35rem;
}

.site-footer__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.45rem;
}

.site-footer__brand h2 {
  margin-bottom: 0.35rem;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}

.site-footer__brand p,
.site-footer__lead,
.site-footer__block p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.site-footer__lead {
  margin-top: 1rem;
  max-width: 44rem;
}

.site-footer__summary {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
}

.site-footer__highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.site-footer__highlight {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__highlight strong,
.site-footer__mini-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
}

.site-footer__highlight span,
.site-footer__mini-card p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  font-size: 0.94rem;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer__essential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.site-footer__essential-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-footer__essential-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-footer__social-wrap {
  margin-top: auto;
  padding-top: 0.35rem;
}

.site-footer__social-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__block h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.site-footer__stack {
  display: grid;
  gap: 0.85rem;
}

.site-footer__mini-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__mini-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.site-footer__list a,
.site-footer__bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__list a:hover,
.site-footer__bottom-links a:hover,
.site-footer__contact-item:hover {
  color: #fff;
}

.site-footer__contact-list {
  display: grid;
  gap: 0.85rem;
}

.site-footer__contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-footer__contact-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer__contact-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-orange), #ffba4d);
  color: #091528;
  font-size: 1rem;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer__social a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-footer__social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.site-footer__prebottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 991.98px) {
  .site-footer__highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__essential-grid {
    grid-template-columns: 1fr;
  }
}

.rating-stars .star-label {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.38);
  transition: transform 0.2s ease, color 0.2s ease;
}

.rating-stars .star-label:hover,
.rating-stars .star-label:hover ~ .star-label,
.rating-stars input:checked + .star-label {
  color: #ffc107;
  transform: scale(1.08);
}

.btn-warning:hover {
  background: #e26500 !important;
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.equipo-card {
  border-bottom: 4px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 991.98px) {
  :root {
    --site-header-offset: 106px;
  }

  .profile-modal .modal-header {
    padding: 3rem 1.75rem 2.2rem !important;
  }

  .profile-modal__body {
    padding: 1.6rem !important;
  }

  .site-navbar {
    width: calc(100% - 1rem);
    border-radius: 22px;
  }

  .site-navbar__logo {
    height: 58px;
  }

  .site-navbar__brand-copy {
    max-width: 12rem;
  }

  .site-navbar__tagline {
    display: none;
  }

  .site-navbar__menu .nav-link,
  .site-navbar__cta {
    width: 100%;
    justify-content: center;
  }

  .site-navbar__actions {
    align-items: stretch;
  }

  .page-hero {
    min-height: auto;
  }

  .legal-side-panel {
    position: static;
  }

  .page-hero__container {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }

  .page-hero__highlight {
    min-width: 130px;
    padding: 0;
  }

  .page-hero__highlight:not(:last-child) {
    border-right: none;
  }

  .image-panel img {
    min-height: 360px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --site-header-offset: 98px;
  }

  .profile-modal .modal-dialog {
    padding: 0.35rem;
  }

  .profile-modal .modal-content,
  .profile-modal.modal-elegante .modal-content {
    border-radius: 26px !important;
  }

  .profile-modal .foto-modal,
  .profile-modal .profile-modal__avatar {
    width: 104px;
    height: 104px;
    margin-top: -74px;
  }

  .profile-modal h3.fw-bold.mt-4 {
    font-size: 1.85rem;
  }

  #modalHistoria .texto-seccion {
    padding-left: 2.6rem;
  }

  .site-navbar__brand-name {
    font-size: 1rem;
  }

  .site-navbar__logo {
    height: 52px;
  }

  .site-header.is-scrolled .site-navbar__logo {
    height: 48px;
  }

  .section-heading__title {
    font-size: 2rem;
  }

  .page-hero__title {
    font-size: 2.5rem;
  }

  .page-hero__description {
    font-size: 1.05rem !important;
  }

  .page-hero__wave svg {
    height: 72px;
  }

  .site-float-action {
    width: 52px;
    height: 52px;
    right: 0.75rem;
  }

  .site-footer__brand,
  .site-footer__block {
    padding: 1.5rem;
  }

  .site-footer__logo-group {
    grid-template-columns: 1fr;
  }

  .site-footer__logo {
    width: 64px;
    height: 64px;
  }

  .site-footer__highlight-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__mini-card,
  .site-footer__contact-item,
  .site-footer__essential-link {
    grid-template-columns: 1fr;
  }

  .site-footer__prebottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__actions,
  .site-footer__bottom,
  .site-footer__bottom-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------------------
   Auth pages
------------------------------------------------------------------ */

.auth-body .site-main {
  background:
    radial-gradient(circle at top left, rgba(38, 198, 218, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(245, 124, 0, 0.12), transparent 24%),
    linear-gradient(180deg, #eef3f9 0%, #f8fafc 100%);
}

.auth-body .site-float-action {
  display: none;
}

.auth-main {
  position: relative;
}

.auth-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 4vw, 5.5rem) 0;
}

.auth-shell__container {
  max-width: 1240px;
}

.auth-showcase,
.auth-panel {
  height: 100%;
  border-radius: 32px;
  box-shadow: var(--site-shadow);
}

.auth-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 2vw + 1rem, 3rem);
  background:
    radial-gradient(circle at top left, rgba(245, 166, 35, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(0, 31, 77, 0.98) 0%, rgba(13, 71, 161, 0.96) 56%, rgba(38, 198, 218, 0.9) 100%);
  color: #fff;
}

.auth-showcase::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.auth-showcase > * {
  position: relative;
  z-index: 1;
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-showcase__title {
  margin: 1.35rem 0 0.9rem;
  font-size: clamp(2rem, 2vw + 1rem, 3.15rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.auth-showcase__text {
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

.auth-showcase__list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-showcase__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-showcase__list i,
.auth-showcase__stats strong {
  color: #fff;
}

.auth-showcase__list span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.auth-showcase__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.auth-showcase__stats div {
  padding: 1rem 0.95rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-showcase__stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
}

.auth-showcase__stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.auth-panel {
  padding: clamp(2rem, 2vw + 1rem, 3rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 252, 0.98) 100%);
  border: 1px solid rgba(18, 32, 51, 0.06);
}

.auth-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(13, 71, 161, 0.08);
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-panel__title {
  margin: 1.15rem 0 0.65rem;
  font-size: clamp(1.95rem, 1.5vw + 1rem, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.auth-panel__text {
  margin-bottom: 1.5rem;
  color: var(--text-muted-2);
  line-height: 1.8;
}

.auth-field {
  margin-bottom: 1.15rem;
}

.auth-field__label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  font-weight: 700;
  color: var(--text-strong);
}

.auth-field__control {
  position: relative;
}

.auth-field__icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 31, 77, 0.1), rgba(38, 198, 218, 0.18));
  color: var(--brand-blue);
  pointer-events: none;
}

.auth-control {
  min-height: 60px;
  padding: 0.95rem 1rem 0.95rem 4.2rem;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.auth-control:focus {
  border-color: rgba(38, 198, 218, 0.7);
  box-shadow: 0 0 0 0.25rem rgba(38, 198, 218, 0.14);
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 1.35rem;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted-2);
}

.auth-check .form-check-input {
  float: none;
  margin: 0;
}

.auth-link {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.auth-link:hover {
  color: var(--brand-navy);
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.4rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-gold) 100%);
  color: var(--text-strong);
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(245, 124, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-submit:hover {
  color: var(--text-strong);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(245, 124, 0, 0.28);
}

.auth-helper {
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: var(--text-muted-2);
  text-align: center;
}

.auth-alert,
.auth-panel .status-message {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(13, 71, 161, 0.08);
  color: var(--brand-blue);
}

.auth-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 991.98px) {
  .auth-showcase__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .auth-shell {
    padding: 2.75rem 0;
  }

  .auth-showcase,
  .auth-panel {
    border-radius: 26px;
  }

  .auth-showcase__stats {
    grid-template-columns: 1fr;
  }

  .auth-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-submit,
  .auth-inline-actions > * {
    width: 100%;
    justify-content: center;
  }
}



