@media (min-width: 1800px) {
  body {
    font-size: 19px;
  }



  .banner {
    height: 520px;
    padding: 2.5rem 0;
  }

  .banner-contenido h2,
  .banner-contenido-mobile h2 {
    font-size: 2.7rem !important;
  }

  .banner-contenido h3,
  .banner-contenido-mobile h3 {
    font-size: 1.5rem !important;
  }

  .banner-text-2 {
    font-size: 3.2rem !important;
  }

  .asistencia {
    height: 400px;
    padding: 2.5rem 0;
  }

  .asistencia-contenido h2 {
    font-size: 2.1rem !important;
  }

  .asistencia-contenido h3 {
    font-size: 1.4rem !important;
  }

  .btn-ir-sitio {
    font-size: 1.25rem !important;
    padding: 10px 100px !important;
  }

  .servicio-inner p,
  .oferta-card p {
    font-size: 1.15rem !important;
  }

  .footer {
    font-size: 1.1rem;
  }
}

/* Ajuste especial para la fila de soporte del footer */
.footer-flex-row {
  font-size: 0.8rem;
  flex-wrap: wrap;
  word-break: break-word;
}

@media (max-width: 768px) {
  .footer-flex-row {
    font-size: 0.78rem !important;
    gap: 0.5rem !important;
    padding: 0.7rem 0 !important;
  }
}

@media (max-width: 480px) {
  .footer-flex-row {
    font-size: 0.75rem !important;
    gap: 0.3rem !important;
    padding: 0.5rem 0 !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  /* Evita scroll horizontal */
}

@media (min-width: 1800px) {
  body {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* Header ocupa toda la pantalla */
.header {
  position: relative;
  width: 100%;
  min-height: 40vh;
  /* mejor que height fija */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* logo arriba, banner debajo */
  align-items: center;
}

/* Imagen de logo principal (desktop) */
.logo-header img {
  width: 102%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Imagen de logo principal (desktop) */
.logo-header {
  width: 101%;
  height: auto;
  margin: 0;
  z-index: 10;
  position: relative;
  transform: translateX(-10px);
}

/* Imagen secundaria (oculta por defecto) */
.logo-header-mobile {
  display: none;
  width: 100%;
  height: 100vh;
  /* ocupa toda la pantalla */
}

.logo-header-mobile img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  /* se adapta sin deformar */
  display: block;
}

.logo-header-mobile-1 {
  display: none;
}


/* Imagen secundaria (oculta por defecto) 
.logo-header-mobile-1 {
  display: none;
  width: 100%;
  height: 100vh;
  /* ocupa toda la pantalla 
}

.logo-header-mobile-1 img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  /* se adapta sin deformar 
  display: block;
}
*/
/* Banner general (solo desktop) */
.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 510px;
  background: #fff;
  transform: translateY(-65px);
  overflow: hidden;
}

/* Banner móvil (oculto por defecto) */
.banner-mobile {
  display: none;
  width: 100%;
  background: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.banner-contenido-mobile {
  color: #333;
  max-width: 600px;
  margin: 0 auto;
}

.banner-contenido-mobile h2 {
  margin: 0 0 10px;
  font-size: 28px;
  text-align: center;
}

.banner-contenido-mobile h3 {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
}

.banner-contenido {
  position: relative;
  z-index: 2;
  /* Encima del degradado y la imagen */
  flex: 1;
  padding: 100px;
  color: #333;
  max-width: 45%;
  /* Texto en el lado izquierdo */
}

.banner-contenido h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 4vw, 50px);
  /* Responsivo desde 24px hasta 50px */
}

.banner-contenido h3 {
  margin: 0;
  font-size: clamp(14px, 2vw, 20px);
  /* Responsivo desde 14px hasta 20px */
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}

.banner-text {
  font-weight: 550;
  text-align: left;
  /* Cambiado a left para que se vea como en la imagen */
}

.banner-text-2 {
  white-space: nowrap;
  font-weight: 700;
  text-align: left;
  color: #192D5B;
  font-size: clamp(28px, 5vw, 55px);
  /* Responsivo desde 28px hasta 55px */
  /*transform: translateX(60px); */
}

.banner-imagen {
  flex: 1;
  height: 500px;
  background: url("../img/principal_1.png") no-repeat center;
  background-size: cover;
  /*border-radius: 12px; */
  position: relative;
}

/* Degradado blanco hacia la izquierda */
.banner-imagen::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  /* Haces que el degradado invada hacia el texto */
  width: 80%;
  /* Ancho del degradado */
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 30%, #fff 80%);
  pointer-events: none;
}


