/*
Theme Name: Funerária Tilheiro
Theme URI: https://blisq.pt
Author: Blisq Creative
Author URI: https://blisq.pt
Description: Starter theme WordPress interno, modular e extensível, desenvolvido pela Blisq Creative.
Version: 1.1.0
Requires at least: 6.5
Requires PHP: 8.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-logo, custom-menu, featured-images, translation-ready
Text Domain: blisq
*/
/* =========================================================
    TIPOGRAFIA
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

/* =========================================================
    VARIAVEIS E RESETS
   ========================================================= */

:root {
    --white: #FFF;
    --black: #000;
    --ink: #2D353B;
    --ink-deep: #1E3546;
    --ink-dark: #1F3749;
    --stone: #70655D;
    --taupe: #A08F82;
    --sand: #B0A398;
    --clay: #BAA99C;
    --ash: #B5AEA8;
    --mist: #E8E2DE;
    --cloud: #F2EFED;
    --snow: #F9F7F9;
    --terracotta: #935E3A;
}

* {
    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: "Montserrat", 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;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--terracotta);
    color: var(--white);
}

.block {
    display: block;
}

.none {
    display: none;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
    height: 100%;
}

/* =========================================================
    CONTEUDO GENERICO
   ========================================================= */
/*BTN CTA*/
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 24px;
    border-radius: 15px;
    color: var(--ink);
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.52px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease, color 0.2s ease;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
}

.btn--white {
    background-color: var(--white);
    color: var(--ink-dark);
}

.btn--white::after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url("assets/icons/mobile.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.btn--white:hover {
    background-color: var(--ink-dark);
    color: var(--white);
}

/* LABEL OPEN*/
.label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 10px;
    border-radius: 5px;
    color: var(--snow);
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.52px;
    text-transform: uppercase;
}

.label--terracotta {
    background-color: var(--terracotta);
}

