* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(16, 15, 45);
    margin: 0px;
    padding: 0px;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;            
    justify-content: space-between; 
    background-color: white;
    width: 100%;
    min-height: 80px;             
    padding: 10px 20px;           
    position: relative;
    z-index: 10;
}

.menu::after {
    content: "";
    position: absolute;
    bottom: -20px; 
    left: 0;
    width: 100%;
    height: 20px;  
    
    background: linear-gradient(
        to bottom, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(16, 15, 45, 1) 100%
    );
    
    pointer-events: none; 
}

.logo_container {
    display: flex;
    justify-content: flex-start;   
    align-items: center;
    width: 30%;
}

.logo {
    width: auto;
    max-width: 180px;
    max-height: 55px;               
    object-fit: contain;
}

.construccion-container {
    display: flex;
    justify-content: flex-end;      
    align-items: center;
    width: 30%;
}

.construccion {
    width: auto;
    max-height: 100px;               
    object-fit: contain;
}

.menuOptions {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nunito-sans-construccion {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 1000;
    font-style: normal;
    font-variation-settings:
      "wdth" 100,
      "YTLC" 500;
    font-size: 40px;
}

.nunito-sans-text{
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings:
      "wdth" 100,
      "YTLC" 500;
}
  

.alianza{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15%;
    padding: 20px;
}

.alianza-card{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
    width: 50%;
    border-radius: 20px;
}

.alianza-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;          
    border-radius: inherit;
    filter: blur(120px) saturate(1.5);
    opacity: 0.6;                 
    z-index: -1;                  
    transform: scale(1.02);        
}

.alianza-card:hover {
    transform: translateY(-5px);
}

.alianza-info{
    flex: 0 0 50%;
    padding: 20px;
}

.alianza-texto {
    color: #100f2d;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    font-weight: bolder;        
}

.alianza-button{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
}

.alianza-img{
    width: 50%;
    height: 100%;
    display: block;
    object-fit: cover;
    padding: 10px;
}


