@font-face {
  font-family: 'Open Sans Regular';
  src: url('../assets/fonts/OpenSans-VariableFont_wdth\,wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'QuickSand';
  src: url('../assets/fonts/Quicksand-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans Italic';
  src: url('../assets/fonts/OpenSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'QuickSand';
  overflow-x: hidden;
}
.status-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
  animation: pulse 2s infinite;
}
.leyenda {
font-size: 12px;
margin-left: 10px;
color: white;

}
.open { background-color: #4caf50; }
.closing_soon { background-color: #f2b600; }
.closed { background-color: #f9575cc4; }

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(248, 248, 248, 0.322);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* Ondas */
.status-indicator::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width:50%;
  height:50%;
  background-color: inherit;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 1.5s infinite;
  opacity: 0.7;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
.title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.title img{
  width: 50px;
  margin-top: 40px;
}
.title h2{
  margin-top: 10px;
  color: #f2b600;
  margin-bottom: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 3.2em;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
}
.contact{
  background-color: #f2b600;
  color: white;
  padding:  10px;
}
.contact p{
  margin: 0;
}
.header{
  background-color: #476b8f;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100px;
}
.header img{
  width: 200px;
}
.header nav{
  display: flex;
  align-self: center;
  align-items: center;
}
.header nav ul{
  display: flex;
  list-style: none;
}

.header nav a{
  padding: 20px;

  margin: 0 10px;


}
.header nav a:hover{

  background-color: #f2b600;
  border-radius: 155px 45px 125px 75px/15px 125px 15px 155px;
  transition: 0.5s;
}

.header nav a{
  text-decoration: none;
  color: #fff!important;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}




.hero{
  position: relative;
  height: calc(100vh);
  overflow: hidden;
}
.hero__img{
  width: 100vw;
}
.hero-modal{
  background-color: rgba(255, 255, 255, 0.74);
  position: absolute;
  top: 50%;
  right: 79%;
  transform: translate(50%, -50%);
  padding: 30px;
  border-radius: 155px 45px 125px 75px/15px 125px 15px 155px;
  width: 450px;
  text-align: center;
}
.sticker{
  position: absolute;
    top: -52px;
    left: 43px;
}
.hero-modal h1{
  font-size: 3.8em;
    line-height: 1.1em;
    color: #f2b600;
    margin:0;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'open sans', sans-serif;

}

.hero-modal p{
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #808080;
  font-family: 'open sans', sans-serif;
}

.main{
  margin: 50px auto 0 auto;
  width: 80%;
}

.main__container{
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.main b{
  color: #1e4a76 ;
}
.main__container img{
  width: 500px;
  border-radius: 155px 45px 125px 75px/15px 125px 15px 155px;
  padding: 10px;
  border: 3px solid #FBF4DE;
}

.main h2{
  color: #f2b600;
  margin-bottom: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 3.2em;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
}

.main h3{
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #808080;
  margin-top: 0;
}

.main p{
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #808080;
}

.whyUs{
  width: 80%;
  margin: 30px auto;
  border-radius: 355px 45px 225px 75px/15px 225px 15px 255px;
  padding: 60px;
  height: 100%;
  background-color: #476b8f;
  margin-bottom: 100px;
}


.whyUs .whyUs__container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.whyUs img{
  margin-top: 0;
  margin-bottom: 30px;
}
.whyUs h2{
  text-align: center;
  color: #f2b600;
  font-size: 3.2em;
}

.whyUs .card h3{
  text-align: center;
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 20px;
  margin: 0;
}

.whyUs .card p{
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.whyUs .card{
  width: 300px;
  text-align: justify;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whyUs .card img{
  filter: invert(1);
  width: 140px;
}

.form{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin:40px auto;
}
.petForm{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.buttons{
  display: flex;
  justify-content: center;
}

.buttons button{
  margin: 0 10px;
}
.tools{
  background-color: #f5f5f5;
  padding-bottom: 20px;
}



.tools .form h2{ 
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #808080;
  margin-top: 0;
  text-align: center;
  margin-top: 20px;
}

.tools input{
  margin-top: 20px;
}

.tools .input-radio{
  margin-top: 0;
}

.tools fieldset{
  width: max-content;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.dogSizeInfo{
  margin-top: 20px;
}

.dogSizeInfo summary{
  text-align: center;
}

.aboutUs__container{
  width: 80%;
  display: flex;
  margin: auto;
}

.aboutUs__container img{
  width: 500px;
  border-radius: 155px 45px 125px 75px/15px 125px 15px 155px;
  padding: 10px;
  border: 3px solid #FBF4DE;
}

.aboutUs__container h3{
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #808080;
  margin-top: 0;
}
.aboutUs__container .left{
  margin-right: 30px;
}

.aboutUs__container ul,li{
  padding: 0;
  list-style: none;
  color: #808080;
}

.aboutUs__container p{
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #808080;
}

button{
  color: #fff!important;
    border: 0px;
    font-size: 1rem;
    padding: 10px 20px;
    outline: none;
    letter-spacing: 0.2px;
    font-family: 'Quicksand', sans-serif;
    border-radius: 355px 45px 225px 75px/15px 225px 15px 255px;
    text-transform: uppercase;
    margin-top: 15px;
    white-space: normal;
    font-weight: bold;
    background-color: #f9575c;
    cursor: pointer;
}

.gallery{
  margin: auto 0.3rem;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.3rem;
}

.gallery-container figure {
  margin: 0;
  position: relative;

}

.gallery-container figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  color: white;
  width: 100%;
  padding: 10px 0;
  text-align: center;
}

.gallery-container img {
  width: 100%;
  height: auto;
  display: block;
}

.contactUs {
  margin-top: 30px;
}

.contactUs{
  width: 90%;
  margin: 30px auto ;
}
.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}


.horario,.mapa{
width: 50%;
height: 400px;
background-color: #476b8f;
border-radius: 155px 45px 125px 75px/15px 125px 15px 155px;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.horario{
  margin-right: 20px;
}


.mapa iframe{
  width: 100%;
  height: 100%;
}

.horario h2,
.mapa h2 {
  margin: 0;
  padding-bottom: 15px;
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
}

.horario h3{
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: white;
  margin-top: 0;
}

.horario ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.horario li {
  margin-bottom: 10px;
  color: white;

}

.footer{
  background-color: #f3b600;
}

.footer p{
  margin: 0;
  padding: 30px;
  color: white;
  text-align: center;
}

.contact-info {
  display: flex;
  gap: 20px; 
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0;
}

.contact-item {
  position: relative;
  padding: 20px;
  border: 3px solid #ccc;
  border-radius: 8px;
  width: 45%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h3 {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0 10px;
  font-size: 1.2em;
  color: #333;
}

.contact-item p, .contact-item address,a {
  margin: 0;
  font-size: 1em;
  color: #666;
  text-decoration: none;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 10px;
  padding: 0;
}

.social-links a {
  display: inline-block;
  width: 24px;
  height: 24px;
}

.social-links img {
  width: 100%;
  height: 100%;
}

.hero__img2{
  display:none;
}

@media (max-width:1000px) {
  .header nav ul{
    display: none;
  }

  .hero__img {
    height: 100vh;
    width: auto;
    object-fit: cover;
    position: relative;
    right: 0;
    transform: translateX(-12%);
  }
  .hero-modal {
  
    right: 70%;
  }
  .main__container {

    flex-wrap: wrap;

  }
  .main__container img {
    width: 100%;
  }
  
  .whyUs .whyUs__container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 50px;
      
    }
    .aboutUs__container {
      width: 80%;
      display: flex;
      margin: auto;
      flex-wrap: wrap-reverse;
      justify-content: center;
  }
  .flex-container {
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-info {
  justify-content: center;
}
}

@media (max-width:900px) {
  .hero__img {

    transform: translateX(-20%);
  }
  .hero-modal {
  
    right: 50%;
  }
}

@media (max-width:850px) {
  .hero__img {

    transform: translateX(-30%);
  }
  .hero-modal {
  
    top: 50%;
  }
}

@media (max-width:750px) {
  .hero__img {

    transform: translateX(-36%);
  }
  .hero-modal h1 {
    font-size: 2.8em;
   margin: 0;
}
.cta{
  font-size: 12px;
}
.hero-modal {

  width: 350px;
  text-align: center;
  top: 70%;
}
.hero-modal p {
  font-size: 14px;
  line-height: 33px;
  margin-bottom: 20px;
  margin: 0;
  font-weight: 600;
  color: #808080;
  font-family: 'open sans', sans-serif;
}

.main h2{
  font-size: 2.8em;
  margin-bottom: 0;
}

.main__container{
  margin-top: 20px;
}
.aboutUs__container img {
  width: 100%;
 
}
.whyUs{
  width: 90%;
  padding: 0;
}
.whyUs h2, .title h2{
  font-size: 2.8em;
  
}
.whyUs h2{
  font-size: 2em;
}
.horario{
  width: 100%;
}
.mapa{
  width:100%
}
.contact-item {
 
  width: 70%;
}
h2,h3{
  text-align: center!important;
}
}

@media (max-width:650px) {
  .hero__img {

    transform: translateX(-46%);
  }

}

@media (max-width:550px) {
  .hero {
    position: relative;
    height: calc(90vh);
    overflow: hidden;
}
  .hero__img {
    height: 90vh;
  }
  .hero-modal{
    width: 250px;
  }
  .hero__img {
    display:none;
    transform: translateX(-50%);
  }
  .hero__img2{
    display: block;
    transform: translateX(-22%);
  }
  h2,h3{
    font-size: 1.5em;
  }
  body > section.tools > div.title > h2{
    font-size: 22px;
  }
  .buttons{
    flex-direction: column;
    gap:20px;
    font-size: 16px;
  }
}