/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e0f7fa; /* Verde agua claro */
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 150, 136, 0.2);
    overflow: hidden;
}

/* Encabezado */
header {
    background-color: #00897b; /* Verde agua más oscuro */
    color: white;
    text-align: center;
    padding: 30px 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Sección de perfil */
.perfil-contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.foto-container {
    text-align: center;
}

.foto-perfil {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #b2dfdb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.descripcion {
    text-align: center;
    max-width: 600px;
}

.descripcion h2 {
    color: #00796b;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.descripcion p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

/* Secciones */
.section {
    padding: 25px;
    border-bottom: 1px solid #b2dfdb; /* Verde agua claro */
}

.section:last-of-type {
    border-bottom: none;
}

.section h2 {
    color: #00796b; /* Verde agua medio */
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid #b2dfdb;
    padding-bottom: 8px;
}

.content {
    padding-left: 15px;
}

/* Listas */
ul {
    list-style-type: none;
}

li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

li:before {
    content: "•";
    color: #00897b;
    position: absolute;
    left: 0;
}

/* Enlaces */
a {
    color: #00897b;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #004d40; /* Verde agua más oscuro */
    text-decoration: underline;
}

/* Pie de página */
footer {
    background-color: #00897b;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* Responsive */
@media (min-width: 768px) {
    .perfil-contenido {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .foto-container {
        flex: 0 0 auto;
    }
    
    .descripcion {
        flex: 1;
        text-align: left;
    }
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    .section {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .foto-perfil {
        width: 150px;
        height: 150px;
    }
}