
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #ffeef5; 
    color: #333;
    padding: 0;
    margin: 0;
}


header {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  background: #ff80ab; 
  padding: 20px;
  color: #fff;
  text-align: center;
}

header .logo {
  margin-bottom: 15px; 
}

header .logo img {
  height: 70px; 
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffeef5;
}


main {
    max-width: 1000px;
    margin: 25px auto;
    padding: 0 20px;
}


section {
    margin-bottom: 40px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
}

section h2 {
    margin-bottom: 15px;
    color: #d44676cb; 
    border-bottom: 2px solid #ff80ab;
    padding-bottom: 5px;
    font-weight: 600;
}


.equipo {
    margin-bottom: 40px;
}


.mi-presentacion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffe6f0;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    gap: 0px;
    flex-wrap: wrap; 
}


.presentacion-texto {
    flex: 1 1 300px;
}

.presentacion-texto h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #d44676cb;
}

.presentacion-texto p {
    font-size: 1em;
    line-height: 1.5;
}


.presentacion-foto {
    flex: 0 0 180px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.presentacion-foto img {
    width: 100%;
    border-radius: 15px; 
    border: 3px solid #ff80ab;
}


.otros-miembros {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.otros-miembros li {
    background: #ffe6f0;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.2s ease;
}

.otros-miembros li:hover {
    transform: translateY(-5px);
}

.otros-miembros a {
    text-decoration: none;
    color: #d44676cb;
    font-weight: 600;
    font-size: 1em;
}

.otros-miembros a:hover {
    color: #ff80ab;
}


.gustos {
  text-align: center;
  padding: 40px 20px;
}

.gustos h2 {
  font-size: 1.5em;
  margin-bottom: 30px;
  font-weight: 600;
}

.gustos-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; 
}

.gusto {
  background-color: #fff0f5; 
  border-radius: 20px;
  padding: 15px;
  width: 180px; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.2s;
}

.gusto:hover {
  transform: scale(1.05);
}

.gusto img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 10px;
}

.gusto p {
  font-size: 0.9em;
  font-weight: 400;
  margin: 0;
}

.propuestas {
  text-align: center;
  padding: 30px 20px;
}

.propuestas h2 {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #d44676cb;
  border-bottom: 2px solid #ff80ab;
  display: inline-block;
  padding-bottom: 5px;
  font-weight: 600;
}

.propuestas img {
  width: 100%;
  max-width: 700px;  
  display: block;
  margin: 20px auto; 
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.propuestas img:hover {
  transform: scale(1.02);
}


.cursada article {
    margin-bottom: 20px;
}

.cursada h4 {
    margin-bottom: 10px;
    color: #444;
    font-weight: 600;
}


.academicos div {
    margin-bottom: 20px;
}

.academicos h3 {
    color: #ff4081;
    margin-bottom: 8px;
    font-weight: 600;
}

.cursada ul,
.academicos ul {
  list-style: none;       
  padding-left: 0;        
  margin-left: 0;   
}

@media (max-width: 768px) {
  .mi-presentacion {
    flex-direction: column;        
    text-align: center;           
  }

  .presentacion-foto {     
    margin-top: 8px;              
  }

  .presentacion-foto img {
    width: 75%;        
    max-width: 320px;  
  }

  .presentacion-texto h1 {
    font-size: 1.6em;              
  }

  .presentacion-texto p {
    font-size: 0.95em;    
    margin-bottom: 0px;         
  }
}

.webapp {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.webapp h2 {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #d44676cb;
  border-bottom: 2px solid #ff80ab;
  display: inline-block;
  padding-bottom: 5px;
  font-weight: 600;
}

.webapp-container img {
  width: 100%;
  max-width: 750px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webapp-container img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.webapp img {
    width: 80%;         
    max-width: 500px;   
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.webapp img:hover {
    transform: scale(1.05); 
}

footer {
    background: #ff80ab;
    color: #fff;
    text-align: center;
    padding: 15px 30px;
    font-size: 14px;
    border-top: 4px solid #ff4081;
}
