/* =================================================================================
                             INICIO DE ESTILOS PAGINA TECNICOS  
   ================================================================================= */

/*  typography general */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p,
.paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: clamp(1rem, 1vw, 1rem);
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1e4b;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 60px;
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 45px;
  }
}

h2,
.h2 {
  font-size: 40px;
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 25px;
}
@media (max-width: 575px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}

h4,
.h4 {
  font-size: 20px;
}
@media (max-width: 575px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}

h5,
.h5 {
  font-size: 18px;
}
@media (max-width: 575px) {
  h5,
  .h5 {
    font-size: 16px;
  }
}

h6,
.h6 {
  font-size: 16px;
}
@media (max-width: 575px) {
  h6,
  .h6 {
    font-size: 14px;
  }
}

/* ==========================================================================
   OPTIMIZACIÓN DE TIPOGRAFÍA GLOBAL RESPONSIVA
   ========================================================================== */

@media (max-width: 768px) {
  /* Ajuste de títulos globales para que no se vean gigantes en móviles */
  h1,
  .h1 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }
  h2,
  .h2 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }
  h3,
  .h3 {
    font-size: 1.3rem !important;
  }

  /* Espaciado general de secciones en móvil */
  section {
    padding: 60px 0 !important;
  }
}

/* ===========================================================================
                               STILOS DE BOTONES
   =========================================================================== */
.btn {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: transform 0.2s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
}

.btn:active,
.btn:hover,
.btn.focus,
.btn:focus,
.btn.active {
  outline: 0;
  box-shadow: none !important;
}

.btn:active::before,
.btn:hover::before,
.btn.focus::before,
.btn:focus::before,
.btn.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}
.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}
.btn-primary {
  color: #fff;
  background-color: #ffbc3b;
}
.btn-primary::before {
  background-color: #fff;
}
.btn-primary:active,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary.active {
  color: #ffbc3b !important;
  background-color: rgb(255, 170.5663265306, 8) !important;
  border-color: rgb(255, 170.5663265306, 8) !important;
}

.btn-outline-primary {
  color: #ffbc3b;
  background-color: transparent;
  border: 1px solid #ffbc3b;
}
.btn-outline-primary::before {
  background-color: #fff;
}
.btn-outline-primary:active,
.btn-outline-primary:hover,
.btn-outline-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary.active {
  color: #ffbc3b !important;
  background-color: #ffbc3b !important;
  border-color: #ffbc3b !important;
}

.btn-light {
  color: #ffbc3b;
  background-color: #fff;
  border: 1px solid #fff;
}
.btn-light::before {
  background-color: #ffbc3b;
}
.btn-light:active,
.btn-light:hover,
.btn-light.focus,
.btn-light:focus,
.btn-light.active {
  color: #fff !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
}

/* =======================================================================
                               ESTILOS GENERALES
   ======================================================================= */
/*fondo general*/
body {
  background-color: #e2e7ec;
  overflow-x: hidden;
}

/* Corrección de emergencia para el bloqueo de pantalla post-modal */
body:not(.modal-open) {
  padding-right: 0 !important;
  overflow: auto !important;
}

/* Asegura que si el backdrop existe por error, no capture eventos de clic */
.modal-backdrop.show:not(:visible) {
  display: none !important;
}

::-moz-selection {
  background: rgb(255, 205.4336734694, 110);
  color: #fff;
}

::selection {
  background: rgb(255, 205.4336734694, 110);
  color: #fff;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffdc11;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #ffbc3b;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: 0.2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

/* =====================================================================================
                                   CLASES UTILITARIAS
   ===================================================================================== */

.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: 0.8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

/*.bg-primary {  background: #ffbc3b !important; */
.bg-secondary {
  background: #1a1a37 !important;
}
.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #ffbc3b !important;
}
.text-primary_social {
  color: #19bedb !important;
}
.text-color {
  color: #5c5c77;
}
.text-light {
  color: #8585a4 !important;
}
.text-lighten {
  color: #d6d6e0 !important;
}
.text-muted {
  color: #b5b5b7 !important;
}
.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "Montserrat", sans-serif;
}

.mb-10 {
  margin-bottom: 10px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

/* =======================================================================
                             ESTILO DE LISTAS
   ======================================================================= */

.list-styled {
  padding-left: 25px;
}
.list-styled li {
  position: relative;
  margin-bottom: 15px;
}
.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}
#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: transform 0.2s ease;
  transform-origin: top;
  font-weight: 600;
}

.top-header.hide {
  transform: scaleY(0);
  transform-origin: top;
}
.navigation {
  background: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  transition: 0.2s ease;
}
@media (max-width: 991px) {
  .navigation {
    background: #1a1a37;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #1a1a37;
    max-height: calc(100vh - 80px);
  }
  .navbar-collapse.show {
    overflow-y: auto;
  }
}

.navbar-nav {
  padding-left: 50px;
  background: #ffbc3b;
}
@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
    background: #1a1a37;
  }
}

.nav-bg {
  background-color: #1a1a37;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}
@media (max-width: 991px) {
  .nav-item:last-child {
    margin-bottom: 20px;
  }
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  pointer-events: none;
}

@media (max-width: 991px) {
  .nav-item::before {
    opacity: 0.1;
    height: 100%;
  }
}

.nav-item:hover::before,
.nav-item.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}
.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0509803922);
}

.navbar .nav-item > .dropdown-toggle::after {
  border: 0;
  margin-left: 0.255em;
  vertical-align: 1px;
  content: "\e64b";
  font-family: "themify";
  font-size: 11px;
  width: auto;
}
.navbar .dropdown .dropdown-menu li {
  padding-top: 10px;
}
.navbar .dropdown .dropdown-menu li:last-child {
  padding-bottom: 15px;
}
.navbar .dropdown .dropdown-menu.dropdown-submenu {
  top: 0;
}

@media (max-width: 991px) {
  .navbar .dropdown .dropdown-menu.dropdown-submenu li:first-child {
    margin-top: 15px;
  }
}
.navbar .dropdown .dropdown-item .dropdown-toggle {
  display: block;
  line-height: 1.8;
}
.navbar .dropdown:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #ffbc3b;
  padding: 0 15px;
  padding-left: 5px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  background: #fff;
}
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    padding-left: 15px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transform-origin: unset;
    margin: 0;
    border: 0;
    position: static;
  }
}
.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown .dropdown .dropdown-toggle,
.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: 0.2s ease;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 991px) {
  .navbar .dropdown .dropdown .dropdown-toggle,
  .navbar .dropdown-item {
    text-align: center;
  }
}
.navbar .dropdown .dropdown .dropdown-toggle:hover,
.navbar .dropdown-item:hover {
  color: #ffbc3b;
  background: transparent;
}

