@media (max-width: 767.98px) {
  /* Mostrar menú hamburguesa (asumiendo que está oculto y no está en el CSS base) */
  /* Si tienes menú oculto en md+, aquí podrías agregar estilos para mostrarlo */
  .only-mobile{
    display: block;
  }
  .only-desktop{
    display: none;
  }
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  body {
    background-image: url(../img/gap-bg-top-mobile.png);
    background-position: top right;
    background-repeat: no-repeat;
  }
  /* Ajustes para el header */
  /* Ocultar el menú horizontal original */
  nav.gap-menu {
    display: none !important;
  }

  /* Botón burger visible */
  .burger-menu {
    display: flex;
    cursor: pointer;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 0;
  }

  .burger-menu div {
    height: 3px;
    background-color: #c0392b;
    border-radius: 2px;
  }

  /* Menú desplegable vertical */
  nav.gap-menu.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Ajusta según la altura del header */
    right: 0;
    background: white;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1050;
  }

  nav.gap-menu.mobile-active a {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    color: #333 !important;
    font-weight: 600;
  }

  nav.gap-menu.mobile-active a:last-child {
    border-bottom: none;
  }

  /* Ajusta logo para móviles */
  header .header-logo {
    max-height: 35px !important;
  }

  /* Ajustar padding del header */
  header .py-3 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .bajada-bg{
    background: #c0392b;
  }
  /* Banner principal */
  .home-banner{
      text-align:center;
  }
  .banner-bajada {

    font-size: 28px !important;
    line-height: 34px !important;
    max-width: 100% !important;
  }
  .banner-bajada .typo-1 {
    font-size: 24px !important;
    line-height:30px;
  }
  .banner-bajada .typo-2 {
    font-size: 30px !important;
    line-height:36px;
  }
  .banner-bajada .typo-3 {
    font-size: 18px !important;
  }
  .banner-bajada .typo-4 {
    font-size: 35px !important;
  }
  .banner-bajada .typo-5 {
    font-size: 32px !important;
  }
  .banner-bajada .typo-6 {
    font-size: 20px !important;
  }
  .banner-bajada .typo-7 {
    font-size: 24px !important;
  }
  .typo-8 {
    font-size: 14px !important;
    max-width: 100% !important;;
  }

  /* Botón principal */
  .btn-agende-aca {
    font-size: 16px !important;
    padding: 12px 25px !important;
    width: 100%;
    max-width: 300px;
  }

  /* Carousel clientes */
  .carrusel-container {
    height: 350px !important;
    width: 100% !important;
  }
  .carrusel-item {
    padding: 1rem 1rem 1rem 2.5rem !important;
    font-size: 0.9rem !important;
  }
  .carrusel-item .cliente-foto {
    width: 50px !important;
    height: 50px !important;
    top: -1rem !important;
    left: -1rem !important;
  }
  .carrusel-controls {
    right: 10px !important;
    top: auto !important;
    bottom: 10px !important;
    flex-direction: row !important;
    gap: 5px !important;
  }
  .carrusel-controls button {
    padding: 0.3rem 0.6rem !important;
    font-size: 1.2rem !important;
  }

  /* Texto clientes */
  #clientes .clientes-titulo {
    font-size: 28px !important;
    text-align: center;
  }
  .clientes-bajada {
    font-size: 20px !important;
    line-height: 28px;
    padding: 0 10px;
  }

  /* Sección de servicios */
  .servicios-titulo {
    font-size: 28px !important;
    line-height: 28px;
    text-align: center;
  }
  .servicios-txt {
    font-size: 16px !important;
    text-align: center;
  }

  /* Cards como-lo-hacemos */
  .card-light {
    padding: 30px 15px !important;
    border-radius: 25px !important;
    margin-bottom: 20px;
  }
  .card-titulo {
    font-size: 20px !important;
    text-align: center;
  }
  .card-txt {
    font-size: 14px !important;
    text-align: center;
  }
  .como-lo-hacemos-icon {
    max-width: 70px !important;
    margin: 0 auto 10px auto !important;
    display: block;
  }

  /* Bajada general */
  .gap-es-bajada {
    font-size: 22px !important;
    line-height: 28px !important;
    padding: 0 15px;
  }

  /* Sección contacto */
  .bg-contacto {
    padding-top: 50px !important;
    margin-top: 30px !important;
    width:100%;
  }
  .gap-contacto {
    padding: 20px !important;
    margin-bottom: 50px !important;
    border-radius: 15px !important;
    background-position: center !important;
  }
  .gap-contacto .gap-contacto-titulo {
    font-size: 24px !important;
    text-align: center;
  }
  .gap-contacto .gap-contacto-bajada {
    font-size: 16px !important;
    text-align: center;
    margin-bottom: 15px !important;
  }
  .gap-contacto input,
  .gap-contacto textarea {
    font-size: 14px !important;
  }
  .gap-contacto button.btn {
    font-size: 16px !important;
    width: 100% !important;
    padding: 12px !important;
  }

  /* Footer */
  footer {
    background: #c0392b;
    padding-top: 40px !important;
    padding-bottom: 60px !important;
    font-size: 14px !important;
  }
  .social-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
    margin: 0 6px !important;
    padding-top: 9px !important;
    border-radius: 18px !important;
  }
  .social-icon:first-of-type {
    margin-left: 20px !important;
  }
  .social-icon:last-of-type {
    margin-right: 20px !important;
  }
  footer .footer-menu a {
    margin: 0 10px !important;
    font-size: 14px !important;
  }
  .footer-menu {
    padding-top: 20px !important;
  }
  .carrusel-item{
    width: 80%;
  }
  .carrusel-item .comentario{
    font-size: 12px;
    line-height: 15px;
  }
  .carrusel-item .nombre{
    font-size: 14px;
    line-height: 15px;
  }
  .carrusel-item .cargo{
    font-size: 12px;
  }
}
