@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  list-style: none;
  text-decoration: none;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
}

html, body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  font-size: clamp(1rem, 1vw, 2.5rem);
}

h1, h2, h3, h4, h5, h6, p, blockquote, figure, ol, ul, dl, dd {
  margin: 0;
}

ol, ul {
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --pd-x-default: $padding-x;
  --c-gray-1: #FFFFFF;
  --c-gray-2: #F8F9FA;
  --c-gray-3: #E9ECEF;
  --c-gray-4: #DEE2E6;
  --c-gray-5: #CED4DA;
  --c-gray-6: #ADB5BD;
  --c-gray-7: #6C757D;
  --c-gray-8: #495057;
  --c-gray-9: #343A40;
  --c-gray-10: #212529;
  --color-brand-1: #72A45C;
  --color-brand-1-light: #DDE9D8;
  --color-brand-1-dark: #24341D;
  --color-brand-2: #A45C89;
  --color-brand-2-light: #E9D8E3;
  --color-brand-2-dark: #341D2C;
  --color-success: #5DA857;
  --color-success-light: #FAFEF7;
  --color-success-dark: #588450;
  --color-alert: #FFCE73;
  --color-alert-light: #FFF9F6;
  --color-alert-dark: #BA9452;
  --color-error: #FF0909;
  --color-error-light: #FEF5F7;
  --color-error-dark: #A92B2E;
  --padding-xs: $padding-xs;
  --padding-sm: $padding-sm;
  --padding-md: $padding-md;
  --padding-lg: $padding-lg;
  --padding-xl: $padding-xl;
  --padding-xxl: $padding-xxl;
}

body {
  overflow: auto;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body.no-scroll {
  overflow: hidden !important;
}

html {
  scroll-behavior: smooth;
}

.--pd-x {
  padding-left: clamp(1em, 5vw, 5.625em);
  padding-right: clamp(1em, 5vw, 5.625em);
}

.--bg-brand {
  background-color: #72A45C;
  color: #FFFFFF;
  --nav-active-color: v.$gray-1;
}
.--bg-brand .nav__link {
  color: #DEE2E6;
}
.--bg-brand .nav__link--active, .--bg-brand .nav__link:hover {
  color: #FFFFFF;
}
.--bg-brand .nav__link--active::after {
  background-color: #FFFFFF;
}

.--bg-brand-dark {
  background-color: #24341D;
  color: #FFFFFF;
  --nav-active-color: v.$gray-1;
}
.--bg-brand-dark .nav__link {
  color: #DEE2E6;
}
.--bg-brand-dark .nav__link--active, .--bg-brand-dark .nav__link:hover {
  color: #FFFFFF;
}
.--bg-brand-dark .nav__link--active::after {
  background-color: #FFFFFF;
}

.--bg-white {
  background-color: #FFFFFF;
  color: #6C757D;
}
.--bg-white .nav__link--active, .--bg-white .nav__link:hover {
  color: #72A45C;
}
.--bg-white .nav__link--active::after {
  background-color: #72A45C;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem clamp(1em, 5vw, 5.625em);
  padding-bottom: 2rem;
}
.header--fixed {
  padding-top: 1.5em;
  position: fixed;
  inset: 0; /* shorthand para top:0; right:0; bottom:0; left:0 */
  z-index: 1000;
  overflow-y: hidden;
}
.header .nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.header .nav .nav__logo {
  width: 6.6rem;
  height: auto;
}
.header .nav .nav__menu-button {
  padding: 1rem 0 1rem 1rem;
  display: none;
  background-color: transparent;
}
.header .nav .nav__menu-button svg {
  width: 1.5rem;
}
.header .nav .nav__list {
  display: flex;
  gap: 1rem;
  font-size: 1rem;
  align-items: center;
}
.header .nav .nav__link {
  line-height: 1.5;
  padding-bottom: 0.5rem;
  font-weight: 400;
  position: relative;
}
.header .nav .nav__link--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
}
.header .nav--mobile .nav__menu-button {
  display: block;
}
.header .nav--mobile--close .nav__list {
  display: none;
  appearance: none;
}
.header .nav--mobile--open {
  display: grid;
  grid-template-areas: "logo button" "list list";
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: fit-content;
}
.header .nav--mobile--open .nav__list {
  width: 100%;
  grid-area: list;
  display: flex;
  justify-content: baseline;
  align-items: baseline;
  flex-direction: column;
  padding-top: 3.875rem;
  gap: 2rem;
}
.header .nav--mobile--open .nav__item {
  width: 100%;
}
.header .nav--mobile--open .nav__link {
  display: block;
}
.header .nav--mobile--open .nav__menu-button {
  grid-area: button;
  justify-self: end;
}
.header .nav--mobile--open .nav__menu-button svg {
  width: 20px;
  height: 20px;
}
.header .nav--mobile--open .nav__logo-link {
  grid-area: logo;
}

