/* estructura css 

selector{
    propiedad: valor;
}

*/

/* Reset básico */
* {
  margin: 0;
  box-sizing: border-box;
}


body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
  color: #000000;
  line-height: 1.6;
}



/* header */

header {
  background-color: #F7B6CE;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column; 
  padding: 1rem;            
  text-align: center;
  
}

header .logo {
  height: 50px;
  transition: transform 0.3s ease;
}

header .logo:hover {
  transform: scale(1.05);

}

/* Nav */
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul li a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

/* Main */
main {
  padding: 2rem 3rem;
}

main h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

main p {
  margin-bottom: 1rem;
  
}

/* Equipo */
.sin-puntos {
  list-style: none;              
  display: flex;
  flex-direction: column;       
  align-items: center;          
  gap: 1.5rem;                   
  padding: 2rem;
  margin: 2rem 0;              
  background-color: #F7B6CE;    
  width: 100%;                   
  box-sizing: border-box;    

}

/* Tarjeta */
.sin-puntos li {
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sin-puntos li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Nombre nosotras */
.sin-puntos a {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #EF6C9C;
  text-decoration: none;
}

/* Imágenes*/
.sin-puntos img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sin-puntos img:hover {
  transform: scale(1.05);
}

section ul {
  list-style: none;  
  padding-left: 0;   
  margin: 0;        
}

img {
  max-width: 100%;   
  height: auto;     
  display: block; 
  margin: 0 auto;    
} 

/* Footer */
footer {
  background-color: #111;
  color: #aaa;
   font-size: 12px;
  text-align: center;
  padding: 1rem 1rem;
  margin-top: 2rem;
  border-top: 1px solid #333;
  
}

#datos {
   
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgb(0 0 0 / 10%);
    max-width: 100%;
    margin: 15px 0;
    border-radius: 0;
	}
	#datos h1{
		font-size:1.5rem;
		  
    margin: 0.5rem auto;
}

	#datos h3{
		font-size:1rem;
		}
#datos li{
		font-size:0.8rem;
		}
		