:root {
  --background-escuro: #88593D;
  --background-medio: #F2ECD7;
  --background-claro: #F7F5E6;

  --color-titulo: #659A64;
  --color-texto: #7a8370;
  --color-texto2: #333333;

  --fonte-padrao: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}



body {
  background-color: var(--background-claro);
  color: var(--color-texto);
  font-family: var(--fonte-padrao);
}

.center {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

header {
  width: 100%;
  background-color: var(--background-medio);
  .conteudo-header{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0px;
    .logo{
      width: 98%;
      max-width: 250px;
      img{
        width: 100%;
        object-fit: contain;
      }
    }
    
    h1{
      color: var(--color-titulo);
      font-size: 40px;
      text-transform: capitalize;
    }
    a{
      width: 230px;
      height: 37px;
      line-height: 37px;
      font-size: 18px;
      text-align: center;
      background-color: #12A230;
      color: #FFF;
      border-radius: 20px;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: bold;
    }
  }
}

.banner {
  width: 100%;
  height: 450px;
  position: relative; 
  overflow: hidden;
  img {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    display: block;
  }
  .sombra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    opacity: 0.5;
  }
  .banner-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    h1 {
      color: #12A230;
      font-size: 40px;
      text-transform: capitalize;
      font-weight: bold;
    }
    .botao-contato{
      width: 230px;
      height: 37px;
      line-height: 37px;
      font-size: 18px;
      text-align: center;
      background-color: #12A230;
      color: #FFF;
      border-radius: 20px;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: bold;
      cursor: pointer;
      margin: 0 auto;
      margin-top: 90px;
    }
  }
}

.banner-v2{
  width: 100%;
  padding: 20px 0;
  display: grid;
  grid-template-areas:
		"titulo titulo"
		"texto imagem"
		;
  gap: 15px;
  align-items: center;
  h1{
    width: 100%;
    text-align: center;
    color: var(--color-titulo);
    font-size: 45px;
    font-weight: 900;
    position: relative;
    margin-bottom: 30px;
    grid-area: titulo;
  }
  .banner-text{
    grid-area: texto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    .banner-text-item{
      display: flex;
      font-size: 35px;
      font-weight: 500;
      i{
        color: var(--color-titulo);
        font-weight: bold;
        margin-right: 10px;
      }
      p{
        color: var(--color-texto);
        b{
          color: var(--color-titulo);
        }
      }
    }
    .botao-contato{
      width: 245px;
      height: 45px;
      line-height: 45px;
      font-size: 20px;
      text-align: center;
      background-color: #12A230;
      color: #FFF;
      border-radius: 20px;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: bold;
      cursor: pointer;
      margin: 0 auto;
      margin-top: 15px;
    }
  }
  img{
    width: 100%;
    max-width: 700px;
    border: 18px solid #FFF;
    grid-area: imagem;
    box-shadow: 10px 10px 0px 0px rgba(0,0,0,0.5);
  }
}

.conteudo-titulo{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  h2{
    color: var(--color-titulo);
    font-size: 40px;
    text-transform: capitalize;
    font-weight: bold;
    position: relative;
  }
  h2::before {
    content: "";
    display: block;
    width: 35px;
    height: 5px;
    background: var(--color-titulo);
    position: absolute;
    left: -45px;
    top: 21px;
  }
  h2::after {
    content: "";
    display: block;
    width: 35px;
    height: 5px;
    background: var(--color-titulo);
    position: absolute;
    right: -45px;
    top: 21px;
  }
  h3{
    width: 100%;
    max-width: 900px;
    text-align: center;
    color: var(--color-texto);
  }
}

