/* Reset de estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #2e3b8d, #1d5f8b, #2796b0); /* Gradiente personalizado */
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width:960px;
	min-width:700px;
	max-width: 1200px;
    margin: 20px auto;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Header Section */
.header {
    background-color: #c53863;
    color: white;
    padding: 40px 20px 60px 20px;
	position: relative;
	text-align: center;	
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
	position: relative;
	text-align: left;
}

.profile-image {
	width: 200px; /* Ajusta el tamaño de la imagen */
    height: 200px;
    border-radius: 50%; /* Hace la imagen circular */
    border: 5px solid #ffffff; /* Borde blanco alrededor de la imagen */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para darle efecto de sobreposición */
	position: absolute;
    top: 45%; /* Ajustaremos esto más abajo */
    left: 20px; /* Posición hacia la izquierda */
    transform: translateY(-23%); 
}

.text-content {
     margin-left: 230px; 
    padding-top: 20px; 
}

.name {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
}

.tagline {
    font-size: 1.3em;
    color: #f3f3f3;
	margin: 5px;
}

/* Welcome Section */
.intro-section {
    padding: 20px 40px;
    text-align: left;
	margin-top: 35px;
}

.separator-line {
    border: none;
    border-top: 2px solid #c53863;
    margin-top: 15px;
	margin-bottom: -10px;
  }

.intro-section h2 {
    color: #c53863;
    font-size: 1.5em;
	font-weight: bold;
    margin-bottom: 10px;
}

.intro-text {
    font-size: 0.9em;
    color: #555;
    line-height: 1.6; 
    max-width: 7000px; 
    margin: 20px; 
    padding-bottom: 15px;
}

/* Main Content Section */
.content-section {
    padding: 20px;
}

.content-section h3 {
    font-size: 1.5em;
    color: #c53863;
    margin-bottom: 15px;
	margin-top: 0px;
	padding-top: 0;
	margin-left: 20px;
}

.project {
    margin-bottom: 20px;
}

.project h4 {
    color: #0056b3;
    font-size: 1.2em;
    margin-bottom: 5px;
	margin-left: 40px;
}

.project p {
    font-size: 0.95em;
    color: #555;
	margin-left: 40px;
	margin-right: 40px;
}

/* Resources Section */
.resources-section {
    background-color: #e9f1f7;
    padding: 20px;
	margin: 3px 0;
	border-bottom:3px solid #c53863;	
	border-top: 3px solid #c53863;	
}

.resources-section h3 {
    color: #c53863;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: left;
	margin-left: 20px;
}

.resource-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.resource-number {
    background-color: #c53863;
    color: white;
    font-weight: bold;
    font-size: 1em;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
	line-height: 1;
	padding: 0; 
}

.resource-item h4 {
    font-size: 1.1em;
    color: #333;
    margin: 0;
}

.resource-item p {
    font-size: 0.9em;
    color: #555;
	margin-right: 40px;
	margin-left: px;
}

/* Contact Section */
.contact-section {
    background-color: #c53863;
    color: white;
    text-align: center;
    padding: 40px;
    font-size: 1.1em;
	}

.contact-section a {
    color: #ffffff;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

a {
    color: #0056b3; /* Azul intermedio */
    text-decoration: none;
}


a:hover {
    color: #007bff; /* Azul claro */
}

a:visited {
    color: #c53863;
}


