body {
  font-family: 'Poppins', sans-serif;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;  
  

p {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  font-size: 20px;
}

/* Typography */
h1 {
  font-size: 60px;
}

h2 {
  font-size: 44px;
}

h5 {
  font-size: 20px;
}

header, section, footer {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px; /* Añadir padding */
  box-sizing: border-box; /* Asegurar que se use box-sizing */
}

header {
  height: 150px;
  background-color: #ffffff;
}

footer {
  height: auto;
  background-color: #000000;
  padding: 20px 15px; /* Añadir padding */
  box-sizing: border-box; /* Asegurar que se use box-sizing */
}

#logo {
  width: 100px;
  height: 100px;
  background-image: url(../imagenes/background/LOGO-VIP.png);
  background-size: contain; /* Ajustar tamaño de fondo */
  background-repeat: no-repeat; /* No repetir fondo */
  background-position: center; /* Centrar fondo */
  float: left;
  margin: 10px 5px 5px 48px;
}

#botonera {
  float: right;
  margin: 25px 5px;
  font-size: 18px;
  font-weight: bold;
}

#botonera ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}

#botonera ul li {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

#botonera ul li a {
  display: inline-block;
  padding: 15px 10px;
  color: #000000;
  text-decoration: none;
}

#botonera ul li a:hover {
  color: #7cb434;
}

#botonera ul li ul.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: auto;
}

#botonera ul li ul.submenu li {
  display: block;
  margin: 0;
}

#botonera ul li ul.submenu li a {
  padding: 10px 20px;
}

#botonera ul li:hover ul.submenu {
  display: block;
}

#banner {
  height: 780px;
  background-repeat: no-repeat;
  background-size: cover; /* Asegura que la imagen de fondo cubra todo el contenedor */
  padding-top: 150px;
  box-sizing: border-box;
}

/* Formato al primer banner */
#cucarda {
  color: #ffffff;
  display: inline-block;
  margin-left: 130px;
  border-radius: 20px;
  background-color: #7cb434;
  padding: 3px 10px;
  text-align: center;
}

#textobanner {
  height: 100px;
  width: 300px;
  margin-right: auto;
  text-align: center;
}

dialog {
  width: 100%;
  max-width: 1100px;
  height: 80%;
  border: none;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow-y: auto;  /* Asegura que el contenido del modal sea desplazable */
  position: fixed;
  top: 5%; /* Abre el modal desde un 10% desde la parte superior */
  left: 50%;
  transform: translate(-50%, 0);
  overflow-x: hidden;  
}

/* Featured Section */
.seccion-destacada {
  position: relative;
}

.seccion-destacada .contenedor-interno {
  position: relative;
  margin-top: -45px;
  z-index: 1;
  background-color: #ffffff;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
}

.seccion-destacada .contenedor-interno .bloque-destacado {
  padding: 0;
  float: left;
}

.bloque-destacado {
  position: relative;
}

.bloque-destacado .caja-interna {
  position: relative;
  padding: 54px 45px;
}

.bloque-destacado .caja-interna:hover::before {
  width: 100%;
  background-color: #7cb434;
}

.bloque-destacado .caja-interna:before {
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  height: 5px;
  width: 60px;
  background-color: #555555;
  transition: all 500ms ease;
}

.bloque-destacado .caja-interna .contenido {
  position: relative;
  padding-left: 85px;
}

.bloque-destacado .caja-interna .contenido:before {
  position: absolute;
  content: "\f170";
  right: -20px;
  top: 20px;
  color: #f89429;
  font-size: 18px;
  line-height: 1em;
  font-family: "Flaticon";
}

.bloque-destacado .caja-interna .caja-icono {
  position: absolute;
  left: 0;
  top: 0;
  color: #7cb434;
  font-size: 60px;
  line-height: 1em;
}

.bloque-destacado .caja-interna .contenido h5 {
  position: relative;
  line-height: 1.4em;
  font-weight: 500;
  font-size: 22px;
}

.bloque-destacado .caja-interna .contenido h5 a {
  position: relative;
  color: #222222;
  transition: all 500ms ease;
}

.bloque-destacado .caja-interna .contenido h5 a:hover {
  color: #7cb434;
}