.footer-section {
  padding-left: 5.857vw;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  min-height: 19.75rem;
  padding-top: 2.5rem;
  padding-bottom: 4.125rem;
  overflow: hidden;
  z-index: 0;
  gap: 2.5rem;
}
.footer-section__pata-img {
  position: absolute;
  z-index: -1;
  object-fit: fill;
}
.footer-section__pata-img:first-child {
  left: 0;
  top: 0;
  width: 6.5rem;
  height: 5.8rem;
  transform: translate(-1.6rem, 2rem) scaleX(-1);
}
.footer-section__pata-img:nth-child(2) {
  right: 0;
  top: 0;
  width: 6.5rem;
  transform: translate(1.55rem, 2rem) scaleX(-1);
}
.footer-section__pata-img:nth-child(3) {
  bottom: 0;
  left: 0;
  transform: translate(-20%, 20%);
}
.footer-section__pata-img:nth-child(4) {
  transform: translate(20%, 20%) scaleX(-1);
  bottom: 0;
  right: 0;
}
.footer-section .animals {
  position: absolute;
  display: flex;
  align-items: baseline;
  bottom: 0;
  right: 14.934vw;
  gap: 2.94rem;
}
.footer-section .animals .animals-dog {
  width: 5.8125rem;
  transform: scaleX(-1);
}
.footer-section .animals .animals-hamster {
  width: 2.9rem;
  transform: scaleX(-1);
}
.footer-section .footer__item--logo {
  display: flex;
  transform: translateY(-0.5rem);
  gap: 2.635vw;
}
.footer-section .footer__item--logo .footer__item__animals {
  display: flex;
  height: fit-content;
  align-items: baseline;
  gap: 3.125rem;
}
.footer-section .footer__item--logo .footer__item__animals img:nth-child(1) {
  width: clamp(4.4rem, 7.467vw, 6.4rem);
}
.footer-section .footer__item--logo .footer__item__animals img:nth-child(2) {
  width: clamp(1.71rem, 2.906vw, 2.48rem);
  transform: translateY(-0.8rem);
}
.footer-section .footer__item--logo .footer__item__logo {
  align-self: center;
}
.footer-section .footer__item--logo .footer__item__logo img {
  width: 7.5rem;
}
.footer-section .footer__item__content .nav__item {
  width: fit-content;
  padding-bottom: 0.375rem;
}
.footer-section .footer__item__content .nav__item--current {
  border-bottom: 2px solid #fff;
}
.footer-section .footer__item {
  border-left: 2px solid #E9ECEF;
  padding: 1rem;
  padding-top: 0;
}
.footer-section .footer__item__title {
  font-weight: 700;
  color: #FFFFFF;
}
.footer-section .footer__item .item-icon {
  width: 1rem;
  height: 1rem;
}
.footer-section .footer__item .item-icon--white {
  color: #fff;
}
.footer-section .footer__item__content {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-section .footer__item__content__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
}
@media (max-width: 1100px) {
  .footer-section {
    justify-content: space-between;
  }
  .footer-section .footer__item--logo {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .footer-section .footer__item--logo .footer__item__logo img {
    width: 7.1875rem;
  }
  .footer-section__pata-img:first-child, .footer-section__pata-img:nth-child(2) {
    display: none;
  }
  .footer-section__pata-img:nth-child(3) {
    width: 9.656vw;
    bottom: 9.222vw;
    left: 0;
    transform: translate(-20%, 20%) rotate(15deg);
  }
  .footer-section__pata-img:nth-child(4) {
    width: 19.847vw;
    transform: translate(-20%, 50%) scaleX(-1) rotate(30deg);
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 570px) {
  .footer-section {
    justify-content: space-between;
    padding-bottom: 1.5rem;
  }
  .footer-section .footer__item {
    width: 100%;
    border: none;
    border-bottom: 1px solid #F8F9FA;
    padding-left: 0;
  }
  .footer-section .footer__item--nav {
    border-bottom: none;
  }
  .footer-section .footer__item--logo {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .footer-section .footer__item--logo .footer__item__logo img {
    width: 7.1875rem;
  }
}

body {
  background-color: #F8F9FA;
  z-index: -2;
}

#hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  gap: clamp(1rem, 2vw, 2rem);
  background-color: #F8F9FA;
}
@media (max-width: 67rem) {
  #hero-section {
    grid-template-columns: 1fr;
  }
}
#hero-section .section__content {
  display: grid;
  grid-template-areas: "header header" "image  review";
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
}
#hero-section .section__content .section__header {
  grid-area: header;
  background-color: #24341D;
  padding: clamp(1rem, 2vw, 2rem);
  width: 100%;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  color: #FFFFFF;
}
#hero-section .section__content .section__header .section__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 150%;
  font-family: "Raleway", "Poppins", sans-serif;
}
#hero-section .section__content .section__header .section__subtitle {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  padding-top: 1.5rem;
  font-weight: 700;
}
#hero-section .section__content .section__image {
  grid-area: image;
  width: 100%;
  height: 100%;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  object-fit: cover;
}
#hero-section .section__content .review {
  grid-area: review;
  width: 100%;
  background-color: #E9ECEF;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
}
#hero-section .section__content .review__image {
  width: clamp(2.5rem, 4.68vw, 4rem);
  height: clamp(2.5rem, 4.68vw, 4rem);
  border-radius: 50%;
  margin-bottom: clamp(0.8125rem, 1.171vw, 1rem);
}
#hero-section .section__content .review__content {
  font-family: "Raleway", "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 3vw, 1.125rem);
  color: #212529;
}
#hero-section .section__content .review__count {
  font-size: clamp(1.25rem, 5vw, 2rem);
}
#hero-section .section__content .review__stars {
  margin-top: clamp(0.8125rem, 2vw, 2rem);
}
#hero-section .form-container {
  background-color: #E9ECEF;
  background-image: url("./../../assets/images/grama.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero-section .form-container:after {
  content: "";
  position: absolute;
  bottom: 0.89rem;
  right: clamp(1rem, 2vw, 2rem);
  width: clamp(4.671rem, 7vw, 6.502rem);
  height: clamp(6rem, 9vw, 8.352rem);
  background-image: url("./../../assets/images/animals/cat-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 45rem) {
  #hero-section .form-container:after {
    bottom: 0rem;
  }
}
#hero-section .form-container .form {
  padding: clamp(1rem, 5vw, 6rem);
  padding-top: clamp(1rem, 4vw, 4.4375rem);
  padding-bottom: 6rem;
}
#hero-section .form-container .form__description {
  color: #72A45C;
  font-size: clamp(0.875rem, 3vw, 1.125rem);
  font-weight: 700;
  line-height: clamp(0.875rem, 5vw, 1.75rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}