/* ==========================================================================
                              BARRA LATERAL FLOTANTE
   ========================================================================== */

.eq-floating-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.eq-floating-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  padding: 14px 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.eq-floating-btn:hover {
  width: 120px;
}

.eq-floating-btn__icon {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
}

.eq-floating-btn__text {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.eq-floating-btn--red {
  background-color: #8b1538;
  color: #fff;
}
.eq-floating-btn--red:hover {
  background-color: #a01840;
}
.eq-floating-btn--dark {
  background-color: #3d3d3d;
  color: #fff;
}
.eq-floating-btn--dark:hover {
  background-color: #4d4d4d;
}
.eq-floating-btn--gray {
  background-color: #9a9a9a;
  color: #fff;
}
.eq-floating-btn--gray:hover {
  background-color: #aaa;
}
.eq-floating-btn--green {
  background-color: #25d366;
  color: #fff;
}
.eq-floating-btn--green:hover {
  background-color: #2be06f;
}

/* ==============================================================================================
                                          VENTANA MODAL
   ============================================================================================== */

.eq-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.eq-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.eq-modal-content {
  background: #fff;
  width: 650px; /* MAS ANCHA */
  height: 400px;
  border-radius: 20px;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.7s ease;
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center; /* CENTRADO VERTICAL */
  justify-content: center; /* CENTRADO HORIZONTAL */
  padding: 40px;
  box-sizing: border-box;
}

.eq-modal-center-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eq-modal-middle-text h2 {
  color: white;
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.eq-modal-middle-text p {
  color: white;
  font-size: 1.2rem;
}

.eq-modal-overlay.active .eq-modal-content {
  transform: scale(1);
}

.eq-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.eq-btn-main {
  background: #fff;
  color: #333;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  transition: background 0.3s ease;
}

/* ==========================================================================
                                     SECCION 1: HERO BANNER PROGRAMA
   ========================================================================== */

:root {
  --navy: #092149;
  --lime: #b2cc18;
  --bg-program: #e2e7ec;
  --white: #ffffff;
}

.prog-hero-section.section-bg-image {
  position: relative !important;
  min-height: 95vh !important;
  display: flex !important;
  align-items: flex-start !important;
  padding-top: 140px !important;
  z-index: 1;
  background-color: var(--bg-program);
  background-image: url("../images/tecnicos/banner_auxenfermeria.jpg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.prog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(9, 33, 73, 0.1) 0%,
    rgba(226, 231, 236, 0.8) 70%
  );
  z-index: 2;
  pointer-events: none;
}

.prog-hero-section .container {
  position: relative;
  z-index: 10;
}

/* --- TARJETA --- */
.prog-hero-card {
  background: var(--white) !important;
  padding: 50px 40px 30px 40px !important;
  border-radius: 15px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 480px !important;
  margin-top: -30px !important;
  margin-left: -10px !important;
}

.prog-hero-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: clamp(1.8rem, 4vw, 2.3rem) !important;
  color: var(--navy) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  /* 1. Línea más cerca del título (reducido de 20px a 8px) */
  margin-bottom: 8px !important;
  margin-top: 0 !important;
}

.prog-hero-line {
  width: 60px;
  height: 4px;
  background-color: var(--lime) !important;
  margin-bottom: 0 !important;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .prog-hero-section.section-bg-image {
    padding-top: 80px !important;
    min-height: 60vh !important; /* En móvil un poco menos de alto para usabilidad */
  }
  .prog-hero-card {
    padding: 40px 30px 20px 30px !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 90% !important;
  }
  .prog-hero-line {
    margin: 0 auto !important;
  }
}

/* ======================================================================================================
                                     SECCION 2: BARRA INFORMACION
   ====================================================================================================== */
.prog-info-bar {
  background: #ffffff;
  padding: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 20;
  margin-top: -50px; /* Eleva la barra sobre el hero */
  border-radius: 0px;
}

.prog-info-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}

.prog-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prog-info-item i {
  font-size: 1.5rem;
  color: var(--lime);
}

.prog-info-text span {
  font-family: "Poppins", sans-serif;
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: #424242;
  text-transform: uppercase;
  font-weight: 600;
}

.prog-info-text strong {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-size: 14px;
  display: block;
}

/* Botón Inscribirme */
.btn-prog-main {
  background: var(--navy);
  color: #ffffff !important;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
}

.btn-prog-main:hover {
  background: var(--lime);
  color: var(--navy) !important;
  transform: translateY(-3px);
}

/* =================================================================================================
                                       SECCIÓN 3: DESCRIPCIÓN TÉCNICO 
   ================================================================================================= */

.sec-descripcion_tecnico {
  padding: 80px 0;
  background-color: #e2e7ec;
  font-family: "Poppins", sans-serif;
}

.sec-descripcion-container-1000 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- BLOQUE SUPERIOR (Flexbox) --- */
.sec-descripcion-top-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.sec-descripcion-image-box {
  flex: 1;
}

.sec-descripcion-image-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: block;
}

.sec-descripcion-text-box {
  flex: 1;
}

/* --- TÍTULOS --- */
.sec-descripcion-main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  color: #092149; /* Navy */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
}

.sec-descripcion-main-title.centered {
  text-align: center;
}

/* Línea de acento Lima */
.sec-descripcion-line {
  width: 50px;
  height: 4px;
  background-color: #b2cc18; /* Lima */
  margin-bottom: 30px;
}

.sec-descripcion-line.centered {
  margin: 10px auto 30px;
}

.sec-descripcion-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: #092149;
  font-weight: 700;
  margin-bottom: 20px;
}

/* --- PÁRRAFOS --- */
.sec-descripcion-p {
  font-size: 0.95rem;
  color: #44546e;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sec-descripcion-p.centered-wide {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* --- BLOQUE CENTRAL METODOLOGÍA --- */
.sec-descripcion-method-header {
  margin-bottom: 60px;
}

/* --- BLOQUE INFERIOR (Columnas) --- */
.sec-descripcion-columns {
  display: flex;
  gap: 50px;
}

.sec-descripcion-col {
  flex: 1;
}

.sec-descripcion-list {
  list-style: none;
  padding: 0;
}

.sec-descripcion-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: #44546e;
}

