/*
Theme Name: Vetmonti
Theme URI: https://blisq.pt
Author: Blisq Creative
Author URI: https://blisq.pt
Description: Tema WordPress personalizado para a Vetmonti, integrado a partir do tema HTML fornecido. Inclui opções de website, CPTs para serviços, equipa, diferenciação, fases de acompanhamento e FAQs.
Version: 1.0.0
Text Domain: vetmonti
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.1
*/

/* =========================================================
    TIPOGRAFIA
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Bubbles&display=swap');

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

:root {
    --white: #FFF;
    --black: #000;
    --copper: #F28C00;
    --earth: #3E3632;
    --fog: #9FB0B3;
    --snow: #F5F9FA;
    --sea: #88B5C7;
    --stone: #63787E;
    --coal: #2B2928;
    --night: #1D1714;
    --cream: #EDF2F1;
    --dust: #B5C0C3;
    --mist: #EBEFF0;
}

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

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

body {
    font-family: "Inter", sans-serif;
    position: relative;
    display: block;
    background-color: transparent;
    overflow-x: hidden;
}

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

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

h1 {
    color: var(--earth);
    font-family: Sora;
    font-size: 51px;
    font-style: normal;
    font-weight: 800;
    line-height: 125.994%;
    letter-spacing: -0.51px;
}

h2 {
    color: var(--sea);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 121.017%;
    letter-spacing: -0.18px;
}

h3 {
    color: var(--earth);
    font-size: 31px;
    font-style: normal;
    font-weight: 700;
    line-height: 121.017%;
    letter-spacing: -0.31px;
}

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

::selection {
    background-color: var(--sea);
    color: var(--white);
}

.block {
    display: block;
}

.none {
    display: none;
}

.go-to-main {
    color: #191919;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: -9999px;
    margin: 20px;
    background-color: #f3f3f3;
    padding: 15px;
    display: block;
    width: fit-content;
    z-index: 3;
}

.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
    word-break: normal !important;
}

.screen-reader-text:focus {
    background-color: #eee;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* =========================================================
    HEADER
   ========================================================= */
/* --- TOP BAR --- */
.top-bar {
    width: 100%;
    padding: 12px 52px 15px 0;
    display: flex;
    justify-content: flex-end;
    background-color: transparent;
}

.top-bar__schedule {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--earth);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 158%;
    text-transform: uppercase;
}

.top-bar__label {
    color: #555555;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 158%;
    ;
}

.top-bar__item strong {
    font-weight: 700;
}

/* --- NAV WRAPPER --- */
.site-header {
    position: relative;
    z-index: 10;
}

.site-nav {
    width: 95.3%;
    margin: 20px auto 0;
    background-color: rgba(245, 249, 250, 0.51);
    border-radius: 71px;
    padding: 10px 10px 10px 38px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 0.5px solid #ffffff63;
}

.site-nav__inner {
    display: flex;
    align-items: center;
    gap: 46px;
}

/* --- LOGO --- */
.site-nav__logo {
    flex-shrink: 0;
    z-index: 101;
}

.site-nav__logo img {
    height: auto;
    width: 170px;
}

/* --- MENU --- */
.site-nav__menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin-left: auto;
}

.menu-item>a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--earth);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 121.053%;
    transition: all 0.2s ease;
}

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

/* --- DROPDOWN --- */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children a {
    position: relative;
}

.menu-item-has-children>a::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 12px;
}

.menu-item-has-children>a::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 8px;
    background-image: url("assets/icons/arrowDown.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.25s ease;
}

.menu-item-has-children:hover>a::after,
.menu-item-has-children:focus-within>a::after {
    transform: rotate(180deg);
}

.sub-menu {
    list-style: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(-4px);
    z-index: 100;
}

.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.sub-menu .menu-item>a {
    border-radius: 10px;
    font-size: 13px;
    padding: 8px 12px;
}

/* --- CTA --- */
.menu-item--cta {
    margin-left: auto;
}

.menu-item--cta .site-nav__cta {
    flex-shrink: 0;
    padding: 19px 35px;
    background-color: var(--white);
    color: var(--earth);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.menu-item--cta .site-nav__cta:hover {
    background-color: var(--earth);
    color: var(--white);
}

/* --- HAMBURGUER --- */
.site-nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
    margin-left: auto;
}

.site-nav__hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--earth);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Hambúrguer → X */
.site-nav__hamburger.is-open .site-nav__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-nav__hamburger.is-open .site-nav__hamburger-line:nth-child(2) {
    opacity: 0;
}

.site-nav__hamburger.is-open .site-nav__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
    HERO
   ========================================================= */
.hero {
    width: calc(100% - 40px);
    max-width: 1857px;
    margin: 0 auto;
    border-radius: 40px;
    position: relative;
    min-height: 83vh;
    background-image: url('assets/images/hero-bg.webp');
    background-size: cover;
    background-position: 100% top;
    background-repeat: no-repeat;
}

/* --- CONTEÚDO --- */
.hero__content {
    position: relative;
    z-index: 2;
    padding: 245px 0 175px 180px;
}

.hero__title {
    margin-bottom: 12px;
    max-width: 635px;
    text-wrap: pretty;
}

.hero__title>span {
    display: block;
}

.hero__description {
    color: #5F5F5F;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 158%;
    max-width: 495px;
    margin-bottom: 20px;
}

/* --- CTAs --- */
.hero__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 45px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.hero__btn--primary {
    background-color: var(--earth);
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 20px 32px 19px;
}

.hero__btn--primary:hover {
    background-color: var(--white);
    color: var(--earth);
}

.hero__btn--whatsapp {
    background-color: var(--white);
    color: var(--earth);
    align-items: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 19.5px 25px 18.5px;
}

.hero__btn--whatsapp:hover {
    background-color: var(--mist);
}

.hero__btn--whatsapp::after {
    content: "";
    width: 23px;
    height: 22px;
    background-image: url("assets/icons/whatsapp.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -57%;
    right: -1.4%;
    width: 50%;
    aspect-ratio: 980 / 1029;
    background-image: url("assets/images/hero-pseudo.svg");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
}

/* =========================================================
    SERVICES
   ========================================================= */
.services {
    width: 100%;
    padding: 90px 0;
    position: relative;
}

.post-type-archive-servico .services {
    margin-top: 20px;
}

.services__container {
    width: 1590px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- HEADER --- */
.services__header {
    max-width: 818px;
    margin: 0 auto 30px;
}

.services__subtitle {
    margin-bottom: 11px;
}

.services__title {
    text-align: center;
    margin-bottom: 10px;
}

.services__desc {
    color: var(--stone);
    text-align: center;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 165%;
    letter-spacing: -0.16px;
    text-wrap: balance;
}

/* --- GRID --- */
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* --- CARD --- */
.service-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.12);
}

.service-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* --- IMAGEM --- */
.service-card__image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.00) 53.88%,
            rgba(0, 0, 0, 0.77) 91.79%);
    z-index: 1;
    pointer-events: none;
}

.service-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 25px 25px 30px;
    color: var(--white);
    pointer-events: none;
    min-height: 150px;
}

.service-card__label {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 2;
    border-radius: 31px;
    border: 1px solid rgba(255, 255, 255, 0.47);
    background: rgba(22, 22, 22, 0.18);
    color: var(--white);
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 129%;
    letter-spacing: -0.14px;
    padding: 13px 16px;
    border-radius: 31px;
    pointer-events: none;
}

/* --- TÍTULO E DESCRIÇÃO --- */
.service-card__title {
    color: var(--snow);
    font-family: Sora;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 129%;
    letter-spacing: -0.22px;
    margin-bottom: 4px;
    text-align: left;
}

