/*Cosas globales*/
* {
  margin: 0%;
  font-family: "Poppins", sans-serif;
}

.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;
}

.Titulo-principal{
    font-size: 2cm;
    font-weight: 500px;
    text-align: center;
    color: #fe6d88;
    font-family: "Concert One", sans-serif;
    line-height: 0.;
}

.texto {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.texto1{
 color: rgb(0, 0, 0);  
 font-size: 20px;
 font-weight: 400;
 margin: 5%;
 text-align: justify;
}

.fotoinicial{
    width: 38%;
    padding: 15px;
    border-radius: 30px;
}

.intro{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px;
}

.btn-registro{
  background-color: #F3D0D7 !important;
  border-radius: 50px;
  padding: 10px 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s ease;
  width: 45m;
  margin: 3%;
}

.btn-registro:hover {
  background-color: #f7b6c2; 
  color: rgb(0, 0, 0);
  transform: scale(1.05); /* se agranda un poquito */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* sombra al pasar el mouse */
}

/* ESTILO DEL CARRUSEL*/
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
  height: 30px;
  overflow: hidden;
  position: relative;
  width: 100%; /*es el tamaño del carrusel*/
  margin-top: 5px;
  margin-bottom: 5px;
}

/*CONTENEDOR DE LAS IMAGENS*/
.slide-track {
  display: flex;
  gap: 2px;
}

.slide {
  height: 90px;
  width: 50%;
}

.petcon{
  background-color: #FFEFEF;
  display: grid;
  grid-template-columns: 1fr 1fr; /* dos columnas iguales */
  gap: 2px;
}

.Titulo-principalPET, .mision-vision1{
  font-size: 2cm;
  font-weight: 500px;
  text-align: center;
  margin-top: 3%;
  color: #fe6d88;
  font-family: "Concert One", sans-serif;
}

.texto1PET{
 color: rgb(0, 0, 0);  
 font-size: 20px;
 font-weight: 400;
 margin: 2%;
 text-align: justify;
}

.Contenido{
  border-radius: 50px;
  margin: 2%;
  padding: 2%;
}

.Contenido2{
  border-radius: 50px;
  margin: 2%;
  padding: 2%;
}

.mision-vision{
  text-align: justify;
  font-size: 20px;
}

.mascotasinfo{
  background-color: #FFEFEF;
  text-align: center;
  gap: 1px;
  padding-bottom: 15px;
}

.nmascotas{
  font-size: 40px;
  padding: 2%;
  color: #fe6d88;
}

.Mascotas{
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  margin-left: 25px; 
}

.foto{
  padding-top: 3%;
  width: 220px;
  height: 280px;
  align-items: center;
  border-radius: 20px;
}

.mtext{
  text-align: center;
  margin: 1%;
  color: white;
}

/*el fondo de las mascotas de las fotos*/
.mascotas1, .mascotas2{
  background-color: #f7b6c2;
  border-radius: 20px;
  height: 9cm;
  width: 6.5cm;
  margin: 2%;
  transition: all 0.3s ease;
}

.mascotas1:hover, .mascotas2:hover{
  background-color: #f7b6c2; 
  color: rgb(0, 0, 0);
  transform: scale(1.05); /* se agranda un poquito */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* sombra al pasar el mouse */
}