/* Viñetas en color Lima */
.sec-descripcion-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #b2cc18;
  font-size: 1.1rem;
}

/* --- RESPONSIVO --- */
@media (max-width: 850px) {
  .sec-descripcion-top-row {
    flex-direction: column;
    text-align: center;
  }
  .sec-descripcion-line {
    margin-left: auto;
    margin-right: auto;
  }
  .sec-descripcion-columns {
    flex-direction: column;
    gap: 30px;
  }
  .sec-descripcion-main-title {
    font-size: 1.8rem;
  }
}

/* ====================================================================================================
                                       SECCIÓN 4: BECAS Y FINANCIACIÓN 
   ==================================================================================================== */

.sec-financiacion_programa-container {
  background-color: #e2e7ec;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* --- Títulos --- */
.sec-financiacion_programa-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #092149; /* Navy */
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}

.prog-hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem); /* Tamaño dinámico */
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
}

.prog-hero-line {
  width: 60px;
  height: 4px;
  background: var(--lime);
  margin-bottom: 25px;
}

.prog-hero-description {
  font-family: "Poppins", sans-serif;
  color: #2c2d2d;
  font-size: 15px;
  line-height: 1.8;
}

.sec-financiacion_programa-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b2cc18;
  margin: 10px auto 0;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.reveal .sec-financiacion_programa-title::after {
  transform: scaleX(1);
}

.sec-financiacion_programa-intro {
  font-family: "Poppins", sans-serif;
  color: #2c2d2d;
  font-size: 15px;
  line-height: 1.8;
}

/* --- Tarjetas de Información --- */
.sec-financiacion_programa-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(9, 33, 73, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
}

.sec-financiacion_programa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(9, 33, 73, 0.12);
  border-color: #b2cc18;
}

/* Variante resaltada para Financiación */
.sec-financiacion_programa-card.highlight {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.sec-financiacion_programa-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(178, 204, 24, 0.15); /* Lima suave */
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.sec-financiacion_programa-icon i {
  font-size: 1.8rem;
  color: #b2cc18;
}

.sec-financiacion_programa-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: #092149;
  font-weight: 700;
  margin-bottom: 20px;
}

/* --- Listas --- */
.sec-financiacion_programa-list {
  list-style: none;
  padding: 0;
}

.sec-financiacion_programa-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #44546e;
  line-height: 1.5;
}

.sec-financiacion_programa-list li::before {
  content: "\f00c"; /* Icono Check FontAwesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #b2cc18;
  font-size: 0.9rem;
}

.sec-financiacion_programa-list li strong {
  color: #092149;
  font-weight: 700;
}

/* --- Botón CTA --- */
.btn-financiacion-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #092149;
  color: #ffffff !important;
  padding: 16px 35px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(9, 33, 73, 0.2);
}

.btn-financiacion-cta:hover {
  background-color: #b2cc18;
  color: #092149 !important;
  transform: scale(1.05);
  text-decoration: none;
}

/* --- ESPACIADO Y REGLAS --- */
.mb-60 {
  margin-bottom: 60px;
}
.mt-50 {
  margin-top: 50px;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .sec-financiacion_programa-container {
    padding: 70px 0;
  }
  .sec-financiacion_programa-card {
    padding: 35px 25px;
  }
}

/* =====================================================================================================
                                         SECCION 5 - CONOCE EL PROGRAMA
   ===================================================================================================== */

.sec-conoce_programa-container {
  background-color: #e2e7ec;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.sec-conoce_programa-header {
  text-align: center;
  margin-bottom: 40px;
}

.sec-conoce_programa-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #092149;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.sec-conoce_programa-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #b2cc18;
  margin: 8px auto 0;
  transform: scaleX(0);
  transition: transform 0.8s ease 0.4s;
}

.reveal .sec-conoce_programa-title::after {
  transform: scaleX(1);
}

.sec-conoce_programa-intro {
  font-size: 1rem;
  color: #5c5c77;
  max-width: 600px;
  margin: 0 auto;
}

/* ACORDEÓN MÁS FINO */
.sec-conoce_programa-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Menos espacio entre tarjetas */
}

.sec-prog-item {
  background: #ffffff;
  border-radius: 10px; /* Bordes un poco menos redondeados para look técnico */
  box-shadow: 0 4px 15px rgba(9, 33, 73, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.sec-prog-item-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px; /* PADDING REDUCIDO para que sean menos gruesas */
  cursor: pointer;
  background: #ffffff;
  transition: background 0.3s ease;
}

.sec-prog-item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem; /* Fuente un poco más pequeña */
  font-weight: 700;
  color: #092149;
}

.sec-prog-item-icon {
  color: #b2cc18;
  font-size: 0.8rem;
  transition: transform 0.4s ease;
  width: 24px;
  height: 24px;
  border: 1px solid #b2cc18;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENIDO */
.sec-prog-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fbfcfd;
}

.sec-prog-item-inner {
  padding: 15px 25px 25px 25px;
  border-top: 1px solid #f1f1f1;
}

.sec-prog-item-inner p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.sec-conoce_programa-module-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sec-conoce_programa-module-list li {
  font-size: 0.85rem;
  color: #092149;
  font-weight: 600;
}

.sec-conoce_programa-module-list li::before {
  content: "•";
  color: #b2cc18;
  margin-right: 8px;
  font-size: 1.2rem;
}

/* ESTADO ACTIVO */
.sec-prog-item.active {
  box-shadow: 0 10px 25px rgba(9, 33, 73, 0.08);
}

.sec-prog-item.active .sec-prog-item-icon {
  transform: rotate(45deg);
  background: #b2cc18;
  color: #ffffff;
}

.sec-prog-item.active .sec-prog-item-content {
  max-height: 400px; /* Ajuste para contenido corto */
}

/* ANIMACIONES */
.anim-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal .anim-slide-up {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================================================================
                                     SECCIÓN 6: DIRECTOR DEL PROGRAMA
   ==================================================================================================== */

.sec-director_programa-container {
  background-color: #e2e7ec;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* --- Título de Sección --- */
.sec-director_programa-main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #092149;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sec-director_programa-main-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #b2cc18;
  margin-top: 10px;
}

/* --- Tarjeta del Director --- */
.sec-director_programa-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(9, 33, 73, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
}

/* Foto con Decoración */
.director-img-wrapper {
  position: relative;
  display: inline-block;
}

.director-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 4px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.director-img-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #b2cc18;
  border-radius: 50%;
  top: 5px;
  left: 10px;
  z-index: 1;
  opacity: 0.4;
}