.frase {
  background-color: #F6F6F6F6;
  transform: translateY(-30px);
}

.alerta {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.alerta .icono {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #eee;*/
  border-radius: 50%;
  font-weight: bold;
  font-size: 22px;
  color: #333;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.alerta .mensaje {
  font-size: 1.30rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.alerta .mensaje strong {
  font-weight: 700;
}

.alerta .mensaje .url {
  font-weight: 700;
  color: #a41414;
}

.oferta-row p {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #192D5B;
  margin-top: 15px;
  margin-bottom: 0;
}

/* Ajustar tamaño de imágenes de servicios */
.servicio-inner img {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.oferta-row {
  --bs-gutter-x: 1.5rem;
  /* separación horizontal como en la imagen */
  /* horizontal */
  --bs-gutter-y: 1rem;
  /* separación vertical */
  /* vertical */
}

/* Layout específico para el contenedor de .oferta en tablet y desktop
   - Tablet (>=768px and <992px): 595x160 centrado
   - Desktop (>=992px): 759x181 centrado
   Mantener comportamiento full-width en móviles. */

.oferta-container {
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: none;
  /* Anula reglas de .container si existen */
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .oferta-container {
    width: 595px;
    height: 160px;
    margin: 0 auto;
  }

  .oferta-container .row {
    height: 100%;
    align-items: center;
  }

  .servicio-card {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .servicio-inner {
    padding: 8px;
    min-height: auto;
  }

  .servicio-inner img {
    max-width: 80px;
    max-height: 80px;
  }
}

@media (min-width: 992px) {
  .oferta-container {
    width: 759px;
    height: 181px;
    margin: 0 auto;
  }

  .oferta-container .row {
    height: 100%;
    align-items: center;
  }

  .servicio-card {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .servicio-inner {
    padding: 6px;
    min-height: auto;
  }

  .servicio-inner img {
    width: 124px;
    height: 124px;
  }
}



.oferta-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: auto;
  width: 261px;
  height: 211px;
}

.oferta-card img {
  /*max-width: 80px; */
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.oferta-card p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.servicio-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
  min-height: auto;
  /* Altura flexible para ajustar al contenedor */
}

.servicio-inner.no-ajustar {
  justify-content: center;
}

.servicio-inner.no-ajustar {
  justify-content: center;
}

.servicio-card {
  transition: transform 0.1s ease-in-out;
}

.oferta-card:hover {
  transform: translateY(-10px);
}

.servicio-card:hover {
  transform: translateY(-10px);
}

.asistencia {
  display: flex;
  align-items: center;
  justify-content: center;
  /* <-- Cambia a 'center' para juntar los elementos */
  gap: 8px;
  /* Más juntos el texto y la imagen */
  width: 100%;
  height: 330px;
  padding: 20px;
  background: #fff;
  transform: translateY(-40px);
}

.asistencia-contenido {
  flex: 1;
  padding: 20px;
  color: #333;
}

.asistencia-contenido h2 {
  margin: 0 0 10px;
  font-size: clamp(18px, 3vw, 24px);
  /* Responsivo desde 18px hasta 24px */
  text-align: center;
}

.asistencia-contenido h3 {
  margin: 0;
  font-size: clamp(16px, 2.5vw, 22px);
  /* Responsivo desde 16px hasta 22px */
  font-weight: normal;
  text-align: center;
}

.asistencia-imagen {
  flex: 1;
  height: 100%;
  background: url("../img/asistencia.png") no-repeat center center;
  /* Centrado horizontal y vertical */
  background-size: contain;
  /* Mostrar la imagen completa en desktop */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-ir-sitio {
  display: inline-block;
  background: linear-gradient(to right, #192D5B, #355FC1);
  color: #fff;
  font-weight: bold;
  padding: 15px 70px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-ir-sitio:hover {
  background-color: #355FC1;
  /* Azul más oscuro al pasar el mouse */
  color: #fff;
  transform: scale(1.05);
}

.frase-title {
  width: 615px;
  height: 56px;
  font-family: Montserrat;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #666666;
  margin: auto;
}

.frase-title .text-style-1 {
  color: #111E77;
}

.frase-title {
  width: 100%;
  text-align: center;
  /* centra el bloque */
}

.frase-title-contacto {
  color: #192d5b;
}

.frase-title-contacto {
  display: inline-flex;
  /* se centra por el text-align del padre */
  align-items: center;
  gap: 12px;
  margin: 0;
  /* quita margen por defecto del h4 */
  color: #192D5B;
  /* letras blancas */
  font-weight: 700;
}

.frase-title-contacto a {
  color: #192D5B;
  /* asegura blanco en enlaces */
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  /* efecto “subrayado” sólido */
  padding-bottom: 2px;
}

.frase-title-contacto .sep {
  opacity: .6;
  /* separador más sutil */
}

.footer {
  background-color: #f9fafe;
  background-color: #f9fafe;
  font-family: Montserrat;
  font-size: 14px;
  line-height: 1;
  text-align: left;
}

/* Sección de copyright con franja gris */
.copyright-section {
  background-color: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 1rem;
  margin-top: 1rem;
}

.copyright-text {
  text-align: center;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}


.text-recomen-footer {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  color: #999999;
}



.content-redes .text-social {
  height: 14px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: bold;
  color: #999999;
}

.content-redes img {
  width: 24px;
}

.content-redes .text-social {
  height: 14px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: bold;
  color: #999999;
}


.content-telefonos img {
  width: 16px;
  height: 16px;
}

.information-mt-4 {
  font-size: 1.30rem;
}

.col-sm-12.d-flex.flex-column.flex-xl-row.justify-content-center.justify-content-xl-around {
  border-bottom: 1px solid #192D5B;
  padding-bottom: 30px;
}

.content-copy {
  background-color: #d9d9d9;
}

.container.container-copy-r {
  max-width: 100%;
}


/* Media queries para tablets y pantallas medianas */
@media (max-width: 1024px) {
  .banner-contenido h2 {
    font-size: clamp(20px, 3.5vw, 40px);
  }

  .banner-contenido h3 {
    font-size: clamp(12px, 1.8vw, 18px);
  }

  .banner-text-2 {
    font-size: clamp(24px, 4.5vw, 45px);
  }

  /* Ajustes para servicios en tablets */
  .oferta-row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 0.75rem;
  }


  .servicio-inner img,
  .oferta-card img {
    width: 110px;
    height: 110px;
  }

  .servicio-inner {
    min-height: 120px;
    padding: 15px 8px;
  }

  .oferta-card {
    min-height: 140px;
  }

  /* Ajustes para asistencia en tablets */
  .asistencia-contenido h2 {
    font-size: clamp(16px, 2.8vw, 22px);
  }

  .asistencia-contenido h3 {
    font-size: clamp(14px, 2.2vw, 20px);
  }

  .frase-title-contacto {
    font-size: clamp(12px, 1.8vw, 16px);
  }
}

@media (max-width: 768px) {
  .banner-contenido h2 {
    font-size: clamp(18px, 3vw, 32px);
  }

  .banner-contenido h3 {
    font-size: clamp(10px, 1.5vw, 16px);
  }

  .banner-text-2 {
    font-size: clamp(20px, 4vw, 35px);
  }

  /* Ajustes para asistencia en pantallas medianas */
  .asistencia-contenido h2 {
    font-size: clamp(14px, 2.5vw, 20px);
  }

  .asistencia-contenido h3 {
    font-size: clamp(12px, 2vw, 18px);
  }

  .frase-title-contacto {
    font-size: clamp(10px, 1.5vw, 14px);
  }
}

@media (max-width: 480px) {
  .banner-contenido h2 {
    font-size: clamp(16px, 2.5vw, 28px);
  }

  .banner-contenido h3 {
    font-size: clamp(9px, 1.2vw, 14px);
  }

  .banner-text-2 {
    font-size: clamp(18px, 3.5vw, 30px);
  }

  /* Ajustes para asistencia en móviles pequeños */
  .asistencia-contenido h2 {
    font-size: clamp(12px, 2.2vw, 18px);
  }

  .asistencia-contenido h3 {
    font-size: clamp(10px, 1.8vw, 16px);
  }

  .frase-title-contacto {
    font-size: clamp(9px, 1.3vw, 12px);
  }
}

/* Móvil: partir en dos líneas y ocultar el separador */
@media (max-width: 576px) {
  .frase-title-contacto {
    flex-direction: column;
    gap: 4px;
  }

  .frase-title-contacto .sep {
    display: none;
  }
}



/* --- Ajustes móviles --- */
@media (max-width: 768px) {

  /* Ocultamos logo y banner desktop */
  .logo-header,
  .banner {
    display: none !important;
  }

  /* Mostramos imagen secundaria */
  .logo-header-mobile {
    display: block;
    width: 100%;
    height: 40vh;
    /* Altura ajustada */
  }

  .logo-header-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateY(-60px);
    /* Degradado en la parte inferior de la imagen */
    -webkit-mask-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, white 30%, white 100%);
    mask-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, white 60%, white 100%);
  }




  /* Mostramos imagen secundaria */
  .logo-header-mobile-1 {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 10;
  }

  .logo-header-mobile-1 img {
    width: 102%;
    /* ocupa todo el ancho */
    height: 100px;
    /* respeta proporciones */
    object-fit: cover;
    /* rellena sin dejar bordes */
    display: block;
  }

  /* Mostramos banner móvil */
  .banner-mobile {
    display: block !important;
  }

  /* Ajustes para la sección frase */
  .frase {
    transform: translateY(-0px);
    padding: 2rem 1rem !important;
  }

  .frase-title {
    width: 100% !important;
    height: auto !important;
    font-size: 18px !important;
    padding: 0 10px;
  }

  .btn-ir-sitio {
    padding: 15px 80px !important;
    font-size: 14px !important;
  }

  .alerta {
    flex-direction: column !important;
    text-align: center !important;
    padding: 16px !important;
    gap: 8px !important;
  }

  .alerta .mensaje {
    font-size: 14px !important;
  }

  /* Ajustes para las secciones de servicios */
  .servicio-card {
    margin-bottom: 15px !important;
  }

  .servicio-inner {
    padding: 10px 20px !important;
    min-height: 140px !important;
    /* Hacer más cuadradas */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .servicio-inner img {
    max-width: 100px !important;
    /* Reducir tamaño de imagen */
    margin-bottom: 15px !important;
  }

  .servicio-inner p {
    /* font-size: 12px !important; */
    margin: 0 !important;
    text-align: center !important;
    color: #192D5B;
  }

  /* Ajustes para las tarjetas de oferta */
  .oferta-card {
    margin-bottom: 15px !important;
    min-height: 160px !important;
    /* Hacer más cuadradas */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    max-width: 200px;
    margin: 0 auto 15px auto;
  }

  .oferta-card img {
    /* max-width: 70px !important;
    Reducir tamaño de imagen */
    margin-bottom: 15px !important;
  }

  .oferta-card p {
    font-size: 14px !important;
    text-align: center !important;
    margin: 0 !important;
  }

  /* Ajustes para la sección de asistencia */
  .asistencia {
    flex-direction: column !important;
    height: auto !important;
    text-align: center !important;
    padding: 2rem 1rem !important;
  }

  .asistencia-imagen {
    width: 100% !important;
    height: 265px !important;
    margin-bottom: 20px !important;
    order: -1 !important;
    /* Coloca la imagen arriba del texto */
    display: block !important;
    /* Asegura que se muestre */
    background: url("../img/asistencia.png") no-repeat center center !important;
    background-size: cover !important;
    /* En móvil, que se vea bien la imagen */
    background-position: center !important;
    border-radius: 12px !important;
    min-height: 200px !important;
  }

  .asistencia-contenido {
    order: 1 !important;
    /* Coloca el contenido debajo de la imagen */
  }

  /* Asegurar que la imagen de asistencia se muestre en móviles */
  .asistencia-imagen::before {
    content: "" !important;
    display: block !important;
    width: 100% !important;
    height: 265px !important;
    background: url("../img/asistencia.png") no-repeat center center !important;
    background-size: cover !important;
    border-radius: 12px !important;
  }

  .asistencia-contenido h2 {
    font-size: 20px !important;
  }

  .asistencia-contenido h3 {
    font-size: 16px !important;
  }

  .frase-title-contacto {
    font-size: 14px !important;
  }

  /* Ajustes para el footer */
  .footer {
    padding: 1rem !important;
  }

  /* Mostrar logo del footer en móviles */
  .col-img-footer {
    display: block !important;
    order: -1 !important;
    /* Coloca el logo primero */
    text-align: left !important;
    margin-bottom: 1rem !important;
  }

  .col-img-footer img {
    max-width: 120px !important;
    height: auto !important;
  }

  /* Reorganizar elementos del footer en móviles */
  .footer-row .col-sm-12:first-child {
    order: 1 !important;
    /* Soporte de comercio electrónico primero */
  }

  .footer-row .col-sm-12:last-child {
    order: 2 !important;
    /* Redes sociales y recomendaciones después */
  }

  /* Ajustar orden dentro de la primera columna */
  .text-soporte {
    order: 1 !important;
    /* Soporte de ventas corporativas */
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    font-weight: bold !important;
    font-size: 18px !important;
    color: #000 !important;
  }

  /* Contenedor para email y WhatsApp en la misma línea */
  .footer-contact-row {
    order: 2 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
    flex-wrap: wrap !important;
  }

  .text-email {
    order: 1 !important;
    /* Email a la izquierda */
    text-align: left !important;
    margin-bottom: 0 !important;
  }

  .text-email .btn-email {
    font-size: 14px !important;
    color: #192D5B !important;
    text-decoration: none !important;
    font-weight: normal !important;
  }

  /* WhatsApp a la derecha */
  .whatsapp-contact {
    order: 2 !important;
    text-align: right !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
  }



  .content-telefonos {
    order: 3 !important;
    /* Teléfonos al final */
    flex-direction: row !important;
    text-align: left !important;
    margin-bottom: 1.5rem !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .content-telefonos img {
    width: 16px !important;
    height: 16px !important;
    margin-right: 5px !important;
  }

  .text-tel {
    font-size: 12px !important;
    white-space: nowrap !important;
    text-align: left !important;
    line-height: 1.5 !important;
    color: #666 !important;
  }

  .text-tel .numero {
    font-weight: normal !important;
    color: #666 !important;
  }

  /* Ajustar orden dentro de la segunda columna */
  .content-redes {
    order: 1 !important;
    /* Redes sociales primero */
    justify-content: flex-start !important;
    /*margin-bottom: 1.5rem !important; */
    align-items: center !important;
  }

  .text-social {
    font-weight: bold !important;
    color: #666 !important;
    margin-right: 10px !important;
  }

  .content-redes img {
    width: 24px !important;
    height: 24px !important;
    margin-right: 8px !important;
  }

  .text-recomen-footer {
    order: 2 !important;
    /* Recomendaciones después de redes */
    text-align: left !important;
    font-size: 9px !important;
    margin-top: 0 !important;
    color: #999 !important;
    line-height: 1.4 !important;
  }

  /* Sección de copyright con franja gris */
  .copyright-section {
    background-color: #f5f5f5 !important;
    border-top: 1px solid #e0e0e0 !important;
    padding: 1rem !important;
    margin-top: 1rem !important;
  }

  .copyright-text {
    text-align: center !important;
    font-size: 10px !important;
    color: #666 !important;
    line-height: 1.4 !important;
  }
}

/* Ajustes adicionales para pantallas muy pequeñas */
@media (max-width: 576px) {
  .frase-title-contacto {
    flex-direction: column !important;
    gap: 4px !important;
  }

  .frase-title-contacto .sep {
    display: none !important;
  }

  .servicio-card {
    width: 50% !important;
  }

  .oferta-card {
    margin-bottom: 5px !important;
  }

  .alerta .icono {
    width: 30px !important;
    height: 30px !important;
    font-size: 18px !important;
  }

}

/* Reducir tamaño de letra del copyright */
.footer .container.container-copy-r .copyright,
.footer .container.container-copy-r .content-copy {
  font-size: 0.75rem;
  /* tamaño general más pequeño */
  line-height: 1.2;
  color: #666;
  /* opcional: un tono más neutro */
}

/* Ajuste específico para móviles: aún más pequeño si se necesita */
@media (max-width: 767.98px) {

  .footer .container.container-copy-r .copyright,
  .footer .container.container-copy-r .content-copy {
    font-size: 0.7rem;
  }
}

.footer .container.container-copy-r .copyright,
.footer .container.container-copy-r .content-copy {
  font-size: 0.75rem;
  /* tamaño general más pequeño */
  line-height: 1.2;
  color: #666;
  /* opcional: un tono más neutro */
}

/* Ajuste específico para móviles: aún más pequeño si se necesita */
@media (max-width: 767.98px) {

  .footer .container.container-copy-r .copyright,
  .footer .container.container-copy-r .content-copy {
    font-size: 0.7rem;
    height: 40px;
  }
}