

html, body {
  background-color: #f7f7f7 !important;
}



/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f7f7f7; /* ✅ fondo gris claro como base */
}





/*Titulos secciones*/

.section h2 {
  color: #29abe2 !important;
  text-transform: uppercase;
}







/* Navbar */

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to right, #ffffff 40%, #00003f 80%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 15px 30px;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Esto es correcto */
  align-items: center;
  text-align: unset !important;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #07498f;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-links a:hover {
  transform: scale(1.1);
  color: #29abe2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links li {
  display: flex;
  align-items: center;
}

/* Botón hamburguesa */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #07498f;
}

/* Oculta el navbar principal al hacer scroll */
.navbar.hide {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Asegura la visibilidad por defecto */
.navbar {
  transition: transform 0.4s ease, opacity 0.4s ease;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998; /* Menor que navbarSecondary */
}

.cta-button {
  background-color: #29abe2;
  color: white !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  line-height: 1;
  margin-top: 2px;
}

.cta-button:hover {
  background-color: #ffffff;
  color: #000000 !important;
}



#navbarPrincipal .navbar-container {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}




/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 10000; /* 👈 Asegura que el ícono siempre esté encima */
    position: relative; /* 👈 Necesario para que z-index funcione */
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    display: none;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 9999; /* 👈 Asegura que el menú desplegado esté encima */
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links.show a {
    color: #00003f;
  }

  .nav-links.show a:hover {
    color: #29abe2;
    text-shadow: none;
  }

  .nav-links li {
    margin: 10px 0;
  }
}







/* Navbar secundaria organizada */

#navbarSecondary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 40%, rgba(0, 0, 63, 0.7) 80%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(-100%);
  opacity: 0;
}

#navbarSecondary.show {
  transform: translateY(0);
  opacity: 1;
}

.navbar-secondary .navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.navbar-secondary .logo img {
  height: 40px;
  width: auto;
}

.navbar-secondary .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar-secondary .nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-secondary .nav-links li a:hover {
  color: #29abe2;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}



@media (max-width: 768px) {
  #navbarSecondary .menu-toggle {
    display: block;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10000;
    position: relative;
  }

  #navbarSecondary .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    display: none;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 9999;
  }

  #navbarSecondary .nav-links.show {
    display: flex;
  }

  #navbarSecondary .nav-links a {
    color: #00003f;
  }

  #navbarSecondary .nav-links a:hover {
    color: #29abe2;
  }
}




















/* LOGO */



.logo img {
  height: 60px;
  width: auto;
  display: block;
}




/* HERO */

/* --- Hero base (si ya lo tienes, deja lo tuyo) --- */
.hero-maru{position:relative;height:100vh;min-height:540px;overflow:hidden}
.hero-maru__video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-maru__content{position:relative;z-index:2;height:100%;display:grid;place-items:center;padding:20px}

/* --- Panel “glass” que NO tapa el video, solo el texto --- */
.hero-maru__panel{
  max-width: 980px;
  width: min(92vw, 980px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px);
  border-radius: 18px;
  background: rgba(0,0,0,.22);            /* contraste sutil */
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(255,255,255,.15);
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,.25); /* solo alrededor del panel */
}

/* --- Tipografía y sombra para legibilidad --- */
.hero-maru__title{
  margin: 0 0 8px;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0,0,0,.6), 0 0 1px rgba(0,0,0,.6);
}
.hero-maru__subtitle{
  margin: 0 auto clamp(12px, 2.2vw, 20px);
  max-width: 820px;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.5;
  opacity: .95;
  text-shadow: 0 1px 12px rgba(0,0,0,.55);
}

/* --- Chips ordenados --- */
.hero-maru__chips{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center;
  margin: 0 0 clamp(12px, 2.2vw, 20px); padding:0; list-style:none;
}

/* === Chips (Transparencia, Apoyo real, etc.) === */
.hero-maru__chips li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(41,171,226,0.6);   /* Azul claro con 80% opacidad */
  border: 2px solid #29abe2;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}

.hero-maru__chips li:hover {
  background: rgba(255,255,255,0.85); /* Blanco semitransparente */
  color: #29abe2;
  border-color: #29abe2;
}


/* === Botón principal === */
.btn-maru {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  background: #00003f;                      /* Azul oscuro */
  color: #ffffff;                           /* Texto blanco */
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid #00003f;
}

.btn-maru:hover {
  background: #ffffff;                      /* Fondo blanco */
  color: #00003f;                           /* Texto azul oscuro */
  border-color: #00003f;                    /* Mantiene borde azul oscuro */
}