/* Textos */
.director-charge {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.director-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: #092149;
  font-weight: 800;
  margin-bottom: 10px;
}

.director-info-divider {
  width: 30px;
  height: 3px;
  background: #b2cc18;
  margin: 15px 0;
}

.director-bio {
  font-size: 1rem;
  color: #092149;
  font-weight: 600;
  line-height: 1.4;
}

.director-bio span {
  font-weight: 400;
  color: #64748b;
  font-size: 0.9rem;
}

/* Redes Sociales */
.social-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #092149;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.director-social-links {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.social-item {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #092149;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-item:hover {
  background: #b2cc18;
  color: #092149;
  transform: translateY(-3px);
}

/* --- ANIMACIONES --- */
.anim-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal .anim-slide-up {
  opacity: 1;
  transform: translateY(0);
}

.reveal .delay-1 {
  transition-delay: 0.2s;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .director-social-links {
    justify-content: center;
  }
  .director-info-divider {
    margin: 15px auto;
  }
  .sec-director_programa-card {
    text-align: center;
  }
}

/* ====================================================================================================
                                        SECCIÓN 7: DOCENTES
   ==================================================================================================== */

.sec-docentes-main {
  background-color: #e2e7ec;
  padding: 80px 0 100px 0;
  overflow: hidden;
  width: 100%;
}

.sec-docentes-title-premium {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #092149;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
  position: relative;
}

.sec-docentes-title-premium::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b2cc18;
  margin: 15px auto 0;
  transform: scaleX(0);
  transition: transform 0.8s ease 0.4s;
}

.reveal .sec-docentes-title-premium::after {
  transform: scaleX(1);
}

.sec-docentes-viewport {
  width: 100%;
  position: relative;
  display: flex;
  padding: 20px 0 40px 0;
}

.sec-docentes-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.sec-docentes-track:hover {
  animation-play-state: paused !important;
}

/* --- TARJETA DOCENTE --- */
.sec-docentes-card {
  width: 280px;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 25px 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(9, 33, 73, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec-docentes-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(9, 33, 73, 0.15);
  border-color: #b2cc18;
}

.sec-docentes-img-wrapper {
  width: 130px;
  height: 130px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #092149;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.sec-docentes-card:hover .sec-docentes-img-wrapper {
  border-color: #b2cc18;
}

.sec-docentes-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-docentes-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #092149;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sec-docentes-profesion {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #b2cc18;
  margin-bottom: 10px;
}

.sec-docentes-cargo {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* REDES SOCIALES  */
.sec-docentes-social {
  display: flex;
  gap: 15px;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  width: 100%;
  justify-content: center;
}

.sec-docentes-social a {
  color: #092149;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.sec-docentes-social a.fb:hover {
  color: #1877f2;
  transform: translateY(-3px);
}
.sec-docentes-social a.tw:hover {
  color: #000000;
  transform: translateY(-3px);
} /* Color negro para X */
.sec-docentes-social a.ig:hover {
  color: #e4405f;
  transform: translateY(-3px);
}
.sec-docentes-social a.ln:hover {
  color: #0a66c2;
  transform: translateY(-3px);
}

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

.reveal .anim-slide-up {
  opacity: 1;
  transform: translateY(0);
}
.anim-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

@media (max-width: 768px) {
  .sec-docentes-main {
    padding: 60px 0;
  }
  .sec-docentes-title-premium {
    font-size: 2rem;
    margin-bottom: 60px;
  }
  .sec-docentes-card {
    width: 250px;
  }
}

/* ===================================================================================================
                                        SECCIÓN 8: CAMPUS VIRTUAL
   =================================================================================================== */

.sec-campus_virtual-container {
  background-color: #e2e7ec;
  padding: 60px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 75vh; /* Ajustado para que no sobre tanto aire */
  font-family: "Poppins", sans-serif;
}

/* Reducimos el ancho máximo del texto para que no se aleje de la imagen */
.sec-campus_virtual-content {
  max-width: 420px;
  margin-left: auto; /* Empuja el texto hacia el centro (hacia la derecha) */
}

/* --- TÍTULO --- */
.sec-campus_virtual-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.0rem);
  font-weight: 800;
  color: #092149;
  line-height: 1.1;
  margin-bottom: 25px;
}

.sec-campus_virtual-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b2cc18;
  margin-top: 15px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease 0.4s;
}

.reveal .sec-campus_virtual-title::after {
  transform: scaleX(1);
}

.sec-campus_virtual-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #44546e;
  margin-bottom: 35px;
}

/* --- BOTONES --- */
.btn-campus-main {
  display: inline-block;
  background-color: #092149;
  color: #ffffff !important;
  padding: 15px 35px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(9, 33, 73, 0.2);
}

.btn-campus-main:hover {
  background-color: #b2cc18;
  color: #092149 !important;
  transform: translateY(-3px);
}

.btn-campus-support {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

/* --- IMAGEN --- */
.sec-campus_virtual-image-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-start; /* Acerca la imagen al texto (hacia la izquierda) */
  align-items: center;
}

.campus-laptop-img {
  width: 100%;
  max-width: 520px; /* Un poco más pequeña para no separar los bloques */
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(9, 33, 73, 0.1));
}

.campus-image-decoration {
  position: absolute;
  width: 80%;
  height: 80%;
  background: #b2cc18;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  opacity: 0.15;
  left: 0; /* Alineado con el inicio de la imagen */
  animation: blobMorph 10s ease-in-out infinite;
}

@keyframes blobMorph {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: scale(1);
  }
  50% {
    border-radius: 50% 50% 33% 67% / 63% 66% 34% 37%;
    transform: scale(1.05) rotate(5deg);
  }
}

