

.overlay_nosotros {
    background-color: rgba(0, 0, 0, 0.6); /* Capa oscura */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.contenido_nosotros {
    max-width: 800px;
    padding: 20px;
}

.contenido_nosotros h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #c01121;
}

.contenido_nosotros p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
    .contenido_nosotros h1 {
        font-size: 2rem;
    }

    .contenido_nosotros p {
        font-size: 1rem;
    }
}






/* === SECCIÓN NOSOTROS === */
.nosotros-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
  }
  
  .nosotros-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .nosotros-img img {
   
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
    height: auto;
    
  }
  
  .nosotros-content h2 {
    font-size: 2rem;
    color: #c01121;
    margin-bottom: 20px;
  }
  
  .nosotros-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
  }
  
  .btn-nosotros {
    background-color: #c01121;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn-nosotros:hover {
    background-color: #e0525c;
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .nosotros-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .nosotros-img img {
      max-height: 300px;
    }
  
    .btn-nosotros {
      display: inline-block;
    }
  }

  







  .empresa-section {
    background-color: #f7f7f7;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    color: #333;
  }
  
  .empresa-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  .empresa-header h1 {
    font-size: 2.5rem;
    color: #c01121;
    margin-bottom: 20px;
  }
  
  .empresa-header p {
    font-size: 1.1rem;
    color: #555;
  }
  
  /* === VALORES === */
  .empresa-valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 80px;
  }
  
  .valor-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .valor-card i {
    font-size: 2.5rem;
    color: #c01121;
    margin-bottom: 15px;
  }
  
  .valor-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .valor-card p {
    font-size: 0.95rem;
    color: #555;
  }
  
  .valor-card:hover {
    transform: translateY(-5px);
  }
  
  /* === MISIÓN & VISIÓN === */
  .empresa-mv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .mv-card {
    background-color: #c01121;
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  }
  
  .mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .mv-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .empresa-header h1 {
      font-size: 2rem;
    }
  
    .empresa-header p {
      font-size: 1rem;
    }
  
    .mv-card {
      text-align: center;
    }
  }

  







  .banner-cta {
    background-color: #c01121;
    color: white;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .banner-cta-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .banner-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .banner-cta h3 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 20px;
  }
  
  .banner-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .btn-banner {
    background-color: white;
    color: #c01121;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .btn-banner:hover {
    background-color: #fff3f0;
    color: #c94a24;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .banner-cta h2 {
      font-size: 1.8rem;
    }
  
    .banner-cta h3 {
      font-size: 1.3rem;
    }
  
    .banner-cta p {
      font-size: 1rem;
    }
  }
  

















  .horario-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .horario-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .horario-section h2 {
    font-size: 2.2rem;
    color: #c01121;
    margin-bottom: 20px;
  }
  
  .horario-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  /* Grid de horarios */
  .horario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .horario-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    text-align: left;
  }
  
  .horario-card h3 {
    color: #c01121;
    margin-bottom: 15px;
  }
  
  .horario-card p {
    font-size: 1rem;
    margin: 5px 0;
    color: #444;
  }
  
  /* Botón */
  .btn-horario {
    background-color: #c01121;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .btn-horario:hover {
    background-color: #e0525c;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .horario-section h2 {
      font-size: 1.8rem;
    }
  
    .horario-desc {
      font-size: 1rem;
    }
  
    .horario-card {
      text-align: center;
    }
  }
  