/* ========== GENERAL ========= */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #F8F9FA;
    color: #343A40;
    margin: 0;
    padding-top: 70px; /* espacio para navbar fijo */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #002B5B;
}
.carousel-inner img {
    object-fit: contain; /* muestra la imagen completa sin recortar */
    height: 300px;
   
    border-radius: 15px;
    background: linear-gradient(90deg, rgba(44, 0, 62, 0.8), rgba(0, 4, 40, 0.8), rgba(44, 0, 62, 0.8)), url('../images/fondo1.jpg');
    background-size: cover
}

.carousel-inner img {
    object-fit: contain;
    height: 300px;
    
    border-radius: 15px;
}
/* ========== NAVBAR ========= */
.navbar {
    transition: all 0.3s ease-in-out;
}

.navbar-brand span {
    font-size: 1.6rem;
}

.nav-link {
    color: #343A40;
    transition: color 0.3s;
}

.nav-link:hover {
    background: linear-gradient(90deg, #EB5757, #2F80ED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-outline-primary {
    border: 2px solid #0D6EFD;
    color: #0D6EFD;
}

.btn-outline-primary:hover {
    background-color: #0D6EFD;
    color: #fff;
}

/* ========== BOTONES ========= */
.btn-super {
    background: linear-gradient(90deg, #EB5757, #2F80ED);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-super:hover {
    opacity: 0.9;
}
/* ========== FOOTER ========= */
/* ========== FOOTER MODERNO ========= */
.footer-professional {
    background: #1A1A1A;
    color: #CCCCCC;
}
.footer-links a:hover {
    background: linear-gradient(90deg, #EB5757, #2F80ED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-btn {
    background: linear-gradient(90deg, #EB5757, #2F80ED);
    color: #FFFFFF;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-column {
    flex: 1 1 300px;
    min-width: 250px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-column h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFD700; /* Dorado elegante */
}

.footer-text {
    font-size: 1rem;
    margin-bottom: 10px;
}


.footer-btn:hover {
    background-color: #FFC107;
    transform: scale(1.05);
}


.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    transition: all 0.3s ease;
}

.footer-social a img {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

.footer-social a:hover {
    transform: scale(1.1);
    background: #FFD700;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #555;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #AAAAAA;
}

/* ========== RESPONSIVE ========= */
@media (max-width: 768px) {
    .navbar-brand span {
        font-size: 1.3rem;
    }

    .btn-super {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}
