        :root {
           scroll-padding-top: 70px;
           --gris-fondo: #6b6b6b;
           --amarillo-barra: #f4b400;

           --verde-1: #6fb2a5;
           --verde-2: #4fa3a1;
           --verde-3: #3f8f86;
           --verde-4: #2f7a6e;

           --blanco: #ffffff;
           --negro: #000000;
        }

        *,
        *::before,
        *::after {
           box-sizing: border-box;
        }

        html,
        body {
           margin: 0;
        }

        img {
           display: block;
           max-width: 100%;
        }

        .container {
           width: min(100%, 1200px);
           margin: 0 auto;
           padding-left: 16px;
           padding-right: 16px;
        }

        .row {
           --gutter-x: 1.5rem;
           --gutter-y: 0;
           display: flex;
           flex-wrap: wrap;
           margin-left: calc(var(--gutter-x) * -0.5);
           margin-right: calc(var(--gutter-x) * -0.5);
           margin-top: calc(var(--gutter-y) * -1);
        }

        .row > * {
           padding-left: calc(var(--gutter-x) * 0.5);
           padding-right: calc(var(--gutter-x) * 0.5);
           margin-top: var(--gutter-y);
           width: 100%;
        }

        .g-2 {
           --gutter-x: 0.5rem;
           --gutter-y: 0.5rem;
        }

        .g-3 {
           --gutter-x: 1rem;
           --gutter-y: 1rem;
        }

        .g-4 {
           --gutter-x: 1.5rem;
           --gutter-y: 1.5rem;
        }

        .col-12,
        .col-sm-12,
        .col-md-4,
        .col-md-6,
        .col-lg-4 {
           flex: 0 0 auto;
           width: 100%;
        }

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

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

        .h-100 {
           height: 100%;
        }

        .my-4 {
           margin-top: 1.5rem;
           margin-bottom: 1.5rem;
        }

        .my-5 {
           margin-top: 3rem;
           margin-bottom: 3rem;
        }

        .mt-3 {
           margin-top: 1rem;
        }

        .mb-0 {
           margin-bottom: 0;
        }

        .px-3 {
           padding-left: 1rem;
           padding-right: 1rem;
        }

        .px-5 {
           padding-left: 3rem;
           padding-right: 3rem;
        }

        .py-5 {
           padding-top: 3rem;
           padding-bottom: 3rem;
        }

        .text-center {
           text-align: center !important;
        }

        .text-right {
           text-align: right;
        }

        .text-dark {
           color: #212529;
        }

        .text-decoration-none {
           text-decoration: none;
        }

        .card {
           position: relative;
           display: flex;
           flex-direction: column;
           min-width: 0;
           border-radius: 0.75rem;
           overflow: hidden;
        }

        .card-body {
           flex: 1 1 auto;
           padding: 1rem;
        }

        .card-img-top {
           display: block;
           width: 100%;
           height: auto;
        }

        .ratio {
           position: relative;
           width: 100%;
        }

        .ratio::before {
           content: "";
           display: block;
           padding-top: 56.25%;
        }

        .ratio > * {
           position: absolute;
           inset: 0;
           width: 100%;
           height: 100%;
        }

        .carousel {
           position: relative;
        }

        .carousel-inner {
           position: relative;
           width: 100%;
           overflow: hidden;
        }

        .carousel-item {
           display: none;
           position: relative;
           float: left;
           width: 100%;
           margin-right: -100%;
           backface-visibility: hidden;
           transition: transform 0.6s ease-in-out;
        }

        .carousel-item.active,
        .carousel-item-next,
        .carousel-item-prev {
           display: block;
        }

        .carousel-item-next:not(.carousel-item-start),
        .active.carousel-item-end {
           transform: translateX(100%);
        }

        .carousel-item-prev:not(.carousel-item-end),
        .active.carousel-item-start {
           transform: translateX(-100%);
        }

        .carousel-item-next.carousel-item-start,
        .carousel-item-prev.carousel-item-end {
           transform: translateX(0);
        }

        .carousel-control-prev,
        .carousel-control-next {
           position: absolute;
           top: 50%;
           transform: translateY(-50%);
           z-index: 2;
           width: 3rem;
           height: 3rem;
           display: flex;
           align-items: center;
           justify-content: center;
           border: 0;
           border-radius: 999px;
           background: rgba(255, 255, 255, 0.18);
           cursor: pointer;
        }

        .carousel-control-prev {
           left: 1rem;
        }

        .carousel-control-next {
           right: 1rem;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
           display: block;
           width: 0.9rem;
           height: 0.9rem;
           border-top: 2px solid #fff;
           border-right: 2px solid #fff;
        }

        .carousel-control-prev-icon {
           transform: rotate(-135deg);
        }

        .carousel-control-next-icon {
           transform: rotate(45deg);
        }

        .video-embed {
           overflow: hidden;
           border-radius: 16px;
           background: #111;
           box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
        }

        .video-placeholder {
           display: flex;
           flex-direction: column;
           align-items: center;
           justify-content: center;
           gap: 1rem;
           border: 0;
           color: #fff;
           cursor: pointer;
           background-position: center;
           background-size: cover;
           background-repeat: no-repeat;
        }

        .video-placeholder__play {
           width: 78px;
           height: 56px;
           border-radius: 18px;
           background: #ea0029;
           position: relative;
           box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
        }

        .video-placeholder__play::before {
           content: "";
           position: absolute;
           top: 16px;
           left: 31px;
           border-style: solid;
           border-width: 12px 0 12px 20px;
           border-color: transparent transparent transparent #fff;
        }

        .video-placeholder__label {
           font-size: 1rem;
           font-weight: 700;
           letter-spacing: 0.02em;
        }

        @media (min-width: 576px) {
           .col-sm-12 {
              width: 100%;
           }
        }

        @media (min-width: 768px) {
           .col-md-4 {
              width: 33.3333%;
           }

           .col-md-6 {
              width: 50%;
           }
        }

        @media (min-width: 992px) {
           .col-lg-4 {
              width: 33.3333%;
           }
        }

        /* Fondo general */
        body {
           background: url('./../img/Fondos_LP.webp') center center/cover no-repeat fixed;
           font-family: Arial, Helvetica, sans-serif;
           color: #ea0029;
		   
        }







		
		/*espacio entre secciones*/

	

        .bloque-final {
           background: url('./../img/back.webp') center center/cover no-repeat fixed;
        }

        /* Overlay suave estilo Habitat */
        .over {
           background: rgba(255, 255, 255, 0.9),);
        }

        .overlay {
           padding: 0;
        }

        .bloque-final {
           background-color: var(--gris-fondo);
           color: var(--negro);
           font-family: Arial, Helvetica, sans-serif;
        }

        .tarjeta ul {
           list-style: none;
           padding-left: 0;
           margin: 0;
        }

        .tarjeta h3 {
           color: #F1B634;
           text-align: start !important;
        }

        .barra-superior {
           height: 12px;
           background-color: var(--amarillo-barra);
        }

        .contenedor {
           max-width: 1200px;
           margin: 0 auto;
           padding: 40px 20px;
           justify-self: anchor-center;
        }

        h2 {
           text-align: center;
           margin-bottom: 40px;
           font-weight: bold;
           text-transform: uppercase;
		   color:#ea0029;
        }

        a {
           color: #2a7a6b;
        }

        h3 {
           text-align: center;
           margin-bottom: 30px;
           color: #00000;
           font-weight: 600;

        }

        h4 {
           font-size: 20px;
           font-weight: bold;

        }

        .columnas {
           display: grid;
           grid-template-columns: repeat(2, 1fr);
           margin: auto
        }

        .card {
           box-shadow: 0 0.6px 10px rgb(0 0 0 / 5%);
        }

        .text-gray {
           text-align: center !important;
           color: #9E9E9E;
           margin-top: 1rem;
        }

        .card:nth-child(2) {
           background-color: var(--verde-2);
        }

        .card h3 {
           margin-bottom: 15px;
           font-size: 1.1rem;
        }

        .card ul {
           padding-left: 18px;
        }

        .card li {
           margin-bottom: 8px;
        }

        .logos {
           display: flex;
           justify-content: center;
           gap: 40px;
           margin: 40px 0 20px;
        }

        .logo {
           font-weight: bold;
        }

        .footer-text {
           text-align: center;
           font-size: 0.9rem;
           color: #fff;
        }

        a.footer-text {
           color: #fff;
        }

        .menu.scrolled {
           background-color: rgba(240, 30, 32, 0.789);
           /* cambia el color aquí */
           box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }


        h1,
        h2 {
           color: #1c1c1c;
           font-weight: 700;
           text-align: center;
        }

        /* Línea de tiempo */
        .timeline {
           border-left: 4px solid #2a7a6b;
           padding-left: 25px;
           margin-left: 20px;
        }

        .timeline-item {
           margin-bottom: 25px;
           position: relative;
        }

        .timeline-item::before {
           content: "";
           width: 18px;
           height: 18px;
           background: #2a7a6b;
           border-radius: 50%;
           position: absolute;
           left: -33px;
           top: 5px;
        }

        /* Testimonios */
        .testimonial-card {
           background: white;
           border-left: 6px solid #2a7a6b;
           border-radius: 8px;
           padding: 20px;
        }

        /* FAQs */
        .accordion-button {
           background: #2a7a6b;
           color: white;
        }

        .accordion-button:not(.collapsed) {
           background: #2a7a6b;
           color: white;
        }

        /* Bloque Instagram */
        .ig-card img {
           width: 100%;
           border-radius: 12px;
        }

        /* Botones */
        .btn-primary {
           background-color: #2a7a6b !important;
           border-color: #2a7a6b !important;
        }

        .btn-back {
           text-align: center;
        }

        .btn-primary:hover {
           background-color: #4CAF50 !important;
           border-color: #4CAF50 !important;
        }

        .hero-banner {
           position: relative;
           display: inline-block;
        }

        .hero-buttons {
           position: absolute;
           align-self: center;
           bottom: 40px;
           z-index: 1;
           display: flex;
           gap: 15px;
        }

        .hero-btn {
           padding: 12px 30px;
           border: 2px solid #2a7a6b94;
           color: #fff;
           text-decoration: none;
           font-weight: 600;
           background: #2a7a6b;
           border-radius: 40px;
           transition: 0.2s;
           box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

        .hero-btn:hover {
           background: rgba(63, 63, 63, 0.771);
           color: white;
        }

        /* Fondo con imagen */
        .cifras-section {
           background-image: linear-gradient(rgba(240,30,32,1), rgba(165,0,3,0.9));
           mix-blend-mode: multiply;
           color: #333;
		   height:450px;
        }


        /* Cada cuadro de cifra */
        .cifra-box {
           /* gris del wireframe */
           height: auto;
           border-radius: 4px;
           display: flex;
           justify-content: center;
           align-items: center;
           color: white;
           font-size: 2.2rem;
           font-weight: 700;
           transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cifra-box img {
           /* gris del wireframe */
           max-width: 100%;
        }

        .cifra-box:hover {
           transform: scale(1.05);
        }

        blockquote {
           font-family: "Museo Sans Condensed", sans-serif;
           font-size: 1.5rem;
           font-weight: 600;
           border-left: 4px solid #ccc;
           padding-left: 2rem;
           padding-right: 1rem;
           margin: 2rem 0;
           color: #333;
        }

        .quote-text {
           font-family: "Museo Sans Condensed", sans-serif;
           font-size: 1.5rem;
           font-weight: 600;
           padding-left: 2rem;
           padding-right: 2rem;
           margin: 2rem 0;
           color: #2a7a6b;
        }

        .quote-icon::before {
           content: "“";
           font-size: 4rem;
           line-height: 0;
           vertical-align: text-bottom;
           margin-right: 0.5rem;
           color: #00947F;
        }

        .quote-icon::after {
           content: "”";
           font-size: 4rem;
           line-height: 0;
           vertical-align: text-bottom;
           margin-right: 0.5rem;
           color: #00947F;
        }

        .logo-sdht {
           filter: drop-shadow(2px 4px 6px black);
           max-width: 100%;
        }

        .card-hover {
           aspect-ratio: 7 / 9;
           max-width: 300px;
           min-height: 300px;
           position: relative;
           color: white;
           cursor: pointer;
           border: none;
           border-radius: 0.5rem;
           background-size: cover;
           background-position: center;
           transition: transform 0.3s ease;
        }

        .img-hero-banner {
           width: 100%;
           height: 100vh;
           object-fit: cover;
           object-position: center;
        }

        .img-banner {
           width: 100%;
           object-position: center;
        }
		.cifra-box-movil {
           display: none;
        }

        .img-hero-banner-movil {
           display: none;
        }

        .firma-secretaria {
           max-width: 350px;
        }

        .card-link {
           text-decoration: none;
           color: #fff;
           font-size: 1.5rem;
           font-weight: bold;
           text-align: center;
        }

        .card-hover::before {
           content: '';
           position: absolute;
           inset: 0;
           transition: background 0.3s ease;
        }

        .card-hover:hover::before {
           background: rgba(0, 0, 0, 0.6);
        }

        .card-hover .card-title {
           position: absolute;
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%);
           opacity: 0;
           transition: opacity 0.3s ease;
           font-size: 1.5rem;
           font-weight: bold;
           text-align: center;
        }

        .card-title a {
           color: #fff;
           font-size: 1.5rem;
           font-weight: bold;
           text-align: center;
        }

        .card-title a:hover,
        .card-title a:active,
        .card-title a:focus {
           font-size: 1.5rem;
           font-weight: bold;
           text-align: center;
           color: #fff;
           text-decoration: none;
        }

        .card-hover:hover .card-title {
           opacity: 1;
        }

        .backinno {
           background-color: #F5b531;
        }

        .tag {
           font-size: 0.75rem;
           font-weight: 600;
           margin-right: 2rem;
           background: #f4b400;
           padding: 0.5rem;
           border-radius: 0.1rem;
        }

        .card-text {
           height: 110px;
        }

        .nav-pills .nav-link.active,
        .nav-pills .show>.nav-link {
           color: #fff;
           background-color: #00947F;
        }

        .link {
           display: inline-flex;
           align-items: center;
           text-decoration: none;
           color: #000;
           padding: 4px;
        }

        .link::before {
           content: "";
           display: inline-block;
           width: 16px;
           height: 16px;
           margin-right: 8px;
           background-size: contain;
           background-repeat: no-repeat;
        }

        .card {
           background-color: #ffffff;

        }

        .card img {
           max-height: 250px;
        }

        .nav.nav-pills {
           color: #fff;
           background-color: #f01e20;
           padding: 0px;
        }

        .backinno {
           background-color: #f01e20;
        }

        .nav-pills .nav-link.active,
        .nav-pills .show>.nav-link {
           color: #fff;
           background-color: #f01e20;
        }

        .link {
           display: inline-flex;
           align-items: center;
           text-decoration: none;
           color: #000;
           padding: 4px;
        }

        .link::before {
           content: "";
           display: inline-block;
           width: 16px;
           height: 16px;
           margin-right: 8px;
           background-size: contain;
           background-repeat: no-repeat;
        }

        .pdf::before {
           background-image: url('/core/themes/seven/images/classy/icons/application-pdf.png');
        }

        .excel::before {
           background-image: url('/core/themes/seven/images/classy/icons/x-office-spreadsheet.png');
        }

        .word::before {
           background-image: url('/core/themes/seven/images/classy/icons/x-office-document.png');
        }

        .card-menu {
           align-items: flex-start;
           padding: 2em 0.7em 2em;
           gap: 10px;
           width: 311px;
           min-height: 144px !important;
           background: #ffffff;
           box-shadow: 1px 1px 4px rgb(0 0 0 / 25%);
           border-radius: 8px;
           margin: 10px 20px 10px 20px;
           align-items: center;
        }

        .card-menu:hover {
           background: #00947F;
        }

        .card-menu:hover svg {
           color: #ffffff;
        }

        .card-menu:visited {
           color: #ffffff;
        }

        .card-menu a {
           color: #f01e20 !important;
           font-style: normal;
           font-weight: 800;
           font-size: 16px;
           line-height: 22px;
           text-align: center;
        }

        .card-menu:hover a {
           color: #ffffff !important;
           text-align: center;
        }

        .card-menu svg {
           color: #00947F;
           display: block;
           text-align: center;
           margin: auto;
           font-size: 16px;
           width: auto;
           height: 100px;
           margin-top: 10px;
        }

        .card-menu:hover img {
           -webkit-filter: invert(1);
           filter: invert(1);
        }

        .texto-secretaria {
           align-content: center !important;
           text-align: left;
        }

        .imagen-circular-container {
           /* Define un tamaño fijo para el contenedor del círculo */
           width: 130px;
           height: 130px;
           /* Hace el contenedor un círculo */
           border-radius: 50%;
           /* Oculta las partes de la imagen que se salen del círculo */
           overflow: hidden;
           /* Centra el contenedor en la página */
           margin: 20px auto;
           padding: 0px;
        }



/* Formulario dentro del hero */
.hero-form {
  padding: 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
}

.hero-form h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-form .intro {
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero-form label {
  font-size: 12px;
  margin-top: 6px;
  margin-bottom: 3px;
}

.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"] {
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 6px;
}

.hero-form .check-opcion {
  font-size: 12px;
  gap: 6px;
  margin-bottom: 6px;
}

.hero-form .check-opcion {
  font-size: 12px;
  gap: 6px;
  margin-bottom: 6px;
}

.hero-form .check-opcion {
  font-size: 12px;
  gap: 6px;
  margin-bottom: 6px;
}

@media (max-width: 768px) {

  .hero-form {
    max-width: 100%;
    padding: 25px;
  }

  .hero-form h2 {
    font-size: 24px;
  }
  .hero_nn {
 border-bottom: solid 3px #fff;
  }

  .cifras-section {

border-top: solid 3px #fff;

  }
}














/* LINEA AMARILLA */

.lineaAm{
    width:300px;
    height:4px;
    background:#fbc02d;
    margin:15px auto 0 auto;
    border-radius:3px;
}

/* Sección imágenes */

.imagenesBogF{
  padding:50px 20%;
  display:flex;
  gap:30px;
}

.imagenesBogF2{
  padding:1px 20%;
  display:flex;
  gap:30px;
}
.fila1BogF{
  justify-content:space-between;
}

.fila2BogF{
  justify-content:center;
}

/* imágenes */

.imagenesBogF img{
  width:400px;
  opacity:0;
  transform:translateY(80px);
  transition: all .8s ease;
}
.imagenesBogF2 img{
  width:700px;
  opacity:0;
  transform:translateY(80px);
  transition: all .8s ease;
}

/* cuando aparece */

.imagenesBogF img.visible{
  opacity:1;
  transform:translateY(0);
}


.imagenesBogF2 img.visible{
  opacity:1;
  transform:translateY(0);
}


/* Mini Cards  -- MiniC */

/* SECCIÓN */

.seccionMiniC{
    max-width:1200px;
    margin:auto;
    padding:70px 20px;
    
}

/* ENCABEZADO */

.encabezadoMiniC{
    text-align:center;
    margin-bottom:50px;
}

.encabezadoMiniC h2{
    font-size:32px;
    margin-bottom:10px;
}

.encabezadoMiniC p{
    font-size:16px;
    opacity:0.9;
}

/* CONTENEDOR */

.contenedorMiniC{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;

    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:25px;

    color:white; /* TODO el texto dentro será blanco */
}

/* TARJETAS */

.cardMiniC{
    background:#f01e20;
    padding:30px;
    border-radius:15px;
    position:relative;

    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

/* ICONO */

.iconoMiniC{
    font-size:30px;
    margin-bottom:15px;
}

/* TITULO */

.cardMiniC h3{
    margin:10px 0;
    font-size:20px;
}

/* TEXTO */

.cardMiniC p{
    font-size:14px;
    line-height:1.5;
}

/* BOTON */

.btnMiniC{
    margin-top:20px;
    padding:10px 18px;
    border:none;
    border-radius:25px;
    background:#fbc02d;
    color:#333;
    font-weight:bold;
    cursor:pointer;
}

/* ANIMACIÓN SOLO PRIMER BLOQUE */

.card-hoverMiniC{
    transition: transform .25s ease, box-shadow .25s ease;
}

.card-hoverMiniC:hover{
    transform: translateY(-6px);
    box-shadow:0 14px 30px rgba(0,0,0,0.2);
}

/* RESPONSIVE */

@media(max-width:900px){
.contenedorMiniC{
    grid-template-columns: repeat(2,1fr);
}
}

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






/* SECCIÓN CON IMAGEN FULLSCREEN */

.formularioInfo{
width:100%;
min-height:100vh;

 
background-image:url('./../img/back.webp'); /* coloca aquí tu imagen */
background-size:cover;
background-position:center;
background-repeat:no-repeat;

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

padding:60px 20px;
margin-bottom: 20px;
}

/* CONTENEDOR ROJO */

.contenedorInfo{
background:#f01e20;
max-width:900px;
width:100%;

padding:50px;

border-radius:25px;

color:white;
}

.formulario{
	/*background: white;*/
	
}

/* TITULO */

.contenedorInfo h2{
font-size:36px;
margin-bottom:20px;
font-weight:bold;
color: #000000;
}

/* TEXTO INTRO */

.intro{
margin-bottom:35px;
line-height:1.6;
opacity:0.95;
}

/* ITEMS */

.item{
display:flex;
align-items:flex-start;
gap:20px;
margin:20px 0;
}

/* CHECK */

.check{
min-width:60px;
height:60px;

background:white;
color:#d32f2f;

border-radius:50%;

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

font-size:28px;
font-weight:bold;
}

/* TEXTO */

.texto{
line-height:1.6;
}

.texto ul{
margin-top:10px;
padding-left:20px;
}

.texto li{
margin:5px 0;
}

/* LINEA DIVISORA */

hr{
border:none;
border-top:1px solid rgba(255,255,255,0.3);
margin:25px 0;
}

/* RESPONSIVE */

@media(max-width:768px){

.contenedorInfo{
padding:35px;
}



.container iframe{
	
	height:100%;
}

.check{
min-width:50px;
height:50px;
font-size:22px;
}

.contenedorInfo h2{
font-size:28px;

}

}



/* ===============================
 LAYOUT HERO + SLIDER + FORM
=============================== */

.hero-form-row {
  display: flex;
  width: 100%;
  height: 77vh;
  background-color: #f01e20;
  padding-top:3em;
}

/* IZQUIERDA 2/3 */
.hero-slider-col {
  width: 75%;
  display: flex;
  flex-direction: column;
}

/* HERO */
.hero_nn {
  width: 100%;
  height: 93vh;
  overflow: hidden;
}

.hero_nn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-embed iframe {
  border: 0;
}

/* SLIDER */
.cifras-section {
  flex: 1;
  background: linear-gradient(180deg, #f01e20, #a50003);
  padding: 20px;
}

/* DERECHA 1/3 */
.form-col {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CAJA FORM */
.form-box {
  background: #f01e20;
  color: white;
  width: 90%;
  max-width: 360px;
  padding: 30px;
  border-radius: 20px;
}

/* FORM COMPACTO (SIN SCROLL) */
.form-box h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: white;
}

.form-box .intro {
  font-size: 13px;
  margin-bottom: 14px;
}

.formulario {
  display: flex;
  flex-direction: column;
}

.formulario label {
  font-size: 12px;
  margin-top: 6px;
}

.formulario input {
  padding: 8px;
  font-size: 12px;
  border-radius: 6px;
  border: none;
}

.check-opcion {
  font-size: 12px;
  margin-top: 4px;
}

.btn-enviar {
  margin-top: 16px;
  margin-bottom: 10px;
  padding: 12px;
  min-height: 44px;
  font-size: 14px;
  border: none;
  border-radius: 20px;
  background: #fbc02d;
  font-weight: bold;
  cursor: pointer;
  display: block;
  width: 100%;
}

/* ===============================
 MOBILE
=============================== */
@media (max-width: 768px) {

  .hero-form-row {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .hero-slider-col {
    width: 100%;
    height: auto;
  }

  .form-col {
    width: 100%;
    height: auto;
    min-height: 80vh;
    padding: 30px 15px;
    overflow-y: visible;
  }

  .hero_nn {
    height: 21vh;
  }

  .form-box {
    max-height: none;
    overflow-y: visible;
  }
}








        /* CSS para la imagen dentro del contenedor */
        .imagen-circular-container img {
           /* Asegura que la imagen ocupe el 100% del ancho del contenedor */
           width: 100%;
           height: 100%;
           /* Esto es CRUCIAL: Mantiene la relación de aspecto y cubre el área. 
               Funciona como un zoom y centra la "cara" de la imagen */
           object-fit: cover;

           /* Si la parte que quieres centrar no es el centro natural de la imagen, 
               puedes ajustarlo así (ej: 50% centro, 20% más arriba) */
           /* object-position: 50% 20%; */
        }

        /* Puedes añadir un sombreado para darle más profundidad */

        .accordion {
           --bs-accordion-btn-focus-border-color: #009688;
           --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem #009688;
        }

        /* styles.css */

        .banner {
           position: relative;
           width: 100%;
           height: auto;
           background: linear-gradient(rgb(0 0 0 / 39%), rgb(0 0 0 / 47%));
           display: flex;
           flex-direction: column;
           overflow: hidden;
           margin-bottom: 1em;
        }

        .banner-content {
           position: relative;
           z-index: 2;
           width: 100%;
           text-align: left;
           /* Alinea el texto a la izquierda */
        }

        .banner-content h1 {
           font-size: 8rem;
           text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
           color: #f7a820;
           max-width: 40%;
           text-align: left;
           margin: 10% 5%;
        }

        .banner-content span {
           font-weight: 100;
           color: #fff;
        }

        .highlight {
           color: #FFC107;
           /* Amarillo destacando "Línea 1" */
        }

        .metro-img {
           position: absolute;
           bottom: -15px;
           right: 0;
           max-width: 935px;
           width: auto;
           height: auto;
           z-index: 3;
        }

        .next-section {
           background: #f4f4f4;
           padding: 50px;
           text-align: center;
        }

        /*MENÚ*/

        .menu {
           transition:
              background-color 0.4s ease,
              box-shadow 0.4s ease,
              backdrop-filter 0.4s ease;
           position: fixed;
           top: 0;
           width: 100%;
           display: flex;
           justify-content: space-between;
           align-items: center;
           background: linear-gradient(to bottom,
                 rgba(240, 30, 32, 0.12) 0%,
                 rgba(240, 30, 32, 0.10) 30%,
                 rgba(240, 30, 32, 0.07) 55%,
                 rgba(240, 30, 32, 0.04) 75%,
                 rgba(240, 30, 32, 0.02) 90%,
                 rgba(240, 30, 32, 0) 120%);

           backdrop-filter: blur(16px);
           padding: 18px 40px;
           z-index: 3;
           text-transform: uppercase;
        }

        .menu ul {
           list-style: none;
           display: flex;
           justify-content: space-evenly;
           flex-grow: 1;
           margin: 0;
           padding: 0;
        }

        .menu ul li a {
           color: white;
           text-decoration: none;
           font-size: 1rem;
           letter-spacing: 1px;
        }

        /* Aumentamos el tamaño del logo */
        .logo img {
           height: 100px;
           z-index: 1;
           position: absolute;
           top: 5%;
           right: 2%;
        }

        /* MENÚ HAMBURGUESA EN MÓVIL */
        .menu-toggle {
           display: none;
           /* Oculto en pantallas grandes */
           flex-direction: column;
           cursor: pointer;
        }

        .menu-toggle div {
           width: 25px;
           height: 3px;
           background-color: white;
           margin: 4px;
           border-radius: 2px;
        }

        .instagram-gallery {
           text-align: center;
           padding: 40px 20px;
        }

        .gallery-title {
           font-size: 2.5rem;
           font-weight: bold;
           text-transform: uppercase;
           margin-bottom: 20px;
        }

        /* Configuración de la grilla */
        .ig-grid-container {
           display: grid;
           grid-template-columns: repeat(4, 1fr);
           gap: 10px;
           max-width: 1200px;
           margin: auto;
           grid-auto-flow: dense;
        }


        .ig-grid-item {
           display: block;
           overflow: hidden;
           border-radius: 10px;
        }

        .ig-grid-item img {
           width: 100%;
           height: 100%;
           object-fit: cover;
           transition: transform 0.3s ease-in-out;
        }


        .ig-grid-item:hover img {
           transform: scale(1.05);
        }

        /* Botón de Instagram */
        .instagram-button {
           display: inline-flex;
           align-items: center;
           justify-content: center;
           color: white;
           font-size: 1.5rem;
           font-weight: bold;
           text-transform: uppercase;
           padding: 15px 25px;
           margin-top: 20px;
           text-decoration: none;
           border-radius: 8px;
           transition: background 0.3s, transform 0.2s;
           box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
        }

        .instagram-button img {
           height: 20px;
           margin-right: 10px;
           /* Espacio entre logo y texto */
        }

        .instagram-button:hover {
           transform: scale(1.05);
        }
		
		/* RESPONSIVO: fdo rojo */
        @media (max-width: 768px) {
		
		.cifras-section {
           		   height:600px;
        }
		
		
		
		}
		

        /* RESPONSIVO: Ajusta columnas y títulos para pantallas pequeñas */
        @media (max-width: 768px) {
           .img-hero-banner {
              display: none;
           }

           .img-banner {
              display: none;
           }
		   
		   
		   .cifra-box {
			   
			   display: none;
		   }
		   .cifra-box-movil {
              display: block;
              width: 100%;
              height: auto;
           }
		   

           .card img {
              max-width: 100%;
              height: auto;
              max-height: 100% !important;
           }

           .img-hero-banner-movil {
              display: block;
              width: 100%;
              height: auto;
           }

           .texto-secretaria {
              align-content: center !important;
              text-align: center;
           }

           .gallery-title {
              font-size: 2rem;
           }

           .ig-grid-container {
              grid-template-columns: repeat(2, 1fr);
              /* 2 columnas en móviles */
           }

           .instagram-button {
              font-size: 1.2rem;
              padding: 12px 20px;
           }
        }

        /* RESPONSIVE - MENÚ HAMBURGUESA */
        @media (max-width: 768px) {
         .columnas {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: auto;
}
.tarjeta{
   margin: 1rem;
}
           .hero-buttons {
              position: absolute;
              bottom: 20px;
              bottom: 40px;
              z-index: 10;
              display: flex;
              gap: 15px;
           }

           .banner {
              height: auto;
              background: none;
              margin-bottom: 0px;
           }

           .img-banner {
              margin-top: 0px;
           }

           .banner-content h1 {
              margin-top: 15%;
              font-size: 2rem !important;
              max-width: 100%;
           }

           .metro-img {
              max-width: 280px;
           }

           .menu {
              position: fixed;
              /* ¡CAMBIAR a fixed para que se quede arriba al hacer scroll! */
              top: 0;
              width: 100%;
              display: flex;
              justify-content: space-between;
              align-items: center;
              background: rgba(0, 0, 0, 0.9);
              /* Más oscuro para mejor contraste */
              padding: 5px 20px;
              border-bottom: solid 1px;
              z-index: 1000;
              /* ¡MUY ALTO! Para sobreponerse a todo */
              text-transform: uppercase;
           }

           .menu ul {
              margin-top: 20px;
              display: none;
              /* Ocultamos el menú */
              flex-direction: column;
              position: absolute;
              top: 15px;
              left: 0;
              width: 100%;
              background: rgba(0, 0, 0, 0.9);
              padding: 20px;
              text-align: center;
           }

           .menu ul.active {
              display: flex;
              width: 100%;
           }

           .menu ul li {
              margin: 0px 0;
           }

           .menu-toggle {
              display: flex;
              /* Mostramos el ícono */
           }

           .logo img {
              height: 40px;
              top: 0%;
              right: 0%;
           }

           .menu ul li a {
              font-size: 1rem;
           }
        }
		
		
		