.service-card__description {
    color: var(--snow);
    font-family: Sora;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: -0.15px;
}

.services__footer {
    text-align: center;
    margin-top: 40px;
}

.services__btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 25px;
    background-color: #E2E9EB;
    color: var(--night);
    font-size: 16px;
    font-weight: 600;
    border-radius: 45px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.services__btn:hover {
    background-color: var(--fog);
}

/* =========================================================
    ABOUT
   ========================================================= */
.about {
    position: relative;
    background-color: var(--cream);
}

.about__inner {
    display: flex;
    align-items: center;
    max-width: 1327px;
    margin: 0 auto;
    gap: 121px;
    padding-block: 136px 112px;
}

/* --- FIGURA --- */
.about__figure {
    flex-shrink: 0;
    width: 588px;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
}

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

/* --- CONTEÚDO --- */
.about__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 617px;
}

.about__label {
    color: #88B5C7;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 121.017%;
    letter-spacing: -0.18px;
    text-align: left;
}

.about__title {
    color: var(--earth);
    font-size: 31px;
    font-style: normal;
    font-weight: 700;
    line-height: 121.017%;
    letter-spacing: -0.31px;
}

.about__highlight {
    color: #B5C0C3;
    font-family: Sora;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.21px;
    max-width: 519px;
}

.about__description {
    color: var(--earth);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: -0.2px;
    max-width: 519px;
    margin-bottom: 10px;
}

/* --- BTN --- */
.about__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 19.5px 25px 18.5px;
    border-radius: 45px;
    background-color: var(--white);
    color: var(--earth);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.2s ease;
}

.about__btn::after {
    content: "";
    width: 23px;
    height: 22px;
    background-image: url("assets/icons/whatsapp.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

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

/* =========================================================
    TEAM
   ========================================================= */

.team {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

/* --- PARTE 1 — ACOMPANHAMENTO --- */
.team-accomp {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 0;
}

.team-accomp__bg {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Rubik Bubbles", sans-serif;
    color: #E2E9EB;
    text-align: center;
    font-size: 191px;
    font-style: normal;
    font-weight: 400;
    line-height: 88%;
    letter-spacing: -1.91px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    text-align: center;
}

.team-accomp__quote {
    position: relative;
    z-index: 1;
    max-width: 555px;
    text-align: center;
    color: var(--night);
    text-align: center;
    font-family: Sora;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.22px;
}

.team-accomp__list {
    position: relative;
    z-index: 1;
    list-style: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.team-accomp__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-accomp__figure {
    width: 410px;
    height: auto;
    overflow: hidden;
}

.team-accomp__figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.team-accomp__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: -15px;
}

.animal-name {
    color: var(--night);
    text-align: center;
    font-family: Sora;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    line-height: 109%;
    letter-spacing: -0.13px;
    text-transform: uppercase;
}

.animal-age {
    color: var(--night);
    text-align: center;
    font-family: Sora;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 109%;
    letter-spacing: -0.22px;
}

/* --- PARTE 2 — EQUIPA --- */
.team-member {
    display: flex;
    align-items: center;
    gap: 192px;
    max-width: 1360px;
    margin: 0 auto 90px;
    scroll-margin: 90px;
}

.team-member__figure {
    flex-shrink: 0;
    width: 578px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 30px;
    overflow: hidden;
}

.team-member__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member__content {
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.team-member__label {
    color: #88B5C7;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 121.017%;
    letter-spacing: -0.18px;
    text-align: left;
}

.team-member__title {
    color: var(--night);
    font-family: Sora;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 129%;
    letter-spacing: -0.32px;
}

.team-member__scroll {
    max-height: 334px;
    overflow-y: auto;
    padding-right: 65px;
}

/*Estilos safari e Firefox*/
@supports (-moz-appearance: none) {
    .team-member__scroll {
        scrollbar-width: thin;
        scrollbar-color: var(--night) #C9D2D4;
    }

    .team-member__scroll::-webkit-scrollbar {
        width: 100%;
    }

    .team-member__scroll::-webkit-scrollbar-track {
        background: unset;
    }

    .team-member__scroll::-webkit-scrollbar-thumb {
        background-color: unset;
        border-radius: 0;
    }
}

_::-webkit-full-page-media,
_:future,
:root .team-member__scroll {
    scrollbar-width: thin;
    scrollbar-color: var(--night) #C9D2D4;
}

_::-webkit-full-page-media,
_:future,
:root .team-member__scroll::-webkit-scrollbar {
    width: 100%;
}

_::-webkit-full-page-media,
_:future,
:root .team-member__scroll::-webkit-scrollbar-track {
    background: unset;
}

_::-webkit-full-page-media,
_:future,
:root .team-member__scroll::-webkit-scrollbar-thumb {
    background-color: unset;
    border-radius: 0;
}

/*Chrome e edge*/
.team-member__scroll::-webkit-scrollbar {
    width: 3px;
}

.team-member__scroll::-webkit-scrollbar-track {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 30%, #C9D2D4 30%, #C9D2D4 70%, rgba(0, 0, 0, 0) 70%);
}

.team-member__scroll::-webkit-scrollbar-thumb {
    background-color: var(--coal);
    border-radius: 0;
}

.team-member__scroll p {
    overflow: hidden;
    color: var(--night);
    text-overflow: ellipsis;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 165%;
    letter-spacing: -0.16px;
    margin-bottom: 12px;
}

/* =========================================================
    DIFFERENTIATORS
   ========================================================= */
.diff {
    margin: 0 auto;
    position: relative;
    background-color: var(--mist);
}

.diff__inner {
    display: flex;
    width: 1534px;
    margin: 0 auto;
    padding-block: 150px 166px;
    align-items: center;
    gap: 70px;
}

/* --- CONTEÚDO ESQUERDA --- */
.diff__content {
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-width: 435px;
    flex-shrink: 0;
}

.diff__label {
    color: var(--sea);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 121.017%;
    letter-spacing: -0.18px;
    text-align: start;
}

.diff__title {
    color: var(--night);
    font-family: Sora;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 129%;
    letter-spacing: -0.32px;
    max-width: 394px;
}

.diff__highlight {
    color: var(--night);
    font-family: Sora;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.2px;
}

.diff__description {
    color: var(--night);
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 165%;
    letter-spacing: -0.16px;
}

/* --- CARDS --- */
.diff__list {
    list-style: none;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex: 1;
}

.diff__card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--snow);
    border-radius: 30px;
    padding: 20px;
    flex: 1;
}

.diff__card:nth-child(1) {
    transform: translateY(-3px);
}

.diff__card:nth-child(2) {
    transform: translateY(37px);
}

.diff__card:nth-child(3) {
    transform: translateY(17px);
}

.diff__figure {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.diff__figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.diff__card-content {
    min-height: 200px;
}

.diff__card-title {
    color: var(--night);
    font-family: Sora;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 129%;
    letter-spacing: -0.23px;
}

.diff__card-text {
    color: #675C57;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 165%;
    letter-spacing: -0.16px;
}

/* =========================================================
    FAQ
   ========================================================= */
.faq {
    margin: 90px auto 80px;
    position: relative;
    scroll-margin: 90px;
}

.faq__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1060px;
    margin: 0 auto;
}

/* --- HEADER --- */
.faq__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.faq__label {
    color: var(--sea);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 121.017%;
    letter-spacing: -0.18px;
}

.faq__title {
    color: var(--night);
    text-align: center;
    font-family: Sora;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 129%;
    letter-spacing: -0.32px;
    text-align: center;
}

/* --- LISTA --- */
.faq__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 760px;
}

/* --- ACCORDION --- */
.faq__details {
    background-color: var(--mist);
    border-radius: 15px;
    padding: 16px 20px 16px 25px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.faq__details:hover {
    border-color: #BDCDD1;
}

.faq__details[open] {
    background-color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.14);
}

.faq__details::details-content {
    display: block;
    block-size: 0;
    overflow: hidden;
    transition: all 0.4s allow-discrete;
}

.faq__details[open]::details-content {
    block-size: auto;
    block-size: calc-size(auto, size);
}

.faq__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    cursor: pointer;
    color: var(--earth);
    font-size: 15px;
    font-weight: 500;
    line-height: 140%;
    position: relative;
    padding-right: 32px;
}