/* --- ANIMACIONES --- */
.anim-slide-right,
.anim-slide-left {
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-slide-right {
  transform: translateX(-40px);
}
.anim-slide-left {
  transform: translateX(40px);
}

.reveal .anim-slide-right,
.reveal .anim-slide-left {
  opacity: 1;
  transform: translateX(0);
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
  .sec-campus_virtual-container {
    text-align: center;
  }
  .sec-campus_virtual-content {
    margin: 0 auto;
  }
  .sec-campus_virtual-image-wrapper {
    justify-content: center;
    margin-top: 50px;
  }
  .sec-campus_virtual-title::after {
    margin: 15px auto 0;
    transform-origin: center;
  }
}

/* ===================================================================================================
                                          SECCIÓN 9: TESTIMONIOS 
   =================================================================================================== */

.sec-testimonios-container-main {
  background-color: #e2e7ec; /* Fondo unificado */
  padding: 100px 0;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* REDUCCIÓN DE ANCHO: Aplicado al contenedor para un look más "Slender" */
.sec-testimonios-container-main .container {
  max-width: 1100px !important; /* Estrechado para mayor elegancia */
  margin: 0 auto;
}

/* --- Título con Línea Lima --- */
.sec-testimonios-main-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #092149;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.sec-testimonios-main-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b2cc18;
  margin: 15px auto 0;
  transform: scaleX(0);
  transition: transform 0.8s ease 0.4s;
}

.reveal .sec-testimonios-main-title::after {
  transform: scaleX(1);
}

/* --- Grid de Testimonios (2 Columnas compactas) --- */
.sec-testimonios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px; /* Gap ajustado al nuevo ancho */
  transition: opacity 0.5s ease;
}

/* --- Tarjeta de Testimonio --- */
.sec-testimonios-card {
  position: relative;
  background-color: #092149; /* Navy Institucional */
  border-radius: 25px;
  padding: 50px 30px 25px; /* Padding un poco más ajustado */
  box-shadow: 0 15px 35px rgba(9, 33, 73, 0.12);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  border-bottom: 5px solid #b2cc18; /* Acento Lima */
}

/* Foto Flotante Circular */
.sec-testimonios-img-wrapper {
  position: absolute;
  top: -40px;
  left: 30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #b2cc18;
  overflow: hidden;
  background: #fff;
  z-index: 10;
}

.sec-testimonios-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Comillas Decorativas */
.sec-testimonios-quote {
  color: rgba(197, 230, 12, 0.521);
  font-size: 4.5rem;
  font-family: Georgia, serif;
  position: absolute;
  top: 15px;
  right: 25px;
  line-height: 1;
}

/* Texto del Testimonio */
.sec-testimonios-text {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* Divisor y Autor */
.sec-testimonios-divider {
  width: 35px;
  height: 2px;
  background: #b2cc18;
  margin-bottom: 15px;
}

.sec-testimonios-author-name {
  font-family: "Montserrat", sans-serif;
  color: #b2cc18;
  font-weight: 800;
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
}

.sec-testimonios-author-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* --- Estados de Animación (Scroll) --- */
.reveal .sec-testimonios-card {
  opacity: 1;
  transform: translateY(0);
}

.reveal .sec-testimonios-card:nth-child(2) {
  transition-delay: 0.2s;
}

.fade-out-effect {
  opacity: 0 !important;
  transform: scale(0.96);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .sec-testimonios-container-main .container {
    max-width: 600px !important;
  }
  .sec-testimonios-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 600px) {
  .sec-testimonios-container-main .container {
    max-width: 100% !important;
    padding: 0 20px;
  }
  .sec-testimonios-card {
    padding: 40px 20px 20px;
  }
}

/* ================================================================================================
                                        SECCIÓN 10: UBICACIÓN 
   ================================================================================================ */

.sec-ubicacion-split {
  background-color: #e2e7ec;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.sec-ubicacion-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 700px;
}

/* --- LADO INFORMACIÓN (Restaurado Margen y Colores) --- */
.sec-ubicacion-info-side {
  flex: 0 0 50%;
  background-color: #e2e7ec;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Margen del 15% para alejar del borde como pedía la flecha */
  padding: 80px 50px 80px 15%;
  z-index: 2;
}

.sec-ubicacion-panel {
  max-width: 450px;
}

.sec-ubicacion-tag {
  font-family: "Montserrat", sans-serif;
  color: #64748b;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}

.sec-ubicacion-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #092149; /* Navy Institucional */
  line-height: 1.1;
  margin: 0;
}

.sec-ubicacion-line {
  width: 50px;
  height: 4px;
  background-color: #b2cc18; /* Línea Lima */
  margin: 20px 0 30px;
}

.sec-ubicacion-desc {
  font-size: 1rem;
  color: #0f172a; /* Texto oscuro de alta legibilidad */
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Lista de detalles restaurada */
.sec-ubicacion-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.sec-ubicacion-item i {
  color: #b2cc18;
  font-size: 1.2rem;
  margin-top: 4px;
}

.sec-ubicacion-text strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #092149;
  font-weight: 800;
  margin-bottom: 2px;
}

.sec-ubicacion-text p {
  font-size: 0.9rem;
  color: #1e293b; /* Texto de los datos en Navy suave */
  margin: 0;
  line-height: 1.5;
}

/* Botón GPS */
.btn-ubicacion-gps {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #092149;
  color: #ffffff !important;
  padding: 15px 35px;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(9, 33, 73, 0.2);
  margin-top: 15px;
}

.btn-ubicacion-gps:hover {
  background-color: #b2cc18;
  color: #092149 !important;
  transform: translateY(-3px);
}

/* --- LADO MAPA (50% Ancho + Efecto Navy) --- */
.sec-ubicacion-map-side {
  flex: 0 0 50%;
  min-height: 500px;
  position: relative;
}

.sec-ubicacion-map-side iframe {
  display: block;
  width: 100%;
  height: 100%;
  /* Efecto Navy Stained (Opción 1) */
  filter: grayscale(100%) brightness(0.9) sepia(10%) hue-rotate(185deg) saturate(1.5);
  transition: all 0.8s ease;
}

.sec-ubicacion-map-side:hover iframe {
  filter: grayscale(0%) brightness(1) sepia(0%) hue-rotate(0deg) saturate(1);
}

/* --- ANIMACIONES --- */
.anim-slide-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-slide-left {
  opacity: 0;
  transform: translateX(40px);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal .anim-slide-right,
.reveal .anim-slide-left {
  opacity: 1;
  transform: translateX(0);
}

/* --- RESPONSIVO --- */
@media (max-width: 1200px) {
  .sec-ubicacion-info-side {
    padding-left: 10%;
  }
}

@media (max-width: 991px) {
  .sec-ubicacion-info-side,
  .sec-ubicacion-map-side {
    flex: 0 0 100%;
    width: 100%;
  }
  .sec-ubicacion-info-side {
    padding: 60px 20px;
    text-align: center;
    justify-content: center;
  }
  .sec-ubicacion-line {
    margin: 20px auto 30px;
  }
  .sec-ubicacion-item {
    text-align: left;
  }
  .sec-ubicacion-map-side {
    height: 450px;
  }
}

/* =====================================================================================================
                                       SECCIÓN 12: PROCESO DE ADMISIÓN
   ====================================================================================================== */

.sec-admision-main {
  background-color: #e2e7ec; /* Fondo unificado */
  padding: 100px 0;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* REDUCCIÓN DE ANCHO: Clave para que las tarjetas no se estiren */
.sec-admision-container {
  max-width: 1100px !important; /* Un poco más estrecho para mayor elegancia */
  margin: 0 auto;
}

.sec-admision-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #092149;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  /* Animación del título */
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s ease;
}

.sec-admision-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b2cc18;
  margin: 15px auto 0;
  transform: scaleX(0);
  transition: transform 0.6s ease 0.4s;
}

/* Cuando la sección entra en el viewport */
.reveal .sec-admision-title {
  opacity: 1;
  transform: translateY(0);
}
.reveal .sec-admision-title::after {
  transform: scaleX(1);
}

/* GRID: 4 columnas estrechas */
.sec-admision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* --- ESTADO INICIAL DE LAS TARJETAS (Ocultas) --- */
.sec-admision-card {
  background: #ffffff;
  padding: 35px 15px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(9, 33, 73, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Animación base */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- ACTIVACIÓN EN CASCADA (Uno a uno) --- */
.reveal .sec-admision-card {
  opacity: 1;
  transform: translateY(0);
}

/* Delays progresivos */
.reveal .delay-1 {
  transition-delay: 0.1s;
}
.reveal .delay-2 {
  transition-delay: 0.3s;
}
.reveal .delay-3 {
  transition-delay: 0.5s;
}
.reveal .delay-4 {
  transition-delay: 0.7s;
}

/* Efecto Hover */
.sec-admision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(9, 33, 73, 0.12);
  border-color: #b2cc18;
}

/* Iconos */
.sec-admision-icon-wrapper {
  width: 65px;
  height: 65px;
  background-color: #092149;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 1.4rem;
  transition: 0.4s ease;
}

.sec-admision-card:hover .sec-admision-icon-wrapper {
  background-color: #b2cc18;
  color: #092149;
  transform: rotateY(180deg);
}

.sec-admision-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #092149;
  margin-bottom: 20px;
  line-height: 1.3;
}

.sec-admision-text {
  font-size: 0.85rem;
  color: #44546e;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.sec-admision-link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: #092149;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #b2cc18;
  padding-bottom: 4px;
  transition: 0.3s;
}

.sec-admision-link:hover {
  color: #b2cc18;
  padding-left: 5px;
}

/* Responsive */
@media (max-width: 991px) {
  .sec-admision-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .sec-admision-container {
    max-width: 650px !important;
  }
}

@media (max-width: 600px) {
  .sec-admision-grid {
    grid-template-columns: 1fr;
  }
  .sec-admision-container {
    max-width: 100% !important;
  }
}
/* ===============================================================================================
                                   SECCIÓN 12: FAQ - PREGUNTAS FRECUENTES
   =============================================================================================== */

.sec-faq-main-container {
  background-color: #e2e7ec;
  padding: 80px 0; /* Un poco menos de padding vertical */
  font-family: "Poppins", sans-serif;
}

/* --- TÍTULO --- */
.sec-faq-main-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #092149;
  text-align: center;
  margin-bottom: 50px;
}

