body{
    font-family: sans-serif;
    margin: 0;
    background: linear-gradient(45deg, rgb(209, 164, 164)rgb(255, 255, 255));
    color: white;
}
a{
    text-decoration: none;
    color: rgb(0, 0, 0);
}
#barra-arriba{
    display: flex;
    min-height: 70px;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo{
    display: flex;
    align-items: center;
    position: relative;
    left: 42%;
    
}
.copyright-section {
    background-color: black;
    color: white;
    text-align: 10px;
    padding: 10px 0;
    position: absolute;
    bottom: -100%;
    width: 100%;
}

.destino{
    color: rgb(119, 0, 0) !important;
    font-weight: bold !important;
}
.destino:hover{
    color: black !important;
}
.logo img{
    height: 75px;
    margin-right: 20px;
    margin-left: 20px;
    
}

nav a{
    font-weight: 600;
    padding-right: 10px;
}

nav a:hover{
    color:rgb(0, 0, 0);
}

@media (max-width:700px){
    header{
        flex-direction: column;
    }

    nav{
        padding: 10px 10px;
    }
    .todo{
        flex-direction: column;
        padding: 10px 10px;
    }
}
/* ------------   Cuerpo   ------------ */

.fa-home:hover{
    color: black !important;
    font-size: 20px;
}

#logo{

    margin-left: 30px;
    margin-top: 20px;
    position: relative;
    width: 30%;
    border: black 8px double;
    border-radius: 50px;
    float: left;
}

.separador-franja {
    transform: rotate(-90deg);
    width: 41.25%; /* Cambiado a porcentaje para ser responsive */
    height: 1px;
    background-color: black;
    border: none;
    margin: 0;
    position: absolute;
    bottom: 0px;
    left: 80%; /* Cambiado a porcentaje para centrar horizontalmente */
    transform-origin: bottom right; /* Ajusta el origen de la transformación para que rote desde la esquina inferior derecha */
}

/* Estilos adicionales para ajustar la posición vertical en dispositivos más pequeños */
@media (max-width: 768px) {
    .separador-franja {
        top: 280%; /* Ajusta la posición vertical en dispositivos más pequeños según tus necesidades */
    }
}
.separador-franja2 {
    transform: rotate(-90deg);
    width: 100%; /* Cambiado a porcentaje para ser responsive */
    height: 1px;
    background-color: black;
    border: none;
    margin: 0;
    position: absolute;
    bottom: 0px;
    left: -140%; /* Cambiado a porcentaje para centrar horizontalmente */
    transform-origin: bottom right; /* Ajusta el origen de la transformación para que rote desde la esquina inferior derecha */
}

/* Estilos adicionales para ajustar la posición vertical en dispositivos más pequeños */
@media (max-width: 768px) {
    .separador-franja2 {
        top: 280%; /* Ajusta la posición vertical en dispositivos más pequeños según tus necesidades */
    }
}