@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;800&display=swap');

.montserrat-texto {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: 14px;
  font-weight: 400;
  padding: 0.5rem 1rem;
  color: white;
}

h1, h2, h3, h4, h5, h6, p {
    font-family: "Montserrat", sans-serif ;
    color: #ffffff !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 1000;
    font-style: bold;
}

/* Estilos generales */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000 !important;
    color: #ffffff;
}

/* Navbar personalizada */
.navbar-custom {
    padding: 0.5rem 0;
    z-index: 1000;
}

/* Logo en móviles (centrado) */
.logo-mobile-center {
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

/* Estilos para los enlaces de navegación */
.montserrat-nav {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: white !important;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.montserrat-nav:hover {
    color: #f8f9fa !important;
    transform: translateY(-2px);
}

.montserrat-nav::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.montserrat-nav:hover::after {
    width: 70%;
    left: 15%;
}

/* Estilos para el botón hamburguesa */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    position: absolute;
    right: 15px;
    top: 25px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Ajustes para dispositivos móviles */
@media (max-width: 992px) {
    .navbar-nav {
        padding: 1rem 0;
        text-align: center;
    }
    
    .nav-item {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .montserrat-nav {
        display: block;
        padding: 0.75rem 1rem;
    }
    
    .montserrat-nav::after {
        display: none;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, #343a40 0%, #2c3136 100%);
        padding: 1rem;
        margin-top: 1px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Ajustes para escritorio */
@media (min-width: 992px) {
    .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: space-around;
    }
    
    .nav-item {
        text-align: center;
    }
}

/* Mejoras visuales para el contenido */
.container {
    max-width: 1200px;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-title {
    color: #343a40;
    font-weight: 700;
}

.grandes{
    color: #ffffff;
    font-size: 65px;
    font-weight: 1000;
    font-style: bold;
}

.footer_fondo {
    background-color: #16181e;
    color: white;
    padding: 2rem 0;
}

.palfooter{
    display: flex;
    justify-content: center; /* centra la lista */
    align-items: center;
    list-style: none;
    gap: 24px;
}

.palfooter2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.palfooter2 li {
  margin-bottom: 12px; /* reemplaza los <br> */
}

.palfooter2 li a {
  text-decoration: none !important;
  color: white !important;
}

.palfooter2 li a:hover {
  transition: all 0.3s;
  color: rgb(155, 155, 155) !important;
}

.social-icons {
  margin-right: 50px;
  display: flex;
  gap: 24px;
}

.social-icons a {
  color: white;
  font-size: 30px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: rgb(155, 155, 155);
}

.copyright {
  margin: 0;
  color: white;
  font-size: 14px;
}

.espaciado{
    margin-left: 25%;
    margin-right: 25%;
}