/*
Theme Name: Talho Barroso
Theme URI: https://blisq.pt
Author: Blisq Creative
Author URI: https://blisq.pt
Description: Tema WordPress personalizado do Talho Barroso, integrado sobre a base Corporate da Blisq Creative.
Version: 2.0.0
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: talho-barroso
*/

/* =========================================================
    TIPOGRAFIA LOCAL
   ========================================================= */
@font-face {
    font-family: "Zilla Slab";
    src: url("assets/fonts/zilla-slab-latin-ext-300-normal.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Zilla Slab";
    src: url("assets/fonts/zilla-slab-latin-ext-400-normal.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Zilla Slab";
    src: url("assets/fonts/zilla-slab-latin-ext-500-normal.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Zilla Slab";
    src: url("assets/fonts/zilla-slab-latin-ext-600-normal.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Zilla Slab";
    src: url("assets/fonts/zilla-slab-latin-ext-700-normal.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Poppins";
    src: url("assets/fonts/poppins-latin-ext-400-normal.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

/* =========================================================
    VARIAVEIS E RESETS
   ========================================================= */

:root {
    --white: #FFF;
    --black: #000;
    --gold: #C79925;
    --lightest-gray: #F1F4F6;
    --light-blue-gray: #B6CCD7;
    --dark-blue: #012436;
    --light-blue: #8BB9D0;
    --blue: #0D538E;
    --deep-blue: #032F46;
    --gray: #7B8890;
    --dark-teal: #042F46;
    --off-white: #DFE7ED;
    --medium-gray: #9EADB5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    display: block;
    background-color: var(--lightest-gray);
}

body {
    font-family: "Zilla Slab", serif;
    position: relative;
    display: block;
    background-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
}

h1 {
    color: var(--lightest-gray);
    font-size: 65px;
    font-style: normal;
    font-weight: 700;
    line-height: 104%;
}

h2 {
    color: var(--deep-blue);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

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

p {
    color: var(--gray);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

p strong {
    color: var(--dark-teal);
    font-weight: 600;
}

::selection {
    background-color: var(--gold);
    color: var(--dark-blue);
}

.block {
    display: block;
}

.none {
    display: none;
}

/* =========================================================
    HEADER
   ========================================================= */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header__container {
    width: 100%;
    max-width: 1770px;
    margin-inline: auto;
    padding: 46px 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    width: 164px;
    height: auto;
}

.header__nav .menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.menu-item a {
    color: var(--white);
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color .3s ease;
}

.menu-item a:hover {
    color: var(--gold);
}

.menu-item--app a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 15px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background-color: var(--light-blue);
    color: var(--dark-blue);
    transition: all .3s ease;
}

.menu-item--app a:hover {
    background-color: var(--blue);
}

.menu-item--app a::after {
    content: '';
    width: 11px;
    height: 11px;
    background-image: url('assets/icons/download.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* =========================================================
    HEADER - HAMBURGER
   ========================================================= */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 102;
}

.header__hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

/* Animação das 3 linhas quando aberto */
.header__hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
    HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 93.4vh;
    display: flex;
    align-items: center;
}

.hero__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 362px;
    background: linear-gradient(0deg, rgba(0, 36, 54, 0) 17.68%, rgba(0, 36, 54, 0.75) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1575px;
    margin-inline: auto;
    padding-inline: 20px;
    margin-top: 80px;
}

.hero__title {
    max-width: 826px;
    margin-bottom: 20px;
    text-wrap: balance;
}

.hero__title span {
    color: var(--gold);
}

.hero__text {
    max-width: 584px;
    color: var(--light-blue-gray);
    font-size: 24px;
    margin-bottom: 30px;
}

.hero__buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 15px;
    color: var(--lightest-gray);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all .3s ease;
    border: 1px solid transparent;
}

.btn:hover {
    opacity: .85;
}

.btn--primary {
    background-color: var(--blue);
}

.btn--primary::before {
    content: '';
    width: 14px;
    height: 13px;
    background-image: url('assets/icons/mobile.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.btn--secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.26);
}

.btn--secondary:hover {
    background-color: var(--lightest-gray);
    color: var(--blue);
}

/* =========================================================
    ANIMALS
   ========================================================= */
.animals {
    max-width: 1920px;
    margin-inline: auto;
    padding-block: 80px 67px;
}

.animals__list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
}

.animals__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.animals__icon {
    width: 130px;
    height: auto;
}

.animals__name {
    color: var(--gray);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

/* =========================================================
    STORY
   ========================================================= */
.story_section {
    max-width: 1920px;
    margin: 0 auto;
}

.story {
    max-width: 1646px;
    margin-left: auto;
    display: grid;
    grid-template-columns: 524px 1fr;
    align-items: center;
    gap: 175px;
    padding-block: 72px 140px;
}

.story__text h2 {
    margin-bottom: 30px;
    max-width: 418px;
}

.story__text p:not(:last-child) {
    margin-bottom: 14px;
}

.story__media {
    position: relative;
}

.story__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.story__highlight {
    position: absolute;
    bottom: -68px;
    right: 105px;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 28 / 25;
    object-fit: cover;
    border-radius: 20px;
}

/* =========================================================
    ABOUT
   ========================================================= */
.about_section {
    max-width: 1920px;
    margin: 0 auto;
    background-color: var(--off-white);
}

.about {
    max-width: 1520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 895px 1fr;
    align-items: center;
    gap: 100px;
    padding-block: 130px 120px;
}

.about__media {
    position: relative;
}

.about__media::before {
    content: '';
    position: absolute;
    top: 11.7%;
    left: -7.7%;
    width: 15.2%;
    aspect-ratio: 136 / 174;
    background-image: url('assets/images/logo_pseudo.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.about__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.about__highlight {
    position: absolute;
    bottom: -41px;
    right: 133px;
    width: 100%;
    max-width: 299px;
    aspect-ratio: 299 / 198;
    object-fit: cover;
    border-radius: 20px;
}

.about__text {
    max-width: 524px;
}

.about__text h2 {
    margin-bottom: 20px;
}

.about__cta___text {
    color: var(--gold);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-block: 20px 8px;
}

.about__cta__sub {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 20px;
}

.about__btns {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about__btn img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about__btn {
    width: 100%;
    max-width: 175px;
    height: auto;
}

/* =========================================================
    TYPE
   ========================================================= */
.type_section {
    position: relative;
    background-image: url('assets/images/bg-type.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px;
}

.type_section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 565px;
    background: linear-gradient(180deg, rgba(0, 24, 36, 0.00) 17.68%, #001824 100%);
    mix-blend-mode: darken;
    z-index: 0;
}

.types_container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.type__title {
    position: relative;
    z-index: 1;
    color: var(--lightest-gray);
    text-align: center;
    max-width: 524px;
    margin: 0 auto 43px;
    text-wrap: balance;
}

/* 1. SELETORES (ANIMAIS PEQUENOS) */
.animal-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.animal-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.animal-item img {
    max-width: 130px;
    max-height: 88px;
    width: auto;
    height: auto;
    display: block;
    transition: all 0.2s ease;
}

.animal-item:hover img,
.animal-item.active img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(64%) saturate(1777%) hue-rotate(182deg) brightness(93%) contrast(93%);
}

/* 2. MAPA CENTRAL (ANIMAL GRANDE) */
.animal-map-box {
    width: 100%;
    margin: 0 auto;
    max-width: 700px;
    display: flex;
    justify-content: center;
}

.animal-map-box-content {
    width: 100%;
}

.animal-map-visual {
    display: flex;
    justify-content: center;
    min-height: 290px;
}

.animal-map-box-content svg {
    width: 700px;
    height: auto;
}

.main-animal-img {
    width: 100%;
    height: auto;
    filter: brightness(0.58) saturate(0.78) contrast(1.08);
    transition: filter .2s ease;
}

.animal-map-box-content.active .main-animal-img {
    filter: none;
}

/* 3. TEXTO DE DESCRIÇÃO */
.animal-description {
    color: var(--lightest-gray);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0 auto 25px;
}

.animal-cut-title {
    margin: 8px auto 12px;
    color: var(--lightest-gray);
    text-align: center;
    font-size: 28px;
}

.animal-cut-info {
    min-height: 190px;
}

.animal-description p {
    color: inherit;
    font-size: inherit;
}

/* 4. MÉTODOS DE CONFEÇÃO */
.cooking-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 45px;
    width: 100%;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.method-item img {
    width: 50px;
    height: 50px;
}

.method-text {
    display: flex;
    flex-direction: column;
    color: var(--lightest-gray);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.method-text span {
    color: #5C85A4;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}

.animal-map-box-content {
    display: none;
}

.animal-map-box-content.active {
    display: block;
}

.animal-map-box-content svg path[fill="#0D538E"],
.animal-map-box-content svg path[fill="#0d538e"] {
    fill: #083147;
    transition: fill .2s ease;
}

.animal-map-box-content svg path[fill="#0D538E"]:hover,
.animal-map-box-content svg path[fill="#0d538e"]:hover {
    fill: #0D538E;
}

.animal-map-box svg path.active {
    fill: #0D538E;
}

.tb-animal-cut {
    cursor: pointer;
    transition: opacity .2s ease, filter .2s ease;
}

.tb-animal-cut:hover,
.tb-animal-cut:focus-visible,
.tb-animal-cut.is-active {
    filter: drop-shadow(0 0 7px rgba(241, 244, 246, .42));
}

.tb-animal-cut:focus-visible {
    outline: none;
}

.tb-animal-cut:hover path[fill="#0D538E"],
.tb-animal-cut:hover path[fill="#0d538e"],
.tb-animal-cut:focus-visible path[fill="#0D538E"],
.tb-animal-cut:focus-visible path[fill="#0d538e"],
.tb-animal-cut.is-active path[fill="#0D538E"],
.tb-animal-cut.is-active path[fill="#0d538e"] {
    fill: #1671b8;
}

/* =========================================================
    SPECIALTIES
   ========================================================= */
.specialties_section {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.specialties__bg-text {
    position: absolute;
    top: 152px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    color: var(--off-white);
    text-align: center;
    font-size: 219px;
    font-style: normal;
    font-weight: 700;
    line-height: 84%;
    white-space: nowrap;
    user-select: none;
}

.specialties {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding-block: 115px 65px;
}

.specialties__title {
    max-width: 524px;
    margin: 0 auto 100px;
    text-align: center;
}

.specialties__list {
    display: grid;
    grid-template-columns: repeat(6, minmax(350px, 1fr));
    gap: 20px;
    list-style: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    padding-inline: 40px;
}

.specialties__list::-webkit-scrollbar {
    display: none;
}

.specialties__image {
    width: 100%;
    aspect-ratio: 175/219;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.specialties_content {
    padding-inline: 10px;
}

.specialties__name {
    color: var(--deep-blue);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 116%;
    margin-bottom: 11px;
    text-wrap: balance;
    min-height: 70px;
}

.specialties__description {
    font-size: 18px;
}

/* =========================================================
    CTA
   ========================================================= */
.cta_section {
    position: relative;
    z-index: 1;
    max-width: 1920px;
    margin: 0 auto;
    padding-inline: 25px;
    padding-block: 50px 75px;
    background: linear-gradient(to bottom, var(--lightest-gray) 50%, var(--blue) 50%);
}

.cta {
    max-width: 1286px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 17px;
    display: grid;
    grid-template-columns: 1fr 55.2%;
    align-items: center;
    overflow: hidden;
}

.cta__text {
    padding-inline: 76px 53px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta__title {
    font-size: 36px;
}

.cta__description {
    font-size: 15px;
    max-width: 346px;
}

.cta__btns {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.cta__btn {
    width: 100%;
    max-width: 147px;
    height: auto;
}

.cta__btn img {
    width: 100%;
    height: auto;
}

.cta__media {
    position: relative;
}

.cta__little {
    position: absolute;
    bottom: 15%;
    left: -4%;
    max-width: 17.6%;
    width: 100%;
}

.cta__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
    CONTACT
   ========================================================= */
.contact_section {
    background-color: var(--blue);
    padding-block: 50px 75px;
    padding-inline: 25px;
}

.contact {
    position: relative;
    max-width: 890px;
    margin: 0 auto;
    background-color: #0B4678;
    border-radius: 30px;
    padding: 70px 75px;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -30px;
    width: 320px;
    height: 410px;
    background-image: url('assets/images/logo-form.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.contact__title {
    color: var(--lightest-gray);
    text-align: center;
    margin-bottom: 5px;
}

.contact__subtitle {
    color: #B5C5CF;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 30px;
    text-wrap: balance;
}

.contact__form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Field */
.contact__field {
    display: flex;
    flex-direction: column-reverse;
}

.contact__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact__input {
    width: 100%;
    background: transparent;
    border: transparent;
    border-bottom: 1px solid #012748;
    border-radius: 0;
    padding: 14px 20px;
    color: rgba(231, 243, 251, 0.50);
    font-family: "Zilla Slab";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    outline: none;
    transition: all .3s ease;
}

.contact__input::placeholder {
    color: #74A6C8;
}

.contact__input:hover {
    background-color: #093B66;
    border-bottom-color: transparent;
    border-radius: 28px;
    color: #E7F3FB;
}

.contact__input:hover::placeholder {
    color: #E7F3FB;
}

.contact__input:focus {
    background-color: #093B66;
    border-radius: 28px;
    border: 1px solid #01213D;
    color: rgba(231, 243, 251, 0.50);
}

/* Textarea */
.contact__field--textarea {
    margin-top: 10px;
}

.contact__textarea {
    resize: none;
    min-height: 230px;
}

/* Footer do form */
.contact__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

/* Checkbox + Privacidade */
.contact__privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.contact__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.contact__checkbox-custom {
    position: relative;
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    border: 1px solid #012748;
    border-radius: 5px;
    background-color: transparent;
    transition: all .3s ease;
}

.contact__checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg) scale(0);
    width: 5px;
    height: 9px;
    border-right: 1px solid var(--deep-blue);
    border-bottom: 1px solid var(--deep-blue);
    transition: transform .2s ease;
}

.contact__checkbox:checked+.contact__checkbox-custom {
    background-color: var(--gold);
    border-color: var(--gold);
}

.contact__checkbox:checked+.contact__checkbox-custom::after {
    transform: translate(-50%, -60%) rotate(45deg) scale(1);
}

.contact__checkbox:focus-visible+.contact__checkbox-custom {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.contact__privacy span {
    color: #E7F3FB;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.contact__privacy-link {
    font-weight: 700;
    transition: color .3s ease;
}

.contact__privacy-link:hover {
    color: var(--gold);
}

/* Botão */
.contact__submit {
    flex-shrink: 0;
    background-color: #8BB9D0;
    color: var(--dark-blue);
    border: none;
    border-radius: 15px;
    padding: 15px 22px;
    color: #012436;
    font-family: "Zilla Slab";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
    transition: all .3s ease;
    white-space: nowrap;
}

.contact__submit:hover {
    background-color: var(--white);
}

/* =========================================================
    FOOTER
   ========================================================= */
.footer {
    position: relative;
    padding-bottom: 25px;
    padding-inline: 25px;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 193%;
    background-color: var(--blue);
    z-index: -1;
}

.footer__container {
    position: relative;
    z-index: 1;
    max-width: 1870px;
    margin: 0 auto;
    padding: 60px 70px 50px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: max-content 24.3% auto 12.7% max-content;
    grid-template-areas:
        "brand  contact-text  contact  social   logos"
        "brand  contact-text  policies policies policies";
    gap: 40px 60px;
    align-items: start;
    background-color: #012233;
}

/* Coluna 1 */
.footer__brand {
    grid-area: brand;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__logo {
    width: 201px;
    height: auto;
}

.footer__address {
    color: var(--off-white);
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    margin-top: 142px;
}

.footer__address span {
    display: block;
}

/* Coluna 2 */
.footer__contact-text {
    grid-area: contact-text;
    align-self: flex-end;
}

.footer__contact-text p {
    color: var(--medium-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    max-width: 240px;
    text-wrap: balance;
}

/* Coluna 3 */
.footer__contact {
    grid-area: contact;
    display: flex;
    flex-direction: column;
    justify-self: flex-start;
    max-width: 245px;
    width: 100%;
}

.footer__contact-title {
    color: var(--blue);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 8px;
    margin-top: 27px;
}

.footer__phone {
    color: var(--lightest-gray);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    transition: color .3s ease;
}

.footer__phone:hover {
    color: var(--gold);
}

.footer__phone strong {
    font-weight: 700;
}

.footer__phone-note {
    color: var(--medium-gray);
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.footer__email {
    color: var(--lightest-gray);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    transition: color .3s ease;
}

.footer__email:hover {
    color: var(--gold);
}

/* Coluna 4 */
.footer__social {
    grid-area: social;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 27px;
}

.footer__social-title {
    color: var(--gold);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.footer__social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__social-link {
    transition: transform .3s ease;
}

.footer__social-link:hover {
    transform: scale(1.15);
}

.footer__social-link img {
    width: 30px;
    height: auto;
}

/* Coluna 5 */
.footer__logos {
    grid-area: logos;
    align-self: center;
}

.footer__logos-img {
    max-width: 297px;
    height: auto;
}

/* Menu legal */
.footer__policies {
    grid-area: policies;
    align-self: flex-end;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 46px;
    margin-top: 0;
}

.footer-menu-item a {
    color: var(--medium-gray);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    transition: color .3s ease;
}

.footer-menu-item a:hover {
    color: var(--gold);
}

/* Créditos */
.footer__credits {
    position: absolute;
    bottom: 50px;
    right: 70px;
    transition: all .3s ease;
}

.footer__credits:hover {
    transform: scale(1.15);
}

.footer__credits img {
    width: 36px;
    height: auto;
}

/* =========================================================
    RESPONSIVO
   ========================================================= */
@media screen and (max-height: 800px) {
    .hero__content {
        padding-block: 100px;
    }
}

@media screen and (max-width: 1880px) {
    .specialties {
        position: relative;
        z-index: 1;
        max-width: 1830px;
        margin: 0 auto;
        padding-block: 115px 65px;
    }
}

@media screen and (max-width: 1800px) {
    .header__container {
        padding-top: 38px;
    }

    .header__logo img {
        width: 148px;
    }

    .menu-item a {
        font-size: 17px;
    }

    .menu-item--app a {
        font-size: 16px;
        padding: 13px 18px;
    }

    /*--- HERO ---*/
    .hero__content {
        max-width: 1400px;
    }

    h1 {
        font-size: 58px;
    }

    .hero__text {
        font-size: 22px;
    }

    /*--- ANIMALS ---*/
    .animals__list {
        gap: 80px;
    }

    .animals__icon {
        width: 90px;
    }

    /*--- STORY ---*/
    .story {
        gap: 140px;
        padding-block: 60px 120px;
        margin-left: 10%;
    }

    /*--- ABOUT ---*/
    .about {
        grid-template-columns: 765px 1fr;
        gap: 80px;
        padding-block: 110px 100px;
        padding-inline: 6%;
    }

    /*--- TYPE ---*/
    .animal-selector {
        gap: 38px;
    }

    .animal-item img {
        max-width: 115px;
        max-height: 78px;
    }

    .cooking-methods {
        gap: 38px;
    }

    .method-item img {
        width: 45px;
        height: 45px;
    }

    .method-text {
        font-size: 20px;
    }

    /*--- SPECIALTIES ---*/
    .specialties__bg-text {
        font-size: 180px;
        top: 130px;
    }

    .specialties_content {
        padding-inline: 5px;
    }

    .specialties__name {
        font-size: 26px;
        min-height: 60px;
    }

    /*--- CTA ---*/
    .cta {
        max-width: 1100px;
    }

    .cta__text {
        padding-inline: 60px 40px;
    }

    .cta__title {
        font-size: 32px;
    }

    /*--- CONTACT ---*/
    .contact {
        max-width: 760px;
        padding: 60px 65px;
    }

    .contact__subtitle {
        font-size: 20px;
        margin-bottom: 28px;
    }

    .contact__textarea {
        min-height: 210px;
    }

    /*--- FOOTER ---*/
    .footer__container {
        padding: 50px 60px 40px;
        gap: 36px 50px;
        grid-template-columns: max-content 22% auto 12% max-content;
    }

    .footer__logo {
        width: 180px;
    }

    .footer__address {
        font-size: 21px;
        margin-top: 120px;
    }

    .footer__phone {
        font-size: 20px;
    }

    .footer__email {
        font-size: 20px;
    }

    .footer__contact-title {
        font-size: 20px;
    }

    .footer__social-title {
        font-size: 20px;
    }

    .footer__logos-img {
        max-width: 250px;
    }

    .footer-menu {
        gap: 36px;
    }
}

@media screen and (max-width: 1600px) {
    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 34px;
    }

    p {
        font-size: 20px;
    }

    .header__container {
        padding-top: 32px;
    }

    .header__logo img {
        width: 136px;
    }

    .header__nav .menu {
        gap: 22px;
    }

    .menu-item a {
        font-size: 16px;
    }

    .menu-item--app a {
        font-size: 15px;
        padding: 12px 16px;
    }

    /*--- HERO ---*/
    .hero__title {
        max-width: 720px;
    }

    .hero__text {
        font-size: 20px;
        max-width: 520px;
    }

    /*--- ANIMALS ---*/
    .animals__list {
        gap: 60px;
    }

    /*--- STORY ---*/
    .story {
        grid-template-columns: 500px 1fr;
        gap: 100px;
        padding-block: 60px 110px;
        margin-left: 6%;
    }

    .story__highlight {
        bottom: -55px;
        right: 61px;
        max-width: 235px;
    }

    .story__text h2 {
        margin-bottom: 20px;
        max-width: 320px;
    }

    /*--- ABOUT ---*/
    .about {
        grid-template-columns: 700px 1fr;
        gap: 60px;
        padding-block: 100px 90px;
    }

    .about__highlight {
        max-width: 260px;
        right: 100px;
        bottom: -36px;
    }

    /*--- TYPE ---*/
    .type_section {
        padding: 50px 35px;
    }

    .animal-selector {
        gap: 34px;
    }

    .animal-item img {
        max-width: 108px;
        max-height: 73px;
    }

    .cooking-methods {
        gap: 34px;
    }

    .method-item img {
        width: 42px;
        height: 42px;
    }

    .method-text {
        font-size: 19px;
    }

    /*--- SPECIALTIES ---*/
    .specialties {
        padding-block: 100px 55px;
    }

    .specialties__image {
        margin-bottom: 12px;
    }

    .specialties__bg-text {
        font-size: 160px;
        top: 115px;
    }

    .specialties__title {
        margin-bottom: 80px;
    }

    .specialties__name {
        font-size: 24px;
        min-height: 56px;
    }

    .specialties__description {
        font-size: 16px;
    }

    /*--- CTA ---*/
    .cta {
        max-width: 1000px;
    }

    .cta__text {
        padding-inline: 50px 30px;
    }

    .cta__title {
        font-size: 28px;
    }

    .cta__btns {
        margin-top: 24px;
    }

    .cta__btn {
        max-width: 130px;
    }

    /*--- CONTACT ---*/
    .contact {
        max-width: 720px;
        padding: 55px 60px;
    }

    .contact::after {
        width: 250px;
        height: 320px;
        bottom: -60px;
    }

    .contact__input {
        font-size: 17px;
        padding: 13px 18px;
    }

    /*--- FOOTER ---*/
    .footer__container {
        gap: 30px 40px;
        grid-template-columns: max-content 20% auto 11% max-content;
    }

    .footer__logo {
        width: 160px;
    }

    .footer__address {
        font-size: 19px;
        margin-top: 100px;
    }

    .footer__contact-text p {
        font-size: 14px;
    }

    .footer__phone {
        font-size: 18px;
    }

    .footer__email {
        font-size: 18px;
    }

    .footer__contact-title {
        font-size: 18px;
    }

    .footer__social-title {
        font-size: 18px;
    }

    .footer__social-link img {
        width: 26px;
    }

    .footer__logos-img {
        max-width: 220px;
    }

    .footer-menu {
        gap: 28px;
    }

    .footer__credits {
        right: 50px;
        bottom: 40px;
    }
}

@media screen and (max-width: 1500px) {
    .header__container {
        padding-top: 28px;
    }

    .header__logo img {
        width: 124px;
    }

    .header__nav .menu {
        gap: 18px;
    }

    .menu-item a {
        font-size: 15px;
    }

    .menu-item--app a {
        font-size: 14px;
        padding: 11px 14px;
        gap: 8px;
    }
}

@media screen and (max-width: 1400px) {
    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 30px;
    }

    p {
        font-size: 18px;
    }

    /*--- HERO ---*/
    .hero__title {
        max-width: 640px;
    }

    .hero__text {
        font-size: 18px;
        max-width: 460px;
    }

    .btn {
        font-size: 16px;
        padding: 13px 24px;
    }

    /*--- ANIMALS ---*/
    .animals__list {
        gap: 46px;
    }

    /*--- STORY ---*/
    .story {
        gap: 70px;
        grid-template-columns: 460px 1fr;
        padding-block: 50px 100px;
        margin-left: 10%;
    }

    .story__highlight {
        max-width: 200px;
        right: 80px;
        bottom: -54px;
    }

    /*--- ABOUT ---*/
    .about {
        grid-template-columns: 600px 1fr;
        gap: 50px;
        padding-block: 90px 80px;
    }

    .about__highlight {
        max-width: 230px;
        right: 80px;
        bottom: -36px;
    }

    .about__cta___text {
        font-size: 20px;
    }

    .about__cta__sub {
        font-size: 16px;
    }

    /*--- TYPE ---*/
    .type_section {
        padding: 45px 30px;
    }

    .animal-selector {
        gap: 28px;
        margin-bottom: 16px;
    }

    .animal-item img {
        max-width: 96px;
        max-height: 65px;
    }

    .animal-description {
        font-size: 17px;
        margin-bottom: 22px;
    }

    .cooking-methods {
        gap: 28px;
    }

    .method-item {
        gap: 12px;
    }

    .method-item img {
        width: 38px;
        height: 38px;
    }

    .method-text {
        font-size: 18px;
    }

    /*--- SPECIALTIES ---*/
    .specialties {
        padding-block: 90px 50px;
    }

    .specialties__bg-text {
        font-size: 130px;
        top: 100px;
    }

    .specialties__list {
        gap: 16px;
    }

    .specialties__title {
        margin-bottom: 60px;
    }

    .specialties__name {
        font-size: 22px;
        min-height: 50px;
        margin-bottom: 5px;
    }

    .specialties__description {
        font-size: 15px;
    }

    /*--- CTA ---*/
    .cta {
        max-width: 900px;
    }

    .cta__text {
        padding-inline: 40px 24px;
        gap: 6px;
    }

    .cta__title {
        font-size: 26px;
    }

    .cta__btns {
        margin-top: 20px;
        gap: 10px;
    }

    .cta__btn {
        max-width: 120px;
    }

    /*--- CONTACT ---*/
    .contact {
        max-width: 680px;
        padding: 50px 55px;
    }

    .contact__subtitle {
        font-size: 19px;
        margin-bottom: 25px;
    }

    .contact__textarea {
        min-height: 190px;
    }

    .contact__submit {
        font-size: 17px;
        padding: 14px 20px;
    }

    /*--- FOOTER ---*/
    .footer__container {
        gap: 26px;
        grid-template-columns: max-content 18% auto 10% max-content;
    }

    .footer__logo {
        width: 144px;
    }

    .footer__address {
        font-size: 17px;
        margin-top: 80px;
    }

    .footer__contact-text p {
        font-size: 13px;
    }

    .footer__phone {
        font-size: 17px;
    }

    .footer__phone-note {
        font-size: 10px;
    }

    .footer__email {
        font-size: 17px;
    }

    .footer__contact-title {
        font-size: 16px;
        margin-top: 20px;
    }

    .footer__social-title {
        font-size: 16px;
    }

    .footer__social {
        margin-top: 20px;
    }

    .footer__social-link img {
        width: 24px;
    }

    .footer__logos-img {
        max-width: 190px;
    }

    .footer-menu {
        gap: 22px;
    }

    .footer__credits {
        right: 25px;
        bottom: 15px;
    }
}

@media screen and (max-width: 1200px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 16px;
    }

    .header__container {
        padding-top: 24px;
    }

    .header__logo img {
        width: 114px;
    }

    .menu-item a {
        font-size: 14px;
    }

    .menu-item--app a {
        font-size: 13px;
        padding: 10px 12px;
    }

    /*--- HERO ---*/
    .hero__title {
        max-width: 560px;
    }

    .hero__text {
        font-size: 17px;
        max-width: 400px;
    }

    .hero__content {
        margin-top: 60px;
    }

    /*--- ANIMALS ---*/
    .animals {
        padding-block: 60px 50px;
    }

    .animals__list {
        gap: 34px;
    }

    .animals__name {
        font-size: 14px;
    }

    /*--- STORY ---*/
    .story {
        grid-template-columns: 400px 1fr;
        gap: 50px;
        padding-block: 50px 90px;
        margin-left: 6%;
    }

    .story__text h2 {
        margin-bottom: 15px;
        max-width: 240px;
    }

    .story__highlight {
        max-width: 210px;
        right: 60px;
        bottom: -48px;
    }

    /*--- ABOUT ---*/
    .about {
        grid-template-columns: 500px 1fr;
        gap: 40px;
        padding-block: 80px 70px;
    }

    .about__highlight {
        max-width: 200px;
        right: 60px;
        bottom: -32px;
    }

    .about__text h2 {
        margin-bottom: 15px;
    }

    .about__cta___text {
        font-size: 18px;
    }

    .about__cta__sub {
        font-size: 15px;
    }

    .about__btn {
        max-width: 150px;
    }

    /*--- TYPE ---*/
    .type_section {
        padding: 40px 25px;
    }

    .type__title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .animal-selector {
        gap: 22px;
    }

    .animal-item img {
        max-width: 80px;
        max-height: 55px;
    }

    .animal-map-box {
        max-width: 600px;
    }

    .animal-map-box-content svg {
        width: 600px;
    }

    .animal-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cooking-methods {
        gap: 22px;
    }

    .method-item img {
        width: 34px;
        height: 34px;
    }

    .method-text {
        font-size: 17px;
    }

    /*--- SPECIALTIES ---*/
    .specialties {
        padding-block: 80px 45px;
    }

    .specialties__bg-text {
        font-size: 110px;
        top: 86px;
    }

    .specialties__list {
        gap: 12px;
    }

    .specialties__name {
        font-size: 20px;
    }

    .specialties__description {
        font-size: 14px;
    }

    /*--- CTA ---*/
    .cta {
        max-width: 800px;
    }

    .cta__text {
        padding-inline: 30px 20px;
    }

    .cta__title {
        font-size: 24px;
    }

    .cta__description {
        font-size: 13px;
    }

    .cta__btn {
        max-width: 110px;
    }

    /*--- CONTACT ---*/
    .contact_section {
        padding-block: 45px 65px;
    }

    .contact {
        max-width: 620px;
        padding: 45px 50px;
        border-radius: 25px;
    }

    .contact::after {
        width: 220px;
        height: 280px;
        bottom: -50px;
    }

    .contact__subtitle {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .contact__form {
        gap: 8px;
    }

    .contact__input {
        font-size: 16px;
        padding: 12px 16px;
    }

    .contact__textarea {
        min-height: 170px;
    }

    .contact__privacy span {
        font-size: 14px;
    }

    /*--- FOOTER ---*/
    .footer__container {
        padding: 36px 30px 50px;
        gap: 20px 24px;
        grid-template-columns: max-content 18% auto 10% max-content;
    }

    .footer__logo {
        width: 130px;
    }

    .footer__address {
        font-size: 15px;
        margin-top: 60px;
    }

    .footer__contact-text p {
        font-size: 13px;
    }

    .footer__phone {
        font-size: 15px;
    }

    .footer__phone-note {
        font-size: 10px;
    }

    .footer__email {
        font-size: 15px;
    }

    .footer__contact-title {
        font-size: 15px;
        margin-top: 16px;
    }

    .footer__social-title {
        font-size: 15px;
    }

    .footer__social {
        margin-top: 16px;
        gap: 14px;
    }

    .footer__social-link img {
        width: 22px;
    }

    .footer__logos-img {
        max-width: 160px;
    }

    .footer-menu {
        gap: 16px;
    }

    .footer-menu-item a {
        font-size: 12px;
    }
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        font-size: 15px;
    }

    /*--- Menu ---*/
    .header__hamburger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100%;
        background-color: var(--deep-blue);
        padding: 100px 40px 40px;
        z-index: 101;
        transform: translateX(100%);
        transition: transform .4s ease;
    }

    .header::before {
        content: '';
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: opacity .4s ease;
    }

    .header.menu-open::before {
        opacity: 1;
        pointer-events: all;
    }

    .header.menu-open .header__nav {
        transform: translateX(0);
    }

    .header__nav .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .menu-item a {
        font-size: 22px;
        padding-block: 8px;
        display: block;
    }

    .menu-item--app a {
        display: inline-flex;
        padding: 13px 16px;
    }

    .header__container {
        padding: 24px 20px 0;
    }

    .header__logo img {
        width: 110px;
    }

    /*--- HERO ---*/
    .hero {
        min-height: 80vh;
    }

    .hero__title {
        max-width: 480px;
    }

    .hero__text {
        font-size: 16px;
        max-width: 360px;
        margin-bottom: 24px;
    }

    .hero__content {
        margin-top: 50px;
    }

    .btn {
        font-size: 15px;
        padding: 12px 20px;
    }

    /*--- ANIMALS ---*/
    .animals {
        padding-block: 50px 40px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .animals::-webkit-scrollbar {
        display: none;
    }

    .animals__list {
        width: max-content;
        margin: 0 auto;
        gap: 30px;
        padding-inline: 24px;
        justify-content: flex-start;
    }

    .animals__name {
        font-size: 13px;
    }

    /*--- STORY ---*/
    .story {
        grid-template-columns: 375px 1fr;
        gap: 40px;
        padding-block: 50px 90px;
        margin-left: 5%;
    }

    .story__highlight {
        max-width: 162px;
        right: 40px;
        bottom: -48px;
    }

    /*--- ABOUT ---*/
    .about {
        grid-template-columns: 410px 1fr;
        gap: 30px;
        padding-block: 70px 60px;
    }

    .about__highlight {
        max-width: 170px;
        right: 40px;
        bottom: -28px;
    }

    .about__cta___text {
        font-size: 17px;
    }

    .about__cta__sub {
        font-size: 14px;
    }

    .about__btn {
        max-width: 136px;
    }

    /*--- TYPE ---*/
    .type_section {
        padding: 35px 20px;
    }

    .type__title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .animal-selector {
        gap: 16px;
        margin-bottom: 14px;
    }

    .animal-item img {
        max-width: 64px;
        max-height: 44px;
    }

    .animal-map-box {
        max-width: 500px;
    }

    .animal-map-box-content svg {
        width: 500px;
    }

    .animal-description {
        font-size: 15px;
        padding-inline: 10px;
    }

    .cooking-methods {
        gap: 18px;
    }

    .method-item img {
        width: 30px;
        height: 30px;
    }

    .method-text {
        font-size: 15px;
    }

    .method-text span {
        font-size: 10px;
    }

    /*--- SPECIALTIES ---*/
    .specialties_section {
        overflow: hidden;
    }

    .specialties {
        padding-block: 70px 40px;
        overflow-x: visible;
        padding-inline: 0;
    }

    .specialties__bg-text {
        font-size: 90px;
    }

    .specialties__title {
        margin-bottom: 50px;
        padding-inline: 24px;
    }

    .specialties__list {
        grid-template-columns: repeat(6, minmax(280px, 1fr));
        padding-inline: 24px;
        padding-bottom: 10px;
    }

    .specialties__name {
        font-size: 18px;
        min-height: 0;
    }

    /*--- CTA ---*/
    .cta {
        max-width: 700px;
    }

    .cta__text {
        padding-inline: 24px 16px;
    }

    .cta__title {
        font-size: 22px;
    }

    .cta__btns {
        margin-top: 16px;
        gap: 8px;
    }

    .cta__btn {
        max-width: 100px;
    }

    /*--- CONTACT ---*/
    .contact_section {
        padding-block: 40px 55px;
    }

    .contact {
        max-width: 560px;
        padding: 40px 45px;
    }

    .contact::after {
        width: 190px;
        height: 245px;
        bottom: -45px;
        right: -20px;
    }

    .contact__subtitle {
        font-size: 17px;
    }

    .contact__input {
        font-size: 15px;
    }

    .contact__textarea {
        min-height: 150px;
    }

    .contact__footer {
        gap: 15px;
        margin-top: 16px;
    }

    .contact__submit {
        font-size: 16px;
        padding: 13px 18px;
    }

    /*--- FOOTER ---*/
    .footer__container {
        padding: 32px 24px 28px;
        gap: 30px 20px;
        grid-template-columns: max-content 1fr 1fr max-content;
        grid-template-areas:
            "brand  contact-text  contact  social"
            "brand  contact-text  policies policies"
            "logos  logos         logos    logos";
    }

    .footer__logo {
        width: 118px;
    }

    .footer__address {
        font-size: 14px;
        margin-top: 50px;
    }

    .footer__phone {
        font-size: 14px;
    }

    .footer__email {
        font-size: 14px;
    }

    .footer__contact-title {
        font-size: 14px;
    }

    .footer__social-title {
        font-size: 14px;
    }

    .footer__social {
        margin-top: 16px;
    }

    .footer__logos {
        align-self: start;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__logos-img {
        max-width: 200px;
    }

    .footer-menu {
        gap: 8px 14px;
        flex-wrap: wrap;
    }

    .footer-menu-item a {
        font-size: 11px;
    }

    .footer__credits {
        right: 24px;
        bottom: 20px;
    }
}

@media screen and (max-width: 820px) {

    /*--- STORY ---*/
    .story {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-block: 10px 75px;
        padding-inline: 25px;
        margin-left: 0;
        margin-inline: auto;
    }

    .story__image {
        border-radius: 20px;
    }

    .story__highlight {
        max-width: 200px;
        right: 40px;
        bottom: -48px;
    }

    .story__text h2 {
        max-width: 100%;
    }

    .story__text p:not(:last-child) {
        margin-bottom: 10px;
    }

    /*--- ABOUT ---*/
    .about {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-block: 50px 60px;
        padding-inline: 25px;
    }

    .about__highlight {
        max-width: 200px;
        right: 40px;
        bottom: -32px;
    }

    .about__text {
        max-width: 100%;
    }

    .about__media {
        order: 1;
        margin-inline: 6%;
    }

    /*--- TYPE ---*/
    .animal-selector {
        gap: 14px;
    }

    .animal-item img {
        max-width: 56px;
        max-height: 38px;
    }

    .cooking-methods {
        gap: 16px;
    }

    /*--- CONTACT ---*/
    .contact {
        max-width: 100%;
        padding: 35px 40px;
    }

    .contact__title {
        font-size: 28px;
    }

    .contact__subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .contact__privacy span {
        font-size: 13px;
    }

    /*--- FOOTER ---*/
    .footer__container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "brand    contact"
            "brand    social"
            "contact-text contact-text"
            "policies policies"
            "logos    logos";
        gap: 20px;
    }

    .footer__address {
        margin-top: 0;
    }

    .footer__contact {
        max-width: 100%;
    }

    .footer__logos {
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media screen and (max-width: 770px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
    }

    .header__logo img {
        width: 100px;
    }

    .header__nav {
        padding: 90px 30px 30px;
    }

    .menu-item a {
        font-size: 20px;
    }

    /*--- HERO ---*/
    .hero {
        align-items: flex-end;
        padding-top: 100px;
        min-height: 55vh;
    }

    .hero__content {
        margin-top: 0;
        padding-inline: 16px;
        padding-bottom: 50px;
    }

    .hero__title {
        max-width: 75%;
        margin-bottom: 14px;
    }

    .hero__text {
        font-size: 15px;
        max-width: 70%;
        margin-bottom: 20px;
    }

    .hero__buttons {
        gap: 10px;
    }

    .btn {
        font-size: 14px;
        padding: 11px 18px;
    }

    /*--- ANIMALS ---*/
    .animals {
        padding-block: 40px 32px;
    }

    .animals__list {
        padding-inline: 16px;
    }

    /*--- STORY ---*/
    .story {
        padding-block: 10px 65px;
        padding-inline: 20px;
    }

    .story__highlight {
        max-width: 175px;
        right: 30px;
        bottom: -40px;
    }

    /*--- ABOUT ---*/
    .about {
        padding-block: 40px 55px;
        padding-inline: 20px;
    }

    .about__highlight {
        max-width: 175px;
        right: 30px;
        bottom: -28px;
    }

    /*--- TYPE ---*/
    .animal-selector {
        gap: 14px;
    }

    .animal-item img {
        max-width: 56px;
        max-height: 38px;
    }

    .animal-map-box-content svg {
        width: 400px;
    }

    .animal-map-box {
        max-width: 400px;
    }

    .cooking-methods {
        gap: 16px;
    }

    /*--- SPECIALTIES ---*/
    .specialties__bg-text {
        font-size: 70px;
        top: 80px;
    }

    .specialties {
        padding-block: 55px 40px;
    }

    .specialties__list {
        grid-template-columns: repeat(6, minmax(240px, 1fr));
        padding-inline: 16px;
    }

    /*--- CTA ---*/
    .cta_section {
        padding-block: 0 50px;
    }

    /*--- CONTACT ---*/
    .contact_section {
        padding-block: 35px 45px;
    }

    .contact {
        padding: 30px 35px;
    }

    .contact::after {
        width: 160px;
        height: 205px;
        bottom: -40px;
        right: -15px;
    }

    .contact__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact__submit {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 720px) {

    /*--- CTA ---*/
    .cta {
        grid-template-columns: 1fr;
        max-width: 500px;
        overflow: visible;
        border-radius: 0;
        background-color: transparent;
    }

    .cta__text {
        padding: 30px;
        background: white;
        border-radius: 17px 17px 0 0;
    }

    .cta__image {
        width: 100%;
        height: 230px;
        border-radius: 0 0 17px 17px;
        background: var(--white);
    }

    .cta__btns {
        margin-top: 7px;
        border-radius: 0 0 17px 17px;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 26px;
    }

    /*--- STORY ---*/
    .story {
        padding-block: 10px 55px;
        padding-inline: 16px;
    }

    .story__highlight {
        max-width: 150px;
        right: 20px;
        bottom: -34px;
    }

    /*--- ABOUT ---*/
    .about {
        padding-block: 36px 50px;
        padding-inline: 16px;
    }

    .about__highlight {
        max-width: 150px;
        right: 20px;
        bottom: -24px;
    }

    .about__cta___text {
        font-size: 16px;
    }

    .about__btn {
        max-width: 124px;
    }

    /*--- TYPE ---*/
    .type_section {
        padding: 30px 16px;
    }

    .type__title {
        font-size: 20px;
    }

    .animal-item img {
        max-width: 42px;
        max-height: 28px;
    }

    .animal-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .animal-map-box-content svg {
        width: 100%;
    }

    .cooking-methods {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 380px;
        margin: 0 auto;
    }

    .method-item {
        justify-content: center;
        gap: 8px;
    }

    .method-item img {
        width: 26px;
        height: 26px;
    }

    .method-text {
        font-size: 13px;
    }

    .method-text span {
        font-size: 9px;
    }

    /*--- CTA ---*/
    .cta__little {
        display: none;
    }

    /*--- CONTACT ---*/
    .contact_section {
        padding-block: 30px 40px;
        padding-inline: 15px;
    }

    .contact {
        padding: 25px 30px;
        border-radius: 20px;
    }

    .contact__title {
        font-size: 24px;
    }

    .contact__subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .contact__form {
        gap: 6px;
    }

    .contact__input {
        font-size: 14px;
        padding: 11px 14px;
    }

    .contact__textarea {
        min-height: 130px;
    }

    .contact__privacy span {
        font-size: 12px;
    }

    .contact__submit {
        font-size: 15px;
        padding: 12px 16px;
    }

    /*--- FOOTER ---*/
    .footer-menu {
        gap: 10px 16px;
    }

}

@media screen and (max-width: 500px) {

    /*--- FOOTER ---*/
    .footer {
        padding-inline: 15px;
        padding-bottom: 15px;
    }

    .footer__container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "contact-text"
            "contact"
            "social"
            "policies"
            "logos";
        gap: 24px;
    }

    .footer__address {
        margin-top: 20px;
    }

    .footer__contact {
        max-width: 100%;
    }

    .footer__logos {
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 30px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 8px;
    }

    .footer__credits {
        right: 20px;
        bottom: 16px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 13px;
    }

    .header__nav {
        width: 100%;
        padding: 80px 24px 24px;
    }

    .menu-item a {
        font-size: 18px;
    }

    .menu-item--app a {
        padding: 10px 14px;
    }

    /*--- HERO ---*/
    .hero__title {
        max-width: 100%;
    }

    .hero__text {
        font-size: 14px;
        max-width: 100%;
    }

    .btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    /*--- ANIMALS ---*/
    .animals {
        padding-block: 32px 24px;
    }

    .animals__list {
        padding-inline: 14px;
    }

    /*--- STORY ---*/
    .story {
        padding-block: 10px 45px;
        padding-inline: 14px;
    }

    .story__highlight {
        max-width: 120px;
        right: 16px;
        bottom: -28px;
    }

    /*--- ABOUT ---*/
    .about {
        padding-block: 30px 85px;
        padding-inline: 14px;
    }

    .about__highlight {
        right: 20px;
        bottom: -54px;
    }

    .about__btn {
        max-width: 114px;
    }

    /*--- TYPE ---*/
    .animal-selector {
        gap: 8px;
    }

    .cooking-methods {
        gap: 10px;
    }

    .method-item img {
        width: 24px;
        height: 24px;
    }

    .method-text {
        font-size: 12px;
    }

    /*--- SPECIALTIES ---*/
    .specialties__bg-text {
        font-size: 52px;
        top: 80px;
    }

    .specialties {
        padding-block: 55px 40px;
    }

    .specialties__list {
        grid-template-columns: repeat(6, minmax(200px, 1fr));
        padding-inline: 14px;
        gap: 12px;
    }

    .specialties__name {
        font-size: 16px;
    }

    /*--- CONTACT ---*/
    .contact {
        padding: 22px 25px;
    }

    .contact::after {
        width: 130px;
        height: 165px;
        bottom: -30px;
        right: -10px;
    }

    .contact__title {
        font-size: 22px;
    }

    .contact__subtitle {
        font-size: 14px;
    }

    .contact__privacy span {
        font-size: 11px;
    }
}

@media screen and (max-width: 375px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 16px;
    }

    .menu-item a {
        font-size: 17px;
    }

    /*--- HERO ---*/
    .hero__content {
        padding-inline: 12px;
        padding-bottom: 40px;
    }

    /*--- STORY ---*/
    .story {
        padding-inline: 12px;
    }

    .story__highlight {
        max-width: 100px;
        right: 12px;
        bottom: -22px;
    }

    /*--- ABOUT ---*/
    .about {
        padding-inline: 12px;
    }

    .about__btns {
        gap: 10px;
    }

    .about__btn {
        max-width: 104px;
    }

    /*--- TYPE ---*/
    .type_section {
        padding: 25px 12px;
    }

    .type__title {
        font-size: 18px;
    }

    .cooking-methods {
        gap: 8px;
    }

    .method-item {
        gap: 6px;
    }

    .method-item img {
        width: 22px;
        height: 22px;
    }

    .method-text {
        font-size: 11px;
    }

    /*--- SPECIALTIES ---*/
    .specialties__bg-text {
        font-size: 42px;
    }

    .specialties__list {
        grid-template-columns: repeat(6, minmax(180px, 1fr));
        padding-inline: 12px;
    }

    .specialties__name {
        font-size: 15px;
    }

    /*--- CONTACT ---*/
    .contact {
        padding: 20px 20px;
        border-radius: 18px;
    }

    .contact::after {
        width: 100px;
        height: 128px;
        bottom: -25px;
        right: -8px;
    }

    .contact__title {
        font-size: 20px;
    }

    .contact__subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .contact__input {
        font-size: 13px;
        padding: 10px 12px;
    }

    .contact__textarea {
        min-height: 120px;
    }

    .contact__submit {
        font-size: 14px;
        padding: 11px 14px;
    }

    /*--- FOOTER ---*/
    .footer__container {
        padding: 24px 16px 20px;
    }

    .footer__logo {
        width: 100px;
    }

    .footer__address {
        font-size: 13px;
    }
}

@media screen and (max-width: 350px) {
    .btn {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .hero__buttons {
        gap: 10px;
        flex-direction: column;
    }
}

/* =========================================================
    WORDPRESS, ACESSIBILIDADE E ESTADOS
   ========================================================= */
.go-to-main,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.go-to-main:focus,
.screen-reader-text:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000000;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    padding: 12px 18px;
    color: var(--dark-blue);
    background: var(--white);
    border: 2px solid var(--gold);
}

.admin-bar .header {
    top: 32px;
}

body:not(.home) .header {
    padding-bottom: 24px;
    background: var(--dark-blue);
}

.header__logo .custom-logo-link {
    display: block;
}

.animal-item {
    appearance: none;
    padding: 4px;
    border: 0;
    background: transparent;
    border-radius: 6px;
}

.animal-item:focus-visible,
.btn:focus-visible,
.header a:focus-visible,
.footer a:focus-visible,
.contact__submit:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.animal-map-box-content[hidden] {
    display: none;
}

.main-animal-img {
    display: block;
    width: min(100%, 620px);
    max-height: 390px;
    margin: 0 auto 24px;
    object-fit: contain;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact__response {
    min-height: 24px;
    color: var(--white);
    font-size: 16px;
    line-height: 1.4;
}

.contact__response.is-error {
    color: #ffd4d4;
}

.contact__submit[disabled] {
    cursor: wait;
    opacity: .65;
}

.site-content {
    min-height: 70vh;
    max-width: 1180px;
    margin: 0 auto;
    padding: 180px 24px 100px;
}

.site-content h1,
.site-content h2,
.site-content h3 {
    color: var(--dark-blue);
    margin-bottom: 24px;
}

.site-content p,
.site-content ul,
.site-content ol {
    margin-bottom: 20px;
}

.site-content a:not(.page-numbers) {
    color: var(--blue);
    text-decoration: underline;
}

.site-content article + article {
    margin-top: 60px;
}

.pagination,
.posts-navigation {
    margin-top: 48px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