/* Security Section */
.seccion-seguridad {
  position: relative;
  padding: 50px 15px 0; /* Añadir padding */
  box-sizing: border-box; /* Asegurar que se use box-sizing */
}

.seccion-seguridad .contenido-column {
  position: relative;
  margin-bottom: 40px;
}

.seccion-seguridad .contenido-column .columna-interna {
  position: relative;
  padding-right: 20px;
}

.seccion-seguridad .contenido-column .title {
  position: relative;
  color: #888888;
  font-size: 18px;
  padding-left: 35px;
  padding-top: 2px;
  font-weight: 400;
  margin-bottom: 35px;
}

.seccion-seguridad .contenido-column .title .icon {
  position: absolute;
  left: 0;
  top: 0;
  padding-bottom: 16px;
}

.seccion-seguridad .contenido-column h2 {
  position: relative;
  color: #222222;
  font-weight: 500;
  line-height: 1.2em;
}

.seccion-seguridad .contenido-column .bold-text {
  position: relative;
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9em;
  margin-top: 20px;
}

.seccion-seguridad .contenido-column .text {
  position: relative;
  color: #555555;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9em;
  margin-top: 15px;
  margin-bottom: 22px;
}

.seccion-seguridad .contenido-column .read-more {
  position: relative;
  color: #7cb434;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.seccion-seguridad .contenido-column .read-more .fa {
  position: relative;
  font-size: 20px;
  top: 1px;
  padding-left: 5px;
}

.seccion-seguridad .contenido-column .read-more:hover {
  color: #222222;
  border-bottom: 1px solid #7cb434;
}

.seccion-seguridad .images-column {
  position: relative;
  margin-bottom: 40px;
}

.seccion-seguridad .images-column .columna-interna {
  position: relative;
}

.seccion-seguridad .images-column .image {
  position: relative;
  margin-bottom: 20px;
}

.seccion-seguridad .images-column .image:last-child {
  position: absolute;
  right: 15px;
  bottom: 40px;
}

/* Section Title */
.titulo-seccion {
  position: relative;
  margin-bottom: 45px;
}

.titulo-seccion .icon {
  position: relative;
  padding-bottom: 18px;
}

.titulo-seccion .icon:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 25px;
  height: 6px;
  border-top: 2px solid #888888;
  border-bottom: 2px solid #888888;
}

.titulo-seccion.centered .icon:before {
  left: 50%;
  margin-left: -12px;
}

.titulo-seccion h2 {
  position: relative;
  color: #222222;
  font-weight: 500;
  line-height: 1.3em;
  margin-top: 18px;
  padding-bottom: 15px;
}

.titulo-seccion .text {
  position: relative;
  color: #222222;
  font-weight: 300;
  line-height: 1.9em;
  font-size: 16px;
}

.titulo-seccion.light .text {
  color: #aaaaaa;
}

.titulo-seccion.centered {
  text-align: center;
  margin-top: 40px;
}

#cajadetituloservicios {
  text-align: center;
  padding: 20px;
}

.cajasPremium {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.cajasPremium li {
  flex: 0 1 30%;
  margin: 10px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.cajasPremium li:hover {
  transform: scale(1.05);
}

.cajasPremium li a img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.hover:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#cajadetituloproducto {
  height: 100px;
  background-color: #000000;
  box-sizing: border-box;
  padding-top: 18px;
}

#quienesSomos {
  text-align: center;
  padding: 20px;
}

.cajas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.cajas li {
  position: relative;
  margin: 10px;
  box-sizing: border-box;
}

.cajas li a img {
  width: 300px;
  height: auto;
  display: block;
}

/* Estilos de la superposición */
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0, 0, 0, 0.7);
}

.cajas li:hover .overlay {
  opacity: 1;
}

/* Estilos del texto en la superposición */
.textsup {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#tituloproducto {
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}

#cajadetitulohistoria {
  height: 100px;
  background-color: #000000;
  box-sizing: border-box;
  padding-top: 0;
}

#pasadopresentefuturo {
  height: auto;
  display: block;
  width: -webkit-fill-available;
}

.icono {
  margin-top: 50px;
  height: 60px;
  display: block;
  width: -webkit-fill-available;
}

#textoshistoria {
  margin: 10px 50px 0 50px;
  height: 150px;
  display: block;
  width: -webkit-fill-available;
}