/* remove o triângulo nativo */
.faq__summary::-webkit-details-marker {
    display: none;
}

.faq__summary::after {
    content: "";
    position: absolute;
    right: 0;
    width: 14px;
    height: 8px;
    background-image: url("assets/icons/arrowDown.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.25s ease;
}

.faq__details[open] .faq__summary::after {
    transform: rotate(180deg);
}

.faq__answer {
    color: var(--stone);
    font-size: 14px;
    font-weight: 400;
    line-height: 170%;
    margin-top: 16px;
}

/* --- FOOTER --- */
.faq__footer {
    color: var(--stone);
    text-align: center;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 165%;
    letter-spacing: -0.16px;
    text-align: center;
    max-width: 486px;
    text-wrap: balance;
}

/* =========================================================
    FOOTER
   ========================================================= */
.main-footer {
    width: 100%;
    padding-bottom: 32px;
}

.main-footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 125px;
    background-color: var(--night);
    z-index: -2;
}

.footer-container {
    background-color: var(--white);
    border-radius: 30px;
    max-width: 97.5%;
    margin: 0 auto;
    padding: 50px 30px 40px 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.footer-container::after {
    content: "";
    position: absolute;
    background-image: url('assets/images/footer-pseudo.svg');
    background-repeat: no-repeat;
    background-size: 93%;
    background-position: right bottom;
    width: 350px;
    height: 553px;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.footer-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
    width: 100%;
}

.footer-logo {
    margin-left: 40px;
    height: auto;
    width: 192px;
    display: block;
}

.footer-header::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #C9D2D4;
    z-index: -1;
}

/* --- Layout do Conteúdo (Grid) --- */
.footer-content {
    display: grid;
    grid-template-columns: 345px 20.9% 9.4% 12.6% 237px;
    gap: 30px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    color: #8EA0A4;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 129%;
    letter-spacing: -0.12px;
    margin-bottom: 10px;
    margin-top: 14px;
}

.footer-menu-wrapper ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-wrapper ul.menu li.menu-item {
    margin-bottom: 9px;
}

.footer-menu-wrapper ul.menu li.menu-item a {
    color: #888787;
    font-family: Sora;
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: 155%;
    letter-spacing: -0.11px;
    text-decoration: none;
    transition: color 0.2s ease;
    width: fit-content;
}

.footer-menu-wrapper ul.menu li.menu-item a:hover {
    color: var(--copper);
}

/* Duas colunas do menu de Serviços */
.services-menu .menu-servicos-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.schedule-box {
    background-color: var(--mist);
    padding: 20px 18px;
    border-radius: 15px;
    margin-inline: 22px 40px;
}

.schedule-box .address span {
    display: block;
}

.schedule-box h3 {
    color: #98AAAF;
    font-family: Sora;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 129%;
    letter-spacing: -0.13px;
    margin-bottom: 5px;
    margin-top: 0;
}

.schedule-box .address {
    color: var(--night);
    font-family: Sora;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 155%;
    letter-spacing: -0.13px;
    margin-bottom: 19px;
}

.schedule-hours {
    display: flex;
    gap: 23px;
}

.schedule-hours strong {
    display: block;
    color: #98AAAF;
    font-family: Sora;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 129%;
    letter-spacing: -0.13px;
    margin-bottom: 5px;
}

.schedule-hours span {
    display: block;
    color: #1D1714;
    font-family: Sora;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 155%;
    letter-spacing: -0.13px;
}

.closed-info {
    color: #B6BDC0;
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 129%;
    letter-spacing: -0.12px;
    margin-top: 19px;
}

/* --- Contactos e Fale Connosco (Coluna 5) --- */
.footer-column.contacts-column h3 {
    color: var(--night);
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 129%;
    letter-spacing: -0.16px;
    margin-bottom: 11px;
}

.email-link {
    color: var(--night);
    font-family: Sora;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 155%;
    letter-spacing: -0.13px;
}

.phone-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 11px;
    width: fit-content;
}

.phone-btn {
    display: flex;
    align-items: center;
    padding: 11px 18px;
    border-radius: 45px;
    text-decoration: none;
    gap: 10px;
}

.phone-btn.mobile {
    background-color: var(--mist);
}

.phone-btn.landline {
    background-color: transparent;
    border: 1px solid #C9D2D4;
}

.phone-btn::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.phone-btn.mobile::before {
    background-image: url("assets/icons/whatsapp.svg");
}

.phone-btn.landline::before {
    background-image: url("assets/icons/mobile.svg");
}

.phone-text strong {
    display: block;
    color: var(--night);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.phone-text strong:hover {
    color: var(--copper);
}

.phone-text small {
    display: block;
    color: #798182;
    font-family: Sora;
    font-size: 8px;
    font-style: normal;
    font-weight: 300;
    line-height: 155%;
    letter-spacing: -0.08px;
    margin-top: 1px;
}

.footer-bottom-logos {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

.logo-apm {
    width: 196px;
    height: auto;
    object-fit: contain;
    margin-left: 20px;
}

.blisq-link {
    display: inline-block;
    width: 36px;
    height: auto;
    transition: opacity 0.2s;
}

.blisq-link:hover {
    opacity: 0.7;
}

/* =========================================================
    SINGLE PAGE
   ========================================================= */
.single-service {
    position: relative;
    padding: 170px 0 0;
}

.single-service::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: var(--dust);
    margin-top: 60px;
    position: relative;
    left: 10%;
}

.single-service::before {
    content: "";
    position: absolute;
    top: 34%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 550px;
    background-image: url("assets/images/single-pseudo.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.single-service__inner {
    position: relative;
    z-index: 1;
    max-width: 710px;
    margin: 0 auto;
}

.single-service__title {
    color: var(--coal);
    font-family: Sora;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 129%;
    letter-spacing: -0.36px;
    margin-bottom: 5px;
}

.single-service__lead {
    color: var(--stone);
    font-family: Sora;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
    letter-spacing: -0.19px;
    margin-bottom: 18px;
}

.single-service__body figure {
    width: 100%;
    max-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.single-service__body figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.single-service__body p {
    color: var(--stone);
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 165%;
    letter-spacing: -0.16px;
    max-width: 680px;
    margin-bottom: 14px;
}

.single-service__body p:last-of-type {
    margin-bottom: 0;
}

.services.single-other_services {
    padding: 70px 0;
}

/* =========================================================
    COMMON PAGES
   ========================================================= */
.common-page {
    padding: 190px 0 80px;
}

.common-container {
    max-width: 891px;
    margin: 0 auto;
}

.common-title {
    color: #101820;
    font-family: Sora;
    font-size: 31px;
    font-style: normal;
    font-weight: 700;
    line-height: 103.226%;
}

.common-content {
    margin: 15px auto 0;
}

.common-content p {
    color: var(--stone);
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 165%;
    letter-spacing: -0.16px;
    margin-bottom: 15px;
}

.common-content h2 {
    color: #101820;
    font-family: Sora;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    text-align: start;
    margin-bottom: 15px;
}

.common-content h2 span {
    color: var(--copper);
}

.common-content ul,
.common-content ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-left: 10px;
}

.common-content li {
    color: var(--stone);
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 165%;
    letter-spacing: -0.16px;
    position: relative;
    padding-left: 14px;
}

.common-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background-color: var(--stone);
    flex-shrink: 0;
}

.common-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.common-content thead th {
    color: #D87D00;
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
    text-align: left;
    padding: 12px 20px;
    border-bottom: 1px solid #EAEAEA;
    border-right: 1px solid #EAEAEA;
}

.common-content thead th:last-child {
    border-right: none;
}

.common-content tbody td {
    color: var(--stone);
    font-family: Sora;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    padding: 15px 20px;
    vertical-align: top;
    border-bottom: 1px solid #EAEAEA;
    border-right: 1px solid #EAEAEA;
}

.common-content tbody td:last-child {
    border-right: none;
}

.common-content tbody tr:last-child td {
    border-bottom: none;
}

.last-update {
    margin-top: 40px;
}

.last-update p {
    color: #101820;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 190%;
    margin-bottom: 0;
}

.last-update p strong {
    font-weight: 700;
}

/* =========================================================
    RESPONSIVO
   ========================================================= */
@media screen and (max-height: 800px) {}

@media screen and (max-width: 1880px) {
    .team-accomp__bg {
        font-size: 175px;
    }
}

@media screen and (max-width: 1800px) {
    .services__container {
        width: 1375px;
        margin: 0 auto;
        padding: 0 25px;
    }

    .team-accomp__bg {
        font-size: 160px;
    }
}

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

    /* --- DIFF --- */
    .diff__inner {
        width: 100%;
        max-width: 1450px;
        padding: 150px 32px 166px;
    }
}