#filhotes{
  padding: 20px 0px;
  background-color: var(--background-medio);
  .conteudo-filhotes{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0px;
    gap: 20px;
    
    .card-filhotes{
      width: 30%;
      max-width: 390px;
      min-width: 350px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 3px solid var(--background-escuro);
      border-radius: 25px;
      gap: 10px;
      padding-bottom: 13px;
      .img-card-filhotes{
        width: 100%;
        height: 370px;
        position: relative; 
        overflow: hidden;
        padding: 10px 12px;
        img{
          width: 100%; 
          height: 100%;
          object-fit: cover; 
          object-position: center; 
          display: block;
          border-radius: 15px 15px 0 0;
        }
      }
      .text-card-filhotes{
        width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        h3{
          color: var(--color-titulo);
          font-size: 25px;
          text-transform: capitalize;
          font-weight: bold;
        }
        p{
          color: var(--color-texto);
          font-size: 18px;
          text-align: justify;
          min-height: 150px;
        }
      }
      .botao-contato{
        width: 240px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
        text-align: center;
        background-color: #12A230;
        color: #FFF;
        border-radius: 20px;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: bold;
        cursor: pointer;
      }
    }
  }
}

.conteudo-vantagens{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0px;
  .vantagens {
    width: 50%;
    list-style-type: none; 
    padding: 0; 
    margin: 20px 0; 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    li {
      width: 80%;
      display: flex; 
      align-items: center; 
      background-color: #f9f9f9; 
      border: 1px solid #ddd; 
      border-radius: 5px; 
      padding: 10px; 
      margin: 5px 0; 
      transition: background-color 0.3s;
      cursor: pointer;
      position: relative;

      &:hover {
        background-color: #e0f7fa; 
      }

      i {
        color: #4caf50; 
        margin-right: 10px; 
        font-size: 1.2em; 
      }

      i.fa-hand-pointer, i.fa-angle-up, i.fa-angle-down{
        position: absolute;
        right: 10px;
        top: 10px;
      }
    }

    .card-vantagem-mobile{
      display: none;
      margin-top: -10px;
      border-top: 0;
    }
  }
  .detalhes-vantagens{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    .card-vantagem{
      display: none;
      width: 100%;
      max-width: 445px;
      background-color: #FFF;
      border-radius: 20px;
      padding: 20px;
      img{
        width: 100%;
        height: 200px;
        object-fit: cover;
      }
      h3{
        color: var(--color-titulo);
        font-size: 25px;
        font-weight: bold;
        margin: 15px 0 5px;
      }
      p{
        color: var(--color-texto);
        font-size: 17px;
        text-align: justify;
      }
    }
    .vantagem-contrato{
      img{
        height: 310px;
      }
    }
    .vantagem-tapete-higienico{
      img{
        object-fit: fill;
      }
    }
    .vantagem-banho-e-tosa{
      img{
        height: 240px;
      }
    }
    .vantagem-kit-filhote{
      img{
        object-fit: contain;
      }
    }
    .vantagem-pedigree{
      img{
        object-fit: contain;
      }
    }
    .vantagem-entrega{
      img{
        object-fit: contain;
      }
    }
  }
  
  .botao-contato{
    padding: 0px 20px;
    line-height: 37px;
    font-size: 18px;
    text-align: center;
    background-color: #12A230;
    color: #FFF;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
  }
}

.conteudo-quem-somos{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0px;
  gap: 20px 0px;
  img{
    width: 400px;
    height: 400px;
    border-radius: 100%;
    object-fit: cover;
    margin-left: -25px;
  }
  p{
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    background-color: var(--background-medio);
    -webkit-box-shadow: 0px 0px 20px 2px rgba(136,89,61,0.75);
    -moz-box-shadow: 0px 0px 20px 2px rgba(136,89,61,0.75);
    box-shadow: 0px 0px 20px 2px rgba(136,89,61,0.75);
    font-size: 18px;
    z-index: 1;
  }
}