.sec-faq-main-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #b2cc18;
  margin: 10px auto 0;
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.reveal .sec-faq-main-title::after {
  transform: scaleX(1);
}

.sec-faq-intro {
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
  max-width: 550px;
  margin: 0 auto 40px;
}

/* --- BUSCADOR COMPACTO --- */
.sec-faq-search-box {
  display: flex;
  background: #ffffff;
  padding: 5px 5px 5px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(9, 33, 73, 0.05);
  max-width: 600px; /* Más estrecho */
  margin: 0 auto 50px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.sec-faq-search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px;
  font-size: 0.9rem;
  color: #44546e;
}

.sec-faq-search-box button {
  background: #092149;
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.sec-faq-search-box button:hover {
  background: #b2cc18;
  color: #092149;
}

/* --- GRID DE TARJETAS ESBELTAS --- */
.sec-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* Gap reducido para mayor cohesión */
  max-width: 900px; /* CONTENEDOR MÁS ESTRECHO PARA EVITAR TARJETAS LARGAS */
  margin: 0 auto;
}

.sec-faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03); /* Sombra más sutil */
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 33, 73, 0.03);
}

.sec-faq-header {
  padding: 18px 22px; /* PADDING REDUCIDO: Tarjetas menos altas */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.sec-faq-q-text {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Iconos más finos */
.sec-faq-q-text i {
  font-size: 1.4rem; /* Tamaño optimizado */
  min-width: 30px;
  text-align: center;
}

/* Colores de iconos (Se mantienen los tuyos) */
.cat-pagos {
  color: #27ae60;
}
.cat-horarios {
  color: #2980b9;
}
.cat-certificacion {
  color: #f1c40f;
}
.cat-requisitos {
  color: #e67e22;
}
.cat-institucion {
  color: #092149;
}

.sec-faq-header span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #092149;
  font-size: 0.88rem; /* Fuente un poco más pequeña y técnica */
  line-height: 1.2;
}

.sec-faq-plus {
  font-size: 1.1rem;
  color: #b2cc18;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- CUERPO --- */
.sec-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 22px;
}

.sec-faq-body p {
  color: #64748b;
  font-size: 0.85rem; /* Texto de respuesta más fino */
  padding-bottom: 18px;
  line-height: 1.5;
}

/* ESTADO ACTIVO */
.sec-faq-item.active {
  box-shadow: 0 8px 20px rgba(9, 33, 73, 0.06);
  border-color: rgba(178, 204, 24, 0.3);
}
.sec-faq-item.active .sec-faq-plus {
  transform: rotate(45deg);
  color: #092149;
}
.sec-faq-item.active .sec-faq-body {
  max-height: 250px;
}

/* Animación de entrada */
.anim-slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease-out;
}
.reveal .anim-slide-up {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVO --- */
@media (max-width: 850px) {
  .sec-faq-grid {
    grid-template-columns: 1fr;
  }
  .sec-faq-main-container {
    padding: 60px 0;
  }
}

/* ================================================================================================
                                      SECCIÓN 13 - TE CONTACTAMOS
   ================================================================================================ */

.sec-cont {
  background-color: #e2e7ec;
  padding: 90px 0;
}

.sec-cont-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.sec-cont-grid {
  display: flex;
  flex-wrap: wrap;
  background: #092149;
  border-radius: 12px; /* Bordes de caja más sobrios */
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.sec-cont.sec-section--visible .sec-cont-grid {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGEN Y TITULO SUPERIOR */
.sec-cont-left {
  flex: 1;
  min-width: 500px;
  position: relative;
}
.sec-cont-img-wrapper {
  width: 100%;
  height: 100%;
  min-height: 480px;
  position: relative;
}
.sec-cont-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-cont-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(9, 33, 73, 0.7) 0%,
    rgba(9, 33, 73, 0) 60%
  );
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 26px;
}

.sec-cont-title {
  font-family: "Montserrat", sans-serif;
  color: #b2cc18;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}

/* FORMULARIO */
.sec-cont-right {
  flex: 1.2;
  min-width: 350px;
  padding: 55px 45px;
}

/* Campos de texto refinados */
.sec-cont-row {
  margin-bottom: 22px;
}

.sec-cont-label {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sec-cont-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e1e1e1; /* Línea de base muy suave */
  border-radius: 3px; /* BORDES MENOS REDONDOS */
  padding: 13px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}

/* ENFOQUE (FOCUS) PROFESIONAL Y SUTIL */
.sec-cont-input:focus {
  border: 1px solid #d4e257; /* Cambia al color lima sutilmente */
  box-shadow: 0 0 8px rgba(212, 226, 87, 0.2); /* Resplandor suave */
  background: #fff;
}

.sec-cont-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ORGANIZACIÓN DE CHECKS (Con separación marcada) */
.sec-cont-check-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0 35px 0; /* SEPARACIÓN DE LOS CAMPOS Y DEL BOTÓN */
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Divisor sutil */
}

.sec-cont-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #dee1d3;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  line-height: 1.4;
}