/* --- Responsive compacto --- */
@media (max-width:768px){
  .hero-maru{height:82vh}
  .hero-maru__panel{padding:16px}
  .hero-maru__chips li{font-size:13px}
}














/* Destinos */

.servicios-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-box {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 30px 20px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.servicio-imagen {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.servicio-box:hover {
  background-color: #00003f;
  color: white;
  transform: translateY(-10px);
}





/* Confianza 

.confianza {
  background: linear-gradient(to right, #ffffff 40%, #00003f 120%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.confianza p {
  font-size: 1.2rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  
}  */







/* Beneficios MARU FINANZAS (estilo Abanta) */

.benefits-section {
  padding: 40px 20px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background:
    url('../img/service3.png') no-repeat right center / contain,
   linear-gradient(to right, #ffffff 40%, #00003f 80%);
  background-blend-mode: normal;
}

.benefits-section h2 {
  font-size: 2rem;
  color: #00003f;
  margin-bottom: 40px;
  font-weight: bold;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.benefit {
  background-color: rgba(255, 255, 255, 0.8); /* Blanco con 80% de opacidad */
  border: 2px solid #ddd;
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.benefit:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.98); /* Hover más claro aún */
}

.benefit .icon {
  font-size: 28px;
  color: #29abe2;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit h3 {
  font-size: 18px;
  color: #333;
  text-align: left;
  margin: 0;
}

/* Imagen de celular */
.phones {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.phones img {
  width: 180px;
}

/* Responsive */
@media (max-width: 768px) {
  .benefit {
    flex-direction: column;
    text-align: center;
  }

  .benefit .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .benefit h3 {
    text-align: center;
  }
}



/* SECCIÓN: REQUISITOS PARA TU LIBRANZA */

.requirements_section {
  background-color: #ffffff;
  padding: 60px 0;
}

.requirements_section .container {
  max-width: 1140px;
  margin: 0 auto;
}

.requirements_section .heading_container h2 {
  color: #29abe2;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: left;
}

.requirements_list {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.requirements_list li {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 24px;
  margin-bottom: 20px;
  color: #000000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.requirements_section .requirements_list li i.fas.fa-check-circle {
  color: #28a745 !important;
  font-size: 22px !important;
  margin-right: 10px !important;
  flex-shrink: 0;
}


.requirements_list li:hover {
  transform: translateY(-4px);
  background-color: #e6f4fb;
}

.image_container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.requirements_image {
  max-height: 350px;
  width: auto;
  object-fit: contain;
}



/* Distribución en columnas */
.requirements_section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0px; /* Puedes ajustar el valor según el espacio que quieras */
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .requirements_section .heading_container h2 {
    font-size: 22px;
    text-align: center;
  }

  .requirements_list li {
    font-size: 15px;
    padding: 12px 16px;
  }

  .image_container {
    margin-bottom: 30px;
  }

  .requirements_image {
    max-width: 90%;
  }

  .benefit {
    background-color: rgba(255, 255, 255, 0.95); /* Menos transparente en móviles */
  }
}





















/* Formulario de Contacto */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background-color: #29abe2;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #1d90c2;
}

/* Footer */
.footer {
  background-color: #07498f;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-qr-img {
  max-width: 10px;
  margin-top: 5px;
  transition: transform 0.3s ease;
}

.footer-qr-img:hover {
  transform: scale(1.5);
}




/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .servicios-grid {
    flex-direction: column;
    align-items: center;
  }

  .servicio-box {
    width: 90%;
  }
}





/* .Pasos_section */


.pasos_section {
  text-align: center;
  background: linear-gradient(to right, #ffffff 40%, #00003f 80%);
  padding: 40px 0;
}

.pasos_section .heading_container2 h2 {
  color: #29abe2;
  font-weight: bold;
  font-size: 34px;
}

.pasos_section .heading_container2 p {
  color: #00003f;
}

.pasos_section .box {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  background-color: #ffffff;
}

.pasos_section .box::before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  right: -50px;
  bottom: -50px;
  background-color: #faf8fd;
  z-index: -1;
  border-radius: 100%;
  transition: all 0.3s;
}

.pasos_section .box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 125px;
  border-radius: 15px;
  transition: all 0.3s;
}

.pasos_section .box .img-box i {
  color: inherit;
}

.pasos_section .box .detail-box {
  margin-top: 15px;
}

.pasos_section .box .detail-box h5 {
  font-weight: bold;
  position: relative;
}

.pasos_section .box .detail-box p {
  color: inherit;
}

.pasos_section .box:hover {
  background-color: #00003f;
  color: #ffffff;
  transform: scale(1.05);
}

.pasos_section .box:hover::before {
  transform: scale(1);
}

.pasos_section .box:hover img {
  filter: invert(1);
}

.pasos_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.pasos_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #29abe2;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: 1px solid #ffffff;
  text-decoration: none;
}

