/* CSS para el Header */
.header-section {
    padding: 20px 0;
  }
  
  .logo-img {
    max-width: 100%;
    height: auto;
    width: 150px; /* Ajusta el tamaño del logo según sea necesario */
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-md-left {
    text-align: left;
  }
  
  /* Responsividad */
  @media (max-width: 767px) {
    .logo-img {
      width: 120px; /* Ajusta el tamaño del logo en pantallas más pequeñas */
    }
  
    .header-section h1 {
      font-size: 1.5rem; /* Ajusta el tamaño del texto del título en pantallas pequeñas */
    }
  
    .header-section p {
      font-size: 1rem; /* Ajusta el tamaño del texto del subtítulo en pantallas pequeñas */
    }
  }
  
  @media (min-width: 768px) {
    .header-section h1 {
      font-size: 2rem; /* Ajusta el tamaño del texto del título en pantallas medianas y grandes */
    }
  
    .header-section p {
      font-size: 1.25rem; /* Ajusta el tamaño del texto del subtítulo en pantallas medianas y grandes */
    }
  }
  

  .hero-section {
    background: url('assets/img/banner1.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
  }
  .hero-section .container {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 10px;
  }
  .hero-section h2 {
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
    font-size: 48px;
  }

  .services-section{
    background: url('assets/img/banner2.jpg') no-repeat center center;
    background-size: cover;
  }
  .services-section .container {
    background-color: rgba(250, 250, 250, 0.6);
    border-radius: 20px;
    padding: 10px;
    color: #000;
  }

  .features-section {
    background-color: #f8f9fa;
    padding: 50px 0;
  }

  .gallery {
    padding-top: 50px;
    padding-right: 15px;
    padding-bottom: 50px;
  }
  
  .gallery .container {
    display: flex;
    justify-content: center; /* Centra las tarjetas en el contenedor */
    flex-wrap: wrap;
  }
  
  .gallery img {
    width: 80%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .gallery img:hover {
    transform: scale(1.1);
  }
  
  .gallery .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Espacio entre tarjetas */
  }
  
  .card {
    border: none;
    border-radius: 15px; /* Redondea las esquinas de la tarjeta */
    overflow: hidden;
    width: 200px; /* Ancho fijo de la tarjeta */
    height: 200px; /* Altura fija de la tarjeta */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra sutil */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Centra la tarjeta */
  }
  
  /* Responsividad */
  @media (max-width: 767px) {
    .card {
      width: 150px; /* Ajusta el ancho de la tarjeta en pantallas más pequeñas */
      height: 150px; /* Ajusta la altura de la tarjeta en pantallas más pequeñas */
    }
  }
  

  .contact-section {
    padding: 50px 0;
  }

  .qr-section {
    text-align: center;
    padding: 20px 0;
  }

  .qr-section img {
    width: 200px;
    height: auto;
  }

  footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
  }

  .about-section {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
  }

  .services-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
  }