/* Fuente general */
body {
    font-family: 'Oswald', sans-serif;
    background-color: #e2b53b;
    margin: 0;
    padding: 0;
  }
  
  /* Enlaces de navegación */
  .navbar .nav-link {
    color: white !important;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  
  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    color: #ffc107 !important;
  }
  
  /* Sección de inicio */
  #inicio h1 {
    color: rgb(255, 255, 255);
  }
  
  #inicio p {
    color: #ffffff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .navbar-nav {
      text-align: center;
    }
  
    #inicio .row {
      flex-direction: column;
    }
  
    #inicio .col-md-6 {
      margin-bottom: 2rem;
    }
  }

  /* Logo redondo y ajustado */
.logo-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ffc107;
  }
  
  /* Asegura que el navbar se alinee bien en pantallas grandes */
  .navbar .container {
    justify-content: space-between;
  }

  p {
      
    font-size: 1.2rem;
    color: #ffffff;
  }
  
  .logo-central {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 3px solid #ffc107; /* Borde amarillo opcional */
    margin: auto;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Ajusta según la altura de tu navbar */
  }

  .carrusel-img {
    max-height: 250px; /* puedes ajustar esta altura a tu gusto */
    max-width: 600px;
    object-fit: cover;
  }
  
  .card i {
    transition: transform 0.3s ease;
  }
  
  .card:hover i {
    transform: scale(1.2);
  }
  
  .card p {
    color: #444;
  }
  
  .img-galeria {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 1.5rem;
    opacity: 0.9;
    transition: background-color 0.3s ease;
  }
  
  .carousel-control-prev-icon:hover,
  .carousel-control-next-icon:hover {
    background-color: #ffc107;
  }
  
  #nosotros h3 {
    font-size: 1.8rem;
  }
  
  #nosotros p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .logo-footer {
    width: 110px;
    height: 110px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-footer img {
    max-width: 80px;
    max-height: 80px;
  }
  
  /* Loader styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #ffc107;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animación de giro */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

img {
  pointer-events: none;
  user-select: none;
}