#cajaQuienesSomos {
  height: 100px;
  background-color: #000000;
  box-sizing: border-box;
  padding-top: 18px;
}

#tituloQuienesSomos {
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}

#banner2 {
  display: flex; /* Utiliza flexbox */
  justify-content: center; /* Centra el contenido horizontalmente */
  align-items: center; /* Centra el contenido verticalmente si es necesario */
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 709px;
  padding-top: 150px;
  box-sizing: border-box;
}


#banner3 {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 575px;
  background-repeat: no-repeat;
  background-size: cover; /* Asegura que la imagen de fondo cubra todo el contenedor */
  background-position: center;
  padding-top: 150px;
  box-sizing: border-box;
  overflow: hidden;
}

#banner3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.46) 28%,
    rgba(0, 0, 0, 0.08) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

#banner3 #cucarda,
#banner3 #textobanner {
  position: relative;
  z-index: 1;
}

#banner3 #cucarda {
  margin-left: 78px;
}

#banner3 #textobanner {
  width: 360px;
  margin-left: 42px;
  color: #ffffff;
  text-align: left;
  padding: 18px 26px 24px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

#banner3 #textobanner h1,
#banner3 #textobanner h2 {
  margin: 0;
  color: #ffffff;
  line-height: 1.05;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.65);
}

#banner3 #textobanner h2 {
  margin-top: 8px;
}

.textobanner2 {
  color: #ffffff;
  font-size: 50px;
  align-content: center;
  font-style: italic;
  font-weight: normal;
  text-transform: unset;
  line-height: 50px;
}

/*Sección Currículum Vitae*/
.contenido-column h3 {
  font-size: 22px;
  color: #7cb434;
  margin-bottom: 10px;
  border-bottom: 2px solid #7cb434;
  padding-bottom: 5px;
}

.contenido-column ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.contenido-column ul li {
  margin-bottom: 10px;
}

.columna-interna .text p {
  margin-bottom: 20px;
  line-height: 1.6;
}


/*Flecha hacia arriba*/
.back-to-top {
  text-align:left;
  margin: 0 0 30px 0;
}

.back-to-top a {
  display: inline-block;
  color: #7cb434;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-to-top a:hover {
  color: #000;
}

.back-to-top i {
  margin-right: 8px;
  font-size: 18px;
}








/* Footer */
#footer {
  width: 100%;
  background-color: #212529;
  color: white;
  padding: 20px 15px;
  box-sizing: border-box;
  text-align: center;
}

#contacto {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 10px;
}

.punto-contacto {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  margin: 10px;
}

.punto-contacto .icon {
  font-family: 'Flaticon';
  font-size: 40px;
  color: #7cb434;
  margin-right: 10px;
}

.contact-text h3 {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
}

.contact-text p {
  margin: 0;
  font-size: 14px;
  color: #b5b5b5;
}

#redes {
  display: flex;
  justify-content: center;
}

#redesiconos ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

#redesiconos ul li {
  margin: 0;
}

#redesiconos ul li a img {
  width: 40px;
  height: 40px;
}

button {
  margin-top: 5px;
  padding: 10px 20px;
  margin-right: 25px;
  background-color: #7cb434;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #c00;
}

dialog {
  border: none;
  border-radius: 5px;
  padding: 20px;
  background: #fff;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
}

:target {
  background-color: #f0f0f0; /* Ejemplo de color de fondo para la sección activa */
  padding-top: 60px; /* Ajusta el espacio superior */
  margin-top: -60px; /* Compensa el desplazamiento */
}


/*Nav para celulares*/
.caret {
  font-size: 12px;
  margin-left: 5px;
  cursor: pointer;
}

.submenu {
  display: none; /* Mantén el submenú oculto por defecto */
}