@media screen and (max-width: 1600px) {
    .top-bar {
        padding: 11px 40px 14px 0;
    }

    .top-bar__schedule {
        gap: 8px;
        font-size: 11px;
    }

    .top-bar__label {
        font-size: 11px;
    }

    .site-nav {
        width: 94%;
    }

    .site-nav__inner {
        gap: 30px;
    }

    .site-nav__menu {
        gap: 24px;
    }

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

    .menu-item--cta .site-nav__cta {
        font-size: 16px;
        padding: 16px 28px;
    }

    /* --- HERO --- */
    .hero__content {
        padding: 225px 0 130px 100px;
    }

    .hero__title {
        font-size: 46px;
        max-width: 580px;
    }

    .hero__description {
        font-size: 17px;
        max-width: 450px;
    }

    .hero__btn {
        font-size: 17px;
    }

    .hero__btn--primary {
        padding: 18px 28px 17px;
    }

    .hero__btn--whatsapp {
        padding: 17.5px 22px 16.5px;
    }

    .hero::after {
        bottom: -57%;
        right: -3.4%;
    }

    .services__container {
        width: 90%;
        max-width: 1590px;
        padding: 0 32px;
    }

    .services__grid {
        gap: 18px;
    }

    .service-card__title {
        font-size: 20px;
    }

    .service-card__description {
        font-size: 14px;
    }

    .service-card__content {
        padding: 22px 22px 28px;
        min-height: 140px;
    }

    .service-card__label {
        font-size: 13px;
        padding: 11px 14px;
        top: 22px;
        right: 22px;
    }

    /* --- ABOUT --- */
    .about__inner {
        gap: 100px;
        padding-block: 120px 100px;
        justify-content: center;
    }

    .about__figure {
        width: 520px;
    }

    .about__title {
        font-size: 29px;
    }

    .about__highlight {
        font-size: 20px;
    }

    .about__description {
        font-size: 18px;
    }

    .about__btn {
        font-size: 17px;
        padding: 18px 23px 17px;
    }

    /* --- TEAM --- */
    .team-accomp__figure {
        width: 360px;
    }

    .team-accomp__quote {
        font-size: 20px;
        max-width: 500px;
    }

    .team-member {
        gap: 140px;
        max-width: 1145px;
    }

    .team-member__figure {
        width: 500px;
    }

    .team-member__title {
        font-size: 30px;
    }

    .team-member__scroll p {
        font-size: 15px;
    }

    /* --- DIFF --- */
    .diff__content {
        max-width: 380px;
    }

    .diff__title {
        font-size: 30px;
    }

    .diff__highlight {
        font-size: 18px;
    }

    .diff__description {
        font-size: 15px;
    }

    .diff__card {
        padding: 18px;
        gap: 16px;
    }

    .diff__card-title {
        font-size: 21px;
    }

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

    .diff__card-content {
        min-height: 180px;
    }

    /* --- FAQ --- */
    .faq {
        margin: 80px auto 70px;
        scroll-margin: 80px;
    }

    .faq__inner {
        max-width: 960px;
        gap: 28px;
    }

    .faq__list {
        max-width: 700px;
    }

    .faq__summary {
        font-size: 14px;
    }

    .faq__answer {
        font-size: 13px;
    }

    .faq__footer {
        font-size: 15px;
    }

    /* --- FOOTER --- */
    .footer-container {
        max-width: 95%;
        padding: 40px 24px 32px;
    }

    .footer-content {
        grid-template-columns: 345px 21% 9% 13% 237px;
        gap: 22px;
    }

    .footer-logo {
        width: 160px;
        margin-left: 24px;
    }

    .schedule-hours {
        gap: 18px;
    }

    .logo-apm {
        width: 160px;
        margin-left: 16px;
    }

    .footer-container::after {
        width: 280px;
        height: 440px;
    }

    /* --- SINGLE SERVICE --- */
    .single-service {
        padding: 150px 0 0;
    }

    .single-service__inner {
        max-width: 680px;
    }

    .single-service__title {
        font-size: 34px;
    }

    .single-service__lead {
        font-size: 18px;
    }

    .single-service__body p {
        font-size: 15px;
    }

    /* --- COMMON PAGE --- */
    .common-page {
        padding: 170px 0 70px;
    }

    .common-title {
        font-size: 29px;
    }

    .common-content h2 {
        font-size: 21px;
    }

    .last-update {
        margin-top: 36px;
    }
}

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

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

    .team-accomp__bg {
        font-size: 140px;
    }
}