.sec-cont-check-item input {
  accent-color: #b2cc18;
  margin-top: 4px;
}
.sec-cont-check-item a {
  color: #b2cc18;
  text-decoration: underline;
  font-weight: 600;
}

/* BOTÓN */
.sec-cont-btn {
  width: 100%;
  background: #dee1d3;
  color: #092149;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  padding: 17px;
  border: none;
  border-radius: 8px; /* BORDES MENOS REDONDOS */
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.sec-cont-btn:hover {
  background: #b2cc18;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .sec-cont-grid {
    flex-direction: column;
  }
  .sec-cont-right {
    padding: 45px 30px;
  }
  .sec-cont-left {
    min-height: 280px;
  }
  .sec-cont-grid-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* =============================================================================================
                                SECCIÓN 14: ASESORIA PERSONALIZADA
   ============================================================================================= */

.asesoria_personalizada-container {
  padding: 100px 5%;
  background-color: #e2e7ec; /* Fondo uniforme con el sitio */
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.asesoria_personalizada-wrapper {
  width: 100%;
  max-width: 1000px;
}

/* Título con línea unificada */
.asesoria_personalizada-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #092149;
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.asesoria_personalizada-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b2cc18;
  margin: 15px auto 0;
  transform: scaleX(0);
  transition: transform 0.6s ease 0.3s;
}

/* Tarjeta Principal */
.asesoria_personalizada-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  box-shadow: 0 20px 40px rgba(9, 33, 73, 0.08);
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Animación al hacer scroll */
.asesoria_personalizada-container.reveal .asesoria_personalizada-title,
.asesoria_personalizada-container.reveal .asesoria_personalizada-card {
  opacity: 1;
  transform: translateY(0);
}

.asesoria_personalizada-container.reveal .asesoria_personalizada-title::after {
  transform: scaleX(1);
}

.asesoria_tag {
  font-family: "Montserrat", sans-serif;
  color: #b2cc18;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.asesoria_personalizada-info {
  flex: 1;
}

.asesoria_personalizada-texto {
  font-family: "Poppins", sans-serif;
  color: #44546e;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.asesoria_personalizada-contacto-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: #092149;
}

.asesoria_personalizada-contacto-link i {
  color: #b2cc18;
  font-size: 1.2rem;
}

.telefono-destacado {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #092149;
  text-decoration: none;
  transition: color 0.3s;
}

.telefono-destacado:hover {
  color: #b2cc18;
}

/* Botones Modernos */
.asesoria_personalizada-botones {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-asesoria {
  padding: 12px 25px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-call {
  background: #092149;
  color: white;
}
.btn-ws {
  background: #25d366;
  color: white;
}
.btn-mail {
  background: #f3f5f5;
  color: #092149;
}

.btn-asesoria:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Foto con diseño circular y decoración */
.asesoria_personalizada-foto-wrapper {
  position: relative;
  flex: 0 0 250px;
}

.foto-asesora {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.foto-decoracion {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #b2cc18;
  border-radius: 50%;
  top: 15px;
  right: -15px;
  z-index: 1;
  opacity: 0.3;
}

/* --- RESPONSIVE --- */
@media (max-width: 850px) {
  .asesoria_personalizada-card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 25px;
  }
  .asesoria_personalizada-contacto-link {
    justify-content: center;
  }
  .asesoria_personalizada-botones {
    justify-content: center;
  }
  .asesoria_personalizada-foto-wrapper {
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .btn-asesoria {
    width: 100%;
    justify-content: center;
  }
}

/* ===========================================================================================
                              SECCION 15 - MAS PROGRAMAS DE FORMACION
   =========================================================================================== */

.sec-mas_programas-section {
  padding: 100px 0;
  background-color: #e2e7ec; /* Fondo institucional */
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.sec-mas_programas-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- TITULO CON LINEA LIMA --- */
.sec-mas_programas-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #092149;
  text-align: center;
  margin-bottom: 20px;
}

.sec-mas_programas-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b2cc18;
  margin: 15px auto 0;
  transform: scaleX(0);
  transition: transform 0.6s ease 0.4s;
}

.reveal .sec-mas_programas-title::after {
  transform: scaleX(1);
}

/* --- FILTROS ESTILO PÍLDORA --- */
.sec-mas_programas-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 50px;
  flex-wrap: wrap;
}

.sec-mas_programas-btn {
  background: #092149;
  border: none;
  padding: 10px 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  border-radius: 50px;
  color: #ffffff;
  transition: 0.3s ease;
  letter-spacing: 1px;
}

.sec-mas_programas-btn.active,
.sec-mas_programas-btn:hover {
  background: #b2cc18;
  color: #092149;
}

/* --- GRID Y EFECTO FADE --- */
.sec-mas_programas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
  min-height: 520px; /* Evita saltos de página */
  transition: opacity 0.5s ease-in-out;
}

.sec-mas_programas-grid.fade-out {
  opacity: 0;
}

/* --- TARJETA DE PROGRAMA --- */
.sec-mas_programas-card {
  background: #ffffff;
  border-radius: 15px;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(9, 33, 73, 0.05);
  border: 0px solid rgba(0, 0, 0, 0.02);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.sec-mas_programas-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(9, 33, 73, 0.1);
  border-color: rgba(178, 204, 24, 0.3);
}

.sec-mas_programas-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #f1f5f9;
}