#hero-section .form-container .form__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 1rem);
}
#hero-section .form-container .form__field {
  width: 100%;
}
#hero-section .form-container .form__field--checkbox {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: start;
}
#hero-section .form-container .form__field--checkbox .form__label {
  font-size: 1rem;
}
#hero-section .form-container .form__label {
  display: block;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
}
#hero-section .form-container .form__label span {
  color: red;
}
#hero-section .form-container .form__button-submit {
  width: fit-content;
  background-color: #72A45C;
  color: #fff;
  border-radius: 8px;
  padding: clamp(0.5rem, 1.318vw, 0.75rem) clamp(1rem, 1.757vw, 1.5rem);
}
#hero-section .form-container .form input[type=text].form__input, #hero-section .form-container .form textarea.form__input {
  width: 100%;
  display: block;
  font-size: 1rem;
  line-height: 150%;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #CED4DA;
}
.contact {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.contact .contact__content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact .contact__content {
  position: relative;
  width: fit-content;
}
.contact__card {
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 1rem;
}
.contact__card--header {
  color: #72A45C;
  padding: 1.5rem;
  background-color: #DDE9D8;
  display: flex;
  width: 100%;
  max-width: fit-content;
  line-height: 1.75;
  gap: 1rem;
  border-radius: 1rem;
}
.contact__card--header .contact__icon {
  color: #72A45C;
  width: 3rem;
}
@media (min-width: 37.625rem) {
  .contact__card--header .contact__title {
    text-align: justify;
    width: 14.875rem;
    font-size: 1.125rem;
  }
}
.contact__card .contact__list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__card--social-media-info {
  width: fit-content;
  display: flex;
  background-color: #FFFFFF;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}
.contact__card--social-media-info img {
  width: 1rem;
  height: 1rem;
}
.contact__card--contact-info {
  width: fit-content;
  background-color: rgba(221, 233, 216, 0.5019607843);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: clamp(0.75rem, 1.025vw, 0.875rem);
  font-weight: 400;
  backdrop-filter: blur(0.5rem);
}
.contact__card--contact-info img {
  width: 1rem;
  height: 1rem;
}
.contact__card--address {
  width: fit-content;
  background-color: #24341D;
  color: #72A45C;
  display: flex;
  align-content: center;
  flex-direction: column;
  padding: clamp(1rem, 2vw, 1.5rem);
  line-height: 150%;
  letter-spacing: 0;
  gap: 0.625rem;
  max-width: clamp(min(100%, 12.6875rem), 18.375vw, 15.6875rem);
}
.contact__card--address .contact__card__content {
  font-size: clamp(0.75rem, 1.025vw, 0.875rem);
  font-weight: 400;
  line-height: 1.5;
}
.contact__card--address .contact__card__header {
  display: flex;
  gap: 1rem;
}
.contact__card--address .contact__card__header .contact__card__title {
  font-size: 0.75rem;
  font-weight: 700;
}
.contact__card--address .contact__card__header img {
  width: 1rem;
}
.contact .contact__image-wrapper {
  position: relative;
  display: flex;
  padding: 0 clamp(0.875rem, 5.124vw, 4.375rem);
  width: fit-content;
  justify-content: center;
}
.contact .contact__image-wrapper::after {
  content: "";
  width: 100%;
  height: clamp(8.4375rem, 18.166vw, 15.5rem);
  border-radius: 1.5rem;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-color: #72A45C;
}
.contact .contact__image-wrapper .contact__image__illustration {
  position: absolute;
}
.contact .contact__image-wrapper .contact__image__illustration--bird {
  bottom: clamp(8.4375rem, 18.166vw, 15.5rem);
  transform: translateY(4px);
  z-index: 10;
  width: clamp(1.94rem, 4.205vw, 3.58rem);
  right: 0;
}
.contact .contact__image-wrapper .contact__image__illustration--hamister {
  bottom: 0;
  left: 0;
  transform: translate(0.5rem, 3px);
  width: clamp(2.36rem, 5.102vw, 4.35rem);
  height: auto;
}
.contact .contact__image-wrapper img.contact__image {
  width: clamp(20.75rem, 38.298vw, 32.6875rem);
  background-color: transparent;
}
.contact .contact__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .contact__header .contact__title {
  margin: clamp(1rem, 1.757vw, 1.5rem) 0;
  color: #72A45C;
  font-weight: 700;
  font-style: Bold;
  font-size: clamp(1.5rem, 1.318vw, 2rem);
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
}
.contact .contact__header button {
  padding: 0.75rem 1.5rem;
  background-color: #72A45C;
  color: #fff;
  border-radius: 0.5rem;
  display: flex;
  gap: 0.5rem;
}
.contact .contact__header button img {
  width: 1rem;
  line-height: 1.75;
}
@media (min-width: 46.1876rem) {
  .contact__card--header {
    position: absolute;
    left: -4.8125rem;
    top: 2.3125rem;
  }
  .contact__card--social-media-info {
    position: absolute;
    top: clamp(-1rem, 5.198vw, 4.4375rem);
    right: -0.75rem;
  }
  .contact__card--contact-info {
    position: absolute;
    right: -10.1875rem;
    bottom: 3.375rem;
    z-index: 11;
  }
  .contact__card--address {
    position: absolute;
    bottom: calc(clamp(1rem, 5.271vw, 4.5rem) * 2);
    left: -8.9375rem;
    z-index: 11;
  }
}
@media (min-width: 46.1876rem) and (max-width: 81.25rem) {
  .contact__card--header {
    position: relative;
  }
  .contact__card--social-media-info {
    position: absolute;
    top: clamp(4rem, 5.198vw, 4.4375rem);
    margin-right: -1rem;
    right: -0.75rem;
  }
}
@media (max-width: 46.1875rem) {
  .contact .contact__content {
    display: flex;
    flex-direction: column;
  }
  .contact__card--header {
    order: 0;
    max-width: 100%;
  }
  .contact__card--contact-info {
    order: 1;
    margin-top: 1rem;
    align-self: flex-end;
  }
  .contact__card--address {
    order: 2;
    margin-top: -1rem;
  }
  .contact__card--social-media-info {
    position: absolute;
    top: 50%;
    transform: translate(1rem, -2rem);
    right: 0;
    order: 3;
  }
  .contact .contact__image-wrapper {
    margin-top: -1rem;
    align-self: center;
    order: 4;
  }
}
@media (min-width: 32.9375rem) {
  .contact .contact__card--address {
    margin-bottom: -5rem;
  }
  .contact .contact__card--contact-info {
    margin-bottom: -2rem;
  }
}
@media (max-width: 22.4375rem) {
  .contact img.contact__image {
    object-fit: contain;
    height: clamp(19.875rem, 36.75vw, 31.375rem);
    object-position: bottom;
  }
  .contact .contact__card--address {
    margin-bottom: 1rem;
  }
  .contact .contact__card--social-media-info {
    transform: translate(1rem, 2rem);
  }
}
@media (max-width: 18.6875rem) {
  .contact .contact__content {
    display: flex;
    gap: 1rem;
  }
  .contact .contact__card {
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
    transform: none;
    max-width: none;
  }
  .contact .contact__card--address {
    margin-bottom: 0;
    transform: none;
  }
  .contact .contact__card--social-media-info {
    margin: none;
    transform: none;
  }
  .contact .contact__card--header {
    flex-wrap: wrap;
    font-size: 0.95rem;
  }
  .contact .contact__card--header img {
    width: 3rem;
  }
}

/*# sourceMappingURL=contate-nos.css.map */