@media screen and (max-width: 1400px) {
    .top-bar {
        padding: 10px 32px 12px 0;
    }

    .top-bar__schedule {
        gap: 7px;
        font-size: 11px;
    }

    .top-bar__label {
        font-size: 11px;
    }

    .site-nav {
        padding: 8px 8px 8px 28px;
        border-radius: 60px;
    }

    .site-nav__logo img {
        width: 140px;
    }

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

    .menu-item--cta .site-nav__cta {
        font-size: 15px;
        padding: 14px 24px;
    }

    /* --- HERO --- */
    .hero {
        min-height: 75vh;
        background-position: 60% top;
    }

    .hero__content {
        padding: 200px 0 110px 80px;
    }

    .hero__title {
        font-size: 40px;
        max-width: 520px;
    }

    .hero__description {
        font-size: 16px;
        max-width: 420px;
    }

    .hero__btn {
        font-size: 16px;
    }

    .hero__btn--primary {
        padding: 16px 24px 15px;
    }

    .hero__btn--whatsapp {
        padding: 15.5px 20px 14.5px;
    }

    .services {
        padding: 70px 0;
    }

    .services__container {
        padding: 0 28px;
        width: 95%;
    }

    .services__grid {
        gap: 16px;
    }

    .services__header {
        margin-bottom: 24px;
    }

    .services__desc {
        font-size: 15px;
    }

    .service-card__title {
        font-size: 19px;
    }

    .service-card__description {
        font-size: 13px;
    }

    .service-card__content {
        padding: 20px 20px 26px;
        min-height: 130px;
    }

    .service-card__label {
        font-size: 12px;
        padding: 10px 13px;
        top: 20px;
        right: 20px;
    }

    /* --- ABOUT --- */
    .about__inner {
        gap: 80px;
        padding-block: 100px 80px;
        max-width: 85%;
        padding-inline: 32px;
    }

    .about__figure {
        width: 460px;
    }

    .about__title {
        font-size: 27px;
    }

    .about__highlight {
        font-size: 18px;
    }

    .about__description {
        font-size: 17px;
    }

    .about__btn {
        font-size: 16px;
        padding: 16px 22px 15px;
    }

    /* --- TEAM --- */
    .team-accomp {
        padding: 70px 0;
    }

    .team-accomp__bg {
        font-size: 130px;
    }

    .team-accomp__figure {
        width: 320px;
    }

    .team-accomp__quote {
        font-size: 19px;
        max-width: 460px;
    }

    .team-member {
        gap: 100px;
        max-width: 80%;
    }

    .team-member__figure {
        width: 400px;
    }

    .team-member__scroll {
        max-height: 300px;
        padding-right: 40px;
    }

    .team-member__title {
        font-size: 28px;
    }

    .team-member__label {
        font-size: 17px;
    }

    /* --- DIFF --- */
    .diff__inner {
        padding: 120px 32px 140px;
        gap: 50px;
    }

    .diff__content {
        max-width: 340px;
    }

    .diff__title {
        font-size: 28px;
        max-width: 100%;
    }

    .diff__highlight {
        font-size: 17px;
    }

    .diff__description {
        font-size: 14px;
    }

    .diff__list {
        gap: 16px;
    }

    .diff__card {
        padding: 16px;
        gap: 14px;
    }

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

    .diff__card-text {
        font-size: 14px;
    }

    .diff__card-content {
        min-height: 160px;
    }

    /* --- FAQ --- */
    .faq {
        margin: 70px auto 60px;
        scroll-margin: 70px;
    }

    .faq__inner {
        max-width: 860px;
        gap: 24px;
        padding: 0 32px;
    }

    .faq__list {
        max-width: 100%;
    }

    .faq__title {
        font-size: 30px;
    }

    .faq__details {
        padding: 14px 18px 14px 22px;
    }

    /* --- FOOTER --- */
    .footer-container {
        max-width: 96%;
        padding: 35px 20px 28px;
    }

    .footer-content {
        grid-template-columns: 345px 22% 10% 12% 237px;
        gap: 18px;
    }

    .footer-logo {
        width: 150px;
        margin-left: 20px;
    }

    .schedule-box {
        margin-inline: 10px 18px;
        padding: 16px 14px;
    }

    .footer-header {
        margin-bottom: 18px;
        gap: 10px;
    }

    .phone-btn {
        padding: 10px 14px;
    }

    .footer-bottom-logos {
        padding-top: 24px;
    }

    .logo-apm {
        width: 150px;
    }

    .footer-container::after {
        width: 250px;
        height: 390px;
    }

    /* --- SINGLE SERVICE --- */
    .single-service {
        padding: 130px 0 0;
    }

    .single-service__inner {
        max-width: 640px;
        padding: 0 32px;
    }

    .single-service__title {
        font-size: 32px;
    }

    .single-service__lead {
        font-size: 17px;
    }

    /* --- COMMON PAGE --- */
    .common-page {
        padding: 150px 0 60px;
    }

    .common-container {
        padding: 0 32px;
    }

    .common-title {
        font-size: 27px;
    }

    .common-content p,
    .common-content li {
        font-size: 15px;
    }

    .common-content h2 {
        font-size: 20px;
    }

    .last-update {
        margin-top: 32px;
    }
}