/* Estilos para pantallas extra grandes (xl) y grandes (lg) */
@media (min-width: 992px) {
  .col-lg-4, .col-xl-4 {
    width: 33.3333%;
    float: left;
  }

  .col-lg-6, .col-xl-6 {
    width: 50%;
    float: left;
  }

  /* Menú horizontal para pantallas grandes */
  #botonera {
    display: flex !important;
    justify-content: flex-end;
  }

  #botonera ul {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  #botonera ul li {
    width: auto;
  }

  #hamburguesa {
    display: none; /* el menú hamburguesa no se muestra en pantallas grandes */
  }

  /* Estilos específicos para banners en pantallas grandes */
  #banner {
    background-image: url(../imagenes/background/familia.jpg);
  }

  #banner2 {
    background-image: url(../imagenes/background/porcentaje.png);
    display: flex; /* Utiliza flexbox */
    justify-content: center; /* Centra el contenido horizontalmente */
    align-items: center; /* Centra el contenido verticalmente si es necesario */
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 709px;
    padding-top: 150px;
    box-sizing: border-box;
  }

  #banner3 {
    background-image: url(../imagenes/background/fuego.jpg);
  }


}

/* Estilos para pantallas medianas (md) */
@media (min-width: 768px) and (max-width: 991px) {
  .col-md-6 {
    width: 50%;
    float: left;
  }

  /* Menú horizontal para pantallas medianas */
  #botonera {
    display: flex; /* Cambiar a flex para que se vea en pantallas medianas */
    flex-direction: row; /* Disposición horizontal */
    justify-content: flex-end;
    position: static; /* Asegurar que no esté en posición fija */
    width: auto;
    height: auto;
    background-color: transparent;
    z-index: auto;
  }

  #botonera ul {
    flex-direction: row; /* Asegurar que los elementos del menú estén en fila */
  }

  #botonera ul li {
    width: auto;
    text-align: left;
  }

  #botonera ul li ul.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none; /* Ocultar submenú por defecto */
  }

  #botonera ul li:hover ul.submenu {
    display: block; /* Mostrar submenú al pasar el ratón */
  }

  #botonera ul li ul.submenu li {
    display: block;
    margin: 0;
  }

  #botonera ul li ul.submenu li a {
    padding: 10px 20px;
  }

  #hamburguesa {
    display: none; /* Ocultar menú hamburguesa en pantallas medianas */
  }

  /* Estilos específicos para banners en pantallas medianas */
  #banner {
    background-image: url(../imagenes/background/familia980.jpg);
  }

  #banner2 {
    background-image: url(../imagenes/background/porcentaje990.png);
    justify-content: center;
    padding: 0 15px;
  }

  #banner3 {
    background-image: url(../imagenes/background/fuego990.jpg);
    padding-top: 120px;
  }

  #banner3::before {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.42) 45%,
      rgba(0, 0, 0, 0.12) 100%
    );
  }

  #banner3 #cucarda {
    margin-left: 42px;
  }

  #banner3 #textobanner {
    width: 320px;
    margin-left: 20px;
  }

  #banner3 #textobanner h1 {
    font-size: 52px;
  }

  #banner3 #textobanner h2 {
    font-size: 38px;
  }

  #logo {
    display: none; /* Ocultar el logo en pantallas pequeñas y medianas */
  }
}
/* Estilos para pantallas pequeñas (sm) */
@media (max-width: 767px) {
  .col-sm-12 {
    width: 100%;
    float: left;
  }

  #logo {
    display: none; /* Ocultar el logo en pantallas pequeñas y medianas */
  }

  /* Menú hamburguesa para pantallas pequeñas */
  #botonera {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
  }

  #botonera ul {
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  #botonera ul li {
    text-align: center;
    width: 100%;
  }

  #hamburguesa {
    display: block; /* Asegúrate de que el menú hamburguesa se muestre en pantallas pequeñas */
    position: fixed;
    top: 15px;
    right: 50%;
    transform: translateX(50%);
    z-index: 1001;
  }

  /* Mostrar el menú cuando está activo */
  #botonera.active {
    display: flex;
  }

  /* Estilos específicos para banners en pantallas pequeñas */
  #banner {
    background-image: url(../imagenes/background/familia767.jpg);
  }

  #banner2 {
    background-image: url(../imagenes/background/porcentaje750.png);
    background-repeat: no-repeat;
  }

  #banner3 {
    background-image: url(../imagenes/background/fuego760.jpg);
    padding-top: 110px;
  }

  #banner3::before {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.48) 58%,
      rgba(0, 0, 0, 0.18) 100%
    );
  }

  #banner3 #cucarda {
    margin-left: 28px;
  }

  #banner3 #textobanner {
    width: min(300px, calc(100% - 56px));
    margin-left: 13px;
    padding: 16px 22px 22px;
  }

  #banner3 #textobanner h1 {
    font-size: 44px;
  }

  #banner3 #textobanner h2 {
    font-size: 32px;
  }

  /* Footer */
  #footer {
    text-align: center; /* Alinea el texto al centro */
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box; /* Asegura que el padding se incluya en el ancho total */
  }

  #contacto {
    flex-direction: column; /* Dispone los elementos en columna */
    align-items: center; /* Centra los elementos */
    display: flex; /* Asegura que el contenedor use flexbox */
  }

  .punto-contacto {
    flex: 1 1 100%; /* Cada elemento ocupa el 100% del ancho */
    margin-bottom: 20px; /* Añade espacio entre elementos */
    display: flex; /* Asegura que los hijos del contenedor usen flexbox */
    align-items: center; /* Centra verticalmente los iconos y el texto */
    justify-content: center; /* Centra horizontalmente los elementos */
  }

  .punto-contacto .icon {
    margin-right: 10px;
    font-size: 30px; /* Ajusta el tamaño del icono */
  }

  .contact-text h3, .contact-text p {
    font-size: 16px; /* Ajusta el tamaño del texto */
  }

  button {
    width: 100%; /* El botón ocupa el 100% del ancho */
    margin-top: 10px;
  }

  #redes {
    justify-content: center; /* Centra los iconos */
    width: 100%; /* Ocupa el 100% del ancho */
    margin-top: 20px;
  }

  #redesiconos ul {
    flex-direction: row; /* Dispone los iconos en fila */
    justify-content: center; /* Centra los iconos */
    align-items: center; /* Centra los iconos */
    width: 100%;
    list-style: none; /* Remueve los puntos de la lista */
    padding: 0;
  }

  #redesiconos ul li {
    margin: 0 10px;
  }

  #redesiconos ul li a img {
    width: 40px;
    height: 40px;
  }

  dialog {
    width: 100%;
    margin: 0 auto; /* Centra el diálogo */
  }

  .contact-form-container {
    padding: 20px;
    box-shadow: none; /* Eliminar sombras para una apariencia más limpia en móviles */
    border-radius: 0; /* Eliminar bordes redondeados para adaptarse mejor a pantallas pequeñas */
  }

  .contact-form-container h2 {
    font-size: 30px; /* Reducir tamaño de fuente para títulos */
  }

  .form-group label {
    font-size: 14px; /* Reducir tamaño de fuente para etiquetas */
  }

  .form-group input, .form-group textarea {
    font-size: 14px; /* Reducir tamaño de fuente para campos de entrada */
    padding: 10px; /* Asegurar suficiente espacio para el toque */
  }

  .form-group input[type="submit"] {
    width: 100%; /* Asegurar que el botón de envío ocupe todo el ancho disponible */
    font-size: 16px; /* Mantener el tamaño de fuente del botón */
  }

  /* Asegurarse de que las imágenes sean responsivas */
  .images-column .image img {
    width: 100%;
    height: auto;
  }

  /* Ajustes para los elementos de texto */
  .contenido-column .columna-interna {
    padding-right: 10px;
    padding-left: 10px;
  }

  .contenido-column .title {
    font-size: 16px; /* Reducir tamaño de fuente para títulos */
  }

  .contenido-column .bold-text {
    font-size: 16px; /* Reducir tamaño de fuente para textos en negrita */
  }

  .contenido-column .text {
    font-size: 14px; /* Reducir tamaño de fuente para textos */
  }

  /* Asegurar que los contenedores tengan un margen adecuado */
  .seccion-seguridad {
    padding: 20px 10px;
  }

  .row.clearfix {
    flex-direction: column; /* Asegurar que los elementos se alineen en columna en pantallas pequeñas */
  }

  .contenido-column, .images-column {
    width: 100%; /* Asegurar que las columnas ocupen todo el ancho disponible */
    float: none;
  }

  .images-column {
    margin-bottom: 20px;
  }
  .seccion-seguridad .row .columna-interna {
    text-align: center;
  }

  .images-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .images-column .image {
    margin: 10px 0;
  }
}

/* Clase clearfix para limpiar floats */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
}