.pasos_section .btn-box a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.pasos_section .row {
  display: flex;
  justify-content: center;
  gap: 30px; /* Espaciado horizontal entre los contenedores */
  flex-wrap: wrap;
}

.pasos_section .box {
  min-height: 320px; /* Aumenta la altura mínima */
  padding: 30px 20px; /* Más espacio vertical */
}


/* Responsive */
@media (max-width: 768px) {
  .pasos_section .box {
    margin-top: 20px;
    padding: 10px;
  }

  .pasos_section .box .img-box {
    height: 100px;
  }

  .pasos_section .box .img-box i {
    font-size: 2.5rem;
  }

  .pasos_section .box::before {
    width: 70px;
    height: 70px;
    right: -35px;
    bottom: -35px;
  }

  .pasos_section .box:hover {
    transform: scale(1.02);
  }

  .pasos_section .heading_container2 h2 {
    font-size: 1.5rem;
  }

  .pasos_section .heading_container2 p {
    font-size: 1rem;
  }

  .pasos_section .btn-box a {
    padding: 8px 30px;
  }
}








/* Preguntas */

/*
.pasos_section {
  text-align: center;
  background: linear-gradient(to right, #ffffff 40%, #00003f 80%);
  padding: 40px 0;
}*/

.faq_section {
  background: linear-gradient(to right, #ffffff 40%, #00003f 80%);
  padding: 60px 0;
}

.faq_section .heading_container2 h2 {
  color: #00003f;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.faq_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1800px;
  margin: 0 auto;
}

.faq_item {
  background-color: #ffffff;
  color: #2c2c2c;
  padding: 18px 25px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq_question,
.faq_answer {
  position: absolute;
  transition: opacity 0.3s ease;
  width: 100%;
  padding: 0 20px;
}

.faq_question {
  opacity: 1;
  z-index: 1;
}

.faq_item:hover .faq_question {
  opacity: 0;
}

.faq_answer {
  opacity: 0;
  z-index: 2;
  color: #ffffff;
}

.faq_item:hover .faq_answer {
  opacity: 1;
}

.faq_item:hover {
  background-color: #00003f; /* Azul oscuro */
  color: #ffffff;
}

@media (max-width: 768px) {
  .faq_grid {
    grid-template-columns: 1fr;
  }
}














/* Infos */

.info_section {
  background-color: #00003f;
  color: #ffffff;
  padding: 60px 20px 30px;
}

.info_section h3,
.info_section h4 {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.info_section a {
  color: #ffffff;
  text-decoration: none;
}

.info_section a:hover {
  color: #f8842b;
}

.info_section .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.info_section .footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.info_section .info_links {
  list-style: none;
  padding: 0;
}

.info_section .info_links li {
  margin-bottom: 10px;
}

.info_section .contact_link_box a {
  display: block;
  margin-bottom: 8px;
}

.info_section .footer-bottom {
  text-align: center;
  padding: 15px 0;
  background-color: #00003f;
  font-size: 14px;
  color: #ffffff;
  margin-top: 30px;
}









/* awhats */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

.whatsapp-float i {
  text-decoration: none;
  display: inline-block;
}

.whatsapp-float {
  text-decoration: none !important;
}




/* solicita movil*/

.solicita-float-left {
  display: none; /* Oculto por defecto */
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #29abe2;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  z-index: 998;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.solicita-float-left:hover {
  background-color: #c44594;
  transform: scale(1.05);
}

/* Mostrar solo en móviles */
@media (max-width: 768px) {
  .solicita-float-left {
    display: block;
  }
}








/* BENEFICIOS maru*/


.maru-benefits-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.benefits2-container h2 {
  font-size: 32px;
  font-weight: bold;
  color: #00003f;
  margin-bottom: 10px;
}

.benefits2-container p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

.benefits2-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.benefits2-item {
  width: 180px;
}

.benefits2-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  transition: transform 0.3s ease;
}

.benefits2-icon:hover {
  transform: scale(1.15);
}

.benefits2-item h4 {
  font-size: 18px;
  color: #00003f;
  margin-bottom: 8px;
}

.benefits2-item p {
  font-size: 15px;
  color: #333;
}





























/* PAGINA SOBRE*/




/*SOBRE nosotros*/

/* SOBRE nosotros */
.simple-hero {
  position: relative;
  height: 300px;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* efecto parallax */
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.7); /* Fondo oscuro translúcido */
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-hero-title {
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
















/*QUIENES SOMOS*/


.quienes-somos-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.containerquien2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.text-container {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.quienes-title {
  color: #07498f;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.text-container p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.img-quienes {
  max-width: 90%;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}









/* MISION-VISION */

.mv-section {
  background: linear-gradient(to right, #ffffff 40%, #00003f 80%);
  padding: 60px 20px;
  color: #ffffff;
}

.mv-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}

.mv-text,
.mv-image {
  flex: 1;
  min-width: 300px;
  padding: 10px;
}

.mv-text h2 {
  font-size: 30px;
  color: #07498f;
  font-weight: bold;
  margin-bottom: 15px;
}

.mv-text p {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.mv-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

/* Flechas Bootstrap */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  padding: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}


/* NUESTRAS POLÍTICAS */

.politicas-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.politicas-title {
  color: #07498f;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
}

.politicas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.politica-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: center;
}

.politica-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.politica-content {
  padding: 25px 20px;
  transition: color 0.3s ease;
}

.politica-content h3 {
  font-size: 18px;
  color: #00003f;
  margin-bottom: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.politica-content p {
  font-size: 16px;
  color: #333333;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.btn-politica {
  display: inline-block;
  background-color: #db9107;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* HOVER en tarjeta */
.politica-card:hover {
  transform: translateY(-10px);
  background-color: #00003f;
}

.politica-card:hover .politica-content h3,
.politica-card:hover .politica-content p {
  color: #ffffff;
}

.politica-card:hover .btn-politica {
  background-color: #ffffff;
  color: #00003f;
  border: 2px solid #db9107;
}

/* Responsive */

@media (max-width: 992px) {
  .politicas-grid {
    flex-direction: column;
    align-items: center;
  }

  .politica-card {
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .politicas-title {
    font-size: 28px;
  }

  .politica-content h3 {
    font-size: 16px;
  }

  .politica-content p {
    font-size: 15px;
  }

  .btn-politica {
    padding: 10px 18px;
    font-size: 15px;
  }
}




























/* PÁGINA PROYECTA*/

/* buscador*/

/* Paleta MARU */
:root{
  --maru-azul-oscuro:#00003f;
  --maru-azul-claro:#29abe2;
  --maru-texto:#00003f;
  --maru-gris-suave:#f1f3f6;
}

/* Contenedor general */
.proyecta-check{
  padding: 28px 16px 40px;
}
.proyecta-check__grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

/* IZQUIERDA */
.proyecta-left__card{
  background: var(--maru-gris-suave);
  border-radius: 16px;
  padding: 22px 20px;
}
.proyecta-check__lead{
  /* Texto más grande y legible */
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  color: var(--maru-texto);
  margin: 0;
  font-weight: 500;
}

/* DERECHA */
.proyecta-right__card{
  background: var(--maru-azul-oscuro);
  border-radius: 16px;
  padding: 18px;
}
.proyecta-form{
  display: grid;
  gap: 12px;
}
.proyecta-input{
  width: 100%;
  background: #fff;
  color: #111;
  border: 1px solid #e3e7ee;
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  font-size: 16px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.proyecta-input::placeholder{ color:#9aa3ad; }
.proyecta-input:focus{
  border-color: var(--maru-azul-claro);
  box-shadow: 0 0 0 3px rgba(41,171,226,.18);
}

/* Botón azul claro sobre fondo azul oscuro */
.proyecta-btn{
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
  width: 100%;
}
.proyecta-btn--light{
  background: var(--maru-azul-claro);
  color: #fff;
}
.proyecta-btn:hover{ transform: translateY(-1px); opacity: .96; }

/* Responsive */
@media (max-width: 992px){
  .proyecta-check__grid{ grid-template-columns: 1fr; }
}


















/* Simulador*/


/* ===== SIMULADOR DE CRÉDITO (MARU) ===== */

/* ===== SECCIÓN SIMULADOR DE CRÉDITO (MARU) ===== */
.maru-sim-section {
  background: linear-gradient(90deg, #ffffff 40%, #00003f 120%);
  padding: 40px 16px;
}

.maru-sim-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.maru-sim-title {
  text-align: center;
  color: #00003f;
  font-weight: 600;
  margin: 0 0 18px;
}

.maru-sim-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
}

@media (max-width: 900px) {
  .maru-sim-form {
      grid-template-columns: 1fr;
  }
}

.maru-sim-field label {
  display: block;
  color: #263142;
  font-size: 14px;
  margin-bottom: 8px;
}

.maru-sim-pill {
  background: #29abe2;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

.maru-sim-field input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0ecf6;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.maru-sim-field input:focus {
  border-color: #29abe2;
  box-shadow: 0 0 0 4px rgba(41, 171, 226, 0.15);
}

.maru-sim-btn {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 14px 22px;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  background: #29abe2;
  color: #fff;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.maru-sim-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.97);
}

/* ===== MODAL DEL SIMULADOR ===== */
.maru-sim-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.maru-sim-modal.is-open {
  display: block;
}

.maru-sim-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.maru-sim-modal__dialog {
  position: relative;
  max-width: 440px;
  margin: 60px auto;
  background: #fff;
  color: #0b2a4a;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.maru-sim-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #e8eef4;
  background: #f8fbff;
}

.maru-sim-modal__head h3 {
  margin: 0;
  font-weight: 700;
  color: #0b2a4a;
}

.maru-sim-modal__close {
  appearance: none;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #29abe2;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  line-height: 28px;
}

.maru-sim-modal__body {
  padding: 18px 22px 24px;
  text-align: center;
}

.maru-sim-modal__subtitle {
  margin: 6px 0 8px;
  font-size: 20px;
  color: #0b4a7a;
  font-weight: 700;
}

.maru-sim-modal__amount {
  margin: 0 0 8px;
  font-size: 44px;
  font-weight: 800;
  color: #0b4a7a;
}

.maru-sim-modal__details {
  margin: 6px 0 10px;
  font-size: 14px;
  color: #1f3e63;
}

.maru-sim-modal__note {
  font-size: 12px;
  color: #1f3e63;
  margin: 10px 0;
}

.maru-sim-modal__cta {
  margin-top: 10px;
  padding: 12px 16px;
  width: 100%;
  max-width: 260px;
  border: none;
  border-radius: 12px;
  background: #29abe2;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}















/* ===== Proyecta: CTA Pasos (fondo blanco) ===== */
/* ===== Proyecta: CTA Pasos (fondo blanco) ===== */
.proyecta-cta-pasos {
  background: #f8f8f8; /* color de tu plantilla */
  padding: 50px 18px;
}

.proyecta-cta-pasos__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
}

/* Izquierda */
.proyecta-cta-pasos__title {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  color: #00003f; /* azul oscuro */
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.proyecta-cta-pasos__actions {
  display: flex;
  justify-content: center; /* centrado bajo el título */
  margin-top: 10px;
}

/* Botón */
.proyecta-btn {
  display: inline-block;
  border: none;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
  text-align: center;
}

.proyecta-btn--primary {
  background: #00003f; /* azul claro */
  color: #fff;
  padding: 10px 18px;   /* más compacto */
  font-size: 16px;      /* un poco más pequeño */
  width: auto;          /* evita que se estire */
  min-width: 180px;     /* ancho mínimo para estética */
}

.proyecta-btn:hover {
  transform: translateY(-2px);
  opacity: .96;
}

/* Derecha: imagen */
.proyecta-cta-pasos__right {
  text-align: center;
}

.proyecta-cta-pasos__img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  
}

/* Responsive */
@media (max-width: 992px) {
  .proyecta-cta-pasos__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .proyecta-cta-pasos__actions {
    justify-content: center;
  }
}





















/* --- MODAL GENERAL --- */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* --- CONTENIDO DEL MODAL --- */
.modal-content {
  background-color: #ffffff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  position: relative;
  text-align: center;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #07498f;
}

.modal-content p {
  font-size: 16px;
  color: #333333;
  margin: 10px 0;
}

/* --- ENLACE DE DESCARGA --- */
.modal-content a {
  display: inline-block;
  font-size: 20px; /* ← aumentamos tamaño */
  font-weight: bold;
  color: #07498f;
  text-decoration: none; /* sin subrayado */
  margin-top: 10px;
  transition: color 0.3s ease;
}

.modal-content a:hover {
  color: #29abe2;
}
/* --- BOTÓN CERRAR --- */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close:hover {
  color: #000;
}

/* --- BOTÓN CONTINUAR --- */
.boton-continuar {
  margin-top: 30px;
}

.continue-btn {
  background-color: #29abe2;
  color: #ffffff !important;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
  font-size: 16px;
}

.continue-btn:hover {
  background-color: #07498f;
  transform: scale(1.05);
}



















