/*Cosas globales*/
* {
  margin: 0%;
  font-family: "Poppins", sans-serif;
}

.body{
  background-color: #FFEFEF;
}

.header{
  background-color: #FFEFEF;
  padding-top: 5px;
  justify-content: center; 
}

.nav{
  background-color: #F3D0D7;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;    
  width: fit-content;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 25px;
  margin-top: 25px;
}

.nav-link:visited {
  color: #b52741; /* Asegura que el color no cambie si ya lo visitaron */
}

.nav-link {
  text-decoration: none;
  transition: 0.3s;
  color: #b52741;
}

ul.opciones{
  list-style: none;
  display: flex;
  gap: 2.5rem;  
  font-size: 20px;  
}

ul.opciones li {
  color: #b52741;
  cursor: pointer;
  font-weight: 500;
}

ul.opciones li:hover, .nav-link:hover  {
  color: #c69595;
}

.confe {
  margin: 15px;
  display: grid;
  grid-template-columns: repeat(2, 2fr); 
  margin: 2%;
}

.fotoconfe{
  width: 8cm;
  height: 9cm;
  margin: 15px;
  border-radius: 50%;
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, .125);
}

.text-confe{
  text-align: justify;
  margin: 5px;
}

/*el boton de contacto*/
.contacto-confe{
  border-radius: 25px;
  margin: 5px;
  margin-top: 15px;
  background-color: #fe6d88;
  color: white;
  border: #FFEFEF;
  width: 3cm;
  height: 1cm;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;   
}

.contacto-confe:hover {
  background-color: #f7b6c2; 
  color: rgb(255, 255, 255);
  transform: scale(1.05); /* se agranda un poquito */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* sombra al pasar el mouse */
}

.infoconfe2{
  display: flex;
  justify-content: center; /*Centra horizontalment*/
  align-items: center; /*Verticalmente*/ 
}

.titulo-confe{
  color: #fe6d88;
  font-weight: 600;
  font-family: "Concert One", sans-serif;
  font-size: 45px;
}