@media screen and (max-width: 1300px) {
    .team-accomp__bg {
        font-size: 115px;
    }

    .footer-container {
        max-width: 94%;
        padding: 30px 18px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    .footer-logo {
        width: 140px;
        margin-left: 16px;
    }

    .schedule-box {
        grid-column: 1;
        grid-row: 1;
        margin-inline: 0;
        width: fit-content;
    }

    .contacts-column {
        grid-column: 3;
        grid-row: 1;
    }

    .services-menu {
        grid-column: 1;
        grid-row: 2;
    }

    .services-menu .menu-servicos-container {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .footer-menu-wrapper:nth-of-type(2) {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
    }

    .footer-menu-wrapper:nth-of-type(3) {
        grid-column: 3;
        grid-row: 2;
    }

    .footer-bottom-logos {
        padding-top: 20px;
    }

    .logo-apm {
        width: 140px;
        margin-left: 0;
    }

    .footer-container::after {
        width: 200px;
        height: 320px;
        opacity: 0.6;
    }
}

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

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

@media screen and (max-width: 1200px) {
    .top-bar {
        padding: 10px 24px 10px 0;
    }

    .top-bar__schedule {
        gap: 6px;
        font-size: 10px;
    }

    .top-bar__label {
        font-size: 10px;
    }

    .site-nav {
        padding: 6px 6px 6px 20px;
        border-radius: 50px;
    }

    .site-nav__inner {
        gap: 16px;
    }

    .site-nav__logo img {
        width: 120px;
    }

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

    .menu-item--cta .site-nav__cta {
        font-size: 13px;
        padding: 12px 20px;
    }

    .sub-menu {
        left: 0;
        transform: translateX(-20%) translateY(-4px);
    }

    .menu-item-has-children:hover .sub-menu,
    .menu-item-has-children:focus-within .sub-menu {
        transform: translateX(-20%) translateY(0);
    }

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

    .hero__content {
        padding: 200px 0 100px 60px;
    }

    .hero__title {
        font-size: 36px;
        max-width: 460px;
    }

    .hero__description {
        font-size: 15px;
        max-width: 380px;
    }

    .hero__btn {
        font-size: 15px;
    }

    .hero__btn--primary {
        padding: 15px 22px 14px;
    }

    .hero__btn--whatsapp {
        padding: 14.5px 18px 13.5px;
    }

    .hero::after {
        bottom: -52%;
        right: -3.4%;
    }

    .services {
        padding: 60px 0;
    }

    .services__container {
        padding: 0 24px;
    }

    .services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .services__header {
        max-width: 600px;
    }

    .services__title {
        font-size: 28px;
    }

    .services__desc {
        font-size: 14px;
    }

    .service-card__title {
        font-size: 18px;
    }

    .service-card__content {
        padding: 18px 18px 24px;
        min-height: 120px;
    }

    .service-card__label {
        font-size: 12px;
        padding: 9px 12px;
        top: 18px;
        right: 18px;
    }

    .services__btn {
        font-size: 15px;
        padding: 14px 22px;
    }

    /* --- ABOUT --- */
    .about__inner {
        gap: 60px;
        padding-block: 80px 60px;
        max-width: 90%;
    }

    .about__figure {
        width: 400px;
    }

    .about__content {
        gap: 8px;
    }

    .about__title {
        font-size: 25px;
    }

    .about__highlight {
        font-size: 17px;
        max-width: 100%;
    }

    .about__description {
        font-size: 16px;
        max-width: 100%;
    }

    .about__btn {
        font-size: 15px;
        padding: 15px 20px 14px;
    }

    /* --- TEAM --- */
    .team-accomp {
        padding: 60px 0;
    }

    .team-accomp__bg {
        font-size: 100px;
    }

    .team-accomp__figure {
        width: 280px;
    }

    .team-accomp__quote {
        font-size: 18px;
        max-width: 420px;
    }

    .animal-age {
        font-size: 20px;
    }

    .team-member {
        gap: 60px;
    }

    .team-member__title {
        font-size: 26px;
    }

    .team-member__scroll p {
        font-size: 14px;
    }

    /* --- DIFF --- */
    .diff__inner {
        flex-direction: column;
        padding: 100px 24px 80px;
        gap: 20px;
        width: 85%;
    }

    .diff__content {
        max-width: 100%;
        flex-shrink: 1;
    }

    .diff__title {
        font-size: 26px;
        max-width: 500px;
    }

    .diff__highlight {
        font-size: 16px;
    }

    .diff__description {
        font-size: 13px;
    }

    .diff__list {
        gap: 14px;
        align-items: flex-start;
    }

    .diff__card {
        padding: 14px;
        gap: 12px;
        border-radius: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

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

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

    .diff__card:nth-child(1),
    .diff__card:nth-child(2),
    .diff__card:nth-child(3) {
        transform: none;
    }

    /* --- FAQ --- */
    .faq {
        margin: 60px auto 50px;
        scroll-margin: 60px;
    }

    .faq__inner {
        max-width: 90%;
        gap: 20px;
    }

    .faq__title {
        font-size: 28px;
    }

    .faq__summary {
        font-size: 13px;
    }

    .faq__answer {
        font-size: 12px;
        margin-top: 12px;
    }

    .faq__footer {
        font-size: 14px;
    }

    /* --- SINGLE SERVICE --- */
    .single-service {
        padding: 120px 0 0;
    }

    .single-service__title {
        font-size: 30px;
    }

    .single-service__body p {
        font-size: 14px;
    }

    /* --- COMMON PAGE --- */
    .common-page {
        padding: 140px 0 50px;
    }

    .common-title {
        font-size: 25px;
    }

    .common-content h2 {
        font-size: 19px;
    }

    .last-update {
        margin-top: 28px;
    }
}

@media screen and (max-width: 1100px) {
    .team-member {
        max-width: 90%;
    }

    .diff__inner {
        padding: 100px 0 80px;
        width: 90%;
    }
}

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

    /* --- TOP BAR --- */
    .top-bar {
        padding: 8px 16px;
        overflow: hidden;
        justify-content: flex-end;
    }

    .top-bar__schedule {
        gap: 6px;
        font-size: 10px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .top-bar__label {
        font-size: 10px;
    }

    /* --- NAV RESET --- */
    .site-header .site-nav {
        padding: 10px 20px;
        width: 92%;
    }

    /* --- HAMBURGUER --- */
    .site-header .site-nav__hamburger {
        display: flex;
    }

    /* Esconde menu fechado */
    .site-header .site-nav__menu {
        visibility: hidden;
        pointer-events: none;
    }

    /* --- OVERLAY --- */
    .site-header .site-nav::after {
        content: "";
        position: fixed;
        inset: 0;
        width: 108vw;
        background: rgba(0, 0, 0, 0.5);
        z-index: 997;
        opacity: 0;
        transition: opacity 0.4s ease;
        height: 102vh;
        transform: translate(-43px, -53px);
        pointer-events: none;
    }

    .site-header .site-nav.menu-open::after {
        opacity: 1;
        pointer-events: auto;
    }

    /* --- PAINEL --- */
    .site-header .menu-open .site-nav__menu {
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .site-header .site-nav__menu {
        display: flex;
        position: fixed;
        top: -53px;
        right: -5%;
        width: 380px;
        height: 100dvh;
        flex-direction: column;
        gap: 0;
        margin: 0;
        background-color: #fff;
        padding: 135px 8% 40px;
        overflow-y: auto;
        transition: transform 0.4s ease, visibility 0.4s ease;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
        z-index: 998;
        border-radius: 0;
        transform: translateX(100%);
    }

    /* --- ITEMS --- */
    .site-header .menu-item {
        border-bottom: 1px solid var(--mist);
        display: block;
        width: 100%;
    }

    .site-header .menu-item>a {
        padding: 14px 0;
        font-size: 16px;
        width: 100%;
        justify-content: space-between;
        white-space: normal;
    }

    /* --- CTA --- */
    .site-header .menu-item--cta {
        border-bottom: none;
        margin-left: 0;
        margin-top: 20px;
        border: 1px solid var(--mist);
        border-radius: 999px;
    }

    .site-header .menu-item--cta .site-nav__cta {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }

    /* --- SUBMENU --- */
    .site-header .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: none;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        padding: 0 0 0 16px;
        max-height: 0;
        overflow: hidden;
    }

    .site-header .sub-menu .menu-item:last-child {
        border-bottom: none;
    }

    .site-header .menu-item-has-children>a[aria-expanded="true"]+.sub-menu {
        max-height: 100%;
    }

    .site-header .sub-menu .menu-item>a {
        font-size: 14px;
        padding: 8px 0;
    }

    .site-header .menu-item-has-children>a[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .site-header .menu-item-has-children:hover .sub-menu,
    .site-header .menu-item-has-children:focus-within .sub-menu {
        transform: none;
    }

    /* --- HERO --- */
    .hero {
        background-image: url('assets/images/hero-bg-tablet.webp');
        min-height: 94vh;
        background-position: 60% center;
    }

    .hero::after {
        bottom: -32%;
        right: -3.4%;
    }

    .hero__content {
        padding: 115px 0 100px 60px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__description {
        font-size: 14px;
        max-width: 380px;
    }

    .hero__btn {
        font-size: 14px;
    }

    .hero__btn--primary {
        padding: 14px 22px 13px;
    }

    .hero__btn--whatsapp {
        padding: 13.5px 18px 12.5px;
    }

    .hero__btn--whatsapp::after {
        width: 17px;
        height: 17px;
    }

    .services__container {
        padding: 0 20px;
        width: 100%;
    }

    .services__grid {
        gap: 14px;
    }

    .services__title {
        font-size: 26px;
    }

    .service-card__title {
        font-size: 17px;
    }

    .service-card__description {
        font-size: 12px;
    }

    .service-card__image img {
        aspect-ratio: 1;
    }

    .service-card__content {
        padding: 16px 16px 22px;
        min-height: 110px;
    }

    .service-card__label {
        font-size: 11px;
        padding: 8px 11px;
        top: 16px;
        right: 16px;
    }

    .services__btn {
        font-size: 14px;
        padding: 13px 20px;
    }

    .service-card__image::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 42.88%, rgba(0, 0, 0, 0.77) 91.79%);
    }

    /* --- ABOUT --- */
    .about__inner {
        gap: 40px;
        padding-block: 60px 50px;
        padding-inline: 24px;
    }

    .about__figure {
        width: 340px;
    }

    .about__title {
        font-size: 24px;
    }

    .about__highlight {
        font-size: 16px;
    }

    .about__description {
        font-size: 15px;
    }

    .about__btn {
        font-size: 14px;
        padding: 14px 18px 13px;
    }

    .about__btn::after {
        width: 19px;
        height: 19px;
    }

    /* --- TEAM --- */
    .team-accomp {
        padding: 50px 0;
    }

    .team-accomp__bg {
        font-size: 80px;
    }

    .team-accomp__figure {
        width: 240px;
    }

    .team-accomp__quote {
        font-size: 17px;
        max-width: 380px;
    }

    .animal-age {
        font-size: 18px;
    }

    .team-member {
        gap: 40px;
        margin-bottom: 70px;
    }

    .team-member__figure {
        width: 320px;
    }

    .team-member__title {
        font-size: 24px;
    }

    .team-member__scroll {
        max-height: 280px;
        padding-right: 32px;
    }

    /* --- DIFF --- */
    .diff__inner {
        padding: 90px 0;
        gap: 18px;
        max-width: 90%;
        margin: 0 auto;
    }

    .diff__content {
        max-width: 100%;
        flex-shrink: 1;
    }

    .diff__title {
        font-size: 24px;
        max-width: 500px;
    }

    .diff__highlight {
        font-size: 15px;
    }

    .diff__description {
        font-size: 13px;
    }

    .diff__list {
        gap: 12px;
    }

    .diff__card {
        padding: 12px;
        gap: 10px;
        border-radius: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .diff__card-title {
        font-size: 17px;
    }

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

    .diff__card:nth-child(1),
    .diff__card:nth-child(2),
    .diff__card:nth-child(3) {
        transform: none;
    }

    /* --- FAQ --- */
    .faq {
        margin: 50px auto 40px;
        scroll-margin: 50px;
    }

    .faq__inner {
        max-width: 90%;
        gap: 18px;
    }

    .faq__title {
        font-size: 26px;
    }

    .faq__details {
        padding: 12px 16px 12px 20px;
        border-radius: 12px;
    }

    .faq__summary {
        padding-right: 28px;
    }

    .faq__summary::after {
        width: 12px;
        height: 7px;
    }

    .faq__footer {
        font-size: 13px;
        max-width: 100%;
        padding: 0 16px;
    }

    /* --- SINGLE SERVICE --- */
    .single-service {
        padding: 110px 0 0;
    }

    .single-service__title {
        font-size: 28px;
    }

    .single-service__lead {
        font-size: 16px;
    }

    /* --- COMMON PAGE --- */
    .common-page {
        padding: 130px 0 45px;
    }

    .common-container {
        padding: 0 24px;
    }

    .common-title {
        font-size: 24px;
    }

    .common-content p,
    .common-content li {
        font-size: 14px;
    }

    .common-content h2 {
        font-size: 18px;
    }

    .common-content table {
        display: block;
        overflow-x: auto;
        width: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .common-content table::-webkit-scrollbar {
        display: none;
    }

    .last-update {
        margin-top: 24px;
    }
}

@media screen and (max-width: 950px) {
    .site-header .menu-item>a {
        font-size: 15px;
        padding: 12px 0;
    }

    .site-header .menu-item--cta .site-nav__cta {
        font-size: 15px;
        padding: 14px 22px;
    }

    .site-header .sub-menu .menu-item>a {
        font-size: 13px;
        padding: 7px 0;
    }

    .diff__inner {
        max-width: 95%;
        padding: 70px 0;
    }

    .diff__title {
        font-size: 22px;
    }

    .diff__highlight {
        font-size: 14px;
    }

    .diff__list {
        gap: 10px;
    }

    .diff__card {
        padding: 12px;
        gap: 8px;
        border-radius: 16px;
    }

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

@media screen and (max-width: 900px) {
    .site-header .site-nav {
        width: 90%;
    }

    .site-header .site-nav::after {
        transform: translate(-47px, -53px);
    }

    .site-header .menu-open .site-nav__menu {
        padding: 135px 10% 40px;
        right: -6%;
    }

    .hero::after {
        bottom: -26%;
        right: -3.4%;
    }

    .about__inner {
        padding-block: 80px 60px;
        max-width: 100%;
    }
}

@media screen and (max-width:850px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .contacts-column {
        grid-column: 2;
        grid-row: 1;
    }

    .services-menu {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .services-menu .menu-servicos-container {
        gap: 12px;
    }

    .footer-menu-wrapper:nth-of-type(2) {
        grid-column: 1;
        grid-row: 3;
        justify-self: unset;
    }

    .footer-menu-wrapper:nth-of-type(3) {
        grid-column: 2;
        grid-row: 3;
    }
}

@media screen and (max-width: 820px) {
    .post-type-archive-servico .services {
        margin-top: 50px;
    }

    .site-header .menu-item>a {
        font-size: 14px;
        padding: 11px 0;
    }

    .site-header .menu-item--cta .site-nav__cta {
        font-size: 14px;
        padding: 13px 20px;
    }

    .team-member {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 60px;
    }

    .team-member__figure {
        width: 320px;
        order: 1;
    }

    .diff__inner {
        padding: 60px 0;
    }
}

@media screen and (max-width: 770px) {
    .top-bar {
        padding: 8px 16px;
        overflow: hidden;
        justify-content: flex-end;
    }

    .top-bar__schedule {
        gap: 6px;
        font-size: 10px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .top-bar__label {
        font-size: 10px;
    }

    /* --- HERO --- */
    .hero__content {
        padding: 115px 0 100px 50px;
    }

    .hero__title {
        font-size: 28px;
        max-width: 400px;
    }

    .hero__description {
        font-size: 13px;
        max-width: 340px;
    }

    .hero__btn {
        font-size: 13px;
    }

    .hero__btn--primary {
        padding: 13px 20px 12px;
    }

    .hero__btn--whatsapp {
        padding: 12.5px 16px 11.5px;
    }

    .hero::after {
        bottom: -26%;
        right: -5.4%;
        width: 70%;
    }

    .services {
        padding: 50px 0;
    }

    .services__container {
        padding: 0 20px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 600px;
        margin: 0 auto;
    }

    .services__header {
        margin-bottom: 20px;
    }

    .services__title {
        font-size: 24px;
    }

    .services__desc {
        font-size: 13px;
    }

    .service-card__title {
        font-size: 16px;
    }

    .service-card__content {
        padding: 14px 14px 20px;
        min-height: 100px;
    }

    .service-card__label {
        font-size: 11px;
        padding: 7px 10px;
        top: 14px;
        right: 14px;
    }

    .services__footer {
        margin-top: 32px;
    }

    .services__btn {
        font-size: 14px;
        padding: 12px 18px;
    }

    /* --- ABOUT --- */
    .about__inner {
        flex-direction: column-reverse;
        gap: 32px;
        padding-block: 50px 40px;
        padding-inline: 20px;
    }

    .about__figure {
        width: 100%;
    }

    .about__content {
        max-width: 100%;
    }

    .about__title {
        font-size: 22px;
    }

    .about__highlight {
        font-size: 15px;
    }

    .about__description {
        font-size: 14px;
    }

    .about__label {
        font-size: 16px;
    }

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

    /* --- TEAM --- */
    .team-accomp {
        padding: 40px 0;
    }

    .team-accomp__bg {
        font-size: 60px;
    }

    .team-accomp__quote {
        font-size: 16px;
        max-width: 340px;
    }

    .team-member__content {
        flex: none;
        width: 100%;
    }

    .team-member__scroll {
        max-height: 260px;
    }

    .team-member__title {
        font-size: 22px;
    }

    /* --- FAQ --- */
    .faq {
        margin: 40px auto 30px;
        scroll-margin: 40px;
    }

    .faq__inner {
        max-width: 100%;
        gap: 16px;
        padding: 0 20px;
    }

    .faq__title {
        font-size: 24px;
    }

    .faq__label {
        font-size: 16px;
    }

    .faq__details {
        padding: 12px 14px 12px 18px;
    }

    .faq__summary {
        font-size: 12px;
    }

    .faq__footer {
        font-size: 12px;
    }

    /* --- SINGLE SERVICE --- */
    .single-service {
        padding: 100px 0 0;
    }

    .single-service__inner {
        max-width: 100%;
        padding: 0 20px;
    }

    .single-service__title {
        font-size: 26px;
    }

    .single-service__body p {
        font-size: 13px;
    }

    /* --- COMMON PAGE --- */
    .common-page {
        padding: 120px 0 40px;
    }

    .common-title {
        font-size: 22px;
    }

    .common-content p,
    .common-content li {
        font-size: 13px;
    }

    .common-content h2 {
        font-size: 17px;
    }

    .common-content thead th {
        font-size: 12px;
    }

    .last-update {
        margin-top: 20px;
    }
}

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

    /* --- TEAM --- */
    .team-accomp__list {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        width: 100%;
        padding: 0 20px;
        gap: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .team-accomp__list::-webkit-scrollbar {
        display: none;
    }

    .team-accomp__item {
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .team-accomp__figure {
        width: 260px;
    }

    .diff__list {
        overflow-x: auto;
        flex-wrap: nowrap;
        width: 110%;
        scrollbar-width: none;
        padding: 0 5%;
    }

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

    .diff__card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
}

@media screen and (max-width: 680px) {
    .site-header .menu-open .site-nav__menu {
        width: 100vw;
    }

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

@media screen and (max-width: 640px) {
    .hero__content {
        padding: 115px 0 100px 35px;
    }
}

@media screen and (max-width: 600px) {
    .top-bar {
        padding: 8px 0;
        justify-content: flex-start;
        overflow: hidden;
        width: 100%;
    }

    .top-bar__schedule {
        display: flex;
        gap: 20px;
        font-size: 10px;
        white-space: nowrap;
        animation: scrollTopBar 14s linear infinite;
        width: max-content;
        padding-left: 100%;
    }

    .top-bar__label {
        font-size: 10px;
        font-weight: 700;
    }

    .site-header .site-nav {
        width: 86%;
    }

    .site-header .menu-open .site-nav__menu {
        padding: 135px 14% 40px;
        right: -8%;
    }

    /* --- HERO --- */
    .hero {
        background-image: url('assets/images/hero-bg-mobile.webp');
        border-radius: 20px;
        background-position: left center;
        min-height: 88vh;
    }

    .hero__content {
        padding: 95px 24px 60px 24px;
    }

    .hero__title {
        font-size: 26px;
        max-width: 340px;
    }

    .hero__description {
        font-size: 13px;
        max-width: 300px;
        margin-bottom: 16px;
    }

    .hero__btn {
        font-size: 13px;
    }

    .hero__btn--primary {
        padding: 13px 20px 12px;
    }

    .hero__btn--whatsapp {
        padding: 12.5px 16px 11.5px;
    }

    .team-accomp__bg {
        font-size: 50px;
    }

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

    .schedule-box {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .contacts-column {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .services-menu {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .services-menu .menu-servicos-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-menu-wrapper:nth-of-type(2) {
        grid-column: 1;
        grid-row: 4;
    }

    .footer-menu-wrapper:nth-of-type(3) {
        grid-column: 2;
        grid-row: 4;
    }
}

@keyframes scrollTopBar {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

}

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

@media screen and (max-width: 500px) {
    .hero::after {
        bottom: -23%;
        right: -7.4%;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .top-bar {
        padding: 6px 0;
    }

    .top-bar__schedule {
        gap: 16px;
        font-size: 9px;
        animation-duration: 12s;
    }

    .top-bar__label {
        font-size: 9px;
    }

    .site-header .menu-item>a {
        font-size: 13px;
        padding: 10px 0;
    }

    .site-header .menu-item--cta .site-nav__cta {
        font-size: 13px;
        padding: 12px 18px;
    }

    .site-header .sub-menu .menu-item>a {
        font-size: 12px;
    }

    /* --- HERO --- */
    .hero__title {
        font-size: 22px;
    }

    .hero__description {
        font-size: 12px;
    }

    .hero__btn {
        font-size: 12px;
    }

    .services {
        padding: 40px 0;
    }

    .services__container {
        padding: 0 16px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .services__header {
        margin-bottom: 18px;
    }

    .services__title {
        font-size: 22px;
    }

    .services__desc {
        font-size: 12px;
    }

    .service-card__content {
        padding: 16px 16px 22px;
        min-height: auto;
    }

    .service-card__label {
        font-size: 11px;
        padding: 8px 11px;
        top: 16px;
        right: 16px;
    }

    .services__btn {
        font-size: 13px;
        padding: 12px 18px;
    }

    /* --- ABOUT --- */
    .about__inner {
        gap: 24px;
        padding-block: 40px 32px;
        padding-inline: 16px;
    }

    .about__title {
        font-size: 20px;
    }

    .about__highlight {
        font-size: 14px;
    }

    .about__description {
        font-size: 13px;
    }

    .about__label {
        font-size: 15px;
    }

    .about__btn {
        font-size: 13px;
        padding: 12px 18px;
    }

    /* --- TEAM --- */
    .team-accomp {
        padding: 30px 0;
    }

    .team-accomp__bg {
        font-size: 40px;
    }

    .team-accomp__quote {
        font-size: 14px;
        max-width: 100%;
        padding: 0 16px;
    }

    .team-accomp__figure {
        width: 220px;
    }

    .animal-age {
        font-size: 16px;
    }

    .team-member {
        gap: 24px;
        margin-bottom: 50px;
    }

    .team-member__title {
        font-size: 20px;
    }

    .team-member__scroll p {
        font-size: 13px;
    }

    .team-member__scroll {
        max-height: 240px;
        padding-right: 24px;
    }

    .team-member__label {
        font-size: 15px;
    }

    /* --- DIFF --- */
    .diff__inner {
        padding: 50px 0;
    }

    /* --- FAQ --- */
    .faq {
        margin: 30px auto 25px;
        scroll-margin: 30px;
    }

    .faq__inner {
        gap: 14px;
        padding: 0 16px;
    }

    .faq__title {
        font-size: 22px;
    }

    .faq__label {
        font-size: 15px;
    }

    .faq__details {
        padding: 10px 12px 10px 16px;
        border-radius: 10px;
    }

    .faq__summary {
        padding-right: 26px;
    }

    .faq__summary::after {
        width: 10px;
        height: 6px;
    }

    /* --- SINGLE SERVICE --- */
    .single-service {
        padding: 90px 0 0;
    }

    .single-service__inner {
        padding: 0 16px;
    }

    .single-service__title {
        font-size: 24px;
    }

    .single-service__lead {
        font-size: 15px;
    }

    .single-service::after {
        width: 92%;
        left: 4%;
        margin-top: 30px;
    }

    .services.single-other_services {
        padding: 40px 0;
    }

    /* --- COMMON PAGE --- */
    .common-page {
        padding: 110px 0 35px;
    }

    .common-container {
        padding: 0 16px;
    }

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

    .common-content p,
    .common-content li {
        font-size: 12px;
    }

    .common-content h2 {
        font-size: 16px;
    }

    .last-update {
        margin-top: 16px;
    }
}

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

    /* --- HERO --- */
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero__content {
        padding: 95px 18px 60px;
    }

    .team-member__figure {
        width: 100%;
        aspect-ratio: 1/1;
    }
}

@media screen and (max-width: 375px) {
    .site-header .site-nav {
        width: 80%;
    }

    .site-header .menu-open .site-nav__menu {
        padding: 135px 20% 40px;
        right: -13%;
    }

    .site-header .menu-item>a {
        font-size: 12px;
    }

    .site-header .menu-item--cta .site-nav__cta {
        font-size: 12px;
        padding: 11px 16px;
    }

    .hero::after {
        bottom: -19%;
        right: -7.4%;
        width: 100%;
    }

    /* --- TEAM --- */
    .team-accomp__bg {
        font-size: 32px;
    }

    .team-accomp__quote {
        font-size: 13px;
    }

    .team-accomp__figure {
        width: 180px;
    }

    .team-member__title {
        font-size: 18px;
    }

    .team-member__scroll p {
        font-size: 12px;
    }

    .team-member__label {
        font-size: 14px;
    }
}

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