/*
Theme Name: Chama Laranjada
Theme URI: https://blisq.pt/
Author: Blisq Creative
Author URI: https://blisq.pt/
Description: Tema WordPress personalizado para a Chama Laranjada, convertido a partir do tema HTML original, com gestão de conteúdos por metaboxes, custom fields e página de opções nativa.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: chama-laranjada
*/

/* =========================================================
   TIPOGRAFIA
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* =========================================================
   VARIAVEIS E RESETS
   ========================================================= */
:root {
    --white: #FFF;
    --black: #000;
    --blue-deep: #01869F;
    --cyan-bright: #00AFCF;
    --blue-soft: #5DA8BD;
    --blue-mist: #BDD1D5;
    --white-soft: #F0F0F0;
    --white-cool: #EDF1F2;
    --gray-medium: #7F7F7F;
    --gray-dark: #4C4C4C;
    --gray-light: #A6B5B7;
    --brown-dark: #280D0D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    display: block;
    background-color: var(--white);
}

body {
    font-family: "Montserrat", sans-serif;
    position: relative;
    display: block;
    background-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
}

h1 {
    color: var(--white-soft);
    text-align: center;
    font-size: clamp(22px, 2.5vw, 49px);
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
}

h2 {
    color: var(--brown-dark);
    font-size: clamp(18px, 1.8vw, 31px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

h3 {
    color: var(--brown-dark);
    font-size: clamp(16px, 1.2vw, 22.59px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background-color: #BDD1D5;
    color: #280D0D;
}

.block {
    display: block;
}

.none {
    display: none;
}

/* =========================================================
    HEADER
   ========================================================= */

.header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
}

.topbar {
    width: 100%;
    background-color: #081C20;
    padding: clamp(10px, 1vw, 15px) clamp(8px, 0.8vw, 10px) clamp(8px, 0.8vw, 10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar__text {
    color: #E9D1D1;
    font-size: clamp(12px, 0.9vw, 13px);
    font-style: normal;
    font-weight: 600;
    line-height: 159%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar__text::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('assets/icons/location.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.navbar {
    width: 100%;
}

.navbar__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px clamp(16px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo img {
    height: auto;
    max-width: 272px;
    width: 100%;
    min-width: 170px;
}

.navbar .menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 45px);
}

.navbar .menu .menu-item a {
    color: var(--white-soft);
    font-size: clamp(14px, 1vw, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    transition: color 0.2s ease;
}

.navbar .menu .menu-item a:hover {
    color: var(--cyan-bright);
}

.navbar .menu .menu-item .navbar__cta {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--blue-deep);
    color: var(--white);
    font-size: clamp(16px, 1.2vw, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding: clamp(12px, 1vw, 15px) clamp(14px, 1.5vw, 21px);
    border-radius: 15px;
    transition: background-color 0.2s ease;
}

.navbar .menu .menu-item .navbar__cta::after {
    content: '';
    display: inline-block;
    width: clamp(14px, 0.9375vw, 18px);
    height: clamp(14px, 0.9375vw, 18px);
    background-image: url('assets/icons/mobile.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.navbar .menu .menu-item .navbar__cta:hover {
    background-color: var(--cyan-bright);
    color: var(--white);
}

/* Hamburguer — escondido no desktop */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
}

.navbar__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--white-soft);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburguer anima para X */
.navbar.is-open .navbar__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.is-open .navbar__hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar.is-open .navbar__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
    HERO
   ========================================================= */
.hero {
    position: relative;
    width: 100%;
    background-color: #0d2328;
    padding-top: clamp(150px, 12vw, 239px);
    padding-bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 35px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/images/padrao-hero.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    mix-blend-mode: color-dodge;
    pointer-events: none;
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.hero__title {
    text-align: center;
}

.hero__title strong {
    color: var(--blue-soft);
    font-weight: 600;
}

.hero__image-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1253px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__img-position {
    width: 100%;
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* =========================================================
    INTRO
   ========================================================= */
.intro {
    position: relative;
    width: 100%;
    background-color: var(--white-cool);
    padding:
        clamp(60px, 5vw, 95px) clamp(40px, 4vw, 60px) clamp(120px, 10vw, 195px) clamp(120px, 12vw, 215px);
    margin-top: -45px;
    z-index: 2;
}

.intro:before {
    content: '';
    position: absolute;
    top: -159px;
    left: 0;
    width: 100%;
    height: 160px;
    background-color: var(--white-cool);
    -webkit-mask-image: url('assets/masks/recorte_hero.svg');
    mask-image: url('assets/masks/recorte_hero.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100%;
    -webkit-mask-position: bottom;
    mask-position: bottom;
    z-index: 2;
}

.intro::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 81px;
    background-color: var(--white);
    -webkit-mask-image: url('assets/masks/recorte_sobre.svg');
    mask-image: url('assets/masks/recorte_sobre.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100%;
    -webkit-mask-position: bottom;
    mask-position: bottom;
    z-index: 2;
}

.intro__container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(20px, 2.2vw, 105px);
}

.intro__title {
    flex: 0 0 auto;
    max-width: 348px;
}

.intro__desc {
    color: var(--gray-medium);
    font-size: clamp(16px, 1.2vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
    max-width: 35.8%;
}

/* =========================================================
    ABOUT
   ========================================================= */
.about {
    width: 100%;
    background-color: var(--white);
    padding: clamp(40px, 5vw, 65px) clamp(20px, 4vw, 60px) clamp(40px, 0.9rem + 5vw, 140px);
}

.about__container {
    max-width: 1277px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(24px, 5vw, 80px);
}

.about__image-wrapper {
    flex: 0 0 auto;
    max-width: 54.6%;
    width: 100%;
}

.about__image-wrapper figure img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 10px);
}

.about__title {
    color: var(--brown-dark);
    font-size: clamp(16px, 1rem + 0.4vw, 26px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    text-wrap: balance;
}

.about__desc {
    color: var(--gray-medium);
    font-size: clamp(14px, 1vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
}

/* =========================================================
    CATEGORIES
   ========================================================= */
.categories {
    width: 100%;
    background-color: var(--white);
    padding: 0 clamp(20px, 4vw, 60px) clamp(60px, 8vw, 120px);
}

.categories__container {
    max-width: 1604px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 2.5vw, 40px);
}

.categories__title {
    color: var(--blue-mist);
    text-align: center;
    font-size: clamp(20px, 2vw, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.2vw, 19px);
    padding-inline: 20px;
}

.categories__title strong::before {
    content: '';
    width: clamp(28px, 2vw, 43px);
    height: clamp(28px, 2vw, 43px);
    background-image: url('assets/icons/logoblue.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.categories__title strong {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1vw, 10px);
    color: #081C20;
    font-style: italic;
    font-weight: 700;
}

.categories__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
}

.card {
    background-color: var(--white-cool);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(16px, 2vw, 28px);
    transition: all 0.25s ease;
    cursor: pointer;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.card__content {
    display: flex;
    flex-direction: column;
}

.card__title {
    color: var(--brown-dark);
    font-size: clamp(18px, 1.5vw, 23.765px);
    margin-bottom: 5px;
}

.card__desc {
    color: var(--gray-medium);
    font-size: clamp(14px, 1vw, 15.2px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: clamp(10px, 1vw, 14px);
}

.card__badge {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    border-radius: 10px;
    padding: clamp(10px, 1vw, 13px) clamp(12px, 1.2vw, 15px);
}

.card__badge figure {
    width: clamp(40px, 4vw, 77px);
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}

.card__badge p {
    color: var(--gray-dark);
    font-size: 10.456px;
    font-style: normal;
    font-weight: 700;
    line-height: 149%;
}

.card__badge p span {
    color: var(--gray-medium);
    font-weight: 400;
    display: block;
}

.card__image {
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.card__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================================================
    BENEFITS
   ========================================================= */

.benefits {
    position: relative;
    width: 100%;
    background-color: #0d2328;
    padding: clamp(40px, 6vw, 76px);
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/padrao-hero.svg');
    background-repeat: no-repeat;
    background-position: center 80%;
    background-size: cover;
    pointer-events: none;
    mix-blend-mode: color-dodge;
    z-index: 0;
}

.benefits__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(20px, 4vw, 60px);
}

.benefits__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    text-align: center;
    max-width: 192px;
    width: 100%;
    z-index: 1;
}

.benefits__icon {
    width: clamp(90px, 8vw, 121px);
    height: clamp(90px, 8vw, 121px);
    background-color: #122F35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits__icon img {
    width: clamp(40px, 4vw, 57px);
    height: auto;
}

.benefits__label {
    color: var(--blue-soft);
    text-align: center;
    font-size: clamp(14px, 0.9rem + 0.3vw, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
}

/* =========================================================
    WHY CHOOSE
   ========================================================= */
.why-choose {
    width: 100%;
    background-color: var(--white);
    padding: clamp(48px, 8vw, 128px) clamp(24px, 4vw, 56px) clamp(56px, 7vw, 120px);
}

.why-choose__container {
    max-width: 1277px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 2vw, 40px);
}

.why-choose__title {
    color: var(--blue-mist);
    text-align: center;
    font-size: clamp(18px, 1rem + 0.5vw, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1vw, 19px);
}

.why-choose__title strong::before {
    content: '';
    display: inline-block;
    width: clamp(36px, 2.5vw, 43px);
    height: clamp(36px, 2.5vw, 43px);
    background-image: url('assets/icons/logoblue.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.why-choose__title strong {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1vw, 10px);
    color: #081C20;
    font-style: italic;
    font-weight: 700;
}

.why-choose__content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(40px, 4vw, 80px);
}

.why-choose__text {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 10px);
    flex: 1;
}

.why-choose__subtitle {
    color: var(--brown-dark);
    font-size: clamp(16px, 1rem + 0.4vw, 26px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
}

.why-choose__desc {
    color: var(--gray-medium);
    font-size: clamp(14px, 1vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
}

.why-choose__image-wrapper {
    flex: 0 0 auto;
    max-width: 54.6%;
    width: 100%;
}

.why-choose__image-wrapper figure img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* =========================================================
    FAQS
   ========================================================= */

.faqs {
    position: relative;
    width: 100%;
    background-color: var(--white-cool);
    padding: clamp(60px, 8vw, 157px) clamp(20px, 4vw, 60px) clamp(50px, 7vw, 131px);
    overflow: hidden;
}

.faqs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    background-color: var(--white);
    -webkit-mask-image: url('assets/masks/recorte_faqs.svg');
    mask-image: url('assets/masks/recorte_faqs.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100%;
    -webkit-mask-position: top;
    mask-position: top;
    z-index: 2;
}

.faqs__container {
    max-width: 1139px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(25px, 2.5vw, 40px);
}

.faqs__title {
    color: var(--gray-light);
    text-align: center;
    font-size: clamp(20px, 2vw, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-align: center;
}

.faqs__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 10px);
}

.faq {
    background-color: none;
    border: 1px solid #C6D6D9;
    border-radius: 11px;
    overflow: hidden;
}

.faq__question {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(10px, 1vw, 12px) clamp(12px, 1.2vw, 16px);
    color: #0D2328;
    font-size: clamp(16px, 1.3vw, 19px);
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 5px;
}

.faq__question h3 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

/* Remove o marcador padrão do details/summary */
.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '';
    display: inline-block;
    width: clamp(28px, 2.5vw, 36px);
    height: clamp(28px, 2.5vw, 36px);
    background-image: url('assets/icons/arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq:hover .faq__question,
.faq[open] .faq__question {
    background-color: #D8E3E5;
}

.faq[open] .faq__question::after {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 clamp(16px, 2vw, 24px);
    background-color: #D8E3E5;
    color: var(--gray-medium);
    font-size: clamp(13px, 0.9vw, 14px);
    font-weight: 400;
    line-height: 160%;
}

.faq[open] .faq__answer {
    padding: 0 clamp(16px, 2vw, 24px) clamp(14px, 1.5vw, 18px);
}

.faq::details-content {
    display: block;
    block-size: 0;
    overflow: hidden;
    transition-property: block-size, content-visibility;
    transition-duration: 0.4s;
    transition-behavior: allow-discrete;
}

.faq[open]::details-content {
    block-size: calc-size(auto, size);
}

/* =========================================================
    FOOTER
========================================================= */
.footer {
    background-color: var(--white-cool);
    padding: 0 clamp(12px, 1vw, 20px) clamp(12px, 1vw, 20px);
}

.footer__content {
    position: relative;
    width: 100%;
    max-width: 1880px;
    margin: 0 auto;
    border-radius: 30px;
    background-color: #0d1f24;
    padding: clamp(28px, 2.6vw, 50px) clamp(30px, 2.9vw, 56px) clamp(30px, 2.75vw, 53px) clamp(28px, 2.6vw, 50px);
    overflow: hidden;
}

.footer__content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/padrao-footer.svg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    mix-blend-mode: color-dodge;
    pointer-events: none;
    z-index: 0;
}

.footer__container {
    display: grid;
    grid-template-columns: 23.6% 39.5% 1fr;
    grid-template-rows: auto auto;
    gap: 0 clamp(40px, 4vw, 159px);
    z-index: 1;
    position: relative;
}

.footer__col:nth-child(4),
.footer__col:nth-child(5),
.footer__col:nth-child(6) {
    align-self: end;
}

.footer__logo figure img {
    height: auto;
    width: clamp(220px, 17vw, 325px);
}

.footer__col--menus {
    display: flex;
    gap: clamp(32px, 3.2vw, 64px);
}

.footer__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 10px);
}

.footer__menu .menu-item a {
    color: #89A7AE;
    font-size: clamp(14px, 1vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
    transition: color 0.2s ease;
}

ul.menu.footer__menu.footer__menu--categories {
    flex: 0 0 193px;
}

.footer__menu .menu-item a:hover {
    color: var(--white-soft);
}

/* Título de menu não clicável */
.footer__menu .menu-item--header h4 {
    color: var(--blue-soft);
    font-size: clamp(14px, 1.2vw, 21px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    cursor: default;
}

/* Contacto */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 10px);
}

.footer__contact-title {
    color: var(--blue-soft);
    font-size: clamp(14px, 1.2vw, 21px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.footer__contact-item {
    display: flex;
    flex-direction: column;
    gap: -3px;
}

.footer__contact-number {
    color: var(--white);
    font-size: clamp(12px, 1vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: 165%;
}

.footer__contact-number small {
    color: #89A7AE;
    font-weight: 400;
}

.footer__contact-label {
    color: #5A757B;
    font-size: clamp(10px, 0.6vw, 11px);
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
    text-transform: uppercase;
}

.footer__highlight {
    color: #0095B1;
    font-size: clamp(16px, 1.4vw, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 124%;
    margin-bottom: 18px;
    max-width: 294px;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1vw, 16px);
}

.footer__social figure img {
    width: clamp(20px, 1.2vw, 24px);
    height: clamp(20px, 1.2vw, 24px);
}

/* Sobre nós */
.footer__about-title {
    color: var(--blue-soft);
    font-size: clamp(16px, 1.2vw, 21px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 10px;
}

.footer__about-desc {
    color: #89A7AE;
    font-size: clamp(11px, 1vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
    max-width: 418px;
}

/* Col centro linha 2 */
.footer__col--bottom-center {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.875vw, 36px);
    grid-column: span 2;
}

.footer__logos img {
    height: auto;
    width: 281px;
}

/* Menu legal */
.footer__menu--legal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 0;
}

.footer__menu--legal .menu-item {
    display: flex;
    align-items: center;
}

.footer__menu--legal .menu-item:not(:last-child)::after {
    content: '|';
    color: var(--gray-light);
    margin: 0 16px;
    font-size: clamp(12px, 0.7vw, 13px);
}

.footer__menu--legal .menu-item a {
    color: #6E858B;
    text-align: center;
    font-size: clamp(12px, 0.7vw, 13px);
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
}

/* Blisq */
.footer__col--blisq {
    position: absolute;
    bottom: 0;
    right: 0;
}

.footer__blisq figure img {
    width: clamp(32px, 2vw, 39px);
    height: auto;
}

/* =========================================================
    SINGLE SERVICE
   ========================================================= */

.single-service .navbar .menu .menu-item:not(:has(.navbar__cta)) a {
    color: var(--gray-dark);
}

.single-service .navbar .menu .menu-item:not(:has(.navbar__cta)) a:hover {
    color: var(--blue-deep);
}

.single-service .navbar__hamburger span {
    background-color: var(--gray-dark);
}

/* Logo escuro */
.single-service .navbar__logo img {
    content: url('assets/images/logo-dark.webp');
}

.hero-single {
    position: relative;
    width: 100%;
    background-color: var(--white-cool);
    overflow: hidden;
    padding-block: 140px 27px;
    margin: 0 auto;
    max-width: 1920px;
}

.hero-single::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/padrao-single.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.hero-single__container {
    padding-left: clamp(32px, -11.2px + 11.52vw, 210px);
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 3.72px + 4.34vw, 87px);
    position: relative;
    z-index: 1;
}

.hero-single__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    max-width: 753px;
    width: 100%;
    margin-top: clamp(12px, 9.57px + 0.65vw, 22px);
}

.hero-single__tag {
    color: #0095B1;
    font-size: clamp(18px, 16.6px + 0.37vw, 23.765px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-align: start;
}

.hero-single__title {
    color: #102A30;
    font-size: clamp(24px, 20.12px + 1.04vw, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 4px;
    max-width: 600px;
}

.hero-single__desc {
    color: var(--gray-medium);
    font-size: clamp(14px, 12.54px + 0.39vw, 20px);
    font-style: normal;
    font-weight: 500;
    line-height: 155%;
    max-width: 617px;
}

.hero-single__image-wrapper {
    max-width: 442px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-single__image-wrapper figure img {
    width: 100%;
    height: auto;
}

/* ----- SERVICE BLOCKS ----- */
.service-blocks {
    position: relative;
    width: 100%;
    background-color: var(--white);
    padding: 0 clamp(20px, 4vw, 60px) clamp(40px, 27.86px + 3.24vw, 90px);
}

.service-blocks::before {
    content: '';
    position: absolute;
    top: -109px;
    left: 0;
    width: 100%;
    height: 110px;
    background-color: var(--white);
    -webkit-mask-image: url('assets/masks/recorte_single.svg');
    mask-image: url('assets/masks/recorte_single.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100%;
    -webkit-mask-position: bottom;
    mask-position: bottom;
    z-index: 4;
}

.service-block {
    max-width: 1277px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(40px, 5vw, 80px);
    padding-top: 70px;
}

.service-block:nth-child(odd) .service-block__image-wrapper {
    order: 0;
}

.service-block:nth-child(odd) .service-block__content {
    order: 1;
}

/* Even — imagem direita */
.service-block:nth-child(even) .service-block__image-wrapper {
    order: 1;
}

.service-block:nth-child(even) .service-block__content {
    order: 0;
}

.service-block__image-wrapper {
    flex: 0 0 auto;
    width: 100%;
    max-width: 54.6%;
}

.service-block__image-wrapper figure img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.service-block__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 10px);
}

.service-block__title {
    color: var(--brown-dark);
    font-size: clamp(18px, 16.06px + 0.52vw, 26px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    text-wrap: balance;
}

.service-block__desc {
    color: var(--gray-medium);
    font-size: clamp(14px, 13.03px + 0.26vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
}

/* Badge */
.service-block__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white-cool);
    border-radius: 10px;
    padding: clamp(10px, 1vw, 13px) clamp(12px, 1.2vw, 15px);
    width: fit-content;
    margin-top: 8px;
}

.service-block__badge figure {
    width: clamp(60px, 5vw, 77px);
    flex-shrink: 0;
}

.service-block__badge p {
    color: var(--gray-dark);
    font-size: 10px;
    font-weight: 700;
    line-height: 149%;
}

.service-block__badge p span {
    color: var(--gray-medium);
    font-weight: 400;
    display: block;
}

/* ----- CTA BANNER ----- */
.cta-banner {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-banner__container {
    position: relative;
    max-width: 1020px;
    margin: 0 auto;
    background-color: #0D2328;
    border-radius: 20px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(24px, 15.75px + 2.2vw, 58px) 0 clamp(24px, 15.75px + 2.2vw, 58px) clamp(20px, 10.3px + 2.59vw, 60px);
}

.cta-banner__container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/padrao-cta.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 55%;
    mix-blend-mode: color-dodge;
    pointer-events: none;
    z-index: 0;
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 11.03px + 0.26vw, 16px);
    max-width: 589px;
    width: 100%;
}

.cta-banner__title {
    color: var(--white-soft);
    font-size: clamp(18px, 1.5vw, 26px);
    text-align: left;
}

.cta-banner__action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(10px, 8.54px + 0.39vw, 16px);
}

.cta-banner__label {
    color: #C7C7C7;
    font-size: clamp(16px, 15.03px + 0.26vw, 20px);
    font-style: normal;
    font-weight: 500;
    line-height: 165%;
}

.btn_cta {
    display: flex;
    align-items: center;
    gap: clamp(10px, 8.79px + 0.32vw, 15px);
    background-color: var(--blue-deep);
    color: var(--white);
    font-size: clamp(16px, 1.2vw, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding: clamp(12px, 1vw, 15px) clamp(14px, 1.5vw, 21px);
    border-radius: 15px;
    transition: background-color 0.2s ease;
}

.btn_cta::after {
    content: '';
    display: inline-block;
    width: clamp(14px, 0.9375vw, 18px);
    height: clamp(14px, 0.9375vw, 18px);
    background-image: url('assets/icons/mobile.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.btn_cta:hover {
    background-color: var(--cyan-bright);
    color: var(--white);
}

.cta-banner__image-wrapper {
    position: absolute;
    z-index: 1;
    right: 22px;
    bottom: 20px;
    width: 100%;
    max-width: 319px;
    height: auto;
}

.cta-banner__image-wrapper figure img {
    width: 100%;
    height: auto;
}

.categories--single {
    padding-block: clamp(40px, 25.44px + 3.88vw, 90px) clamp(44px, 30.41px + 3.62vw, 100px);
}

.categories--single .categories__grid {
    grid-template-columns: repeat(3, 1fr);
}

.categories--single .categories__container {
    max-width: 1203px;
}

/* =========================================================
    COMMON PAGES
   ========================================================= */
.common-page {
    padding-block: clamp(140px, 12vw, 200px) clamp(60px, 6vw, 100px);
    background: var(--white-cool);
}

.common-page__container {
    max-width: 920px;
    margin: 0 auto;
}

.common-title {
    color: #102A30;
    font-size: clamp(22px, 2.5vw, 34px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-align: start;
}

.common-content {
    margin: 20px auto 25px;
}

.common-content h2 {
    color: #0D2328;
    font-size: clamp(17px, 1.5vw, 22px);
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    margin: 25px 0 15px;
}

.common-content h2 strong {
    color: #0095B1;
    font-weight: 700;
}

.common-content h3 {
    color: #0D2328;
    font-size: clamp(15px, 1.2vw, 19px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    margin-block: 10px;
}

.common-content p {
    color: var(--gray-medium);
    font-size: clamp(14px, 1vw, 17px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 7px;
}

.common-content p strong {
    font-weight: 700;
}

.common-content ul {
    list-style: none;
    padding-left: 8px;
}

.common-content ul li {
    position: relative;
    padding-left: 16px;
    color: var(--gray-medium);
    font-size: clamp(14px, 1vw, 17px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.common-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 45%;
    width: 3px;
    height: 3px;
    background-color: var(--gray-medium);
    border-radius: 50%;
}

.common-content ol {
    list-style: none;
    padding-left: 7px;
    counter-reset: item;
}

.common-content ol>li {
    position: relative;
    padding-left: 20px;
    color: var(--gray-medium);
    font-size: clamp(14px, 1vw, 17px);
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    counter-increment: item;
}

.common-content ol>li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gray-medium);
    font-weight: 700;
}

.common-content ol ol {
    margin-bottom: 0;
    counter-reset: subitem;
}

.common-content ol ol>li {
    padding-left: 17px;
    margin-bottom: 4px;
    counter-increment: subitem;
    font-weight: 400;
}

.common-content ol ol>li::before {
    content: counter(subitem, lower-alpha) ".";
    color: var(--gray-medium);
    font-weight: 400;
}

/* Tabela */
.common-content table {
    width: 100%;
    border-collapse: collapse;
    display: table;
    overflow-x: visible;
    margin-block: 10px;
}

.common-content thead tr {
    border-bottom: 1px solid rgba(13, 35, 40, 0.16);
}

.common-content th {
    text-align: left;
    padding: 15px;
    color: #0D2328;
    font-size: clamp(13px, 0.9vw, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    white-space: nowrap;
}

.common-content td {
    padding: 15px 20px;
    color: var(--gray-medium);
    font-size: clamp(12px, 0.8vw, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    vertical-align: top;
    border-bottom: 1px solid rgba(13, 35, 40, 0.16);
}

.common-content tbody tr:last-child td {
    border-bottom: none;
}

.common-content caption {
    caption-side: bottom;
    text-align: left;
    color: var(--gray-medium);
    font-size: clamp(13px, 0.9vw, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.common-content th,
.common-content td {
    border-right: 1px solid rgba(13, 35, 40, 0.16);
}

.common-content th:last-child,
.common-content td:last-child {
    border-right: none;
}

.last-update p {
    color: var(--gray-medium);
    font-size: clamp(14px, 1vw, 17px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.last-update p strong {
    font-weight: 700;
}

/* =========================================================
    RESPONSIVO
   ========================================================= */
@media screen and (min-width: 1981px) {}

@media screen and (max-width: 1550px) {
    .intro__title {
        text-wrap: balance;
    }
}

@media screen and (max-width: 1500px) {
    .hero__img-position {
        width: 80%;
    }

    .intro {
        margin-top: -38px;
    }
}

@media screen and (max-width: 1420px) {
    .navbar__logo img {
        max-width: 222px;
    }

    .navbar .menu .menu-item .navbar__cta {
        gap: 8px;
        font-size: 14px;
        padding: 12px 10px;
    }
}

@media screen and (max-width: 1350px) {
    .hero-single__tag {
        font-size: 18px;
    }

    .hero-single__title {
        font-size: 24px;
    }

    .hero-single__desc {
        font-size: 16px;
    }

    .hero-single__tag {
        font-size: 16px;
    }

    .hero-single__title {
        font-size: 20px;
    }

    .hero-single__desc {
        font-size: 14px;
    }
}

@media screen and (max-width: 1300px) {
    .categories {
        padding-inline: 0;
    }

    .categories__grid {
        margin-left: -25px;
        margin-right: -25px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .categories__grid {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab;
    }

    .categories__grid::-webkit-scrollbar {
        display: none;
    }

    .card {
        min-width: 290px;
    }

    .footer__content::before {
        background-size: cover;
        opacity: 0.6;
    }
}

@media screen and (max-width: 1250px) {
    .intro__title {
        max-width: 250px;
    }

    ul.menu.footer__menu.footer__menu--categories {
        flex: 0 0 150px;
    }

    .cta-banner__image-wrapper {
        max-width: 270px;
    }
}

@media screen and (max-width: 1220px) {
    .intro__desc {
        max-width: 50%;
    }

    .hero-single__image-wrapper {
        max-width: 400px;
    }
}

@media screen and (max-width: 1120px) {
    .intro {
        padding-inline: 100px;
        padding-block: 75px;
    }

    .footer__col--blisq {
        position: relative;
        grid-column: 3;
        margin-top: 20px;
        justify-self: flex-end;
    }

    ul.menu.footer__menu.footer__menu--categories {
        flex: 0 0 auto;
    }

    .why-choose__image-wrapper {
        position: sticky;
        top: 70px;
        align-self: flex-start;
    }
}

@media screen and (max-width:1090px) {
    .hero__img-position {
        width: 70%;
    }

    .intro {
        margin-top: -30px;
    }
}

@media screen and (max-width: 1024px) {
    .footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 25px 40px;
    }

    .footer__col:nth-child(1) {
        order: 1;
        grid-column: span 2;
    }

    .footer__col:nth-child(2) {
        order: 4;
    }

    .footer__col:nth-child(4) {
        order: 2;
    }

    .footer__col:nth-child(3) {
        order: 3;
    }

    .footer__col:nth-child(5) {
        order: 5;
        grid-column: span 2;
    }

    .footer__col:nth-child(6) {
        order: 6;
    }

    .footer__col:nth-child(4),
    .footer__col:nth-child(5) {
        align-self: start;
    }

    .footer__col--blisq {
        align-self: end;
        margin-top: 0;
        grid-column: 2;
    }

    .footer__about-desc {
        font-size: 13px;
    }

    .hero-single__container {
        flex-direction: row;
        justify-content: space-between;
        gap: 40px;
        padding-inline: 32px;
        padding-bottom: 32px;
    }

    .hero-single__content {
        max-width: 60%;
    }

    .hero-single__image-wrapper {
        max-width: 33%;
        justify-content: center;
    }

    .hero-single__image-wrapper img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .hero-single::before {
        background-position: right center;
    }

    .cta-banner__image-wrapper {
        max-width: 240px;
        right: 12px;
        bottom: 10px;
    }

    .common-page__container {
        padding-inline: 20px;
    }

    .common-content table {
        display: block;
        overflow-x: auto;
    }
}

@media screen and (max-width: 990px) {

    /* Hamburguer visível */
    .navbar__hamburger {
        display: flex;
    }

    /* Overlay via ::before do navbar */
    .navbar.is-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        cursor: pointer;
    }

    /* Menu lateral */
    .navbar .menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: 300px;
        background-color: #0d2328;
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 32px 40px;
        gap: 24px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .navbar.is-open .menu {
        transform: translateX(0);
    }

    .navbar .menu .menu-item .navbar__cta {
        width: 100%;
        justify-content: center;
    }

    .single-service .navbar .menu .menu-item:not(:has(.navbar__cta)) a {
        color: var(--white-soft);
    }

    .single-service .navbar .menu .menu-item:not(:has(.navbar__cta)) a:hover {
        color: var(--white-soft);
    }

    .intro__title {
        max-width: 200px;
    }

    .intro__desc {
        max-width: 65%;
    }

}

@media screen and (max-width: 900px) {

    .hero__img-position {
        width: 65%;
    }

    .intro {
        margin-top: -20px;
    }

    .about__container,
    .why-choose__content,
    .service-block {
        gap: 20px;
        flex-direction: column;
    }

    .about__image-wrapper,
    .why-choose__image-wrapper,
    .service-block__image-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .service-block:nth-child(even) .service-block__image-wrapper,
    .service-block:nth-child(odd) .service-block__image-wrapper {
        order: 0;
    }

    .service-block:nth-child(even) .service-block__content,
    .service-block:nth-child(odd) .service-block__content {
        order: 1;
    }

    .service-block__title {
        text-wrap: unset;
    }

    .about__title {
        text-wrap: unset;
    }
}

@media screen and (max-width: 850px) {
    .cta-banner__container {
        padding: 32px 24px;
    }

    .cta-banner__content {
        max-width: 285px;
    }

    .cta-banner__title {
        font-size: 22px;
        line-height: 1.2;
    }

    .cta-banner__label {
        font-size: 16px;
    }

    .btn_cta {
        font-size: 14px;
        padding: 9px 10px;
    }

    .hero-single__title {
        max-width: 355px;
    }

    .cta-banner__container::before {
        background-size: cover;
        background-position: center;
    }
}

@media screen and (max-width: 830px) {
    .intro__title {
        max-width: 100%;
    }

    .intro__desc {
        max-width: 100%;
    }

    .intro {
        padding-inline: clamp(20px, 6vw, 50px);
        padding-block: clamp(28px, 9vw, 65px);
    }
}

@media screen and (max-width: 770px) {
    .benefits {
        padding-inline: 0;
    }

    .benefits__container {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
        margin-inline: -20px;
        padding-inline: 20px;
        gap: 5px;
    }

    /* Chrome/Safari/Opera */
    .benefits__container::-webkit-scrollbar {
        display: none;
    }

    .benefits__item {
        flex: 0 0 auto;
        max-width: 160px;
        scroll-snap-align: start;
    }
}

@media screen and (max-width: 740px) {
    .footer__menu--legal {
        flex-direction: column;
        gap: 8px;
    }

    .footer__menu--legal .menu-item:not(:last-child)::after {
        display: none;
    }
}

@media screen and (max-width: 640px) {

    .hero-single__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-left: 50px;
        padding-right: 20px;
        padding-bottom: 46px;
    }

    .hero-single {
        padding-block: 130px 5px;
    }

    .hero-single::before {
        background-size: cover;
    }

    .hero-single__content {
        max-width: 100%;
        width: 100%;
        gap: 8px;
        margin-top: 0;
    }

    .hero-single__title {
        max-width: 100%;
    }

    .hero-single__desc {
        max-width: 80%;
    }

    .hero-single__image-wrapper {
        display: none;
    }

    .hero-single__image-wrapper figure img {
        width: 100%;
        max-width: 220px;
        height: auto;
        margin: 0 auto;
    }
}

@media screen and (max-width: 600px) {
    .topbar {
        justify-content: flex-start;
        overflow: hidden;
    }

    .topbar__text {
        flex-wrap: nowrap;
        white-space: nowrap;
        width: max-content;
        min-width: max-content;
        padding-left: 100%;
        animation: topbarScroll 12s linear infinite;
    }

    .topbar__text::before {
        flex-shrink: 0;
    }

    @keyframes topbarScroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }

    .hero__img-position {
        width: 80%;
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__col:nth-child(2) {
        order: 4;
    }

    .footer__col:nth-child(4) {
        order: 3;
    }

    .footer__col:nth-child(3) {
        order: 3;
    }

    .footer__col:nth-child(5) {
        order: 5;
    }

    .footer__col:nth-child(6) {
        order: 6;
    }

    .footer__about-desc {
        max-width: 100%;
        text-wrap: balance;
    }

    .footer__col:nth-child(1),
    .footer__col:nth-child(2),
    .footer__col:nth-child(3),
    .footer__col:nth-child(5),
    .footer__col:nth-child(6) {
        align-self: start;
        grid-column: auto;
    }

    .footer__menu {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .footer__col--bottom-center {
        gap: 15px;
    }

    .cta-banner {
        padding: 0 15px;
    }

    .cta-banner__container {
        border-radius: 16px;
        padding: 30px 20px;
    }

    .cta-banner__title {
        font-size: 20px;
    }

    .cta-banner__label {
        font-size: 16px;
    }

    .cta-banner__image-wrapper {
        max-width: 200px;
    }

    .service-block {
        padding-top: 55px;
    }

    .categories__title,
    .why-choose__title {
        font-size: 17px;
    }

    .service-block__badge {
        width: 100%;
    }
}

@media screen and (max-width:550px) {
    .hero-single__tag {
        font-size: 14px;
    }

    .hero-single__title {
        font-size: 18px;
    }

    .hero-single__desc {
        font-size: 13px;
    }

    .faq__question h3 {
        font-size: 14px;
    }
}

@media screen and (max-width: 520px) {
    .cta-banner__content {
        max-width: 225px;
    }
}

@media screen and (max-width: 500px) {
    .hero__title {
        text-wrap: balance;
        font-size: 22px;
    }

    .intro {
        margin-top: -15px;
    }

    .why-choose__title,
    .categories__title {
        gap: 5px;
    }

    ul.menu.footer__menu.footer__menu--categories {
        flex: unset;
    }

    .footer__col--menus {
        flex-direction: column;
        gap: 15px;
    }

    .hero-single__title {
        max-width: 70%;
    }
}

@media screen and (max-width: 480px) {
    .cta-banner__container {
        padding: 24px 16px;
        border-radius: 14px;
        overflow: hidden;
    }

    .cta-banner__content {
        gap: 10px;
    }

    .cta-banner__title {
        font-size: 18px;
    }

    .cta-banner__label {
        font-size: 14px;
    }

    .cta-banner__action {
        gap: 10px;
    }

    .btn_cta {
        font-size: 14px;
        padding: 10px 14px;
        border-radius: 12px;
    }

    .btn_cta::after {
        width: 14px;
        height: 14px;
    }

    .cta-banner__image-wrapper {
        max-width: 170px;
        right: 8px;
        bottom: 8px;
    }
}

@media screen and (max-width: 450px) {
    .hero__img-position {
        width: 100%;
        padding-inline: 20px;
    }

    .service-block {
        padding-top: 45px;
    }

    .faq__question h3 {
        font-size: 13px;
    }

    .faq__answer {
        font-size: 12px;
    }

    .cta-banner__image-wrapper {
        max-width: 150px;
        right: 5px;
        bottom: 5px;
    }

    .hero-single__container {
        padding-left: 40px;
    }
}

@media screen and (max-width: 400px) {
    .navbar__logo img {
        max-width: 200px;
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .hero-single__title {
        max-width: 90%;
    }
}

@media screen and (max-width: 350px) {
    .cta-banner__image-wrapper {
        max-width: 133px;
        right: 0;
    }
}

@media screen and (max-width:330px) {
    .service-block__badge figure {
        width: 45px
    }
}