@import url('./variables.css'); 

.text-color-A {
    color: var(--color-title);
}

.text-color-B {
    color: var(--color-btn);
}

.tracto {
    position: absolute; 
    top: 10px; 
    left: 10px; 
    height: 50px;
}    

.sombreado-A {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.sombreado-B {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3) !important;
}

.texto-ligero-B {
    font-weight: normal !important; 
    font-size: 0.9em !important; 
    color: black;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Sombra muy sutil */
}

.header-band {
    background-color: var(--color-title);
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
}
.header-band h1 {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}
.header-band p {
    font-size: 14px;
    margin: 5px 0 0;
}
.menu-band {
    background-color: black;
    color: white;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.menu-band .menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}
.menu-band .menu-icon div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
}
.menu-band .menu-links {
    display: flex;
    align-items: center;
}
.menu-band .menu-links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-left: 16px;
    margin-right: 10px;
}

.menu-band .menu-links a:hover {
    color: var(--color-title);
    text-shadow: 2px 2px 4px rgba(252, 252, 252, 0.5);    
}
.menu-band .menu-links img {
    height: 20px;
    margin-right: 5px;
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; /* Justo debajo del ícono del menú */
    right: 0;
    background-color: black;
    width: 200px;
    text-align: right;
    padding-top: 5px;
    padding-bottom: 2px;
    z-index: 10;
}

.dropdown-menu a {
    padding: 4px 8px;
    width: 100%;
    box-sizing: border-box;
    height: 30px; 
    display:inline-block; 
    color:white"
}

.dropdown-menu a:hover {
    background-color: #333;
    display: inline-block; 
}

.dropdown-menu a span:hover {
    color: var(--color-title); 
}

.contact-band {
    background: linear-gradient(to bottom, black, rgb(70, 69, 69));
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
.contact-band a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 0 15px;
}

.contact-band img {
    height: 20px;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .menu-band .menu-links {
        flex-wrap: wrap;
    }
        
    .menu-band .menu-icon {
        display: flex;
        order: 1;
    }
    .menu-band .menu-links {
        flex-direction: row;
        justify-content: flex-end;
        width: 100%;
    }
    .menu-band .menu-links a {
        margin-left: 5px;
    }
    .contact-band a {
        font-size: 13px;
        margin: 0 12px;
    }

    .hide-on-small {
        display: none;
    }

}

.required-text {
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 11px;
    color: #888;
}

/* Reduce el tamaño del icono a la mitad */
.swal-icono {
    transform: scale(0.7) !important;
    padding: 0 auto 0.2em !important;
    margin: 0 auto 0.2em !important;
}

.popup {
    display: none; /* Oculta el popup por defecto */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 2px solid black; /* Borde negro grueso */
    border-radius: 0; /* Bordes rectos */
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Estilos para el fondo oscuro */
.overlay {
    display: none; /* Oculta el fondo por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.popup .close:hover {
    color: red;
}