.label::before {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url("assets/icons/iconAddInfo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/*BTN LINK*/
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    text-align: start;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.52px;
    text-transform: uppercase;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-link::after {
    content: "";
    display: inline-block;
    width: 19px;
    height: 10px;
    background-image: url("assets/icons/arrowBlack.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.25s ease;
}

.btn-link:hover::after {
    transform: translateX(4px);
}

/* =========================================================
    ANIMATIONS
   ========================================================= */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-pending {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero__media {
    animation: fadeInDown 1s ease forwards;
}

.hero__content>* {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero__eyebrow {
    animation-delay: 0.3s;
}

.hero__title {
    animation-delay: 0.5s;
}

.hero__description {
    animation-delay: 0.7s;
}

.hero__actions {
    animation-delay: 0.9s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
    HEADER
   ========================================================= */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
}

.header__logo img {
    width: 182px;
    height: auto;
}

.header__nav .menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.header__nav .menu-item {
    position: relative;
}

.header__nav .menu-item:last-child {
    margin-left: 86px;
}

.header__nav>.menu>.menu-item>a:not(.header__contact) {
    display: inline-flex;
    align-items: center;
    color: var(--snow);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.2 ease;
}

/* Seta do dropdown */
.menu-item-has-children>.menu-item__link::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    background-image: url("assets/icons/chevronDownWhite.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.25s ease;
}

.menu-item-has-children.is-open>.menu-item__link::after {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    border-radius: 10px;
    list-style: none;
    background-color: var(--snow);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.sub-menu .menu-item>a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    color: var(--stone);
}

.sub-menu .menu-item>a:hover {
    color: var(--terracotta);
}

.menu-item-has-children.is-open .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu .menu-item {
    margin-left: 0;
}

.sub-menu .menu-item>a:hover {
    color: var(--terracotta);
}

.sub-menu .menu-item:last-child {
    margin-left: 0;
}

/* Botão contactar */
.header__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 15px;
    background-color: #E4DED8;
    color: var(--ink);
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.52px;
    text-transform: uppercase;
}

/* HEADER DARK VARIANT */
.header--dark .header__nav>.menu>.menu-item>a:not(.header__contact) {
    color: var(--ink);
}

.header--dark .menu-item-has-children>.menu-item__link::after {
    filter: brightness(0) saturate(100%) invert(14%) sepia(8%) saturate(632%) hue-rotate(338deg) brightness(95%) contrast(89%);
}

.header__hamburger {
    display: none;
}

/* =========================================================
    HERO
   ========================================================= */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100svh;
    padding: 0 40px 100px 40px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 818px;
    background: linear-gradient(180deg, #F2EFED 39.1%, rgba(242, 239, 237, 0.00) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero__media {
    position: relative;
    width: 100%;
    max-width: 1550px;
    height: auto;
    margin: 0 auto;
    z-index: 1;
}

.hero__media img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 875px;
    margin-top: auto;
    z-index: 1;
}

.hero__eyebrow {
    margin-bottom: 5px;
    color: var(--clay);
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-transform: uppercase;
}

.hero__title {
    margin-bottom: 10px;
    color: var(--ink-dark);
    text-align: center;
    font-family: "Frank Ruhl Libre", serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.72px;
}

.hero__title span {
    color: var(--terracotta);
}

.hero__description {
    margin-bottom: 25px;
    color: var(--ash);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    max-width: 815px;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* =========================================================
    ABOUT SECTION
   ========================================================= */
.about {
    position: relative;
    width: 100%;
    padding: 170px 112px;
    z-index: 1;
}

.about::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 544px;
    background: linear-gradient(180deg, rgba(242, 239, 237, 0.00) 0%, #F2EFED 100%);
    z-index: -1;
    pointer-events: none;
}

.about__container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about__media-grid {
    display: grid;
    grid-template-columns: 67.83% auto;
    grid-template-rows: auto auto;
    gap: 25px 33px;
    align-items: end;
}

.about__media--large {
    grid-column: 1;
    grid-row: span 2;
    width: 100%;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
}

.about__media--large img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about__stat {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 29px;
    padding-left: 8px;
}

.about__stat-number {
    font-family: "Frank Ruhl Libre", serif;
    color: var(--mist);
    font-size: 83px;
    font-style: normal;
    font-weight: 900;
    line-height: 65%;
    letter-spacing: -3.32px;
}

.about__stat-label {
    color: var(--ink);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    margin-top: 5px;
}

.about__media--small {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: auto;
    border-radius: 30px;
    margin-bottom: 67px;
    overflow: hidden;
}

.about__media--small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 566px;
}

.about__content h2 {
    font-family: "Frank Ruhl Libre", serif;
    color: var(--ink);
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.about__content p {
    color: var(--sand);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.about__content p strong {
    color: var(--ink);
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
}

/* =========================================================
    SERVICES SECTION
   ========================================================= */
.services {
    position: relative;
    width: 100%;
    padding: 90px 40px 100px;
    background-color: var(--cloud);
}

.services__container {
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.services__intro {
    text-align: center;
    max-width: 800px;
}

.services__title {
    color: var(--ink);
    font-family: "Frank Ruhl Libre", serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 15px;
    text-wrap: balance;
}

.services__title span {
    color: var(--clay);
}

.services__description {
    color: var(--sand);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    background-color: var(--snow);
    border-radius: 30px;
}

.service-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card__title {
    color: var(--ink);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 10px;
}

.service-card__description {
    color: var(--taupe);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* =========================================================
    FEATURES SECTION
   ========================================================= */
.features {
    position: relative;
    width: 100%;
    padding: 100px 40px 260px;
    z-index: 1;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 285px;
    background: linear-gradient(0deg, rgba(242, 239, 237, 0.00) 0%, #F2EFED 100%);
    z-index: 0;
    pointer-events: none;
}

.features__container {
    max-width: 1382px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features__intro {
    text-align: center;
    max-width: 595px;
    margin: 0 auto 50px;
}

.features__title {
    font-family: "Frank Ruhl Libre", serif;
    color: var(--ink);
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 15px;
    text-wrap: balance;
}

.features__title span {
    color: var(--clay);
}

.features__description {
    color: var(--sand);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin: 0 auto;
    max-width: 445px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 18px;
}

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 430px;
    border-radius: 35px;
    overflow: hidden;
    padding: 35px;
}

.feature-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #F2EFED 29.03%, rgba(242, 239, 237, 0.00) 77.27%);
    z-index: 1;
    pointer-events: none;
}

.feature-card__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-card__title {
    color: var(--ink);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.feature-card__description {
    color: var(--sand);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    margin-bottom: 8px;
}

.feature-card--large {
    grid-column: 1 / -1;
    height: 393px;
    border-radius: 27px;
    justify-content: flex-end;
}

.feature-card--large .feature-card__content {
    max-width: 507px;
}

.feature-card--large::before {
    background: linear-gradient(86deg, #F2EFED 14.88%, rgba(242, 239, 237, 0.82) 36.93%, rgba(242, 239, 237, 0.00) 64.5%);
}

.feature-card--large::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 190px;
    height: 240px;
    background-image: url("assets/images/logoPseudoWatermark.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
}

/* =========================================================
    STEPS SECTION
   ========================================================= */
.steps {
    position: relative;
    width: 100%;
    padding-block: 100px 175px;
    z-index: 1;
}

.steps::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F2EFED 0%, #ECE7E4 100%);
    filter: blur(45px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.steps__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.steps__wrapper::before {
    content: "";
    position: absolute;
    top: 24%;
    left: -3%;
    width: 30vw;
    max-width: 467px;
    aspect-ratio: 467 / 1034;
    background-image: url("assets/images/logo_outlineWatermarkStep.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    z-index: 0;
    pointer-events: none;
}

.steps__wrapper::after {
    content: "";
    position: absolute;
    bottom: -41.5%;
    right: 12%;
    width: 55%;
    aspect-ratio: 1085 / 1034;
    background-image: url("assets/images/logo_outlineWatermarkStepBot.svg");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.steps__container {
    position: relative;
    z-index: 2;
    max-width: 1095px;
    margin: 0 auto;
}

/* --- Intro --- */
.steps__intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.steps__title {
    font-family: "Frank Ruhl Libre", serif;
    color: var(--ink);
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    max-width: 470px;
    margin: 0 auto 15px;
    text-wrap: balance;
}

.steps__title span {
    color: var(--clay);
}

.steps__description {
    color: var(--taupe);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-wrap: balance;
}

.steps__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.steps-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 130px;
    align-items: center;
}

/* ÍMPARES*/
.steps-item:nth-child(odd) .steps-item__media {
    grid-column: 1;
}

.steps-item:nth-child(odd) .steps-item__content {
    grid-column: 2;
}

/* PARES  */
.steps-item:nth-child(even) {
    padding-left: 55px;
}

.steps-item:nth-child(even) .steps-item__media {
    grid-column: 2;
}

.steps-item:nth-child(even) .steps-item__content {
    grid-column: 1;
    grid-row: 1;
}

.steps-item__media {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 25px;
    overflow: hidden;
}

.steps-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.steps-item__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 400px;
}

.steps-item__step {
    color: var(--sand);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.12px;
    margin-bottom: 5px;
}

.steps-item__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.steps-item__title {
    color: var(--ink);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.steps-item__description {
    color: var(--taupe);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.steps-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 100px;
}

.steps-cta__title {
    color: var(--ink);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 5px;
}

.steps-cta__description {
    color: var(--taupe);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 15px;
}

/* =========================================================
    WHY CHOOSE SECTION
   ========================================================= */
.why-choose {
    position: relative;
    width: 100%;
    padding: 155px 40px 95px;
}

.why-choose::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, rgba(242, 239, 237, 0.00) 0%, #F2EFED 100%);
    z-index: 1;
    pointer-events: none;
}

.why-choose__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 130px;
    max-width: 1430px;
    margin: 0 auto;
}

.why-choose__item {
    display: grid;
    grid-template-columns: 48.5% 1fr;
    gap: 150px;
    align-items: center;
}

.why-choose__media {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
}

.why-choose__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose__media--gradient::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(163deg, rgba(31, 55, 73, 0) 0%, rgba(31, 55, 73, 0.2) 50%, rgba(31, 55, 73, 0.75) 73%, #1F3749 100%);
    pointer-events: none;
    z-index: 1;
}

.why-choose__media--logo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32%;
    max-width: 182px;
    aspect-ratio: 182 / 364;
    background-image: url("assets/images/logoPseudoWhite.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.why-choose__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 585px;
}

.why-choose__eyebrow {
    color: var(--terracotta);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.why-choose__title {
    color: var(--ink);
    font-family: "Frank Ruhl Libre", serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 15px;
}

.why-choose__description {
    color: var(--sand);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 30px;
}

.why-choose__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* =========================================================
    FAQ SECTION
   ========================================================= */
.faq {
    position: relative;
    width: 100%;
    padding: 120px 112px 130px;
    background-color: var(--cloud);
}

.faq::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 480px;
    background: linear-gradient(0deg, rgba(242, 239, 237, 0.00) 0%, #F2EFED 100%);
    z-index: 1;
    pointer-events: none;
}

.faq__container {
    position: relative;
    z-index: 2;
    max-width: 970px;
    margin: 0 auto;
}

.faq__header {
    text-align: center;
    margin-bottom: 30px;
}

.faq__title {
    font-family: "Frank Ruhl Libre", serif;
    color: var(--clay);
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #F4F2F0;
    border: 1px solid #E2DDDA;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background-color: var(--snow);
    border: 1px solid transparent;
}

.faq-item::details-content {
    display: block;
    block-size: 0;
    overflow: hidden;
    transition: all 0.4s allow-discrete;
}

.faq-item[open]::details-content {
    block-size: auto;
    block-size: calc-size(auto, size);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 30px 10px 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    position: relative;
}

.faq-item__question {
    color: var(--ink);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.faq-item__summary::after {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--white);
    background-image: url("assets/icons/chevronDownBrown.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px auto;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item[open] .faq-item__summary::after {
    transform: rotate(180deg);
    background-color: var(--cloud);
}

.faq-item__content {
    padding: 0 20px 20px;
}

.faq-item__answer {
    color: var(--taupe);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.faq__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
}

.faq__footer-text {
    color: var(--sand);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 20px;
    text-wrap: balance;
}

.faq__footer .btn--white::after {
    display: none;
}

/* =========================================================
    CTA BANNER SECTION
   ========================================================= */
.cta-banner {
    position: relative;
    width: 100%;
    padding-top: clamp(80px, 12vw, 198px);
    padding-bottom: clamp(90px, 13vw, 215px);
    padding-inline: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-banner__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(45, 53, 59, 0.00) 0%, rgba(45, 53, 59, 0.82) 61.44%, #2D353B 100%);
    pointer-events: none;
}

.cta-banner__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 756px;
    margin: 0 auto;
    gap: 15px;
}

.cta-banner__title {
    font-family: "Frank Ruhl Libre", serif;
    color: var(--snow);
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    text-wrap: balance;
}

.cta-banner__subtitle {
    color: var(--white);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-wrap: balance;
}

/* =========================================================
    FOOTER
   ========================================================= */
.footer {
    width: 100%;
    background: linear-gradient(0deg, #EEEBE7 0%, rgba(238, 235, 231, 0.00) 100%);
    padding: 90px 60px 32px;
}

.footer__container {
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 19.8% max-content max-content 1fr;
    column-gap: 6.6%;
    row-gap: 25px;
    align-items: start;
}

/* LINHA 1 */
.footer__item--brand {
    grid-column: span 1;
    align-self: center;
    padding-left: 40px;
}

.footer__item--support {
    grid-column: span 2;
    align-self: center;
}

.footer__item--map {
    grid-column: span 1;
    justify-self: end;
    padding-right: 40px;
    padding-bottom: 20px;
    width: 100%;
    max-width: 607px;
    margin-left: auto;
}

/* Topo Elements */
.footer__logo {
    max-width: 238px;
    height: auto;
}

.footer__support-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 9px;
}

.footer__support-title {
    font-family: "Frank Ruhl Libre", serif;
    color: var(--ink);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.footer__support-text {
    color: var(--stone);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    max-width: 480px;
}

.footer__map-card {
    position: relative;
    border-radius: 20px;
    padding: 25px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url("assets/images/google_maps.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

.footer__map-title {
    color: var(--snow);
    font-family: "Frank Ruhl Libre", serif;
    font-size: 29px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 27px;
}

.footer__map-address {
    color: #8EA0AF;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.footer__map-address span {
    padding-bottom: 5px;
}

.footer__title {
    color: var(--terracotta);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-nav .menu,
.footer__contacts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-nav .menu-item a,
.footer__contacts-list a {
    color: var(--stone);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.footer-nav .menu-item a:hover,
.footer__contacts-list a:hover {
    color: var(--terracotta);
}

.footer__item.footer__item--contacts {
    padding-left: 40px;
}

.footer__contacts-list .footer_email {
    color: var(--ink);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 10px;
}

.footer__contacts-list .footer_number {
    color: var(--ink);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.footer__label {
    display: block;
    color: var(--ink);
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 4px;
}

.footer__funding-img {
    max-width: 364px;
    height: auto;
    justify-self: end;
}

.footer__item.footer__item--funding {
    padding-right: 40px;
}

.footer__divider {
    grid-column: 1 / -1;
    width: 100%;
    height: 0;
    border-top: 1px solid #D9D3CF;
}

/*FOOTER BOTTOM */
.footer__bottom {
    margin-top: 43px;
    padding-top: 15px;
    padding-right: 40px;
    border-top: 1px solid #D9D3CF;
    display: flex;
    justify-content: flex-end;
}

.footer__credits {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--stone);
    text-align: right;
    font-family: "Red Hat Display", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 139%;
}

.footer__blisq-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer__blisq-link:hover {
    transform: scale(1.06);
}

.footer__blisq-logo {
    height: auto;
    width: 36px;
    display: block;
}

/* =========================================================
    SINGLE SERVICE PAGE
   ========================================================= */
.service-hero {
    position: relative;
    width: 100%;
    padding-block: 180px 70px;
}

/* PSEUDOS */
.service-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64%;
    background: linear-gradient(180deg, #EEEAE8 50%, rgba(238, 234, 232, 0) 100%);
    z-index: -2;
    pointer-events: none;
}

.service-hero::after {
    content: "";
    position: absolute;
    top: 28%;
    left: -8%;
    width: 34.12%;
    aspect-ratio: 1;
    border-radius: 695px;
    background: var(--terracotta);
    opacity: 0.9;
    filter: blur(75px);
    transform: translate(-55%, 0);
    z-index: -1;
    pointer-events: none;
}

.service-hero__container {
    width: 100%;
    max-width: 1265px;
    margin-inline: auto;
    padding-inline: 40px;
}

/* LINHA 1 — texto + ícone */
.service-hero__intro {
    max-width: 442px;
}

.service-hero__title {
    margin-bottom: 15px;
    font-family: "Frank Ruhl Libre", serif;
    color: #D3BAAE;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.service-hero__row--intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14%;
    padding-right: 87px;
}

.service-hero__subtitle {
    margin-bottom: 10px;
    color: var(--ink);
    font-family: "Frank Ruhl Libre", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.service-hero__description {
    color: var(--taupe);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.service-hero__icon {
    width: 146px;
    height: auto;
}

.service-hero__icon img {
    width: 100%;
    height: auto;
}

.service-hero__row--details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 123px;
    gap: 14%;
}

/* TAGS */
.service-hero__tags {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 15px;
    max-width: 480px;
    list-style: none;
    margin-left: auto;
}

.tag {
    padding: 10px 15px;
    border-radius: 11px;
    background-color: #EEEAE8;
    color: var(--taupe);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    white-space: nowrap;
}

.tag:nth-child(3) {
    margin-left: 42px;
}

/* DETAILS (h2 + p) */
.service-hero__details {
    max-width: 429px;
}

.service-hero__details-title {
    margin-bottom: 14px;
    font-family: "Frank Ruhl Libre", serif;
    color: var(--ink);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}

.service-hero__details-text {
    color: var(--taupe);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

/* =========================================================
    SERVICE HELP
   ========================================================= */
.service-help {
    width: 100%;
    padding-block: 70px 75px;
    position: relative;
}

.service-help::before {
    content: "";
    position: absolute;
    top: 29%;
    right: 0;
    width: 29.8%;
    aspect-ratio: 573 / 844;
    background-image: url("assets/images/logo_outlinePseudoSingle.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
}

.service-help__container {
    width: 100%;
    max-width: 1450px;
    margin-inline: auto;
    padding-inline: 40px;
}

.service-help__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
}

.service-help__content {
    max-width: 410px;
}

.service-help__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.service-help__header .label {
    flex-shrink: 0;
    white-space: nowrap;
}

.service-help__title {
    font-family: "Frank Ruhl Libre", serif;
    color: var(--ink);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}

.service-help__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding-left: 10px;
}

.service-help__list li {
    position: relative;
    padding-left: 16px;
    color: var(--taupe);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.service-help__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: var(--terracotta);
}

.service-help__media {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    width: 59.8%;
}

.service-help__img {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1;
}

.service-help__img--small {
    width: 40%;
}

.service-help__img--large {
    width: 57%;
}

/* =========================================================
    SERVICES STEPS
   ========================================================= */
.service-steps {
    position: relative;
    width: 100%;
    padding-block: 100px 170px;
}

/*PSEUDOS*/
.service-steps::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 0;
    width: 16%;
    aspect-ratio: 301 / 844;
    background-image: url("assets/images/logo_outlinePseudoLeftSingle.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
}

.service-steps::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68%;
    background: linear-gradient(180deg, rgba(242, 239, 237, 0) 0%, #F2EFED 100%);
    clip-path: polygon(0 195px, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
    z-index: -2;
}

.service-steps__container {
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    padding-inline: 40px;
}

.service-steps__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16%;
}

/* IMAGEM */
.service-steps__media {
    width: 37%;
    aspect-ratio: 1;
    border-radius: 30px;
    overflow: hidden;
}

/* CONTEÚDO */
.service-steps__content {
    max-width: 47%;
    text-align: center;
}

.service-steps__title {
    text-align: center;
    font-family: "Frank Ruhl Libre", serif;
    color: var(--ink);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0 auto 30px;
    max-width: 390px;
}

.service-steps__title span {
    color: var(--clay);
}

.service-steps__list {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    list-style: none;
}

.service-steps__item {
    counter-increment: step;
    position: relative;
    padding: 20px 35px 20px 80px;
    border-radius: 20px;
    background-color: #EEEAE8;
    overflow: hidden;
    color: var(--taupe);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-align: left;
}

.service-steps__item::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: -1.5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Frank Ruhl Libre", serif;
    color: #FDFCFD;
    text-align: center;
    font-size: 57px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    pointer-events: none;
}

/* =========================================================
    RELATED SERVICES SECTION
   ========================================================= */
.related-services {
    width: 100%;
    padding-block: 70px 20px;
    border-top: 1px solid #CFC7C0;
    background-color: var(--cloud);
}

.related-services__container {
    width: 100%;
    max-width: 1536px;
    margin-inline: auto;
    padding-inline: 40px;
}

.related-services__title {
    font-family: "Frank Ruhl Libre", serif;
    color: var(--ink);
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 40px;
}

.related-services__list {
    display: flex;
    gap: 20px;
}

.related-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    background-color: var(--snow);
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.related-card__icon {
    width: 60px;
    height: auto;
}

.related-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.related-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    padding-top: 10px;
    min-height: 130px;
}

/* =========================================================
    COMMON PAGES
   ========================================================= */
.common-page {
    padding: 180px 0 80px;
}

.common-container {
    max-width: 850px;
    margin: 0 auto;
}

.common-title {
    color: var(--ink-dark);
    font-family: "Frank Ruhl Libre", serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.72px;
}

.common-content {
    margin: 20px auto;
    counter-reset: section-counter;
}

.common-content h2 {
    counter-increment: section-counter;
    font-family: "Frank Ruhl Libre", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    color: var(--ink);
    margin-top: 36px;
    margin-bottom: 16px;
}

.common-content h2::before {
    content: counter(section-counter) ". ";
    color: var(--terracotta);
    font-weight: 400;
}

.common-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    color: var(--taupe);
    margin-bottom: 16px;
}

.common-content strong {
    color: var(--ink);
    font-weight: 500;
}

.common-content ul {
    list-style: none;
    padding-left: 15px;
    margin-top: 12px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.common-content li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 160%;
    color: var(--taupe);
}

.common-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--terracotta);
}

.common-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.common-content th,
.common-content td {
    padding: 16px;
    font-size: 15px;
    font-weight: 400;
    color: var(--taupe);
    border-right: 1px solid #E5E0DC;
    border-bottom: 1px solid #E5E0DC;
    line-height: 150%;
}

.common-content th:last-child,
.common-content td:last-child {
    border-right: none;
}

.common-content tr:last-child td {
    border-bottom: none;
}

.common-content a {
    color: var(--terracotta);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.common-content a:hover {
    opacity: 0.8;
}


/* =========================================================
    RESPONSIVO
   ========================================================= */
@media screen and (min-width: 1921px) {
    .hero__media {
        width: 100%;
        max-width: 95%;
    }

    .about {
        justify-items: center;
    }

    .about__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 1700px) {

    /*header*/
    .header__container {
        padding: 35px;
    }

    .header__nav .menu {
        gap: 35px;
    }

    .header__nav>.menu>.menu-item:last-child {
        margin-left: 70px;
    }

    /*LP PAGE*/
    .hero {
        padding: 0 35px 90px;
    }

    .hero__content {
        max-width: 800px;
    }

    .hero__media {
        max-width: 1400px;
    }

    .hero__title {
        font-size: 66px;
    }

    .about {
        padding: 150px 80px;
    }

    .about__container {
        gap: 7%;
    }

    .about__stat-number {
        font-size: 75px;
    }

    .services {
        padding: 85px 35px 95px;
    }

    .services__container {
        gap: 45px;
    }

    .services__title {
        font-size: 40px;
    }

    .features {
        padding: 95px 35px 240px;
    }

    .features__container {
        max-width: 1300px;
    }

    .features__grid {
        gap: 24px 16px;
    }

    .feature-card {
        height: 410px;
    }

    .feature-card--large {
        height: 380px;
    }

    .steps {
        padding-block: 95px 160px;
    }

    .steps__container {
        max-width: 1000px;
    }

    .steps__list {
        gap: 35px;
    }

    .steps-item {
        gap: 100px;
    }

    .steps__wrapper::after {
        right: 8%;
        width: 45%;
        bottom: -27.5%;
    }

    .why-choose {
        padding: 140px 35px 85px;
    }

    .why-choose__container {
        max-width: 1300px;
        gap: 110px;
    }

    .why-choose__item {
        gap: 120px;
    }

    .why-choose__content {
        max-width: 540px;
    }

    /*footer*/
    .footer {
        padding: 80px 45px 28px;
    }

    .footer__grid {
        column-gap: 5%;
    }

    .footer__item--brand,
    .footer__item--contacts {
        padding-left: 30px;
    }

    .footer__item--map,
    .footer__item--funding,
    .footer__bottom {
        padding-right: 30px;
    }

    .footer__logo {
        max-width: 220px;
    }

    .footer__item--map {
        max-width: 540px;
    }

    .footer__funding-img {
        max-width: 320px;
    }

    /*SINGLE SERVICE*/
    .service-hero {
        padding-block: 160px 65px;
    }

    .service-hero__container {
        max-width: 1150px;
    }

    .service-hero__row--intro {
        padding-right: 60px;
        gap: 12%;
    }

    .service-hero__row--details {
        margin-top: 100px;
        gap: 12%;
    }

    .service-hero__icon {
        width: 130px;
    }

    .service-help {
        padding-block: 65px 70px;
    }

    .service-help__container {
        max-width: 1350px;
    }

    .service-help__row {
        gap: 8%;
    }

    .service-help__content {
        max-width: 390px;
    }

    .service-help__title {
        font-size: 28px;
    }

    .service-steps {
        padding-block: 90px 150px;
    }

    .service-steps__container {
        max-width: 1250px;
    }

    .service-steps__row {
        gap: 14%;
    }

    .service-steps__item::before {
        font-size: 54px;
    }

    .related-services__container {
        max-width: 1400px;
    }

    .related-services__title {
        font-size: 40px;
    }

    .related-services__list {
        gap: 18px;
    }

    .related-card {
        padding: 22px;
    }

    .related-card__footer {
        min-height: 120px;
    }
}

@media screen and (max-width: 1600px) {

    /*header*/
    .header__container {
        padding: 30px;
    }

    .header__logo img {
        width: 160px;
    }

    .header__nav .menu {
        gap: 28px;
    }

    .header__nav>.menu>.menu-item:last-child {
        margin-left: 50px;
    }

    .header__contact {
        padding: 20px;
        font-size: 12px;
    }

    /*LP PAGE*/
    .hero {
        padding: 0 30px 80px;
    }

    .hero__media {
        max-width: 1300px;
    }

    .hero__content {
        max-width: 730px;
    }

    .hero__title {
        font-size: 60px;
        letter-spacing: -0.6px;
    }

    .hero__description {
        font-size: 19px;
        max-width: 615px;
    }

    .about {
        padding: 130px 60px;
    }

    .about__container {
        gap: 6%;
    }

    .about__media-grid {
        gap: 22px 28px;
    }

    .about__content h2 {
        font-size: 38px;
    }

    .about__stat-number {
        font-size: 68px;
        letter-spacing: -2.5px;
    }

    .services {
        padding: 80px 30px 90px;
    }

    .services__container {
        max-width: 1050px;
        gap: 40px;
    }

    .services__intro {
        max-width: 750px;
    }

    .services__title {
        font-size: 38px;
    }

    .services__description {
        font-size: 17px;
    }

    .service-card {
        padding: 35px 28px;
    }

    .service-card__title {
        font-size: 22px;
    }

    .features {
        padding: 90px 30px 220px;
    }

    .features__container {
        max-width: 1220px;
    }

    .features__intro {
        margin-bottom: 45px;
    }

    .features__title {
        font-size: 38px;
    }

    .features__description {
        font-size: 17px;
    }

    .features__grid {
        gap: 22px 15px;
    }

    .feature-card {
        height: 390px;
        padding: 30px;
    }

    .feature-card--large {
        height: 360px;
    }

    .feature-card__title {
        font-size: 20px;
    }

    .steps {
        padding-block: 90px 145px;
    }

    .steps__container {
        max-width: 920px;
    }

    .steps__intro {
        margin-bottom: 50px;
    }

    .steps__title {
        font-size: 38px;
    }

    .steps__description {
        font-size: 17px;
    }

    .steps__list {
        gap: 30px;
    }

    .steps-item {
        gap: 80px;
    }

    .steps-item:nth-child(even) {
        padding-left: 40px;
    }

    .steps-item__media {
        max-width: 430px;
    }

    .steps-item__title {
        font-size: 20px;
    }

    .steps-item__description {
        font-size: 15px;
    }

    .steps-cta {
        margin-top: 85px;
    }

    .steps__wrapper::after {
        right: 5%;
    }

    .why-choose {
        padding: 125px 30px 75px;
    }

    .why-choose__container {
        max-width: 1200px;
        gap: 90px;
    }

    .why-choose__item {
        gap: 90px;
    }

    .why-choose__title {
        font-size: 38px;
    }

    .why-choose__content {
        max-width: 500px;
    }

    /*footer*/
    .footer {
        padding: 70px 35px 25px;
    }

    .footer__grid {
        column-gap: 4%;
        row-gap: 22px;
    }

    .footer__item--brand,
    .footer__item--contacts {
        padding-left: 20px;
    }

    .footer__item--map,
    .footer__item--funding,
    .footer__bottom {
        padding-right: 20px;
    }

    .footer__logo {
        max-width: 200px;
    }

    .footer__item--map {
        max-width: 480px;
    }

    .footer__map-card {
        padding: 22px 28px;
    }

    .footer__support-title {
        font-size: 20px;
    }

    .footer__map-title {
        font-size: 26px;
    }

    .footer__funding-img {
        max-width: 280px;
    }

    /*SINGLE SERVICE*/
    .service-hero {
        padding-block: 145px 60px;
    }

    .service-hero__container {
        max-width: 1050px;
        padding-inline: 35px;
    }

    .service-hero__title {
        font-size: 38px;
    }

    .service-hero__subtitle {
        font-size: 28px;
    }

    .service-hero__row--intro {
        padding-right: 40px;
        gap: 10%;
    }

    .service-hero__row--details {
        margin-top: 85px;
        gap: 10%;
    }

    .service-hero__details-title {
        font-size: 28px;
    }

    .service-hero__icon {
        width: 115px;
    }

    .service-hero__details {
        max-width: 370px;
    }

    .service-help {
        padding-block: 60px 65px;
    }

    .service-help__container {
        max-width: 1250px;
        padding-inline: 35px;
    }

    .service-help__row {
        gap: 6%;
    }

    .service-help__content {
        max-width: 370px;
    }

    .service-help__title {
        font-size: 26px;
    }

    .service-help__list li {
        font-size: 15px;
    }

    .service-help__img {
        border-radius: 25px;
    }

    .service-steps {
        padding-block: 80px 135px;
    }

    .service-steps__container {
        max-width: 1150px;
        padding-inline: 35px;
    }

    .service-steps__row {
        gap: 12%;
    }

    .service-steps__media {
        border-radius: 25px;
    }

    .service-steps__title {
        font-size: 28px;
    }

    .service-steps__item {
        font-size: 15px;
    }

    .service-steps__item::before {
        font-size: 50px;
    }

    .related-services {
        padding-block: 65px 18px;
    }

    .related-services__container {
        max-width: 1300px;
        padding-inline: 35px;
    }

    .related-services__title {
        font-size: 38px;
        margin-bottom: 35px;
    }

    .related-services__list {
        gap: 16px;
    }

    .related-card {
        padding: 20px;
        border-radius: 18px;
    }

    .related-card__icon {
        width: 55px;
    }

    .related-card__footer {
        min-height: 110px;
        padding-top: 8px;
    }
}

@media screen and (max-width: 1440px) {

    /*genericos*/
    .btn {
        padding: 20px;
        font-size: 12px;
        letter-spacing: 0.4px;
    }

    .label {
        font-size: 12px;
        letter-spacing: 0.4px;
    }

    .btn-link {
        font-size: 12px;
        letter-spacing: 0.4px;
    }

    /*header*/
    .header__container {
        padding: 25px;
    }

    .header__logo img {
        width: 140px;
    }

    .header__nav>.menu>.menu-item:last-child {
        margin-left: 30px;
    }

    .header__nav>.menu>.menu-item>a:not(.header__contact) {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .header__contact {
        padding: 18px;
        font-size: 11px;
        border-radius: 12px;
    }

    /*LP PAGE*/
    .hero {
        padding: 0 25px 70px;
    }

    .hero__media {
        max-width: 1200px;
    }

    .hero__content {
        max-width: 660px;
    }

    .hero__title {
        font-size: 54px;
        letter-spacing: -0.5px;
    }

    .hero__description {
        font-size: 18px;
    }

    .hero__eyebrow {
        font-size: 14px;
    }

    .about {
        padding: 110px 50px;
    }

    .about__container {
        gap: 5%;
        grid-template-columns: 55% 1fr;
    }

    .about__media-grid {
        gap: 20px 25px;
    }

    .about__content {
        max-width: 100%;
    }

    .about__content h2 {
        font-size: 34px;
    }

    .about__content p strong {
        font-size: 17px;
    }

    .about__content p {
        font-size: 15px;
    }

    .about__stat-number {
        font-size: 60px;
        letter-spacing: -2px;
    }

    .about__stat-label {
        font-size: 16px;
    }

    .about__media--small {
        margin-bottom: 50px;
    }

    .services {
        padding: 75px 25px 85px;
    }

    .services__container {
        max-width: 980px;
        gap: 35px;
    }

    .services__title {
        font-size: 34px;
    }

    .services__description {
        font-size: 16px;
    }

    .service-card {
        padding: 30px 25px;
        border-radius: 25px;
    }

    .service-card__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }

    .service-card__title {
        font-size: 20px;
    }

    .service-card__description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .features {
        padding: 85px 25px 200px;
    }

    .features__container {
        max-width: 1150px;
    }

    .features__intro {
        max-width: 550px;
        margin-bottom: 40px;
    }

    .features__title {
        font-size: 34px;
    }

    .features__description {
        font-size: 16px;
        max-width: 400px;
    }

    .features__grid {
        gap: 20px 14px;
    }

    .feature-card {
        height: 370px;
        padding: 28px;
        border-radius: 30px;
    }

    .feature-card--large {
        height: 340px;
        border-radius: 24px;
    }

    .feature-card--large .feature-card__content {
        max-width: 450px;
    }

    .feature-card__title {
        font-size: 19px;
    }

    .feature-card__description {
        font-size: 13px;
    }

    .feature-card--large::after {
        width: 160px;
        height: 200px;
    }

    .steps {
        padding-block: 80px 130px;
    }

    .steps__container {
        max-width: 850px;
    }

    .steps__intro {
        max-width: 550px;
        margin-bottom: 45px;
    }

    .steps__title {
        font-size: 34px;
    }

    .steps__description {
        font-size: 16px;
    }

    .steps__list {
        gap: 25px;
    }

    .steps-item {
        gap: 60px;
    }

    .steps-item:nth-child(even) {
        padding-left: 30px;
    }

    .steps-item__media {
        max-width: 380px;
        border-radius: 20px;
    }

    .steps-item__content {
        max-width: 350px;
    }

    .steps-item__title {
        font-size: 19px;
    }

    .steps-item__description {
        font-size: 14px;
    }

    .steps-cta {
        margin-top: 70px;
    }

    .steps-cta__title {
        font-size: 22px;
    }

    .steps-cta__description {
        font-size: 15px;
    }

    .steps__wrapper::after {
        right: 3%;
    }

    .why-choose {
        padding: 110px 25px 65px;
    }

    .why-choose__container {
        max-width: 1100px;
        gap: 70px;
    }

    .why-choose__item {
        gap: 70px;
    }

    .why-choose__media {
        border-radius: 25px;
    }

    .why-choose__eyebrow {
        margin-bottom: 25px;
    }

    .why-choose__title {
        font-size: 34px;
    }

    .why-choose__description {
        font-size: 15px;
    }

    .why-choose__content {
        max-width: 460px;
    }

    .why-choose__actions {
        gap: 20px;
    }

    .faq {
        padding: 90px 50px 100px;
    }

    .faq__container {
        max-width: 850px;
    }

    .faq__title {
        font-size: 34px;
    }

    .faq__header {
        margin-bottom: 25px;
    }

    .faq__list {
        gap: 12px;
    }

    .faq-item__summary {
        padding: 10px 25px 10px 18px;
    }

    .faq-item__question {
        font-size: 16px;
    }

    .faq-item__answer {
        font-size: 13px;
    }

    .faq__footer {
        margin-top: 25px;
    }

    .faq__footer-text {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .cta-banner__container {
        max-width: 700px;
        gap: 12px;
    }

    .cta-banner__title {
        font-size: 34px;
    }

    .cta-banner__subtitle {
        font-size: 15px;
    }

    /*footer*/
    .footer {
        padding: 60px 25px 22px;
    }

    .footer__grid {
        column-gap: 3%;
        row-gap: 20px;
    }

    .footer__item--brand,
    .footer__item--contacts {
        padding-left: 10px;
    }

    .footer__item--map,
    .footer__item--funding,
    .footer__bottom {
        padding-right: 10px;
    }

    .footer__logo {
        max-width: 180px;
    }

    .footer__item--map {
        max-width: 420px;
    }

    .footer__map-card {
        padding: 20px 24px;
        border-radius: 18px;
    }

    .footer__support-title {
        font-size: 18px;
    }

    .footer__support-text {
        font-size: 12px;
        max-width: 400px;
    }

    .footer__map-title {
        font-size: 23px;
        margin-bottom: 22px;
    }

    .footer__map-address {
        font-size: 11px;
    }

    .footer__funding-img {
        max-width: 240px;
    }

    .footer__bottom {
        margin-top: 35px;
    }

    /*SINGLE SERVICE*/
    .service-hero {
        padding-block: 130px 55px;
    }

    .service-hero__container {
        max-width: 950px;
        padding-inline: 30px;
    }

    .service-hero__title {
        font-size: 34px;
    }

    .service-hero__subtitle {
        font-size: 26px;
    }

    .service-hero__description {
        font-size: 15px;
    }

    .service-hero__row--intro {
        padding-right: 20px;
        gap: 8%;
    }

    .service-hero__row--details {
        margin-top: 70px;
        gap: 8%;
    }

    .service-hero__details-title {
        font-size: 26px;
    }

    .service-hero__details-text {
        font-size: 13px;
    }

    .service-hero__icon {
        width: 100px;
    }

    .tag {
        font-size: 13px;
        padding: 9px 13px;
    }

    .service-help {
        padding-block: 55px 60px;
    }

    .service-help__container {
        max-width: 1150px;
        padding-inline: 30px;
    }

    .service-help__row {
        gap: 5%;
    }

    .service-help__content {
        max-width: 350px;
    }

    .service-help__header {
        gap: 10px;
    }

    .service-help__title {
        font-size: 24px;
    }

    .service-help__list {
        gap: 10px;
        padding-left: 5px;
    }

    .service-help__list li {
        font-size: 14px;
        padding-left: 14px;
    }

    .service-help__media {
        gap: 15px;
    }

    .service-help__img {
        border-radius: 20px;
    }

    .service-steps {
        padding-block: 70px 120px;
    }

    .service-steps__container {
        max-width: 1050px;
        padding-inline: 30px;
    }

    .service-steps__row {
        gap: 10%;
    }

    .service-steps__media {
        border-radius: 22px;
    }

    .service-steps__title {
        font-size: 26px;
    }

    .service-steps__item {
        font-size: 14px;
        padding: 18px 30px 18px 70px;
    }

    .service-steps__item::before {
        font-size: 46px;
    }

    .related-services {
        padding-block: 60px 15px;
    }

    .related-services__container {
        max-width: 1200px;
        padding-inline: 30px;
    }

    .related-services__title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .related-services__list {
        gap: 14px;
    }

    .related-card {
        padding: 18px;
        border-radius: 16px;
    }

    .related-card__icon {
        width: 50px;
    }

    .related-card__footer {
        min-height: 100px;
        padding-top: 6px;
    }

    /*common pages*/
    .common-page {
        padding: 165px 0 70px;
    }
}
@media screen and (max-width: 1366px) {
	.hero__media {
        max-width: 1050px;
    }
    .hero__title {
        font-size: 42px;
    }   
    .hero__description {
        font-size: 15px;
    }     
}
@media screen and (max-width: 1280px) {

    /*genericos*/
    .btn {
        padding: 18px;
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .label {
        font-size: 11px;
        letter-spacing: 0.3px;
        padding: 8px 9px;
    }

    .btn-link {
        font-size: 11px;
        letter-spacing: 0.3px;
        gap: 10px;
    }

    /*header*/
    .header__container {
        padding: 20px;
    }

    .header__logo img {
        width: 120px;
    }

    .header__nav>.menu>.menu-item:last-child {
        margin-left: 20px;
    }

    .header__nav>.menu>.menu-item>a:not(.header__contact) {
        font-size: 10px;
        letter-spacing: 0.2px;
    }

    .header__contact {
        padding: 15px;
        font-size: 10px;
        border-radius: 10px;
    }

    /*LP PAGE*/
    .hero {
        padding: 0 20px 125px;
    }



    .hero__title {
        font-size: 40px;
        letter-spacing: -0.4px;
    }

    .hero__description {
        font-size: 14px;
        max-width: 650px;
    }

    .hero__content {
        max-width: 585px;
    }

    .about {
        padding: 90px 40px;
    }

    .about__container {
        gap: 4%;
        grid-template-columns: 52% 1fr;
    }

    .about__media-grid {
        gap: 18px 20px;
    }

    .about__content h2 {
        font-size: 30px;
    }

    .about__content p strong {
        font-size: 16px;
    }

    .about__content p {
        font-size: 14px;
    }

    .about__stat-number {
        font-size: 52px;
        letter-spacing: -1.5px;
    }

    .about__stat-label {
        font-size: 15px;
    }

    .about__media--small {
        margin-bottom: 0;
    }

    .services {
        padding: 70px 20px 80px;
    }

    .services__container {
        max-width: 900px;
        gap: 30px;
    }

    .services__intro {
        max-width: 700px;
    }

    .services__title {
        font-size: 30px;
    }

    .services__description {
        font-size: 15px;
    }

    .services__grid {
        gap: 18px;
    }

    .service-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .service-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }

    .service-card__title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .service-card__description {
        font-size: 12px;
        margin-bottom: 18px;
        line-height: 150%;
    }

    .features {
        padding: 80px 20px 180px;
    }

    .features__container {
        max-width: 1080px;
    }

    .features__intro {
        max-width: 500px;
        margin-bottom: 35px;
    }

    .features__title {
        font-size: 30px;
    }

    .features__description {
        font-size: 15px;
    }

    .features__grid {
        gap: 18px 12px;
    }

    .feature-card {
        height: 340px;
        padding: 25px;
        border-radius: 25px;
    }

    .feature-card--large {
        height: 310px;
        border-radius: 20px;
    }

    .feature-card--large .feature-card__content {
        max-width: 400px;
    }

    .feature-card__title {
        font-size: 18px;
    }

    .feature-card__description {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .feature-card--large::after {
        width: 140px;
        height: 180px;
    }

    .steps {
        padding-block: 70px 110px;
    }

    .steps__container {
        max-width: 780px;
    }

    .steps__intro {
        max-width: 500px;
        margin-bottom: 40px;
    }

    .steps__title {
        font-size: 30px;
        max-width: 420px;
    }

    .steps__description {
        font-size: 15px;
    }

    .steps__list {
        gap: 20px;
    }

    .steps-item {
        gap: 45px;
    }

    .steps-item:nth-child(even) {
        padding-left: 20px;
    }

    .steps-item__media {
        max-width: 340px;
        border-radius: 18px;
    }

    .steps-item__content {
        max-width: 320px;
    }

    .steps-item__step {
        font-size: 11px;
    }

    .steps-item__header {
        gap: 10px;
    }

    .steps-item__title {
        font-size: 17px;
    }

    .steps-item__description {
        font-size: 13px;
    }

    .steps-cta {
        margin-top: 60px;
    }

    .steps-cta__title {
        font-size: 20px;
    }

    .steps-cta__description {
        font-size: 14px;
    }

    .steps__wrapper::after {
        right: 0;
    }

    .why-choose {
        padding: 95px 20px 55px;
    }

    .why-choose__container {
        max-width: 1000px;
        gap: 60px;
    }

    .why-choose__item {
        gap: 50px;
    }

    .why-choose__media {
        border-radius: 20px;
    }

    .why-choose__eyebrow {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .why-choose__title {
        font-size: 30px;
    }

    .why-choose__description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .why-choose__content {
        max-width: 420px;
    }

    .why-choose__media--logo::after {
        max-width: 150px;
    }

    /*footer*/
    .footer {
        padding: 50px 20px 20px;
    }

    .footer__grid {
        column-gap: 2.5%;
        row-gap: 18px;
    }

    .footer__item--brand {
        padding-left: 0;
    }

    .footer__item.footer__item--contacts {
        padding-left: 0;
    }

    .footer__item--map,
    .footer__item--funding,
    .footer__bottom,
    .footer__item.footer__item--funding {
        padding-right: 0;
    }

    .footer__logo {
        max-width: 160px;
    }

    .footer__item--map {
        max-width: 360px;
    }

    .footer__map-card {
        padding: 18px 20px;
        border-radius: 15px;
    }

    .footer__support-header {
        gap: 10px;
        margin-bottom: 7px;
    }

    .footer__support-title {
        font-size: 17px;
    }

    .footer__support-text {
        font-size: 11px;
        max-width: 340px;
    }

    .footer__map-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .footer__map-address {
        font-size: 10px;
    }

    .footer__title {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .footer-nav .menu-item a,
    .footer__contacts-list a {
        font-size: 12px;
    }

    .footer__contacts-list .footer_email,
    .footer__contacts-list .footer_number {
        font-size: 13px;
    }

    .footer__funding-img {
        max-width: 200px;
    }

    .footer__bottom {
        margin-top: 30px;
    }

    /*SINGLE SERVICE*/
    .service-hero {
        padding-block: 115px 50px;
    }

    .service-hero__container {
        max-width: 880px;
        padding-inline: 25px;
    }

    .service-hero__title {
        font-size: 30px;
    }

    .service-hero__subtitle {
        font-size: 24px;
    }

    .service-hero__description {
        font-size: 14px;
    }

    .service-hero__row--intro {
        gap: 6%;
    }

    .service-hero__row--details {
        margin-top: 60px;
        gap: 6%;
    }

    .service-hero__details-title {
        font-size: 24px;
    }

    .service-hero__details-text {
        font-size: 12px;
    }

    .service-hero__icon {
        width: 90px;
    }

    .tag {
        font-size: 12px;
        padding: 8px 12px;
    }

    .tag:nth-child(3) {
        margin-left: 30px;
    }

    .service-help {
        padding-block: 50px 55px;
    }

    .service-help__container {
        max-width: 1050px;
        padding-inline: 25px;
    }

    .service-help__row {
        gap: 4%;
    }

    .service-help__content {
        max-width: 330px;
    }

    .service-help__title {
        font-size: 22px;
        line-height: 125%;
    }

    .service-help__list {
        gap: 8px;
    }

    .service-help__list li {
        font-size: 13px;
        line-height: 150%;
    }

    .service-steps {
        padding-block: 60px 105px;
    }

    .service-steps__container {
        max-width: 950px;
        padding-inline: 25px;
    }

    .service-steps__row {
        gap: 8%;
    }

    .service-steps__media {
        border-radius: 20px;
    }

    .service-steps__title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .service-steps__list {
        gap: 12px;
        margin-bottom: 25px;
    }

    .service-steps__item {
        font-size: 13px;
        padding: 16px 25px 16px 60px;
        border-radius: 18px;
    }

    .service-steps__item::before {
        font-size: 42px;
    }

    .related-services {
        padding-block: 55px 12px;
    }

    .related-services__container {
        max-width: 1100px;
        padding-inline: 25px;
    }

    .related-services__title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .related-services__list {
        gap: 12px;
    }

    .related-card {
        padding: 16px;
        border-radius: 14px;
    }

    .related-card__icon {
        width: 45px;
    }

    .related-card__footer {
        min-height: 90px;
        padding-top: 5px;
    }

    /*common pages*/
    .common-container {
        max-width: 800px;
        padding-inline: 40px;
    }
}

@media screen and (max-width: 1024px) {

    /*genericos*/
    .btn {
        padding: 16px;
        font-size: 11px;
        border-radius: 12px;
    }

    .label {
        font-size: 11px;
        padding: 8px;
    }

    .btn-link {
        font-size: 11px;
        gap: 8px;
    }

    .btn-link::after {
        width: 16px;
        height: 9px;
    }

    /*header*/
    .header__container {
        padding: 20px;
        position: relative;
        z-index: 1001;
        background-color: #ffffff91;
    }

    .header__logo img {
        width: 130px;
    }

    /* Mostra hambúrguer */
    .header__hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 1002;
    }

    .header__hamburger span {
        display: block;
        width: 28px;
        height: 2px;
        background-color: var(--ink);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .header::before {
        content: "";
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        pointer-events: none;
    }

    .header.is-menu-open::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Esconde nav normal e prepara slide-in */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 380px;
        height: 100vh;
        background-color: var(--snow);
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Estado aberto - slide-in */
    .header.is-menu-open .header__nav {
        right: 0;
    }

    /* Menu vertical */
    .header__nav .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .header__nav .menu-item {
        width: 100%;
        border-bottom: 1px solid #E5E0DC;
    }

    .header__nav>.menu>.menu-item:last-child {
        margin-left: 0;
        border-bottom: none;
        margin-top: 20px;
    }

    /* Links do menu */
    .header__nav>.menu>.menu-item>a:not(.header__contact) {
        color: var(--ink);
        font-size: 16px;
        letter-spacing: 0.4px;
        padding: 18px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        text-align: left;
    }

    /* Seta do dropdown escura */
    .menu-item-has-children>.menu-item__link::after {
        filter: brightness(0) saturate(100%) invert(14%) sepia(8%) saturate(632%) hue-rotate(338deg) brightness(95%) contrast(89%);
    }

    /* Sub-menu como accordion */
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        border-radius: 0;
        background-color: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .menu-item-has-children.is-open .sub-menu {
        max-height: 800px;
    }

    .sub-menu .menu-item {
        border-bottom: none;
    }

    .sub-menu .menu-item>a {
        padding: 12px 0 12px 20px;
        font-size: 14px;
        color: var(--stone);
        white-space: normal;
    }

    /* Botão contactar no menu */
    .header__contact {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 20px;
        font-size: 14px;
        border-radius: 15px;
    }

    /* Transformação hambúrguer para X */
    .header.is-menu-open .header__hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .header.is-menu-open .header__hamburger span:nth-child(2) {
        opacity: 0;
    }

    .header.is-menu-open .header__hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /*LP PAGE*/
    .hero {
        padding: 0;
        height: auto;
        min-height: 100svh;
        justify-content: flex-end;
    }

    .hero__media {
        max-width: 100%;
    }

    .hero__media img {
        height: 400px;
        object-fit: cover;
    }

    .hero__content {
        padding: 40px 30px 90px;
        max-width: 100%;
    }

    .hero__title {
        text-wrap: balance;
        font-size: 52px;
        letter-spacing: -0.5px;
    }

    .hero__description {
        font-size: 18px;
        max-width: 600px;
    }

    .about {
        padding: 80px 30px;
    }

    .about__container {
        gap: 4%;
        grid-template-columns: 45% 1fr;
    }

    .about__media-grid {
        grid-template-columns: 52% 1fr;
        grid-template-rows: auto auto;
        gap: 15px;
    }

    .about__media--large {
        grid-column: 1 / -1;
        grid-row: 1;
        border-radius: 30px;
    }

    .about__media--small {
        grid-column: 1;
        grid-row: 2;
        margin-bottom: 0;
        border-radius: 30px;
    }

    .about__stat {
        grid-column: 2;
        grid-row: 2;
        margin-top: 0;
        padding-left: 0;
        justify-content: start;
        align-items: center;
        align-self: center;
    }

    .about__content h2 {
        font-size: 28px;
    }

    .about__content p strong {
        font-size: 15px;
    }

    .about__stat-number {
        font-size: 55px;
    }

    .about__stat-label {
        font-size: 15px;
        text-align: center;
    }

    .services {
        padding: 65px 18px 75px;
    }

    .services__container {
        max-width: 850px;
        gap: 28px;
    }

    .services__intro {
        max-width: 650px;
    }

    .services__title {
        font-size: 28px;
    }

    .services__description {
        font-size: 14px;
    }

    .services__grid {
        gap: 15px;
    }

    .service-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .service-card__icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .service-card__title {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .service-card__description {
        margin-bottom: 15px;
    }

    .features {
        padding: 70px 18px 160px;
    }

    .features__container {
        max-width: 850px;
    }

    .features__intro {
        max-width: 450px;
        margin-bottom: 30px;
    }

    .features__title {
        font-size: 28px;
    }

    .features__description {
        font-size: 14px;
        max-width: 350px;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-card--large {
        grid-column: auto;
        height: 300px;
        border-radius: 20px;
        justify-content: flex-end;
    }

    .feature-card--large .feature-card__content {
        max-width: 100%;
    }

    .feature-card--large::before {
        background: linear-gradient(0deg, #F2EFED 29.03%, rgba(242, 239, 237, 0.00) 77.27%);
    }

    .feature-card {
        height: 300px;
        padding: 22px;
        border-radius: 20px;
    }

    .feature-card__title {
        font-size: 16px;
        line-height: 125%;
    }

    .feature-card__description {
        font-size: 11px;
        line-height: 140%;
        margin-bottom: 5px;
    }

    .feature-card--large::after {
        width: 100px;
        height: 130px;
    }

    .steps {
        padding-block: 60px 90px;
    }

    .steps__container {
        max-width: 700px;
        padding-inline: 30px;
    }

    .steps__intro {
        max-width: 450px;
        margin-bottom: 35px;
    }

    .steps__title {
        font-size: 28px;
        max-width: 380px;
    }

    .steps__description {
        font-size: 14px;
    }

    .steps__list {
        gap: 18px;
    }

    .steps-item {
        gap: 30px;
    }

    .steps-item:nth-child(even) {
        padding-left: 0;
    }

    .steps-item__media {
        max-width: 300px;
        border-radius: 15px;
    }

    .steps-item__content {
        max-width: 290px;
    }

    .steps-item__header {
        gap: 8px;
        flex-wrap: wrap;
    }

    .steps-item__title {
        font-size: 16px;
        line-height: 140%;
    }

    .steps-item__description {
        font-size: 12px;
    }

    .steps-cta {
        margin-top: 50px;
    }

    .steps-cta__title {
        font-size: 18px;
    }

    .steps-cta__description {
        font-size: 13px;
    }

    .steps__wrapper::after {
        bottom: -22.5%;
    }

    .why-choose {
        padding: 80px 18px 45px;
    }

    .why-choose__container {
        max-width: 900px;
        gap: 50px;
    }

    .why-choose__item {
        gap: 35px;
    }

    .why-choose__media {
        border-radius: 18px;
    }

    .why-choose__eyebrow {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .why-choose__title {
        font-size: 28px;
    }

    .why-choose__description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .why-choose__content {
        max-width: 380px;
    }

    .why-choose__media--logo::after {
        max-width: 120px;
    }

    .faq {
        padding: 70px 30px 80px;
    }

    .faq__container {
        max-width: 750px;
    }

    .faq__title {
        font-size: 28px;
    }

    .faq__header {
        margin-bottom: 20px;
    }

    .faq__list {
        gap: 10px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-item__summary {
        padding: 8px 20px 8px 15px;
        gap: 15px;
    }

    .faq-item__summary::after {
        width: 30px;
        height: 30px;
        background-size: 8px auto;
    }

    .faq-item__question {
        font-size: 14px;
    }

    .faq-item__content {
        padding: 0 15px 15px;
    }

    .faq-item__answer {
        font-size: 12px;
    }

    .faq__footer {
        margin-top: 20px;
    }

    .faq__footer-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .cta-banner {
        padding-inline: 30px;
    }

    .cta-banner__container {
        max-width: 650px;
        gap: 10px;
    }

    .cta-banner__title {
        font-size: 28px;
    }

    .cta-banner__subtitle {
        font-size: 14px;
    }

    /*footer*/
    .footer {
        padding: 45px 20px 18px;
    }

    .footer__grid {
        column-gap: 2%;
        row-gap: 15px;
    }

    .footer__logo {
        max-width: 140px;
    }

    .footer__item--map {
        max-width: 300px;
        padding-bottom: 0;
    }

    .footer__map-card {
        padding: 15px 18px;
        border-radius: 12px;
    }

    .footer__support-title {
        font-size: 16px;
    }

    .footer__support-text {
        font-size: 11px;
        max-width: 300px;
    }

    .footer__map-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer__map-address {
        font-size: 10px;
    }

    .footer__title {
        font-size: 10px;
        letter-spacing: 0.4px;
    }

    .footer-nav .menu-item a,
    .footer__contacts-list a {
        font-size: 11px;
    }

    .footer__contacts-list .footer_email,
    .footer__contacts-list .footer_number {
        font-size: 12px;
    }

    .footer__label {
        font-size: 7px;
    }

    .footer__bottom {
        margin-top: 25px;
    }

    .footer__credits {
        font-size: 12px;
    }

    .footer__blisq-logo {
        width: 30px;
    }

    /*SINGLE SERVICE*/
    .service-hero {
        padding-block: 100px 45px;
    }

    .service-hero__container {
        max-width: 800px;
        padding-inline: 20px;
    }

    .service-hero__title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .service-hero__subtitle {
        font-size: 22px;
    }

    .service-hero__description {
        font-size: 13px;
        line-height: 160%;
    }

    .service-hero__row--intro {
        gap: 5%;
    }

    .service-hero__row--details {
        margin-top: 50px;
        gap: 5%;
    }

    .service-hero__details-title {
        font-size: 22px;
    }

    .service-hero__details-text {
        font-size: 11px;
    }

    .service-hero__icon {
        width: 80px;
    }

    .tag {
        font-size: 11px;
        padding: 7px 10px;
        border-radius: 9px;
    }

    .tag:nth-child(3) {
        margin-left: 0;
    }

    .service-hero__tags {
        justify-content: center;
    }

    .service-help {
        padding-block: 45px 50px;
    }

    .service-help__container {
        max-width: 950px;
        padding-inline: 20px;
    }

    .service-help__row {
        gap: 3%;
    }

    .service-help__content {
        max-width: 310px;
    }

    .service-help__title {
        font-size: 20px;
    }

    .service-help__list li {
        font-size: 12px;
    }

    .service-help__media {
        gap: 12px;
    }

    .service-help__img {
        border-radius: 18px;
    }

    .service-steps {
        padding-block: 50px 90px;
    }

    .service-steps__container {
        max-width: 850px;
        padding-inline: 20px;
    }

    .service-steps__media {
        border-radius: 18px;
    }

    .service-steps__title {
        font-size: 22px;
        margin-bottom: 20px;
        max-width: 350px;
    }

    .service-steps__list {
        gap: 10px;
        margin-bottom: 20px;
    }

    .service-steps__item {
        font-size: 12px;
        padding: 14px 20px 14px 50px;
        border-radius: 15px;
        line-height: 150%;
    }

    .service-steps__item::before {
        font-size: 38px;
    }

    .related-services {
        padding-block: 50px 10px;
    }

    .related-services__container {
        max-width: 950px;
        padding-inline: 20px;
    }

    .related-services__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .related-services__list {
        gap: 10px;
    }

    .related-card {
        padding: 14px;
        border-radius: 12px;
    }

    .related-card__icon {
        width: 40px;
    }

    .related-card__footer {
        min-height: 80px;
        padding-top: 4px;
    }

    /*common pages*/
    .common-container {
        max-width: 750px;
        padding-inline: 35px;
    }

    .common-title {
        font-size: 38px;
    }

    .common-content h2 {
        font-size: 22px;
    }

    .common-content p,
    .common-content li {
        font-size: 15px;
    }

    .common-content th,
    .common-content td {
        font-size: 14px;
        padding: 14px;
    }
}

@media screen and (max-width: 900px) {

    /*LP PAGE*/
    .steps__container {
        max-width: 100%;
    }

    .steps-item {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        width: 100%;
        justify-items: center;
    }

    .steps-item__media,
    .steps-item__content {
        width: 100%;
        max-width: 100%;
    }

    /*footer*/
    .footer__grid {
        grid-template-columns: auto 1fr auto;
        column-gap: 4%;
        row-gap: 25px;
    }

    /* Linha 1 */
    .footer__item--brand {
        grid-column: 1;
        grid-row: 1;
        padding-left: 0;
    }

    .footer__item--support {
        grid-column: 2;
        grid-row: 1;
    }

    .footer__item--map {
        grid-column: 3;
        grid-row: 1;
        max-width: 280px;
        padding-bottom: 0;
    }

    .footer__divider {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    /* Linha 2 */
    .footer__item--contacts {
        grid-column: 1;
        grid-row: 3;
        padding-left: 0;
    }

    .footer__item--services {
        grid-column: 2;
        grid-row: 3;
        justify-self: center;
    }

    .footer__item--legal {
        grid-column: 3;
        grid-row: 3;
    }

    /* Linha 3 - Funding alinhado à direita */
    .footer__item--funding {
        grid-column: 3;
        grid-row: 4;
        padding-right: 0;
        justify-self: end;
    }

    /*SINGLE PAGE*/
    .service-help__container {
        max-width: 100%;
        padding-inline: 30px;
    }

    .service-help__row {
        gap: 3%;
    }

    .service-help__content {
        max-width: 280px;
    }

    .service-help__title {
        font-size: 18px;
    }

    .service-help__list li {
        font-size: 11px;
    }

    .service-help__media {
        width: 62%;
        gap: 10px;
    }

    .service-steps__container {
        max-width: 100%;
        padding-inline: 30px;
    }

    .service-steps__row {
        gap: 5%;
    }

    .service-steps__title {
        font-size: 21px;
        max-width: 320px;
    }

    .service-steps__item {
        font-size: 11px;
        padding: 13px 18px 13px 45px;
    }

    .service-steps__item::before {
        font-size: 35px;
    }

    /*common pages*/
    .common-page {
        padding: 150px 0 60px;
    }

    .common-container {
        max-width: 100%;
        padding-inline: 30px;
    }

    .common-title {
        font-size: 34px;
    }

    .common-content h2 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 14px;
    }

    .common-content p,
    .common-content li {
        font-size: 14px;
    }

    .common-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .common-content th,
    .common-content td {
        font-size: 13px;
        padding: 12px;
    }
}

@media screen and (max-width: 768px) {

    /*genericos*/
    .btn {
        padding: 15px;
        font-size: 11px;
        letter-spacing: 0.2px;
    }

    .label {
        font-size: 10px;
        letter-spacing: 0.2px;
        padding: 7px 8px;
        gap: 4px;
    }

    .label::before {
        width: 12px;
        height: 12px;
    }

    .btn-link {
        font-size: 11px;
        letter-spacing: 0.2px;
    }

    /*header*/
    .header__container {
        padding: 15px;
    }

    .header__logo img {
        width: 110px;
    }

    .header__nav {
        width: 340px;
        padding: 70px 25px 25px;
    }

    .header__nav>.menu>.menu-item>a:not(.header__contact) {
        font-size: 15px;
        padding: 16px 0;
    }

    .sub-menu .menu-item>a {
        font-size: 13px;
        padding: 11px 0 11px 18px;
    }

    .header__contact {
        padding: 18px;
        font-size: 13px;
    }

    /*LP PAGE*/
    .hero__content {
        padding: 35px 25px 100px;
    }

    .hero__title {
        font-size: 42px;
        letter-spacing: -0.4px;
    }

    .hero__description {
        font-size: 16px;
        max-width: 500px;
    }

    .hero__eyebrow {
        font-size: 14px;
    }

    .hero__actions {
        gap: 15px;
    }

    .about {
        padding: 70px 25px;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about__content {
        order: 1;
        max-width: 100%;
        text-align: start;
        align-items: start;
        margin: 0 auto;
    }

    .about__media-grid {
        order: 2;
        grid-template-columns: 67.83% auto;
        grid-template-rows: auto auto;
        gap: 20px 25px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .about__media--large {
        grid-column: 1;
        grid-row: 1 / span 2;
        border-radius: 25px;
    }

    .about__stat {
        grid-column: 2;
        grid-row: 1;
        margin-top: 20px;
        padding-left: 8px;
        justify-content: flex-end;
        align-items: flex-start;
        align-self: auto;
    }

    .about__media--small {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 0;
        border-radius: 25px;
    }

    .about__content h2 {
        font-size: 26px;
        max-width: 500px;
    }

    .about__stat-number {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .about__stat-label {
        font-size: 14px;
        text-align: left;
    }

    .services {
        padding: 60px 15px 70px;
    }

    .services__container {
        gap: 25px;
    }

    .services__intro {
        max-width: 550px;
    }

    .services__title {
        font-size: 26px;
    }

    .services__grid {
        gap: 12px;
    }

    .service-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .service-card__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .service-card__title {
        font-size: 15px;
        line-height: 125%;
    }

    .service-card__description {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .features {
        padding: 60px 15px 140px;
    }

    .features__container {
        max-width: 700px;
    }

    .features__intro {
        max-width: 400px;
        margin-bottom: 25px;
    }

    .features__title {
        font-size: 26px;
    }

    .features__description {
        font-size: 13px;
        max-width: 320px;
    }

    .features__grid {
        gap: 12px;
    }

    .feature-card,
    .feature-card--large {
        padding: 20px;
        border-radius: 18px;
    }

    .feature-card__title {
        font-size: 15px;
        line-height: 120%;
    }

    .feature-card__description {
        font-size: 11px;
        line-height: 135%;
        margin-bottom: 4px;
    }

    .feature-card--large::after {
        width: 80px;
        height: 110px;
    }

    .steps {
        padding-block: 50px 70px;
    }

    .steps__container {
        max-width: 100%;
        padding-inline: 25px;
    }

    .steps__intro {
        max-width: 400px;
        margin-bottom: 30px;
    }

    .steps__title {
        font-size: 26px;
        max-width: 350px;
    }

    .steps__description {
        font-size: 13px;
    }

    .steps__list {
        gap: 30px;
    }

    .steps-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-item:nth-child(odd) .steps-item__media,
    .steps-item:nth-child(even) .steps-item__media {
        grid-column: 1;
        grid-row: 2;
    }

    .steps-item:nth-child(odd) .steps-item__content,
    .steps-item:nth-child(even) .steps-item__content {
        grid-column: 1;
        grid-row: 1;
    }

    .steps-item:nth-child(even) {
        padding-left: 0;
    }

    .steps-item__media {
        max-width: 80%;
        border-radius: 20px;
    }

    .steps-item__content {
        max-width: 100%;
    }

    .steps-item__title {
        font-size: 18px;
    }

    .steps-item__description {
        font-size: 13px;
    }

    .steps-cta {
        margin-top: 40px;
    }

    .steps__wrapper::after {
        bottom: -7.5%;
    }

    .why-choose {
        padding: 70px 15px 40px;
    }

    .why-choose__container {
        max-width: 100%;
        gap: 40px;
    }

    .why-choose__item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose__content {
        order: 1;
        max-width: 100%;
    }

    .why-choose__media {
        order: 2;
        border-radius: 20px;
        max-width: 80%;
        margin: 0 auto;
    }

    .why-choose__eyebrow {
        margin-bottom: 12px;
    }

    .why-choose__title {
        font-size: 26px;
    }

    .why-choose__description {
        font-size: 13px;
        margin-bottom: 10px;
    }

    /*footer*/
    .footer {
        padding: 40px 25px 25px;
    }

    .footer__grid {
        grid-template-columns: 1fr auto;
        column-gap: 5%;
    }

    /* Linha 1 - Logo e Mapa */
    .footer__item--brand {
        grid-column: 1;
        grid-row: 1;
        padding-left: 0;
    }

    .footer__item--map {
        grid-column: 2;
        grid-row: 1;
        max-width: 280px;
        padding-bottom: 0;
    }

    /* Linha 2 - Suporte full width */
    .footer__item--support {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .footer__support-text {
        max-width: 55%;
    }

    .footer__item--funding {
        align-self: flex-end;
    }

    /* Divider */
    .footer__divider {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .footer__item--contacts {
        grid-column: 1;
        grid-row: 4;
        padding-left: 0;
    }

    .footer__item--services {
        grid-column: 1;
        grid-row: 5;
        justify-self: start;
    }

    .footer__item--legal {
        grid-column: 2;
        grid-row: 4;
    }

    .footer__item--funding {
        grid-column: 2;
        grid-row: 5;
        padding-right: 0;
        justify-self: end;
    }

    .footer__funding-img {
        max-width: 240px;
    }

    .footer__logo {
        max-width: 160px;
    }

    .footer__map-card {
        padding: 15px 18px;
        border-radius: 12px;
    }

    .footer__support-title {
        font-size: 18px;
    }

    .footer__map-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer__title {
        font-size: 11px;
    }

    .footer-nav .menu-item a,
    .footer__contacts-list a {
        font-size: 12px;
    }

    /*SINGLE SERVICE*/
    .service-hero {
        padding-block: 90px 40px;
    }

    .service-hero__container {
        max-width: 100%;
        padding-inline: 25px;
    }

    .service-hero__title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .service-hero__subtitle {
        font-size: 20px;
    }

    .service-hero__description {
        font-size: 12px;
        line-height: 150%;
    }

    .service-hero__row--intro {
        gap: 4%;
    }

    .service-hero__row--details {
        margin-top: 40px;
        gap: 4%;
    }

    .service-hero__details-title {
        font-size: 20px;
    }

    .service-hero__details-text {
        font-size: 10px;
    }

    .service-hero__icon {
        width: 60px;
    }

    .tag {
        font-size: 10px;
        padding: 6px 9px;
        border-radius: 8px;
    }

    .service-help {
        padding-block: 40px 45px;
    }

    .service-help__container {
        padding-inline: 25px;
    }

    .service-help__row {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .service-help__content {
        max-width: 100%;
        width: 100%;
        order: 1;
    }

    .service-help__header {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 8px;
    }

    .service-help__title {
        font-size: 20px;
    }

    .service-help__list li {
        font-size: 12px;
    }

    .service-help__media {
        width: 100%;
        order: 2;
        gap: 15px;
    }

    .service-help__img {
        border-radius: 20px;
    }

    .service-steps {
        padding-block: 40px 60px;
    }

    .service-steps__container {
        padding-inline: 25px;
    }

    .service-steps__row {
        flex-direction: column;
        gap: 30px;
    }

    .service-steps__content {
        max-width: 100%;
        width: 100%;
        order: 1;
    }

    .service-steps__title {
        font-size: 20px;
        margin: unset;
        margin-bottom: 25px;
        max-width: 260px;
        text-align: start;
    }

    .service-steps__list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }

    .service-steps__item {
        font-size: 12px;
        padding: 15px 18px 15px 50px;
    }

    .service-steps__item::before {
        font-size: 38px;
        left: -0.8%;
    }

    .service-steps__media {
        width: 50%;
        order: 2;
        border-radius: 20px;
        margin: 0 auto;
    }

    .related-services {
        padding-block: 45px 10px;
    }

    .related-services__container {
        max-width: 100%;
        padding-inline: 0;
    }

    .related-services__title {
        padding-inline: 25px;
        margin-bottom: 20px;
        font-size: 24px;
    }

    .related-services__list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-block: 0 10px;
        padding-inline: 25px;
        cursor: grab;
    }

    .related-services__list:active {
        cursor: grabbing;
    }

    .related-services__list::-webkit-scrollbar {
        display: none;
    }

    .related-services__list {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .related-card {
        flex: 0 0 200px;
        scroll-snap-align: start;
        padding: 18px;
        border-radius: 15px;
    }

    .related-card__icon {
        width: 45px;
    }

    .related-card__footer {
        min-height: 90px;
    }

    /*common pages*/
    .common-page {
        padding: 140px 0 50px;
    }

    .common-container {
        padding-inline: 25px;
    }

    .common-title {
        font-size: 30px;
    }

    .common-content h2 {
        font-size: 18px;
        margin-top: 26px;
        margin-bottom: 12px;
    }

    .common-content p,
    .common-content li {
        font-size: 13px;
    }

    .common-content ul {
        padding-left: 10px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .common-content th,
    .common-content td {
        font-size: 12px;
        padding: 10px;
    }
}

@media screen and (max-width: 640px) {

    /*header*/
    .header__hamburger {
        width: 35px;
        height: 35px;
        gap: 5px;
    }

    .header__hamburger span {
        width: 24px;
    }

    .header.is-menu-open .header__hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header.is-menu-open .header__hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header__nav {
        width: 100%;
        padding: 80px 25px 25px;
    }

    .header__nav>.menu>.menu-item>a:not(.header__contact) {
        font-size: 16px;
        padding: 18px 0;
    }

    .sub-menu .menu-item>a {
        font-size: 14px;
        padding: 12px 0 12px 20px;
    }

    /*LP PAGE*/
   .hero{
        min-height:auto;
   }
    .hero__content {
        padding: 30px 20px 100px;
    }

    .hero__media img {
        height: 50svh;
    }

    .hero__title {
        font-size: 34px;
        letter-spacing: -0.3px;
    }

    .hero__description {
        font-size: 14px;
        max-width: 80%;
        margin-bottom: 20px;
    }

    .hero__eyebrow {
        font-size: 13px;
    }

    .about {
        padding: 60px 20px;
    }

    .about__container {
        gap: 30px;
    }

    .about__media-grid {
        max-width: 100%;
        gap: 15px 20px;
    }

    .about__stat {
        margin-top: 15px;
    }

    .about__content h2 {
        font-size: 24px;
    }

    .about__content p strong {
        font-size: 14px;
    }

    .about__content p {
        font-size: 13px;
    }

    .about__stat-number {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .about__stat-label {
        font-size: 13px;
    }

    .services {
        padding: 60px 0 70px;
    }

    .services__container {
        max-width: 100%;
    }

    .services__intro {
        padding-inline: 20px;
    }

    .services__grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-block: 0 10px;
        padding-inline: 20px;
        margin-inline: -20px;
        cursor: grab;
    }

    .services__grid:active {
        cursor: grabbing;
    }

    .services__grid::-webkit-scrollbar {
        display: none;
    }

    .services__grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .service-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        padding: 25px 20px;
    }

    .service-card__icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .service-card__title {
        font-size: 16px;
    }

    .service-card__description {
        font-size: 11px;
    }

    .features {
        padding: 50px 0 120px;
    }

    .features__container {
        max-width: 100%;
        padding-inline: 20px;
    }

    .features__intro {
        max-width: 400px;
        margin-bottom: 25px;
    }

    .features__description {
        font-size: 13px;
        max-width: 300px;
    }

    .features__grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-block: 0 10px;
        padding-inline: 20px;
        margin-inline: -20px;
        cursor: grab;
    }

    .features__grid:active {
        cursor: grabbing;
    }

    .features__grid::-webkit-scrollbar {
        display: none;
    }

    .features__grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .feature-card,
    .feature-card--large {
        flex: 0 0 300px;
        scroll-snap-align: start;
        height: 300px;
        padding: 22px;
        border-radius: 20px;
    }

    .feature-card--large {
        grid-column: auto;
        justify-content: flex-end;
    }

    .feature-card--large .feature-card__content {
        max-width: 100%;
    }

    .feature-card--large::before {
        background: linear-gradient(0deg, #F2EFED 29.03%, rgba(242, 239, 237, 0.00) 77.27%);
    }

    .feature-card__title {
        font-size: 16px;
    }

    .feature-card__description {
        font-size: 11px;
    }

    .feature-card--large::after {
        width: 80px;
        height: 100px;
    }

    .steps {
        padding-block: 40px 60px;
    }

    .steps__container {
        padding-inline: 20px;
    }

    .steps__intro {
        max-width: 350px;
        margin-bottom: 25px;
    }

    .steps__title {
        font-size: 24px;
        max-width: 320px;
    }

    .steps__description {
        font-size: 12px;
    }

    .steps__list {
        gap: 25px;
    }

    .steps-item {
        gap: 15px;
    }

    .steps-item__media {
        border-radius: 18px;
    }

    .steps-item__title {
        font-size: 16px;
    }

    .steps-item__description {
        font-size: 12px;
    }

    .steps-cta__title {
        font-size: 18px;
    }

    .steps-cta__description {
        font-size: 12px;
    }

    .why-choose {
        padding: 60px 12px 35px;
    }

    .why-choose__container {
        gap: 35px;
    }

    .why-choose__title {
        font-size: 24px;
    }

    .why-choose__description {
        font-size: 12px;
    }

    .why-choose__media {
        border-radius: 18px;
    }

    .why-choose__media--logo::after {
        max-width: 100px;
    }

    .faq {
        padding: 50px 20px 60px;
    }

    .faq__container {
        max-width: 100%;
    }

    .faq__title {
        font-size: 24px;
    }

    .faq__list {
        gap: 8px;
    }

    .faq-item {
        border-radius: 10px;
    }

    .faq-item__summary {
        padding: 7px 12px 7px 10px;
        gap: 10px;
    }

    .faq-item__summary::after {
        width: 25px;
        height: 25px;
        background-size: 7px auto;
    }

    .faq-item__question {
        font-size: 12px;
        line-height: 140%;
    }

    .faq-item__content {
        padding: 0 12px 12px;
    }

    .faq-item__answer {
        font-size: 11px;
    }

    .faq__footer {
        margin-top: 18px;
    }

    .faq__footer-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .cta-banner {
        padding-inline: 20px;
    }

    .cta-banner__container {
        max-width: 100%;
        gap: 8px;
    }

    .cta-banner__title {
        font-size: 24px;
    }

    .cta-banner__subtitle {
        font-size: 13px;
    }

    /*footer*/
    .footer__support-text {
        max-width: 80%;
    }

    .footer__funding-img {
        max-width: 200px;
    }

    /*SINGLE SERVICE*/
    .service-hero {
        padding-block: 80px 35px;
    }

    .service-hero__container {
        padding-inline: 20px;
    }

    .service-hero__title {
        font-size: 24px;
        text-align: start;
    }

    .service-hero__row--intro {
        flex-direction: column;
        gap: 20px;
        padding-right: 0;
    }

    .service-hero__intro {
        max-width: 100%;
    }

    .service-hero__subtitle {
        font-size: 19px;
        text-align: start;
        text-wrap: balance;
    }

    .service-hero__description {
        font-size: 12px;
        text-align: start;
    }

    .service-hero__icon {
        width: 70px;
    }

    .service-hero__row--details {
        flex-direction: column;
        gap: 25px;
        margin-top: 35px;
    }

    .service-hero__tags {
        max-width: 100%;
        justify-content: center;
        gap: 10px;
        margin: 0 auto;
    }

    .service-hero__details {
        max-width: 100%;
        text-align: start;
    }

    .service-hero__details-title {
        font-size: 19px;
        text-align: start;
        text-wrap: balance;
    }

    .service-hero__details-text {
        font-size: 11px;
        text-align: start;
    }

    .service-help {
        padding-block: 35px 40px;
    }

    .service-help__container {
        padding-inline: 20px;
    }

    .service-help__row {
        gap: 25px;
    }

    .service-help__title {
        font-size: 19px;
    }

    .service-help__list li {
        font-size: 11px;
    }

    .service-help__media {
        gap: 12px;
    }

    .service-help__img {
        border-radius: 18px;
    }

    .service-steps {
        padding-block: 35px 50px;
    }

    .service-steps__container {
        padding-inline: 20px;
    }

    .service-steps__row {
        gap: 25px;
    }

    .service-steps__title {
        margin-bottom: 20px;
    }

    .service-steps__list {
        gap: 10px;
        margin-bottom: 20px;
    }

    .service-steps__item {
        font-size: 11px;
        padding: 13px 15px 13px 45px;
        border-radius: 15px;
    }

    .service-steps__item::before {
        font-size: 34px;
    }

    .service-steps__media {
        width: 70%;
        border-radius: 18px;
    }

    .related-services {
        padding-block: 40px 8px;
    }

    .related-services__title {
        padding-inline: 20px;
        margin-bottom: 18px;
        font-size: 22px;
    }

    .related-services__list {
        gap: 12px;
        padding-inline: 20px;
    }

    .related-card {
        flex: 0 0 180px;
        padding: 16px;
    }

    .related-card__icon {
        width: 40px;
    }

    .related-card__footer {
        min-height: 80px;
    }

    /*common pages*/
    .common-page {
        padding: 130px 0 40px;
    }

    .common-container {
        padding-inline: 20px;
    }

    .common-title {
        font-size: 27px;
        letter-spacing: -0.5px;
    }

    .common-content h2 {
        font-size: 17px;
    }

    .common-content p,
    .common-content li {
        font-size: 12px;
        line-height: 165%;
    }

    .common-content li::before {
        top: 9px;
        width: 3px;
        height: 3px;
    }
}

@media screen and (max-width: 550px) {

    /*LP PAGE*/
    .about {
        padding: 50px 18px;
    }

    .about__container {
        gap: 25px;
    }

    .about__media-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 15px;
    }

    .about__media--large {
        grid-column: 1 / -1;
        grid-row: 1;
        border-radius: 25px;
    }

    .about__stat {
        grid-column: 2;
        grid-row: 2;
        margin-top: 0;
        padding-left: 0;
        justify-content: start;
        align-items: center;
        align-self: center;
    }

    .about__media--small {
        grid-column: 1;
        grid-row: 2;
        margin-bottom: 0;
        border-radius: 25px;
    }

    .about__content h2 {
        font-size: 22px;
        line-height: 125%;
    }

    .about__content p strong {
        font-size: 13px;
    }

    .about__content p {
        font-size: 12px;
        max-width: 100%;
    }

    .about__stat-number {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .about__stat-label {
        font-size: 12px;
    }

    .steps-item__media,
    .why-choose__media {
        max-width: 100%;
    }
}

@media screen and (max-width: 500px) {

    /*genericos*/
    .btn {
        padding: 14px;
        font-size: 10px;
        border-radius: 10px;
    }

    .label {
        font-size: 10px;
        padding: 7px;
    }

    .btn-link {
        font-size: 10px;
    }

    /*header*/
    .header__hamburger {
        width: 32px;
        height: 32px;
        gap: 5px;
    }

    .header__hamburger span {
        width: 22px;
    }

    .header__nav {
        padding: 70px 20px 20px;
    }

    .header__nav>.menu>.menu-item>a:not(.header__contact) {
        font-size: 15px;
        padding: 15px 0;
    }

    .sub-menu .menu-item>a {
        font-size: 13px;
        padding: 10px 0 10px 15px;
    }

    .header__contact {
        padding: 16px;
        font-size: 12px;
    }

    /*LP PAGE*/
    .hero__content {
        padding: 25px 18px 0px;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__description {
        font-size: 13px;
        margin-bottom: 18px;
        max-width: 100%;
        text-wrap: balance;
    }

    .hero__eyebrow {
        font-size: 12px;
    }

    .about {
        padding: 50px 18px;
    }

    .about__container {
        gap: 25px;
    }

    .about__media-grid {
        gap: 12px 15px;
    }

    .about__media--large,
    .about__media--small {
        border-radius: 20px;
    }

    .about__stat {
        margin-top: 10px;
        padding-left: 5px;
    }

    .about__content h2 {
        font-size: 22px;
        line-height: 125%;
    }

    .about__content p strong {
        font-size: 13px;
    }

    .about__content p {
        font-size: 12px;
    }

    .about__stat-number {
        font-size: 34px;
    }

    .about__stat-label {
        font-size: 12px;
    }

    .services {
        padding: 50px 0 60px;
    }

    .services__title {
        font-size: 24px;
    }

    .services__description {
        font-size: 13px;
    }

    .services__intro {
        padding-inline: 18px;
    }

    .services__grid {
        gap: 12px;
        padding-inline: 18px;
        margin-inline: -18px;
    }

    .service-card {
        flex: 0 0 260px;
        padding: 20px 18px;
    }

    .features {
        padding: 40px 0 100px;
    }

    .features__container {
        padding-inline: 18px;
    }

    .features__intro {
        max-width: 100%;
    }

    .features__title {
        font-size: 24px;
    }

    .features__description {
        font-size: 12px;
        max-width: 280px;
    }

    .features__grid {
        gap: 12px;
        padding-inline: 18px;
        margin-inline: -18px;
    }

    .feature-card,
    .feature-card--large {
        height: 270px;
        padding: 20px;
        border-radius: 18px;
    }

    .feature-card__title {
        font-size: 15px;
    }

    .feature-card__description {
        font-size: 11px;
    }

    .feature-card--large::after {
        width: 70px;
        height: 90px;
    }

    .steps {
        padding-block: 30px 50px;
    }

    .steps__container {
        padding-inline: 18px;
    }

    .steps__title {
        font-size: 22px;
        max-width: 290px;
    }

    .steps__description {
        font-size: 11px;
    }

    .steps__list {
        gap: 20px;
    }

    .steps-item__media {
        border-radius: 15px;
    }

    .steps-item__title {
        font-size: 15px;
    }

    .steps-item__description {
        font-size: 11px;
    }

    .steps-cta__title {
        font-size: 16px;
    }

    .steps-cta__description {
        font-size: 11px;
    }

    .why-choose {
        padding: 50px 10px 30px;
    }

    .why-choose__container {
        gap: 30px;
    }

    .why-choose__eyebrow {
        font-size: 11px;
    }

    .why-choose__title {
        font-size: 22px;
    }

    .why-choose__description {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .why-choose__media {
        border-radius: 15px;
    }

    /*footer*/
    .footer {
        padding: 30px 18px 18px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    /* Tudo empilha */
    .footer__item--brand {
        grid-column: 1;
        grid-row: 1;
    }

    .footer__item--support {
        grid-column: 1;
        grid-row: 2;
    }

    .footer__support-text {
        max-width: 100%;
    }

    .footer__item--map {
        grid-column: 1;
        grid-row: 3;
        max-width: 100%;
    }

    .footer__divider {
        grid-column: 1;
        grid-row: 4;
    }

    .footer__item--contacts {
        grid-column: 1;
        grid-row: 5;
    }

    .footer__item--services {
        grid-column: 1;
        grid-row: 6;
    }

    .footer__item--legal {
        grid-column: 1;
        grid-row: 7;
    }

    .footer__item--funding {
        grid-column: 1;
        grid-row: 8;
        justify-self: end;
        align-self: end;
    }

    .footer__logo {
        max-width: 150px;
    }

    .footer__map-card {
        padding: 18px 20px;
        border-radius: 15px;
    }

    .footer__map-title {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .footer__support-title {
        font-size: 16px;
    }

    .footer__title {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .footer__bottom {
        margin-top: 20px;
        padding-top: 12px;
    }

    /*SINGLE SERVICE*/
    .service-hero {
        padding-block: 80px 30px;
    }

    .service-hero__container {
        padding-inline: 18px;
    }

    .service-hero__title {
        font-size: 22px;
    }

    .service-hero__subtitle {
        font-size: 18px;
    }

    .service-hero__description {
        font-size: 11px;
    }

    .service-hero__details-title {
        font-size: 18px;
    }

    .service-hero__details-text {
        font-size: 10px;
    }

    .tag {
        font-size: 9px;
        padding: 5px 8px;
    }

    .service-help {
        padding-block: 30px 35px;
    }

    .service-help__container {
        padding-inline: 18px;
    }

    .service-help__row {
        gap: 20px;
    }

    .service-help__title {
        font-size: 18px;
    }

    .service-help__list li {
        font-size: 11px;
    }

    .service-help__media {
        gap: 10px;
    }

    .service-steps {
        padding-block: 30px 45px;
    }

    .service-steps__container {
        padding-inline: 18px;
    }

    .service-steps__row {
        gap: 20px;
    }

    .service-steps__title {
        margin-bottom: 18px;
    }

    .service-steps__list {
        gap: 8px;
        margin-bottom: 18px;
    }

    .service-steps__item {
        font-size: 11px;
        padding: 12px 12px 12px 40px;
        border-radius: 12px;
    }

    .service-steps__item::before {
        font-size: 30px;
    }

    .service-steps__media {
        width: 100%;
        border-radius: 15px;
    }

    .related-services {
        padding-block: 35px 5px;
    }

    .related-services__title {
        padding-inline: 18px;
        margin-bottom: 15px;
        font-size: 20px;
    }

    .related-services__list {
        gap: 10px;
        padding-inline: 18px;
    }

    .related-card {
        flex: 0 0 160px;
        padding: 14px;
        border-radius: 12px;
    }

    .related-card__icon {
        width: 35px;
    }

    .related-card__footer {
        min-height: 70px;
    }

    /*common pages*/
    .common-page {
        padding: 120px 0 35px;
    }

    .common-container {
        padding-inline: 18px;
    }

    .common-title {
        font-size: 24px;
    }

    .common-content h2 {
        font-size: 16px;
        margin-top: 24px;
    }

    .common-content p,
    .common-content li {
        font-size: 12px;
        line-height: 160%;
    }

    .common-content th,
    .common-content td {
        font-size: 11px;
        padding: 8px;
    }
}

@media screen and (max-width:400px) {

    /*genericos*/
    .btn {
        padding: 13px;
        font-size: 10px;
        gap: 8px;
    }

    .btn::after {
        width: 12px;
        height: 12px;
    }

    .label {
        font-size: 9px;
        padding: 6px 7px;
        gap: 3px;
    }

    .label::before {
        width: 10px;
        height: 10px;
    }

    .btn-link {
        font-size: 10px;
        gap: 6px;
    }

    .btn-link::after {
        width: 14px;
        height: 8px;
    }

    /*header*/
    .header__nav {
        padding: 65px 15px 15px;
    }

    .header__nav>.menu>.menu-item>a:not(.header__contact) {
        font-size: 14px;
        padding: 13px 0;
    }

    .sub-menu .menu-item>a {
        font-size: 12px;
        padding: 9px 0 9px 12px;
    }

    /*LP PAGE*/
    .hero__content {
        padding: 20px 15px 100px;
    }

    .hero__title {
        font-size: 26px;
    }

    .hero__description {
        font-size: 12px;
    }

    .hero__eyebrow {
        font-size: 11px;
    }

    .about {
        padding: 40px 15px;
    }

    .about__media-grid {
        gap: 10px;
    }

    .about__stat {
        margin-top: 5px;
    }

    .about__content h2 {
        font-size: 20px;
    }

    .about__content p strong {
        font-size: 12px;
    }

    .about__content p {
        font-size: 11px;
    }

    .about__stat-number {
        font-size: 28px;
    }

    .about__stat-label {
        font-size: 11px;
    }

    .services {
        padding: 40px 0 50px;
    }

    .services__title {
        font-size: 22px;
    }

    .services__description {
        font-size: 12px;
    }

    .services__intro {
        padding-inline: 15px;
    }

    .services__grid {
        gap: 10px;
        padding-inline: 15px;
        margin-inline: -15px;
    }

    .features {
        padding: 30px 0 80px;
    }

    .features__container {
        padding-inline: 15px;
    }

    .features__title {
        font-size: 22px;
    }

    .features__description {
        font-size: 11px;
        max-width: 250px;
    }

    .features__grid {
        gap: 10px;
        padding-inline: 15px;
        margin-inline: -15px;
    }

    .feature-card,
    .feature-card--large {
        flex: 0 0 240px;
        height: 250px;
        padding: 18px;
        border-radius: 15px;
    }

    .feature-card__title {
        font-size: 14px;
    }

    .feature-card__description {
        font-size: 10px;
    }

    .steps__container {
        padding-inline: 15px;
    }

    .steps__title {
        font-size: 20px;
        max-width: 260px;
    }

    .steps__list {
        gap: 18px;
    }

    .steps-item__media {
        border-radius: 12px;
    }

    .steps-item__title {
        font-size: 14px;
    }

    .steps-item__description {
        font-size: 11px;
    }

    .steps-cta__title {
        font-size: 15px;
    }

    .why-choose__title {
        font-size: 20px;
    }

    .why-choose__description {
        font-size: 11px;
    }

    .why-choose__media--logo::after {
        max-width: 80px;
    }

    .faq {
        padding: 40px 15px 50px;
    }

    .faq__title {
        font-size: 20px;
    }

    .faq-item__summary {
        padding: 6px 10px 6px 8px;
    }

    .faq-item__question {
        font-size: 11px;
    }

    .faq-item__answer {
        font-size: 10px;
    }

    .faq__footer-text {
        font-size: 11px;
    }

    .cta-banner {
        padding-inline: 15px;
    }

    .cta-banner__title {
        font-size: 22px;
    }

    .cta-banner__subtitle {
        font-size: 12px;
    }

    /*SINGLE SERVICE*/
    .service-hero {
        padding-block: 80px 25px;
    }

    .service-hero__container {
        padding-inline: 15px;
    }

    .service-hero__title {
        font-size: 20px;
    }

    .service-hero__subtitle {
        font-size: 17px;
    }

    .service-hero__description {
        font-size: 10px;
    }

    .service-hero__details-title {
        font-size: 17px;
    }

    .tag {
        padding: 4px 7px;
    }

    .service-help__container {
        padding-inline: 15px;
    }

    .service-help__title {
        font-size: 17px;
    }

    .service-help__list li {
        font-size: 10px;
    }

    .service-help__img {
        border-radius: 15px;
    }

    .service-steps__container {
        padding-inline: 15px;
    }

    .service-steps__title {
        font-size: 18px;
        max-width: 220px;
    }

    .service-steps__item {
        font-size: 10px;
        padding: 11px 10px 11px 35px;
    }

    .service-steps__item::before {
        font-size: 27px;
    }

    .related-services__title {
        padding-inline: 15px;
        font-size: 18px;
    }

    .related-services__list {
        padding-inline: 15px;
    }

    .related-card {
        flex: 0 0 140px;
        padding: 12px;
    }

    /*common pages*/
    .common-container {
        padding-inline: 15px;
    }

    .common-title {
        font-size: 22px;
    }

    .common-content h2 {
        font-size: 15px;
    }

    .common-content p,
    .common-content li {
        font-size: 11px;
    }

    .common-content th,
    .common-content td {
        font-size: 10px;
        padding: 7px;
    }
}

/* Menus fechados não participam na navegação por teclado. */
@media screen and (max-width: 1024px) {
    .header__nav { visibility: hidden; }
    .header.is-menu-open .header__nav { visibility: visible; }
    .sub-menu { visibility: hidden; }
    .menu-item-has-children.is-open .sub-menu { visibility: visible; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .reveal, .reveal.reveal-pending, .hero__content > *, .hero__media {
        opacity: 1;
        transform: none;
    }
}
