@charset "utf-8";

/* Estilos generales */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
    background-image: url('Imagenes/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Línea superior */
.linea-superior {
    height: 250px;
    background-color: #9f2149;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Texto superior */
.texto-arriba {
    position: fixed;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 50px;
    color: #FFFFFF;
    z-index: 10;
}

/* Marco circular */
.marco-circular {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #b18c5a;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marco-circular img {
    width: 100%;
    height: auto;
}

.logotipo {
    position: fixed;
    top: 2%; /* Margen superior desde el contenedor */
    left: 50%; /* Centro horizontal */
    transform: translateX(-50%); /* Ajuste exacto al centro */
    width: 20%; /* Ancho relativo al contenedor */
    height: auto; /* Mantener proporción */
    z-index: 2; /* Asegurar que esté por encima de otros elementos */
}

/* Contenedor de datos */
.contenedor_lista {
    text-align: center;
    margin-top: 500px; /* Ajusta según el diseño */
    padding: 20px; /* Espaciado interno */
    z-index: 10;
}

.datos p {
    display: inline-block;
    background-color: #b18c5a;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 5px 0;
    font-size: 50px;
    color: #000000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.datos p strong {
    color: #000;
}

/* Estilos para enlaces */
.datos a {
    display: inline-block;
    background-color: #b18c5a;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 5px 0;
    font-size: 16px;
    color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.datos a:hover {
    background-color: #9c7145;
}

/* Responsividad */
@media (max-width: 1024px) {
    .texto-arriba {
        font-size: 35px;
        top: 150px;
    }

    .marco-circular {
        width: 250px;
        height: 250px;
    }

    .logotipo {
        width: 25%;
		height: auto;
    }

    .datos p, .datos a {
        font-size: 20px;
        padding: 8px 10px;
    }
}

@media (min-width: 350px) {
    .texto-arriba {
        font-size: 18px;
        top: 210px;
    }

    .marco-circular {
        width: 200px;
        height: 200px;
		top:250px;
    }

   .logotipo {
        top: 2%; /* Baja el logotipo para evitar que quede demasiado arriba */
        width: auto; /* Aumenta el ancho relativo para que sea más visible */
	    height: auto;
	    }
	   

    .datos p, .datos a {
        font-size: 10px;
        padding: 3px 4px;}
   
}
