@import url("comun.css");

/* Perfil de usuario */
.perfil {
    max-width: 900px;
    margin: 50px auto; 
    padding: 20px;
    background: linear-gradient(to right, #7485C0, #E7E7EE);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); 
    margin-bottom: 100px;
}

.contenedor {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    height: 90%;
    width: 90%;
}

.izquierda {
    width: calc(70% - 20px); 
}

.derecha {
    width: calc(30% - 20px); 
    margin-left: 20px; 
}

.avatar-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 60px;
    margin-right: -20px;  
}

.avatar {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.avatar img {
    width: 100%;
    height: auto;
}

.avatar-overlay {
    margin-left: 10px;
}

.estadisticas {
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 20px;
    margin-top: 80px;
    margin-right: -70px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.estadisticas h2 {
    margin-bottom: 10px;
    border-bottom: 2px solid #ccc;
}

.estadisticas ul {
    list-style: none;
    padding: 0;
}

.estadisticas ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.estadisticas ul li i {
    margin-right: 10px;
    color: #007bff;
}

/* Ocultar el input de tipo file */
#inputFotoPerfil {
    display: none;
}

/* Estilos para el formulario */
#formularioEdicion {
    margin-top: 50px; 
    margin-bottom: 50px; 
    height: 40%;
    margin-left: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 400px;
}

.inputContainer {
    margin-bottom: 40px; 
    margin-top: 40px;
}

.label {   
    margin-bottom: 12px; 
    color: #555; 
    font-weight: bold;
}

.inputContainer input[type="text"],
.inputContainer input[type="email"],
.inputContainer input[type="password"],
.inputContainer select {
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
    
}

.inputContainer input[type="text"]:focus,
.inputContainer input[type="email"]:focus,
.inputContainer input[type="password"]:focus,
.inputContainer select:focus {
    border-color: #007bff;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
}

.botones {
    margin-top: 30px; 
    text-align: center; 
}

button {
    padding: 12px 20px; 
    border: none;
    border-radius: 25px; 
    background-color: var(--color-azulOscuro); 
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: var(--color-azulClaro); 
}
.botones {
    margin-top: 55px; 
    text-align: center; 
}

.botones button:first-child {
    margin-right: 10px;
}

/* CSS para Sección de Contacto */
.perfil2 {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background: linear-gradient(#ffffff, #e7e7ee);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 100px;
}

.contenedor2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    width: 100%;
}

/* Estilos para el texto informativo */
.texto-izquierda2 {
    margin-top: 70px;
    margin-left: 50px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #294973; 
}

.texto-izquierda2 h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a; 
}

.texto-izquierda2 p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #555; 
}

/* Estilos para los iconos */
.texto-izquierda2 i {
    margin-right: 10px;
    font-size: 18px;
    color: #294973; 
}

.center {
    text-align: center;
}

.color {
    font-weight: bold;
    color: #294973; 
}

