/* Blankspace body */
.cuerpo
{
    height: 80vh;
}

/* Estilos para navbar */
.BarraBlue
{
    background: linear-gradient(90deg, #004eaa 5%, #9568c6 95%);
    height: 2rem;
    position: relative;
    z-index: 5;
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s; /* Transición suave */
}  

.BarraBlue2
{
    background: linear-gradient(90deg, #004eaa 5%, #9568c6 95%); 
    color: white !important; 
    height: 40px;
    font-size: .9rem;
    font-weight: 550;
    font-family:Arial, Helvetica, sans-serif;
    transition: all 0.3s ease;
    position: relative;
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s; /* Transición suave */
}

.BarraBlue2 a
{ 
    text-decoration: none;
    color: white !important; 
    margin: 0px;
}

.BarraBlue3
{ 
    background: linear-gradient(90deg, #9568c6 5%, #004eaa 95%);
    height: 50px;
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s; /* Transición suave */
    display: flex;
    align-items: center; /* Centra verticalmente */
    justify-content: center; /* Centra horizontalmente */
}

.BarraBlue3 a
{
   text-decoration: none;
   color: white;
}

#cardNav
{
    box-shadow: 9px -45px 55px 28px rgba(0, 0, 0, .49); 
    border-radius: 0 0 20px 20px;
    margin-left: -150px;
    transition: all 0.3s ease-in-out;
    transform-origin: top center;
    margin-right: 10px;
}

.CardLogo
{
    width: 200px;
    transition: all 0.3s ease-in-out;
}

.barra
{
    border-bottom: 2px solid transparent;
}

.barra :hover
{
    border-bottom: 2px solid #ff376f;
}

.dropdown-menu
{
    background-color: rgba(255, 55, 111, .9) !important;
}

.dropdown-menu :hover 
{
    background-color: transparent;
}

.dropdown-item :hover 
{
    background-color: transparent;
}

.dropdown-item .border-bottom :hover 
{
    border-bottom: 0px solid transparent;
} 

.menu .nav-item {
    list-style: none;
}

.menu{
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.col2-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.col-hidden {
    visibility: hidden; 
    transition: opacity .4s ease top .4s step-start;
}
  
.col-visible {
    opacity: 1;  
    visibility: visible;  
    transition: opacity 0.3s ease-in-out;  
    scroll-behavior: smooth;
  }

.card-scale {
    transform: scale(0.6);
    transition: transform .6s ease-in-out;
    position: relative;
}

/* Estilos para search */
#navBuscador
{
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
}

.busquedad::placeholder {
    color: white; 
    font-weight: 600;
}

.busquedad
{ 
    background-color: transparent; 
    color: white !important;
    border-radius: 10px;
    height: 30px;
    width: 50% !important;
}

.search-container {
    display: flex;
    align-items: center;
    width: 35%;
    position: relative;
}

.search-icon {
    position: relative;
    left: 0px;
    z-index: 10;
    margin-right: 20px;
}

/* Estilos para footer */
footer
{ 
    height: auto;
    background: linear-gradient(90deg, #004EAA 20%, #9568C6 80%);
    color: white;
    width: 100%;
    margin: 0;
    padding: 0 15px; /* Añade padding horizontal en lugar de margin */
}

.cardFooter
{ 
    box-shadow: 0 -10px 15px rgba(0, 0, 0, 0.2);
    width: 60%; 
    padding: 10px;
    border-radius: 0 0 20px 20px;
}

.CardLogoFooter
{
    width: 100%;
}

footer p
{
    margin-top: 1rem;
}

footer .row{
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

footer p{
    font-weight: 500;
}

hr
{
    border:1.5px solid white;
    margin-right: 2rem;
}

footer .col-2
{
    margin-top:2rem
}

.row {
    --bs-gutter-x: 0; 
}

.py-4{
    padding-top: 0rem !important;
}

.Fuente
{
    color: rgba(255, 255, 255, 0.367);
}

footer .menu span.nav-link {
    padding-bottom: 0px;
    margin-bottom: 0px;
    font-size: .8rem;
    line-height: 1;
    border-bottom: none;
    font-style: italic;
    font-weight: bold;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
}

.separate{
    margin-top: 4px;
}

/* Estilos para el menú móvil */
@media (max-width: 992px) {
    /* Navbar */
    #col1 {
        display: none !important;
    }

    .mobile-menu-container {
        display: none;
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, #004eaa 5%, #9568c6 95%);
        z-index: 1000;
        padding: 15px;
    }
    
    .mobile-menu-container.show {
        display: block;
    }
    
    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 5px;
        padding: 5px;
    }
    
    .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");
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
    }
    
    .mobile-menu-item {
        text-align: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    #navBuscador {
        justify-content: center;
        flex-direction: row; 
        padding-left: 10px;
    }
    
    .busquedad {
        width: 80% !important;
    }

    .search-container {
        width: 80%;
        position: relative;
    }

    .search-icon {
        position: absolute;
        left: 20px;
    }
    
    #cardNav {
        justify-content: center;
        flex-direction: row;
    }
    
    .CardLogo {
        width: 130px;
    }

    .mx-auto {
        margin-left: 30px !important;
    }

    .mobile-dropdown {
        position: static; 
        background-color: rgba(255, 55, 111, .9) !important;
    }

    footer .col-lg-2, 
    footer .col-lg-3, 
    footer .col-sm-12 {
        padding-left: 15px;
        padding-right: 15px;
    }
}