/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jan 23 2026 | 19:01:11 */
/* ===== MEJORAS RESPONSIVAS ===== */

/* Ajustes generales para móviles */
@media (max-width: 768px) {
  /* Header y navegación */
  .navbar-brand img {
    max-height: 50px !important;
    width: auto !important;
  }
  
  .navbar-toggler {
    padding: 5px 10px;
    font-size: 14px;
  }
  
  /* Ajustar el carrusel */
  .carousel-item {
    height: 300px !important;
  }
  
  .carousel-caption h5 {
    font-size: 18px !important;
  }
  
  .carousel-caption p {
    font-size: 14px !important;
    display: none; /* Ocultar en móviles si es muy largo */
  }
  
  /* Contenedores principales */
  .container, .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* Títulos */
  h1 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
  
  h2 {
    font-size: 24px !important;
  }
  
  h3 {
    font-size: 20px !important;
  }
  
  /* Textos */
  p, li, span {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  
  /* Imágenes */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Espaciados */
  .py-5, .pt-5, .pb-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .my-5, .mt-5, .mb-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}

/* Ajustes para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 95% !important;
  }
  
  h1 {
    font-size: 32px !important;
  }
  
  .carousel-item {
    height: 400px !important;
  }
}

/* Ajustes específicos para la página "Quiénes Somos" */
@media (max-width: 768px) {
  /* Sección de contenido principal */
  .elementor-column-gap-default > .elementor-row {
    flex-direction: column !important;
  }
  
  /* Tarjetas y columnas */
  .col-md-6, .col-lg-4, .col-lg-6 {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  
  /* Ajustar grid de servicios/equipo */
  .row > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  /* Formularios */
  input, textarea, select {
    font-size: 16px !important; /* Evita zoom en iOS */
    min-height: 44px !important; /* Tamaño táctil mínimo */
  }
  
  /* Botones */
  .btn {
    padding: 10px 20px !important;
    font-size: 16px !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 10px !important;
  }
  
  /* Ajustar tablas si existen */
  table {
    display: block !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
  }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 480px) {
  .carousel-item {
    height: 250px !important;
  }
  
  h1 {
    font-size: 24px !important;
  }
  
  .display-4 {
    font-size: 28px !important;
  }
  
  /* Ocultar elementos no esenciales en móviles */
  .d-none-mobile {
    display: none !important;
  }
}

/* Mejoras para el menú de navegación */
@media (max-width: 992px) {
  .navbar-collapse {
    background: white;
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid #eee;
  }
}

/* Asegurar que los videos sean responsive */
video, iframe, .video-container {
  max-width: 100% !important;
  height: auto !important;
}

/* Mejorar legibilidad en móviles */
@media (max-width: 768px) {
  body {
    text-align: justify;
  }
  
  .text-justify-mobile {
    text-align: justify !important;
  }
}

/* Ajustes específicos para el footer */
@media (max-width: 768px) {
  footer .row > div {
    margin-bottom: 30px !important;
  }
  
  footer h5 {
    margin-bottom: 15px !important;
  }
}