.sec-mas_programas-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sec-mas_programas-tag {
  font-size: 0.7rem;
  color: #b2cc18;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}

/* 3. Título más grande */
.sec-mas_programas-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #092149;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  min-height: 2.4em;
}

.sec-mas_programas-desc {
  font-size: 0.88rem;
  color: #44546e;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* 2. Ficha Técnica con Iconos */
.sec-mas_programas-meta {
  margin-bottom: 25px;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sec-mas_programas-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #092149;
}

.sec-mas_programas-meta-item i {
  color: #b2cc18;
  width: 18px;
  text-align: center;
}

.sec-mas_programas-meta-item strong {
  font-weight: 700;
}

/* Botón Ver Detalles */
.sec-mas_programas-link {
  background: #092149;
  color: #ffffff !important;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 8px;
  transition: 0.3s;
}

.sec-mas_programas-link:hover {
  background: #b2cc18;
  color: #092149 !important;
}

/* --- RESPONSIVO --- */
@media (max-width: 1024px) {
  .sec-mas_programas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .sec-mas_programas-grid {
    grid-template-columns: 1fr;
  }
  .sec-mas_programas-title {
    font-size: 1.8rem;
  }
}

/* Animación de entrada al scroll */
.anim-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal .anim-slide-up {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   BOTÓN VOLVER ARRIBA (BACK TO TOP)
   ========================================================================== */

.btn-top-scroll {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #092149; /* Navy Institucional */
  color: #b2cc18; /* Verde Lima */
  border: 2px solid #b2cc18;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Inicialmente oculto */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* Estado cuando el usuario hace scroll hacia abajo */
.btn-top-scroll.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-top-scroll:hover {
  background-color: #b2cc18;
  color: #092149;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 20px rgba(9, 33, 73, 0.2);
}

/* Pequeño indicador visual de que es interactivo */
.btn-top-scroll i {
  animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-1px);
  }
}

/* Ajuste para móviles */
@media (max-width: 768px) {
  .btn-top-scroll {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* =================================================================================================== 
                                              SECCION  FOOTER 
   ==================================================================================================== */

.ft-footer-area {
  background-color: #092149;
  position: relative;
  margin-top: 100px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.ft-main-content {
  padding-bottom: 70px;
}

/* --- 1. Newsletter Flotante --- */
.ft-newsletter-card {
  background: #ffffff;
  padding: 35px 45px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(-50%);
  z-index: 100;
  border-bottom: 5px solid #b2cc18;
}
.ft-news-title {
  font-family: "Montserrat", sans-serif;
  color: #092149;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0;
}
.ft-news-text {
  color: #64748b;
  font-size: 0.85rem;
  margin: 0;
}
.ft-btn-lime {
  background: #b2cc18 !important;
  color: #092149 !important;
  font-weight: 700;
  border-radius: 0 50px 50px 0 !important;
  border: none;
  padding: 0 25px;
}

/* --- 2. Brand Motto (Diferenciado tipográficamente) --- */
.ft-brand-motto {
  font-family: "Open", sans-serif; /* Cambio de fuente para diferenciar */
  font-weight: 500; /* Más delgado y elegante */
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.6);
  max-width: 340px;
  letter-spacing: 0.5px;
}

/* --- 3. Títulos de Columna (Color corregido a Blanco) --- */
.ft-col-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  color: #ffffff !important; /* Aseguramos blanco puro */
  display: inline-block;
}

.ft-col-title::after {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  background: #b2cc18;
  margin-top: 8px;
}

/* --- Enlaces --- */
.ft-links-list {
  list-style: none;
  padding: 0;
}
.ft-links-list li {
  margin-bottom: 12px;
}
.ft-links-list li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  text-decoration: none;
  transition: 0.3s;
}
.ft-links-list li a:hover {
  color: #b2cc18;
  padding-left: 5px;
}

/* --- SECCIÓN CONTACTO (Bajo las columnas) --- */
.ft-contact-horizontal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding-top: 0px;
}

.ft-contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.ft-contact-info-item i {
  color: #b2cc18;
  font-size: 1.1rem;
}

/* Botón Contacto */
.ft-btn-contact-small {
  background: transparent;
  border: 2px solid #b2cc18;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ft-btn-contact-small:hover {
  background: #b2cc18;
  color: #092149;
  text-decoration: none;
  transform: translateY(-2px);
}

/* --- Redes Sociales --- */
.ft-social-links {
  display: flex;
  gap: 12px;
}
.ft-social-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.ft-social-item:hover {
  background: #b2cc18;
  color: #092149;
  transform: translateY(-3px);
}

/* --- Barra Inferior --- */
.ft-copyright-bar {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.text-lime {
  color: #b2cc18;
}
.ft-legal-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: 0.3s;
  margin: 0 8px;
}
.ft-legal-links a:hover {
  color: #b2cc18;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .ft-main-content {
    text-align: center;
  }
  .ft-brand-motto {
    margin: 25px auto;
  }
  .ft-col-title::after {
    margin: 8px auto 0;
  }
  .ft-social-links,
  .ft-contact-horizontal {
    justify-content: center;
  }
  .ft-contact-horizontal {
    flex-direction: column;
    gap: 25px;
  }
  .ft-newsletter-card {
    transform: translateY(-10%);
    text-align: center;
    padding: 30px 20px;
  }
  .ft-btn-lime {
    border-radius: 50px !important;
    width: 100%;
    height: 50px;
    margin-top: 10px;
  }
}


