  .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

.icon svg {
  width: 36px;
  height: 36px;
  vertical-align: middle;
}

.icon i {
  font-size: 36px;
  vertical-align: middle;
}
  .barra {
      width: 100%;
      height: 90px;
      /* ajusta a lo que necesites */
      background-image: url('../img/barra.jpg');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
  }

  /* Contenedor principal */
  .contacto .row {
      display: flex;
      flex-wrap: wrap;
  }

  /* Ambas columnas comparten base */
  .contacto .mapa,
  .contacto .formulario {
      box-sizing: border-box;
      padding: 15px;
  }

  .contacto .mapa iframe {
      width: 100%;
      height: 600px;
      /* <-- ESTA LÍNEA ES CLAVE */
      border: 0;
  }

  .row5 {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      align-items: stretch;
  }

  .responsivecontent iframe {
      width: 100%;
      height: 100%;
      min-height: 460px;
      border: none;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  form {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      width: 100%;
  }

  form h2 {
      margin-bottom: 20px;
      color: #ff6633;
      font-weight: 600;
      font-size: 24px;
  }

  form input,
  form textarea {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 15px;
      font-family: inherit;
      transition: border-color 0.3s;
  }

  form input:focus,
  form textarea:focus {
      border-color: #ff6633;
      outline: none;
  }

  form textarea {
      min-height: 120px;
      resize: vertical;
  }

  #boton {
      background-color: #ff6633;
      color: white;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      padding: 12px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
  }

  #boton:hover {
      background-color: #e25627;
  }

  .navbar-nav .nav-link {
      color: #ff6633;
      font-size: 1.1rem;
      font-weight: 600;
      transition: color 0.3s ease;
      font-family: 'Times New Roman', Times, serif;
  }

  .category-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      background-color: #f8f9fa;
      /* Color suave de fondo */
      padding: 10px 0;
      gap: 10px;
  }

  .category-nav a {
      flex: 1 1 150px;
      text-align: center;
      padding: 12px 20px;
      font-weight: bold;
      text-transform: uppercase;
      text-decoration: none;
      color: #fff;
      border-radius: 5px;
      transition: all 0.3s ease;
  }

  .category-nav a:nth-child(odd) {
      background-color: #ff8c00;
      /* Naranja */
  }

  .category-nav a:nth-child(even) {
      background-color: #6c757d;
      /* Gris */
  }

  .category-nav a:hover {
      opacity: 0.9;
      transform: scale(1.05);
  }

  .full-width-banner {
      width: 100vw;
      /* 100% del ancho de la ventana del navegador */

  }

  .full-width-banner img {
      margin-top: -25px;
      width: 100%;
      height: auto;
      display: block;
      /* Elimina espacio en blanco debajo de la imagen */
  }

  .insti {
      text-align: center;
      overflow: hidden;
  }

  .insti img {
      opacity: 0;
      transform: translateY(30px);
      animation: slideIn 1.2s ease-out forwards;
      transition: transform 0.5s ease;
      max-width: 100%;
  }

  /* Efecto zoom al pasar el mouse */
  .insti img:hover {
      transform: scale(1.05);
  }

  /* Animación de entrada */
  @keyframes slideIn {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .titulopri {
      animation: slideFadeIn 1.2s ease-out both;
      font-weight: bold;
      text-align: center;
      font-size: 18px;
      color: #ff6633;
  }

  @keyframes slideFadeIn {
      0% {
          opacity: 0;
          transform: translateY(-30px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .titulopri h7 {
      display: inline-block;
      animation: pulse 2.5s infinite ease-in-out;
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }
  }

  .paneles img {
      transition: transform 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
  }

  .paneles img.loaded {
      opacity: 1;
      transform: translateY(0);
  }

  .paneles img:hover {
      transform: scale(1.05);
      cursor: pointer;
  }

  .parallax-scroll {
      background-image: url('../img/publicidad.png');
      height: 600px;
      background-attachment: fixed;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
  }

  .parallax-scroll2 {
      background-image: url('../img/ser.png');
      height: 600px;
      background-attachment: fixed;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
  }

  .parallax-scroll a {
      position: absolute;
      width: 100%;
      height: 100%;
      display: block;
  }

  /* .row {
    background-color: #f37a1f;
} */

  .columnas {
      background-color: #EBF5FB;
      text-align: center;
  }

  .jumbotron {
      display: inline-flex;
  }

  .ms {
      text-align: left;
  }

  .tabla {
      text-align: end;
  }

  .logo {
      width: auto;
      height: 142px;
      line-height: 52px;
      z-index: 2;
      margin-left: 70px;
  }


  @media only screen and (min-width: 320px) and (max-width: 736px) {
      .logo {
          margin-top: 50px;
          width: 150px;

      }

      .barra {
          height: 50px;
          /* o 50px si quieres más compacto */
          background-position: center center;
      }

      .parallax-scroll {
          background-attachment: scroll;
          /* Desactivamos parallax en móvil */
          background-size: cover;
          /* O 'contain' si quieres toda la imagen visible */
          height: 150px;
          /* Más compacto en móvil */
      }

      .parallax-scroll2 {
          background-attachment: scroll;
          /* Desactivamos parallax en móvil */
          background-size: cover;
          /* O 'contain' si quieres toda la imagen visible */
          height: 150px;
          /* Más compacto en móvil */
      }

      .my-btn-group-responsive {
          flex-direction: column;
          align-items: center;
      }

      .my-btn-group-responsive .btn {
          width: 100%;
          max-width: 300px;
      }

      .contacto .mapa,
      .contacto .formulario {
          width: 100% !important;
      }

  }

  @media (min-width: 768px) {
      .contacto .mapa {
          width: 66.66%;
      }

      .contacto .formulario {
          width: 33.33%;
      }
  }


  .imgq {
      padding: 40px;

      width: 80%;

  }

  .titulopri {
      color: white;
      font-family: 'Montserrat';
      text-align: right;
      font-size: 16px;
      margin-top: 5px;
  }

  p {
      line-height: 1.2;
      font-size: 1em
  }

  .titulo {
      font-family: 'Myriad Pro';
      line-height: 0.5;

  }

  .titulo2 {
      width: 107%;
      text-align: center;
      line-height: 1.4;
      font-size: 15px;
  }

  .redes {


      text-align: center;
  }

  .row2 {
      display: flex;
  }


  .row5 {
      display: flex;
  }

  .paneles {
      background-color: #cccccc;
  }

  .row4 {
      display: flex;
      text-align: center;

  }

  .responsivecontent iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .btncolor {
      color: #ffffff;
      background-color: #000000;
  }

  .carousel-inner img {

      width: 31%;
      height: 40%;
  }

  .icon {
      color: #ffffff;
  }

  .slider {
      text-align: center;
  }

  .carousel-prev,
  .carousel-control-next {
      top: 0;
      bottom: 0;
      display: -ms-flexbox;
      display: flex;

      -ms-flex-align: center;
      align-items: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 5%;
  }

  /* .carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
} */

  .servicios-garantizados {
      text-align: center;
  }

  .espacio {
      background-color: #ffffff;
  }

  .lead {
      text-align: justify;
  }

  form {
      width: 430px;
      margin: auto;
      background: #ffffff;
      padding: 10px 20px;
      box-sizing: border-box;
      margin-top: 20px;
      border-radius: 7px;
  }

  h2 {
      color: #fff;
      text-align: center;
      margin: 0;
      font-size: 30px;
      margin-bottom: 20px;
  }

  input,
  textarea {
      width: 100%;
      margin-bottom: 20px;
      padding: 7px;
      box-sizing: border-box;
      font-size: 17px;
      border: 2px solid cyan;
      border-radius: 5px;
  }

  textarea {
      min-height: 100px;
      max-height: 200px;
      max-width: 100%;
  }

  #boton {
      background: #ff6633;
      color: #fff;
      padding: 20px;
  }

  #boton:hover {
      cursor: pointer;
  }



  @media (max-width:480px) {
      form {
          width: 100%;
      }


  }

  h1 {
      text-align: center;
      color: #fff;
      font-size: 40px;
      background: rgba(0, 0, 0, 0.4);
      margin-top: 300px;
  }

  .insti {
      text-align: center;
  }

  .pie {

      text-align: center;
      background-color: #ff6633;
      color: white;
  }

  .menu {
      font-family: 'Myriad Pro';
      font-size: 18px;
  }

  .nav-link {
      color: #ff6633;
  }

  .navbarMenu {
      color: #ff6633;
  }

  /*************************/
  footer {
      width: 100%;
      background: #333333;
      color: white;

  }

  .container-footer-all {
      width: 100%;
      max-width: 1200px;
      margin: auto;
      padding: 40px;
  }

  .container-body {
      display: flex;
      justify-content: space-between;
  }

  .colum1 {
      max-width: 350px;
  }

  .colum1 h1 {
      font-size: 22px;
      background-color: #333333;
  }

  .colum1 p {
      font-size: 14px;

      margin-top: 20px;
  }

  .btnw {
      background-color: #ff6633;
      color: white;
  }

  .colum2 {
      max-width: 400px;

  }

  .colum2 h1 {
      font-size: 22px;
      background-color: #333333;
  }

  .titulor {
      text-align: right;
  }

  .cw {
      text-align: center;

  }

  .row11 {
      margin-top: 20px;
      display: flex;
  }

  .row11 img {
      width: 36px;
      height: 36px;
  }

  .row11 label {
      margin-top: 10px;
      margin-left: 20px;

  }

  .colum3 {
      max-width: 320px;
  }

  .colum3 h1 {
      font-size: 25px;
      background-color: #333333;
  }

  .row22 {
      margin-top: 18px;
      display: flex;
  }

  .row22 img {
      width: 36px;
      height: 36px;
  }

  .row22 label {
      margin-top: 10px;
      margin-left: 1px;
      max-width: 140px;
  }

  .container-footer {
      width: 100%;

  }

  .footer {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      padding: 20px;
  }

  .copyright {
      color: #C7C7C7;
  }

  .copyright a {
      text-decoration: none;
      color: white;
      font-weight: bold;
  }

  .information a {
      text-decoration: none;

  }


  @media screen and (max-width: 1100px) {

      .container-body {
          flex-wrap: wrap;
      }

      .colum1 {
          max-width: 100%;
      }

      .colum2,
      .colum3 {
          margin-top: 40px;
      }
  }