.conteudo-testemunhos{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 40px 0px;
  .carousel-container {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    .carousel-slide {
      display: flex;
      transition: transform 0.5s ease-in-out;
      .carousel-item {
        min-width: 100%;
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        img {
          width: 200px;
          height: 200px;
          object-fit: cover;
        }
        p {
          font-size: 18px;
          max-width: 80%;
        }
        h3 {
          font-size: 20px;
          color: var(--color-titulo);
          font-weight: bold;
        }
      }
    }
    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      padding: 10px;
      border: none;
      cursor: pointer;

      &:hover {
        background-color: #333;
      }
    }

    .prev {
      left: 10px;
    }
  
    .next {
      right: 10px;
    }
  }
  .botao-contato{
    padding: 0px 20px;
    line-height: 37px;
    font-size: 18px;
    text-align: center;
    background-color: #12A230;
    color: #FFF;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
  }
}


.conteudo-footer {
  padding: 20px;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  text-align: left;
  flex-wrap: wrap;
  div{
    width: 30%;
  }
  /* .contact-info{
    width: 100%;
    max-width: 340px;
  }
  .location-info{
    width: 100%;
    max-width: 260px;
  }
  .hours-info{
    width: 100%;
    max-width: 295px;
  } */
  .contact-info, .location-info, .hours-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .location-info{
    a{
      color: var(--color-titulo);
    }
  }
  h3 {
    color: var(--color-titulo);
    border-bottom: 2px solid var(--color-titulo);
    padding-bottom: 5px;
  }

  .contact-info i, .location-info i, .hours-info i {
    color: var(--color-titulo);
    margin-right: 10px;
  }

  .payment-methods {
    img {
      margin-right: 10px;
    }
  }

  .social-icons {
    a {
      margin-right: 10px;
    }
  }
}




.copyright {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
}

@media (max-width: 1190px) {
  .conteudo-footer{
    justify-content: space-around;
    gap: 20px;

    .contact-info{
      width: 100%;
      max-width: 340px;
    }
    .location-info{
      width: 100%;
      max-width: 260px;
    }
    .hours-info{
      width: 100%;
      max-width: 295px;
    }
  }
}

/* Ajustes para telas menores (ex: mobile) */
@media (max-width: 768px) {
  .center{
    padding: 0 2%;
  }
  .conteudo-titulo{
    h2{
      font-size: 30px;
    }

    h2::before, h2::after{
      display: none;
    }

  }

  header{
    .conteudo-header{
      .logo{
        width: 200px;
      }
    }
  }
  .banner {
    .banner-text{
      top: 0;
      left: 0;
      transform: none;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 15px;
      h1{
        font-size: 48px;
      }
      .botao-contato{
        margin: 0;
      }
    }
  }

  .conteudo-filhotes {
    .card-filhotes {
      width: 100%;
      .text-card-filhotes{
        p{
          min-height: auto;
        }
      }
    }
  }

  .conteudo-vantagens{
    .vantagens{
      width: 100%;
      li{
        width: 100%;
      }
      .listagem-vantagem-parcelamos, .listagem-vantagem-entrega{
        .fa-angle-up, .fa-angle-down{
          display: none;
        }
      }
    }
    .detalhes-vantagens{
      display: none;
    }
    .botao-contato{
      width: 360px;
      line-height: 25px;
      padding: 15px;
    }
  }
  .conteudo-quem-somos{
    .conteudo-titulo{
      order: 1;
    }
    p{
      order: 3;
      margin-top: -45px;
      padding-top: 40px;
      max-width: 100%;
    }
    img{
      order: 2;
      margin: 0;
      width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 10px;
      z-index: 2;
    }
  }
  .conteudo-testemunhos{
    .carousel-container{
      max-width: 100%;
    }
    .botao-contato{
      width: 360px;
      line-height: 25px;
      padding: 15px;
    }
  }
}


@media (max-width: 710px) {
  .conteudo-footer{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 45px;
    .contact-info, .location-info, .hours-info{
      width: 100%;
      max-width: 100%;
      align-items: center;
    }
    h3{
      width: 90%;
    }
  }
}

@media (max-width: 640px) {
  .banner{
    height: auto;
    img{
      object-fit: contain;
    }
    .banner-text{
      padding: 20px 15px;
      h1{
        font-size: 38px;
      }
    }
  }
}