/* ==================================================
   CONFIGURAÇÕES GERAIS
================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #222222;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* ==================================================
   CORES
================================================== */

:root {
    --marrom: #765520;
    --marrom-escuro: #5c4017;
    --dourado: #a77526;
    --branco: #ffffff;
    --cinza: #f4f4f4;
    --texto: #292929;
}


/* ==================================================
   HEADER
================================================== */

.header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 100;
}

.header-container {
    width: min(980px, calc(100% - 40px));
    min-height: 155px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


/* ==================================================
   LOGO
================================================== */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 320px;
    max-width: 100%;
    height: auto;
}


/* ==================================================
   LADO DIREITO HEADER
================================================== */

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 19px;
}


/* ==================================================
   REDES SOCIAIS
================================================== */

.header-social {
    display: flex;
    align-items: center;
    gap: 17px;

    padding-right: 10px;
}

.social-link {
    color: #181818;

    font-size: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.social-link:hover {
    color: var(--dourado);
    transform: translateY(-3px);
}


/* ==================================================
   MENU DESKTOP
================================================== */

.desktop-menu {
    display: flex;
    align-items: center;

    gap: 27px;
}

.desktop-menu a {
    color: var(--marrom);

    font-size: 24px;
    font-weight: 700;

    white-space: nowrap;

    position: relative;

    padding-bottom: 5px;

    transition: color 0.25s ease;
}

.desktop-menu a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--dourado);

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.desktop-menu a:hover {
    color: var(--dourado);
}

.desktop-menu a:hover::after {
    width: 100%;
}


/* ==================================================
   BOTÃO MOBILE
================================================== */

.menu-toggle {
    width: 48px;
    height: 48px;

    border: 0;
    background: transparent;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 30px;
    height: 3px;

    border-radius: 10px;

    background: var(--marrom);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* ==================================================
   OVERLAY MOBILE
================================================== */

.menu-overlay {
    position: fixed;

    inset: 0;

    z-index: 998;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;

    backdrop-filter: blur(2px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ==================================================
   MENU MOBILE
================================================== */

.mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 999;

    width: min(390px, 88vw);
    height: 100vh;
    height: 100dvh;

    background: #ffffff;

    padding: 25px;

    transform: translateX(105%);

    transition: transform 0.4s cubic-bezier(
        0.77,
        0,
        0.175,
        1
    );

    display: flex;
    flex-direction: column;

    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    transform: translateX(0);
}


/* ==================================================
   CABEÇALHO MENU MOBILE
================================================== */

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 25px;

    border-bottom: 1px solid #e4e4e4;
}

.mobile-menu-header img {
    width: 220px;
    max-width: calc(100% - 55px);
    height: auto;
}

.mobile-menu-close {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    border: 0;
    border-radius: 50%;

    background: #f3eee5;
    color: var(--marrom);

    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.mobile-menu-close:hover {
    background: var(--marrom);
    color: #ffffff;
    transform: rotate(90deg);
}


/* ==================================================
   LINKS MOBILE
================================================== */

.mobile-nav {
    padding-top: 25px;

    display: flex;
    flex-direction: column;
}

.mobile-nav > a {
    width: 100%;

    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--marrom);

    font-size: 18px;
    font-weight: 700;

    border-bottom: 1px solid #eeeeee;

    padding: 0 7px;

    transition:
        color 0.25s ease,
        padding 0.25s ease,
        background 0.25s ease;
}

.mobile-nav > a span {
    display: flex;
    align-items: center;

    gap: 15px;
}

.mobile-nav > a span i {
    width: 27px;
    text-align: center;

    color: var(--dourado);

    font-size: 19px;
}

.mobile-nav > a > i {
    font-size: 12px;
    opacity: 0.5;

    transition: transform 0.25s ease;
}

.mobile-nav > a:hover {
    padding-left: 14px;
    color: var(--dourado);
    background: #fcfaf6;
}

.mobile-nav > a:hover > i {
    transform: translateX(4px);
}


/* ==================================================
   SOCIAL MOBILE
================================================== */

.mobile-social {
    margin-top: auto;

    padding-top: 30px;
}

.mobile-social p {
    font-size: 14px;
    color: #777777;

    margin-bottom: 15px;
}

.mobile-social > div {
    display: flex;
    gap: 12px;
}

.mobile-social a {
    width: 47px;
    height: 47px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--marrom);
    color: #ffffff;

    font-size: 23px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.mobile-social a:hover {
    background: var(--dourado);
    transform: translateY(-3px);
}


/* ==================================================
   MENU ABERTO
================================================== */

body.menu-open {
    overflow: hidden;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .header-container {
        width: calc(100% - 40px);
        min-height: 125px;

        gap: 25px;
    }

    .logo img {
        width: 280px;
    }

    .desktop-menu {
        gap: 18px;
    }

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

    .social-link {
        font-size: 32px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 800px) {

    .header-container {
        min-height: 100px;

        width: calc(100% - 30px);

        gap: 20px;
    }

    .logo img {
        width: 240px;
    }

    .header-right {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

}


/* ==================================================
   MOBILE PEQUENO
================================================== */

@media (max-width: 480px) {

    .header-container {
        min-height: 90px;
    }

    .logo {
        width: calc(100% - 65px);
    }

    .logo img {
        width: 215px;
        max-width: 100%;
    }

    .mobile-menu {
        width: 92vw;
        padding: 20px;
    }

    .mobile-menu-header img {
        width: 190px;
    }

}


/* ==================================================
   TELAS MUITO PEQUENAS
================================================== */

@media (max-width: 340px) {

    .logo img {
        width: 180px;
    }

}

/* ==================================================
   HERO CONTÁBIL
================================================== */

.hero-contabil {
    position: relative;

    min-height: 580px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 18% 80%,
            rgba(148, 72, 8, 0.28),
            transparent 26%
        ),
        radial-gradient(
            circle at 80% 35%,
            rgba(119, 58, 5, 0.12),
            transparent 22%
        ),
        linear-gradient(
            105deg,
            #180702 0%,
            #140501 44%,
            #030201 60%,
            #000000 100%
        );

    isolation: isolate;
}


/* ==================================================
   CONTAINER
================================================== */

.hero-contabil-container {
    position: relative;

    z-index: 3;

    width: min(980px, calc(100% - 40px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 65px;

    padding: 70px 0;
}


/* ==================================================
   TEXTO
================================================== */

.hero-contabil-content {
    position: relative;

    z-index: 5;
}

.hero-contabil-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #c98213;

    font-size: 26px;
    font-weight: 400;

    text-transform: uppercase;

    letter-spacing: 0.3px;
}

.hero-contabil-content h1 {
    max-width: 570px;

    margin-bottom: 25px;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.12;

    font-weight: 800;
}


/* ==================================================
   SERVIÇOS
================================================== */

.hero-services {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 32px;
}

.hero-service {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 17px;

    line-height: 1.4;
}

.hero-service i {
    width: 24px;
    height: 24px;

    margin-top: 1px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(231, 168, 52, 0.7);

    border-radius: 50%;

    color: #efaf33;

    font-size: 11px;

    background:
        rgba(238, 172, 47, 0.08);

    box-shadow:
        0 0 15px rgba(223, 145, 20, 0.14);
}

.hero-service span {
    display: block;
}

.hero-service small {
    display: inline;

    color: rgba(255, 255, 255, 0.72);

    font-size: inherit;
}


/* ==================================================
   BOTÃO
================================================== */

.hero-btn {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 61px;

    padding: 0 25px;

    overflow: hidden;

    border-radius: 10px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;

    background:
        linear-gradient(
            120deg,
            #f0c84d 0%,
            #d99a24 43%,
            #a96110 100%
        );

    box-shadow:
        0 9px 30px rgba(222, 142, 25, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-btn::before {
    content: "";

    position: absolute;

    top: -80%;
    left: -40%;

    width: 50px;
    height: 230%;

    opacity: 0.55;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.85),
            transparent
        );

    transform: rotate(22deg);

    transition: left 0.75s ease;
}

.hero-btn span,
.hero-btn i {
    position: relative;

    z-index: 2;
}

.hero-btn i {
    font-size: 15px;

    transition: transform 0.3s ease;
}

.hero-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 14px 35px rgba(222, 142, 25, 0.34);
}

.hero-btn:hover::before {
    left: 120%;
}

.hero-btn:hover i {
    transform: translateX(5px);
}


/* ==================================================
   ÁREA DA CALCULADORA
================================================== */

.hero-contabil-art {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 430px;
}

.calculator-stage {
    position: relative;

    width: min(100%, 480px);

    aspect-ratio: 1 / 1;

    display: flex;

    align-items: center;
    justify-content: center;

    transition:
        transform 0.45s ease;
}

.calculator-stage:hover {
    transform: scale(1.025);
}


/* ==================================================
   PNG DA CALCULADORA
================================================== */

.calculator-image {
    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 460px;

    height: auto;

    display: block;

    filter:
        drop-shadow(
            0 8px 22px rgba(0, 0, 0, 0.5)
        )
        drop-shadow(
            0 0 8px rgba(241, 171, 39, 0.18)
        );

    animation:
        calculatorFloat 5s ease-in-out infinite;

    user-select: none;

    pointer-events: none;
}


/* ==================================================
   AURA ATRÁS DA CALCULADORA
================================================== */

.calculator-aura {
    position: absolute;

    z-index: 1;

    width: 72%;
    height: 72%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 184, 43, 0.28) 0%,
            rgba(238, 136, 10, 0.11) 36%,
            transparent 68%
        );

    filter: blur(20px);

    animation:
        auraPulse 3s ease-in-out infinite;
}


/* ==================================================
   ANEL DE BRILHO
================================================== */

.calculator-glow-ring {
    position: absolute;

    z-index: 2;

    width: 83%;
    height: 83%;

    border-radius: 50%;

    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 48deg,
            rgba(255, 194, 60, 0.1) 72deg,
            rgba(255, 224, 125, 0.95) 91deg,
            rgba(255, 167, 31, 0.3) 112deg,
            transparent 145deg,
            transparent 360deg
        );

    filter:
        blur(3px)
        drop-shadow(
            0 0 13px rgba(255, 168, 20, 0.75)
        );

    animation:
        rotateGlow 4.5s linear infinite;
}

.calculator-glow-ring::after {
    content: "";

    position: absolute;

    inset: 7px;

    border-radius: 50%;

    background: #030201;
}


/* ==================================================
   REFLEXO PASSANDO
================================================== */

.calculator-shine {
    position: absolute;

    z-index: 6;

    width: 125%;
    height: 125%;

    opacity: 0;

    pointer-events: none;

    background:
        linear-gradient(
            110deg,
            transparent 37%,
            rgba(255, 204, 88, 0.05) 45%,
            rgba(255, 230, 145, 0.8) 49%,
            rgba(255, 181, 43, 0.3) 52%,
            transparent 59%
        );

    transform:
        translateX(-65%)
        rotate(-7deg);

    mix-blend-mode: screen;

    filter: blur(2px);

    -webkit-mask-image:
        radial-gradient(
            circle at center,
            #000 0%,
            #000 48%,
            transparent 72%
        );

    mask-image:
        radial-gradient(
            circle at center,
            #000 0%,
            #000 48%,
            transparent 72%
        );

    animation:
        imageShine 5s ease-in-out infinite;
}


/* ==================================================
   STICKER - DESDE 1992
================================================== */

.since-sticker {
    position: absolute;

    z-index: 10;

    left: -22px;
    bottom: 37px;

    width: 128px;
    height: 128px;

    padding: 5px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #fff1a1 0%,
            #e5ad38 25%,
            #9b570c 57%,
            #f3ca61 80%,
            #b76e15 100%
        );

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.45),
        0 0 22px rgba(224, 151, 30, 0.25);

    transform: rotate(-8deg);

    animation:
        stickerFloat 4s ease-in-out infinite;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* círculo interno */

.since-sticker-inner {
    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 221, 133, 0.5);

    border-radius: 50%;

    text-align: center;

    background:
        radial-gradient(
            circle at 35% 25%,
            #8d5218 0%,
            #4e2707 47%,
            #281003 100%
        );

    box-shadow:
        inset 0 0 15px rgba(255, 183, 49, 0.17);
}


/* pontinhos decorativos */

.since-sticker-inner::before,
.since-sticker-inner::after {
    content: "•  •  •";

    position: absolute;

    color: #d9a03d;

    font-size: 8px;

    letter-spacing: 3px;
}

.since-sticker-inner::before {
    top: 15px;
}

.since-sticker-inner::after {
    bottom: 14px;
}


/* DESDE */

.since-small {
    margin-bottom: -2px;

    color: #e3b653;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;
}


/* 1992 */

.since-sticker strong {
    color: #ffffff;

    font-size: 34px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35);
}


/* NA ENSEADA */

.since-place {
    margin-top: 4px;

    color: #f1c866;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}


/* hover do sticker */

.calculator-stage:hover .since-sticker {
    transform:
        rotate(-3deg)
        scale(1.07);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(224, 151, 30, 0.38);
}


/* ==================================================
   BOLHAS
================================================== */

.hero-orbs {
    position: absolute;

    inset: 0;

    z-index: 1;

    overflow: hidden;

    pointer-events: none;
}

.hero-orb {
    position: absolute;

    display: block;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 35%,
            rgba(188, 102, 18, 0.55),
            rgba(104, 46, 3, 0.28) 45%,
            rgba(43, 15, 0, 0.08) 75%,
            transparent
        );

    filter: blur(8px);

    opacity: 0.65;

    transform: translate3d(0, 0, 0);

    transition:
        transform 0.8s cubic-bezier(0.2, 0.75, 0.3, 1),
        filter 0.8s ease,
        opacity 0.8s ease;

    animation:
        orbFloat 8s ease-in-out infinite;
}


/* ==================================================
   POSIÇÕES DAS BOLHAS
================================================== */

.orb-1 {
    width: 150px;
    height: 150px;

    top: -15px;
    left: 2%;

    animation-delay: -2s;
}

.orb-2 {
    width: 95px;
    height: 95px;

    top: 65%;
    left: 8%;

    animation-delay: -5s;
}

.orb-3 {
    width: 90px;
    height: 90px;

    top: 3%;
    left: 48%;

    animation-delay: -1s;
}

.orb-4 {
    width: 125px;
    height: 125px;

    top: 50%;
    right: -20px;

    animation-delay: -4s;
}

.orb-5 {
    width: 85px;
    height: 85px;

    bottom: -7px;
    right: 11%;

    animation-delay: -6s;
}

.orb-6 {
    width: 62px;
    height: 62px;

    bottom: 6%;
    left: 49%;

    animation-delay: -3s;
}


/* ==================================================
   INTERAÇÃO DAS BOLHAS
================================================== */

.hero-contabil:hover .orb-1 {
    transform:
        translate(18px, 12px)
        scale(1.08);

    filter: blur(5px);

    opacity: 0.86;
}

.hero-contabil:hover .orb-2 {
    transform:
        translate(-12px, -15px)
        scale(1.12);

    filter: blur(5px);

    opacity: 0.8;
}

.hero-contabil:hover .orb-3 {
    transform:
        translate(12px, 17px)
        scale(1.06);

    filter: blur(4px);

    opacity: 0.82;
}

.hero-contabil:hover .orb-4 {
    transform:
        translate(-21px, -11px)
        scale(1.13);

    filter: blur(4px);

    opacity: 0.85;
}

.hero-contabil:hover .orb-5 {
    transform:
        translate(-10px, -18px)
        scale(1.1);

    filter: blur(5px);

    opacity: 0.82;
}

.hero-contabil:hover .orb-6 {
    transform:
        translate(13px, -10px)
        scale(1.16);

    filter: blur(3px);

    opacity: 0.9;
}


/* ==================================================
   ANIMAÇÕES
================================================== */

@keyframes calculatorFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


@keyframes auraPulse {

    0%,
    100% {
        transform: scale(0.94);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

}


@keyframes rotateGlow {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes imageShine {

    0% {
        opacity: 0;

        transform:
            translateX(-65%)
            rotate(-7deg);
    }

    15% {
        opacity: 0;
    }

    26% {
        opacity: 0.9;
    }

    42% {
        opacity: 0;

        transform:
            translateX(65%)
            rotate(-7deg);
    }

    100% {
        opacity: 0;

        transform:
            translateX(65%)
            rotate(-7deg);
    }

}


@keyframes orbFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -15px;
    }

}


/* animação independente do selo */

@keyframes stickerFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -7px;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .hero-contabil-container {
        gap: 35px;
    }

    .hero-contabil-label {
        font-size: 21px;
    }

    .hero-contabil-content h1 {
        font-size: 37px;
    }

    .hero-service {
        font-size: 15px;
    }

    .since-sticker {
        left: -5px;
        bottom: 35px;

        width: 110px;
        height: 110px;
    }

    .since-sticker strong {
        font-size: 29px;
    }

    .since-small {
        font-size: 10px;
    }

    .since-place {
        font-size: 9px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

    .hero-contabil {
        min-height: auto;
    }

    .hero-contabil-container {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        gap: 25px;

        padding:
            55px
            0
            50px;
    }

    .hero-contabil-content {
        text-align: center;
    }

    .hero-contabil-label {
        font-size: 18px;
    }

    .hero-contabil-content h1 {
        max-width: 600px;

        margin-left: auto;
        margin-right: auto;

        font-size: 34px;
    }

    .hero-services {
        max-width: 560px;

        margin:
            0
            auto
            30px;

        text-align: left;
    }

    .hero-btn {
        min-height: 57px;

        font-size: 18px;
    }

    .hero-contabil-art {
        min-height: auto;

        padding-bottom: 15px;
    }

    .calculator-stage {
        width: min(85vw, 420px);
    }

    .since-sticker {
        left: 0;
        bottom: 25px;

        width: 105px;
        height: 105px;
    }

    .since-sticker strong {
        font-size: 28px;
    }

}


/* ==================================================
   MOBILE PEQUENO
================================================== */

@media (max-width: 480px) {

    .hero-contabil-container {
        padding-top: 45px;
    }

    .hero-contabil-content h1 {
        font-size: 29px;
    }

    .hero-service {
        gap: 10px;

        font-size: 15px;
    }

    .hero-btn {
        width: 100%;

        max-width: 330px;
    }

    .calculator-stage {
        width: min(88vw, 370px);
    }

    .since-sticker {
        left: -2px;
        bottom: 17px;

        width: 94px;
        height: 94px;
    }

    .since-sticker strong {
        font-size: 25px;
    }

    .since-small {
        font-size: 9px;
    }

    .since-place {
        font-size: 8px;
    }

    .since-sticker-inner::before {
        top: 10px;
    }

    .since-sticker-inner::after {
        bottom: 9px;
    }

}
/* ==================================================
   SERVIÇOS
================================================== */

.hero-services {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 32px;
}

.hero-service {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 17px;

    line-height: 1.4;
}

.hero-service i {
    width: 24px;
    height: 24px;

    margin-top: 1px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(231, 168, 52, 0.7);

    border-radius: 50%;

    color: #efaf33;

    font-size: 11px;

    background: rgba(238, 172, 47, 0.08);

    box-shadow:
        0 0 15px rgba(223, 145, 20, 0.14);
}

.hero-service span {
    display: block;
}

.hero-service small {
    display: inline;

    color: rgba(255, 255, 255, 0.72);

    font-size: inherit;
}


/* ==================================================
   BOTÃO
================================================== */

.hero-btn {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 61px;

    padding: 0 25px;

    overflow: hidden;

    border-radius: 10px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;

    background:
        linear-gradient(
            120deg,
            #f0c84d 0%,
            #d99a24 43%,
            #a96110 100%
        );

    box-shadow:
        0 9px 30px rgba(222, 142, 25, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-btn::before {
    content: "";

    position: absolute;

    top: -80%;

    left: -40%;

    width: 50px;
    height: 230%;

    opacity: 0.55;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.85),
            transparent
        );

    transform: rotate(22deg);

    transition: left 0.75s ease;
}

.hero-btn span,
.hero-btn i {
    position: relative;

    z-index: 2;
}

.hero-btn i {
    font-size: 15px;

    transition: transform 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 35px rgba(222, 142, 25, 0.34);
}

.hero-btn:hover::before {
    left: 120%;
}

.hero-btn:hover i {
    transform: translateX(5px);
}


/* ==================================================
   ARTE CALCULADORA
================================================== */

.hero-contabil-art {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 430px;
}

.calculator-stage {
    position: relative;

    width: min(100%, 480px);

    aspect-ratio: 1 / 1;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: transform 0.45s ease;
}

.calculator-stage:hover {
    transform: scale(1.025);
}


/* ==================================================
   PNG
================================================== */

.calculator-image {
    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 460px;

    height: auto;

    display: block;

    filter:
        drop-shadow(0 8px 22px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 8px rgba(241, 171, 39, 0.18));

    animation:
        calculatorFloat 5s ease-in-out infinite;

    user-select: none;

    pointer-events: none;
}


/* ==================================================
   AURA ATRÁS DA IMAGEM
================================================== */

.calculator-aura {
    position: absolute;

    z-index: 1;

    width: 72%;
    height: 72%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 184, 43, 0.28) 0%,
            rgba(238, 136, 10, 0.11) 36%,
            transparent 68%
        );

    filter: blur(20px);

    animation:
        auraPulse 3s ease-in-out infinite;
}


/* ==================================================
   ANEL DOURADO ANIMADO
================================================== */

.calculator-glow-ring {
    position: absolute;

    z-index: 2;

    width: 83%;
    height: 83%;

    border-radius: 50%;

    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 48deg,
            rgba(255, 194, 60, 0.1) 72deg,
            rgba(255, 224, 125, 0.95) 91deg,
            rgba(255, 167, 31, 0.3) 112deg,
            transparent 145deg,
            transparent 360deg
        );

    filter:
        blur(3px)
        drop-shadow(0 0 13px rgba(255, 168, 20, 0.75));

    animation:
        rotateGlow 4.5s linear infinite;
}


/* cria o miolo vazado */

.calculator-glow-ring::after {
    content: "";

    position: absolute;

    inset: 7px;

    border-radius: 50%;

    background: #030201;
}


/* ==================================================
   BRILHO PASSANDO PELA ARTE
================================================== */

.calculator-shine {
    position: absolute;

    z-index: 6;

    width: 125%;
    height: 125%;

    opacity: 0;

    pointer-events: none;

    background:
        linear-gradient(
            110deg,
            transparent 37%,
            rgba(255, 204, 88, 0.05) 45%,
            rgba(255, 230, 145, 0.8) 49%,
            rgba(255, 181, 43, 0.3) 52%,
            transparent 59%
        );

    transform:
        translateX(-65%)
        rotate(-7deg);

    mix-blend-mode: screen;

    filter: blur(2px);

    mask-image:
        radial-gradient(
            circle at center,
            #000 0%,
            #000 48%,
            transparent 72%
        );

    -webkit-mask-image:
        radial-gradient(
            circle at center,
            #000 0%,
            #000 48%,
            transparent 72%
        );

    animation:
        imageShine 5s ease-in-out infinite;
}


/* ==================================================
   BOLHAS
================================================== */

.hero-orbs {
    position: absolute;

    inset: 0;

    z-index: 1;

    overflow: hidden;

    pointer-events: none;
}

.hero-orb {
    position: absolute;

    display: block;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 35%,
            rgba(188, 102, 18, 0.55),
            rgba(104, 46, 3, 0.28) 45%,
            rgba(43, 15, 0, 0.08) 75%,
            transparent
        );

    filter: blur(8px);

    opacity: 0.65;

    transform: translate3d(0, 0, 0);

    transition:
        transform 0.8s cubic-bezier(0.2, 0.75, 0.3, 1),
        filter 0.8s ease,
        opacity 0.8s ease;

    animation:
        orbFloat 8s ease-in-out infinite;
}


/* posições */

.orb-1 {
    width: 150px;
    height: 150px;

    top: -15px;
    left: 2%;

    animation-delay: -2s;
}

.orb-2 {
    width: 95px;
    height: 95px;

    top: 65%;
    left: 8%;

    animation-delay: -5s;
}

.orb-3 {
    width: 90px;
    height: 90px;

    top: 3%;
    left: 48%;

    animation-delay: -1s;
}

.orb-4 {
    width: 125px;
    height: 125px;

    top: 50%;
    right: -20px;

    animation-delay: -4s;
}

.orb-5 {
    width: 85px;
    height: 85px;

    bottom: -7px;
    right: 11%;

    animation-delay: -6s;
}

.orb-6 {
    width: 62px;
    height: 62px;

    bottom: 6%;
    left: 49%;

    animation-delay: -3s;
}


/* ==================================================
   INTERAÇÃO DAS BOLHAS
================================================== */

.hero-contabil:hover .orb-1 {
    transform: translate(18px, 12px) scale(1.08);

    filter: blur(5px);

    opacity: 0.86;
}

.hero-contabil:hover .orb-2 {
    transform: translate(-12px, -15px) scale(1.12);

    filter: blur(5px);

    opacity: 0.8;
}

.hero-contabil:hover .orb-3 {
    transform: translate(12px, 17px) scale(1.06);

    filter: blur(4px);

    opacity: 0.82;
}

.hero-contabil:hover .orb-4 {
    transform: translate(-21px, -11px) scale(1.13);

    filter: blur(4px);

    opacity: 0.85;
}

.hero-contabil:hover .orb-5 {
    transform: translate(-10px, -18px) scale(1.1);

    filter: blur(5px);

    opacity: 0.82;
}

.hero-contabil:hover .orb-6 {
    transform: translate(13px, -10px) scale(1.16);

    filter: blur(3px);

    opacity: 0.9;
}


/* ==================================================
   ANIMAÇÕES
================================================== */

@keyframes calculatorFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


@keyframes auraPulse {

    0%,
    100% {
        transform: scale(0.94);

        opacity: 0.55;
    }

    50% {
        transform: scale(1.08);

        opacity: 1;
    }

}


@keyframes rotateGlow {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes imageShine {

    0% {
        opacity: 0;

        transform:
            translateX(-65%)
            rotate(-7deg);
    }

    15% {
        opacity: 0;
    }

    26% {
        opacity: 0.9;
    }

    42% {
        opacity: 0;

        transform:
            translateX(65%)
            rotate(-7deg);
    }

    100% {
        opacity: 0;

        transform:
            translateX(65%)
            rotate(-7deg);
    }

}


@keyframes orbFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -15px;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .hero-contabil-container {
        gap: 35px;
    }

    .hero-contabil-label {
        font-size: 21px;
    }

    .hero-contabil-content h1 {
        font-size: 37px;
    }

    .hero-service {
        font-size: 15px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

    .hero-contabil {
        min-height: auto;
    }

    .hero-contabil-container {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        gap: 30px;

        padding:
            55px
            0
            45px;
    }

    .hero-contabil-content {
        text-align: center;
    }

    .hero-contabil-label {
        font-size: 18px;
    }

    .hero-contabil-content h1 {
        max-width: 600px;

        margin-left: auto;
        margin-right: auto;

        font-size: 34px;
    }

    .hero-services {
        max-width: 560px;

        margin:
            0
            auto
            30px;

        text-align: left;
    }

    .hero-btn {
        min-height: 57px;

        font-size: 18px;
    }

    .hero-contabil-art {
        min-height: auto;
    }

    .calculator-stage {
        width: min(90vw, 420px);
    }

}


/* ==================================================
   MOBILE PEQUENO
================================================== */

@media (max-width: 480px) {

    .hero-contabil-container {
        padding-top: 45px;
    }

    .hero-contabil-content h1 {
        font-size: 29px;
    }

    .hero-service {
        gap: 10px;

        font-size: 15px;
    }

    .hero-btn {
        width: 100%;

        max-width: 330px;
    }

}

/* ==================================================
   SERVIÇOS
================================================== */

.services-section {
    padding: 70px 0 60px;

    background: #f7f7f7;

    overflow: hidden;
}

.services-container {
    width: min(1000px, calc(100% - 40px));

    margin: 0 auto;
}


/* ==================================================
   CABEÇALHO
================================================== */

.services-header {
    text-align: center;

    margin-bottom: 38px;
}

.services-header h2 {
    margin-bottom: 12px;

    color: #080808;

    font-size: clamp(36px, 4vw, 48px);

    line-height: 1;

    font-weight: 800;
}

.services-header p {
    color: #454545;

    font-size: clamp(18px, 2vw, 26px);

    line-height: 1.4;
}


/* ==================================================
   CARROSSEL
================================================== */

.services-carousel-wrapper {
    position: relative;
}

.services-carousel {
    display: flex;

    gap: 4px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    scroll-snap-type: x mandatory;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}


/* ==================================================
   CARD
================================================== */

.service-card {
    position: relative;

    flex:
        0
        0
        calc((100% - 8px) / 3);

    height: 225px;

    overflow: hidden;

    scroll-snap-align: start;

    cursor: pointer;

    background: #111111;
}

.service-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.65s cubic-bezier(0.2, 0.75, 0.3, 1),
        filter 0.5s ease;
}


/* ==================================================
   OVERLAY
================================================== */

.service-card-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.42) 42%,
            rgba(0, 0, 0, 0.08) 100%
        );

    transition:
        background 0.4s ease;
}


/* faixa central semelhante à referência */

.service-card::after {
    content: "";

    position: absolute;

    z-index: 1;

    left: 0;
    right: 0;

    top: 50%;

    height: 82px;

    transform: translateY(-50%);

    background:
        rgba(26, 23, 20, 0.55);

    backdrop-filter: blur(2px);

    transition:
        height 0.45s ease,
        background 0.45s ease;
}


/* ==================================================
   CONTEÚDO
================================================== */

.service-card-content {
    position: absolute;

    z-index: 3;

    inset: 0;

    padding: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: #ffffff;
}


/* ==================================================
   ÍCONE
================================================== */

.service-card-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(226, 164, 51, 0.75);

    border-radius: 50%;

    color: #e0a333;

    font-size: 17px;

    background:
        rgba(0, 0, 0, 0.25);

    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* ==================================================
   TÍTULO
================================================== */

.service-card h3 {
    color: #ffffff;

    font-size: 24px;

    line-height: 1.1;

    font-weight: 800;

    transition:
        transform 0.45s ease;
}


/* ==================================================
   CONTEÚDO ESCONDIDO
================================================== */

.service-card-hidden {
    max-height: 0;

    opacity: 0;

    overflow: hidden;

    transform: translateY(16px);

    transition:
        max-height 0.5s ease,
        opacity 0.4s ease,
        transform 0.4s ease,
        margin 0.4s ease;
}

.service-card-hidden p {
    max-width: 250px;

    margin:
        0
        auto
        12px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 14px;

    line-height: 1.5;
}

.service-card-hidden a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #e9b44b;

    font-size: 14px;
    font-weight: 700;
}

.service-card-hidden a i {
    font-size: 11px;

    transition: transform 0.25s ease;
}

.service-card-hidden a:hover i {
    transform: translateX(4px);
}


/* ==================================================
   HOVER DO CARD
================================================== */

.service-card:hover img {
    transform: scale(1.1);

    filter: brightness(0.8);
}

.service-card:hover .service-card-overlay {
    background:
        linear-gradient(
            to top,
            rgba(13, 5, 1, 0.96) 0%,
            rgba(28, 10, 1, 0.78) 60%,
            rgba(0, 0, 0, 0.2) 100%
        );
}

.service-card:hover::after {
    height: 100%;

    background:
        rgba(25, 12, 3, 0.48);
}

.service-card:hover .service-card-icon {
    opacity: 1;

    transform: translateY(0);
}

.service-card:hover h3 {
    transform: translateY(-3px);
}

.service-card:hover .service-card-hidden {
    max-height: 110px;

    opacity: 1;

    margin-top: 11px;

    transform: translateY(0);
}


/* ==================================================
   LINHA DOURADA
================================================== */

.service-card-content::after {
    content: "";

    width: 0;
    height: 2px;

    margin-top: 14px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d69b2c,
            transparent
        );

    transition: width 0.45s ease;
}

.service-card:hover .service-card-content::after {
    width: 110px;
}


/* ==================================================
   NAVEGAÇÃO
================================================== */

.services-navigation {
    margin-top: 10px;

    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 7px;
}

.services-arrow {
    width: 34px;
    height: 34px;

    border: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: transparent;

    color: #171717;

    font-size: 19px;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.services-arrow:hover {
    color: #bb7b1d;

    transform: scale(1.12);
}

.services-arrow:disabled {
    color: #bbbbbb;

    cursor: default;

    transform: none;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .service-card {
        flex:
            0
            0
            calc((100% - 4px) / 2);

        height: 240px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .services-section {
        padding: 55px 0 45px;
    }

    .services-container {
        width: calc(100% - 30px);
    }

    .services-header {
        margin-bottom: 30px;
    }

    .services-header h2 {
        font-size: 35px;
    }

    .services-header p {
        font-size: 17px;
    }

    .services-carousel {
        gap: 12px;

        overflow-x: auto;
    }

    .service-card {
        flex:
            0
            0
            88%;

        height: 245px;

        border-radius: 8px;
    }

    .services-navigation {
        margin-top: 14px;
    }

}


/* ==================================================
   TOUCH SCREEN
================================================== */

@media (hover: none) {

    .service-card .service-card-icon {
        opacity: 1;

        transform: translateY(0);
    }

    .service-card .service-card-hidden {
        max-height: 100px;

        opacity: 1;

        margin-top: 10px;

        transform: translateY(0);
    }

    .service-card::after {
        height: 100%;

        background:
            rgba(22, 10, 3, 0.48);
    }

}

/* ==================================================
   SOBRE NÓS
================================================== */

.about-section {
    position: relative;

    padding: 85px 0;

    background: #ffffff;

    overflow: hidden;
}

.about-container {
    width: min(1000px, calc(100% - 40px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.82fr 1.18fr;

    align-items: center;

    gap: 70px;
}


/* ==================================================
   TEXTO
================================================== */

.about-content {
    position: relative;

    z-index: 3;
}

.about-eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: #b77a20;

    font-size: 15px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.7px;
}

.about-content h2 {
    margin-bottom: 32px;

    color: #080808;

    font-size: clamp(38px, 4vw, 48px);

    line-height: 1;

    font-weight: 800;
}

.about-content p {
    max-width: 450px;

    margin-bottom: 14px;

    color: #484848;

    font-size: 20px;

    line-height: 1.55;
}


/* ==================================================
   BOTÃO
================================================== */

.about-btn {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-top: 28px;

    min-height: 60px;

    padding: 0 22px;

    overflow: hidden;

    border-radius: 10px;

    color: #ffffff;

    font-size: 19px;

    font-weight: 700;

    background:
        linear-gradient(
            120deg,
            #f1c94f 0%,
            #d69a29 48%,
            #9e5c16 100%
        );

    box-shadow:
        0 7px 16px rgba(89, 53, 9, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-btn::before {
    content: "";

    position: absolute;

    top: -70%;

    left: -60px;

    width: 40px;
    height: 220%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.75),
            transparent
        );

    transform: rotate(20deg);

    transition: left 0.7s ease;
}

.about-btn span,
.about-btn i {
    position: relative;

    z-index: 2;
}

.about-btn i {
    font-size: 14px;

    transition:
        transform 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(89, 53, 9, 0.28);
}

.about-btn:hover::before {
    left: 120%;
}

.about-btn:hover i {
    transform: translateX(5px);
}


/* ==================================================
   ÁREA DA IMAGEM
================================================== */

.about-image-area {
    position: relative;

    min-height: 510px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* ==================================================
   DECORAÇÃO DOURADA
================================================== */

.about-image-decoration {
    position: absolute;

    width: calc(100% - 30px);
    height: calc(100% - 30px);

    max-width: 540px;
    max-height: 465px;

    top: 50%;
    left: 50%;

    transform:
        translate(-47%, -46%);

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #e1b56d 0%,
            #bb7c24 100%
        );

    opacity: 0.75;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}


/* ==================================================
   IMAGEM
================================================== */

.about-image-wrapper {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 540px;

    height: 465px;

    overflow: hidden;

    border-radius: 12px;

    background: #eeeeee;

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.5s cubic-bezier(0.2, 0.75, 0.3, 1),
        box-shadow 0.5s ease;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}


/* ==================================================
   OVERLAY DA IMAGEM
================================================== */

.about-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20, 9, 1, 0.5) 0%,
            rgba(20, 9, 1, 0.05) 45%,
            transparent 70%
        );

    opacity: 0;

    transition:
        opacity 0.45s ease;
}


/* ==================================================
   BADGE
================================================== */

.about-image-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 9px;

    color: #ffffff;

    background:
        rgba(28, 14, 3, 0.68);

    backdrop-filter: blur(7px);

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.about-image-badge > i {
    color: #e3aa45;

    font-size: 22px;
}

.about-image-badge div {
    display: flex;

    flex-direction: column;
}

.about-image-badge strong {
    font-size: 15px;
}

.about-image-badge span {
    margin-top: 2px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;
}


/* ==================================================
   HOVER
================================================== */

.about-image-area:hover .about-image-wrapper {
    transform:
        translateY(-5px)
        scale(1.01);

    box-shadow:
        0 23px 42px rgba(0, 0, 0, 0.16);
}

.about-image-area:hover .about-image-wrapper img {
    transform: scale(1.055);

    filter: saturate(1.05);
}

.about-image-area:hover .about-image-decoration {
    transform:
        translate(-44%, -43%)
        rotate(1.5deg);

    opacity: 0.9;
}

.about-image-area:hover .about-image-overlay {
    opacity: 1;
}

.about-image-area:hover .about-image-badge {
    opacity: 1;

    transform: translateY(0);
}


/* ==================================================
   ELEMENTO DECORATIVO FUNDO
================================================== */

.about-section::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -180px;
    top: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(193, 137, 49, 0.09),
            transparent 70%
        );

    pointer-events: none;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .about-container {
        gap: 40px;

        grid-template-columns: 0.9fr 1.1fr;
    }

    .about-content p {
        font-size: 17px;
    }

    .about-image-wrapper {
        height: 410px;
    }

    .about-image-area {
        min-height: 450px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .about-section {
        padding: 60px 0;
    }

    .about-container {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        margin-bottom: 23px;

        font-size: 37px;
    }

    .about-content p {
        max-width: 560px;

        margin-left: auto;
        margin-right: auto;

        font-size: 17px;
    }

    .about-image-area {
        width: 100%;

        min-height: auto;
    }

    .about-image-wrapper {
        width: calc(100% - 14px);

        height: auto;

        aspect-ratio: 1.15 / 1;
    }

    .about-image-wrapper img {
        height: 100%;
    }

    .about-image-decoration {
        width: calc(100% - 20px);
        height: calc(100% - 5px);

        top: 50%;

        transform:
            translate(-46%, -45%);
    }

}


/* ==================================================
   MOBILE PEQUENO
================================================== */

@media (max-width: 480px) {

    .about-btn {
        width: 100%;

        max-width: 310px;

        font-size: 17px;
    }

    .about-image-badge {
        left: 15px;
        bottom: 15px;
    }

}

/* ==================================================
   DEPOIMENTOS
================================================== */

.testimonials-section {
    position: relative;

    padding: 75px 0 80px;

    background:
        linear-gradient(
            180deg,
            #f7f7f7 0%,
            #f4f4f4 100%
        );

    overflow: hidden;
}

.testimonials-container {
    width: min(1000px, calc(100% - 40px));

    margin: 0 auto;
}


/* ==================================================
   CABEÇALHO
================================================== */

.testimonials-header {
    text-align: center;

    margin-bottom: 55px;
}

.testimonials-header h2 {
    margin-bottom: 12px;

    color: #050505;

    font-size: clamp(38px, 4vw, 48px);

    line-height: 1;

    font-weight: 800;
}

.testimonials-header p {
    color: #454545;

    font-size: clamp(18px, 2vw, 25px);

    line-height: 1.4;
}


/* ==================================================
   GRID
================================================== */

.testimonials-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}


/* ==================================================
   CARD
================================================== */

.testimonial-card {
    position: relative;

    min-height: 200px;

    padding: 22px 20px;

    border: 1px solid rgba(0, 0, 0, 0.035);

    border-radius: 7px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #eeeeee 100%
        );

    box-shadow:
        0 9px 25px rgba(0, 0, 0, 0.035);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.testimonial-card::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    border-radius: 0 0 7px 7px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d49a31,
            transparent
        );

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(194, 133, 34, 0.14);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.09);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}


/* ==================================================
   TOPO
================================================== */

.testimonial-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 14px;
}

.testimonial-person {
    display: flex;

    align-items: center;

    gap: 11px;
}

.testimonial-person img {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 50%;

    box-shadow:
        0 3px 9px rgba(0, 0, 0, 0.12);
}

.testimonial-person div {
    display: flex;

    flex-direction: column;
}

.testimonial-person strong {
    color: #171717;

    font-size: 14px;

    line-height: 1.2;

    font-weight: 700;
}

.testimonial-person span {
    margin-top: 4px;

    color: #9b9b9b;

    font-size: 11px;
}


/* ==================================================
   GOOGLE
================================================== */

.google-icon {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.google-icon span {
    font-size: 21px;

    font-weight: 900;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        conic-gradient(
            from -45deg,
            #4285f4 0deg 90deg,
            #34a853 90deg 180deg,
            #fbbc05 180deg 270deg,
            #ea4335 270deg 360deg
        );

    background-clip: text;

    -webkit-background-clip: text;

    color: transparent;
}


/* ==================================================
   ESTRELAS
================================================== */

.testimonial-stars {
    display: flex;

    align-items: center;

    gap: 2px;

    margin-bottom: 10px;

    color: #00a66a;

    font-size: 14px;
}


/* ==================================================
   TEXTO
================================================== */

.testimonial-text {
    color: #303030;

    font-size: 14px;

    line-height: 1.48;
}


/* ==================================================
   RESUMO
================================================== */

.testimonials-summary {
    margin-top: 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 4px;

    color: #333333;

    font-size: 13px;

    text-align: center;
}

.testimonials-summary strong {
    color: #111111;

    font-weight: 800;
}


/* ==================================================
   FUNDO DECORATIVO
================================================== */

.testimonials-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: 50%;

    bottom: -330px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(190, 133, 40, 0.08),
            transparent 70%
        );

    pointer-events: none;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        grid-column: 1 / -1;

        width: calc(50% - 8px);

        justify-self: center;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-container {
        width: calc(100% - 30px);
    }

    .testimonials-header {
        margin-bottom: 35px;
    }

    .testimonials-header h2 {
        font-size: 35px;
    }

    .testimonials-header p {
        font-size: 17px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .testimonial-card,
    .testimonial-card:last-child {
        width: 100%;

        grid-column: auto;
    }

}


/* ==================================================
   MOBILE PEQUENO
================================================== */

@media (max-width: 400px) {

    .testimonial-card {
        padding: 19px 17px;
    }

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

}

/* ==================================================
   BOLETINS
================================================== */

.bulletins-section {
    position: relative;

    padding: 75px 0 90px;

    background: #ffffff;

    overflow: hidden;
}

.bulletins-container {
    width: min(950px, calc(100% - 40px));

    margin: 0 auto;
}


/* ==================================================
   CABEÇALHO
================================================== */

.bulletins-header {
    margin-bottom: 32px;

    text-align: center;
}

.bulletins-header h2 {
    margin-bottom: 13px;

    color: #070707;

    font-size: clamp(38px, 4vw, 48px);

    line-height: 1;

    font-weight: 800;
}

.bulletins-header p {
    color: #444444;

    font-size: clamp(18px, 2vw, 25px);

    line-height: 1.4;
}


/* ==================================================
   GRID
================================================== */

.bulletins-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* ==================================================
   CARD
================================================== */

.bulletin-card {
    position: relative;

    min-height: 330px;

    padding: 27px 32px 24px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border:
        1px solid
        rgba(146, 85, 41, 0.26);

    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fdfdfd 100%
        );

    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* linha dourada */

.bulletin-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #9a5813,
            #e5b54e,
            #b66f19
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.45s ease;
}


/* brilho */

.bulletin-card::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215, 157, 55, 0.14),
            transparent 70%
        );

    opacity: 0;

    transition:
        opacity 0.4s ease,
        transform 0.5s ease;
}


/* ==================================================
   DATA
================================================== */

.bulletin-date {
    display: block;

    margin-bottom: 11px;

    color: #999999;

    font-size: 17px;

    font-weight: 400;
}


/* ==================================================
   TÍTULO
================================================== */

.bulletin-card h3 {
    margin-bottom: 25px;

    color: #080808;

    font-size: 27px;

    line-height: 1.35;

    font-weight: 800;

    transition:
        color 0.3s ease;
}


/* ==================================================
   TEXTO
================================================== */

.bulletin-card p {
    margin-bottom: 24px;

    color: #202020;

    font-size: 18px;

    line-height: 1.55;
}


/* ==================================================
   LINK
================================================== */

.bulletin-link {
    position: relative;

    z-index: 2;

    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    width: fit-content;

    color: #c98122;

    font-size: 21px;

    font-weight: 800;

    transition:
        color 0.25s ease;
}

.bulletin-link i {
    font-size: 13px;

    transition:
        transform 0.3s ease;
}


/* ==================================================
   HOVER
================================================== */

.bulletin-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(190, 126, 31, 0.48);

    box-shadow:
        0 20px 35px rgba(64, 36, 9, 0.11);
}

.bulletin-card:hover::before {
    transform: scaleX(1);
}

.bulletin-card:hover::after {
    opacity: 1;

    transform: scale(1.5);
}

.bulletin-card:hover h3 {
    color: #9e611b;
}

.bulletin-link:hover {
    color: #9d5c15;
}

.bulletin-link:hover i,
.bulletin-card:hover .bulletin-link i {
    transform: translateX(5px);
}


/* ==================================================
   FOOTER
================================================== */

.footer {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #321004 0%,
            #180603 40%,
            #070101 100%
        );

    color: #ffffff;
}

.footer-container {
    width: min(1000px, calc(100% - 40px));

    min-height: 115px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.footer p {
    position: relative;

    z-index: 2;

    color: rgba(255, 255, 255, 0.95);

    font-size: 20px;

    line-height: 1.5;
}


/* brilho dourado discreto */

.footer::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 220px;

    left: -120px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(177, 92, 17, 0.22),
            transparent 70%
        );

    pointer-events: none;
}


/* linha dourada superior */

.footer::after {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: min(500px, 70%);

    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(218, 160, 58, 0.6),
            transparent
        );
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 800px) {

    .bulletin-card {
        padding: 25px;

        min-height: 315px;
    }

    .bulletin-card h3 {
        font-size: 23px;
    }

    .bulletin-card p {
        font-size: 16px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .bulletins-section {
        padding: 60px 0 65px;
    }

    .bulletins-container {
        width: calc(100% - 30px);
    }

    .bulletins-header {
        margin-bottom: 30px;
    }

    .bulletins-header h2 {
        font-size: 35px;
    }

    .bulletins-header p {
        font-size: 17px;
    }

    .bulletins-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .bulletin-card {
        min-height: 285px;
    }

    .footer-container {
        width: calc(100% - 30px);

        min-height: 105px;
    }

    .footer p {
        font-size: 16px;
    }

}


/* ==================================================
   MOBILE PEQUENO
================================================== */

@media (max-width: 400px) {

    .bulletin-card {
        padding: 22px 20px;

        min-height: 270px;
    }

    .bulletin-date {
        font-size: 14px;
    }

    .bulletin-card h3 {
        margin-bottom: 18px;

        font-size: 21px;
    }

    .bulletin-card p {
        font-size: 15px;
    }

    .bulletin-link {
        font-size: 18px;
    }

}

/* ==================================================
   WHATSAPP FLUTUANTE
================================================== */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 9999;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;
    color: #ffffff;

    font-size: 34px;

    box-shadow:
        0 7px 22px rgba(0, 0, 0, 0.22),
        0 0 0 0 rgba(37, 211, 102, 0.45);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;

    animation:
        whatsappPulse 2.2s infinite;
}


/* ==================================================
   HOVER
================================================== */

.whatsapp-float:hover {
    color: #ffffff;

    background: #20bd5a;

    transform:
        translateY(-5px)
        scale(1.06);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.25);
}


/* ==================================================
   TOOLTIP
================================================== */

.whatsapp-tooltip {
    position: absolute;

    right: calc(100% + 13px);

    padding: 9px 14px;

    border-radius: 7px;

    background: #ffffff;
    color: #333333;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.15);

    opacity: 0;

    visibility: hidden;

    transform: translateX(8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}


/* setinha */

.whatsapp-tooltip::after {
    content: "";

    position: absolute;

    top: 50%;
    right: -6px;

    transform: translateY(-50%);

    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #ffffff;
}


.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;

    visibility: visible;

    transform: translateX(0);
}


/* ==================================================
   PULSO
================================================== */

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 7px 22px rgba(0, 0, 0, 0.22),
            0 0 0 0 rgba(37, 211, 102, 0.45);
    }

    70% {
        box-shadow:
            0 7px 22px rgba(0, 0, 0, 0.22),
            0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 7px 22px rgba(0, 0, 0, 0.22),
            0 0 0 0 rgba(37, 211, 102, 0);
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .whatsapp-float {
        right: 17px;
        bottom: 17px;

        width: 57px;
        height: 57px;

        font-size: 31px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}

/* ==================================================
   CONTATO / LOCALIZAÇÃO
================================================== */

.contact-location-section {
    position: relative;

    padding: 80px 0 95px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f7f7f7 0%,
            #ffffff 100%
        );
}

.contact-location-container {
    width: min(1000px, calc(100% - 40px));

    margin: 0 auto;
}


/* ==================================================
   CABEÇALHO
================================================== */

.contact-location-header {
    margin-bottom: 45px;

    text-align: center;
}

.contact-location-header > span {
    display: inline-block;

    margin-bottom: 9px;

    color: #b47720;

    font-size: 14px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.8px;
}

.contact-location-header h2 {
    margin-bottom: 12px;

    color: #090909;

    font-size: clamp(38px, 4vw, 48px);

    line-height: 1;

    font-weight: 800;
}

.contact-location-header p {
    color: #525252;

    font-size: 19px;

    line-height: 1.5;
}


/* ==================================================
   GRID
================================================== */

.contact-location-grid {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(450px, 1.2fr);

    align-items: stretch;

    gap: 35px;
}


/* ==================================================
   CARD DE INFORMAÇÕES
================================================== */

.contact-info-card {
    position: relative;

    z-index: 3;

    padding: 35px;

    overflow: hidden;

    border-radius: 14px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(174, 96, 18, 0.25),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #2d0d03 0%,
            #160502 55%,
            #090100 100%
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}

.contact-info-card::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -130px;
    bottom: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(211, 145, 33, 0.21),
            transparent 70%
        );

    pointer-events: none;
}


/* ==================================================
   ÍCONE PRINCIPAL
================================================== */

.contact-info-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(238, 182, 71, 0.45);

    border-radius: 50%;

    color: #f0b84a;

    font-size: 24px;

    background:
        rgba(211, 144, 29, 0.08);

    box-shadow:
        0 0 25px rgba(213, 144, 32, 0.10);
}


/* ==================================================
   TEXTOS
================================================== */

.contact-info-label {
    display: block;

    margin-bottom: 7px;

    color: #dca440;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.4px;
}

.contact-info-card h3 {
    margin-bottom: 16px;

    color: #ffffff;

    font-size: 28px;

    line-height: 1.2;

    font-weight: 800;
}

.contact-info-card > p {
    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 1.65;
}


/* ==================================================
   LISTA DE CONTATOS
================================================== */

.contact-info-list {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-bottom: 28px;
}

.contact-info-item {
    position: relative;

    z-index: 2;

    min-height: 67px;

    padding: 10px 13px;

    display: flex;

    align-items: center;

    gap: 13px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 9px;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.035);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.contact-info-item:hover {
    color: #ffffff;

    background:
        rgba(211, 151, 47, 0.1);

    border-color:
        rgba(221, 162, 61, 0.28);

    transform: translateX(5px);
}

.contact-item-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #e7ad43;

    background:
        rgba(214, 148, 35, 0.11);
}

.contact-info-item div {
    display: flex;

    flex-direction: column;
}

.contact-info-item small {
    margin-bottom: 2px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}

.contact-info-item strong {
    color: #ffffff;

    font-size: 16px;

    font-weight: 700;
}


/* ==================================================
   BOTÃO PRINCIPAL
================================================== */

.contact-main-btn {
    position: relative;

    z-index: 2;

    min-height: 55px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    overflow: hidden;

    border-radius: 9px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    background:
        linear-gradient(
            120deg,
            #edc453,
            #d49325,
            #a55c0f
        );

    box-shadow:
        0 9px 23px
        rgba(198, 124, 18, 0.23);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-main-btn::before {
    content: "";

    position: absolute;

    top: -70%;
    left: -50px;

    width: 35px;
    height: 220%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.75),
            transparent
        );

    transform: rotate(20deg);

    transition: left 0.7s ease;
}

.contact-main-btn i,
.contact-main-btn span {
    position: relative;

    z-index: 2;
}

.contact-main-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 14px 28px
        rgba(198, 124, 18, 0.3);
}

.contact-main-btn:hover::before {
    left: 120%;
}


/* ==================================================
   MAPA
================================================== */

.contact-map-area {
    position: relative;

    min-height: 475px;
}

.contact-map-decoration {
    position: absolute;

    z-index: 1;

    top: 16px;
    left: 16px;

    width: 100%;
    height: 100%;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #ddb264,
            #a76618
        );

    opacity: 0.65;

    transition:
        transform 0.4s ease;
}

.contact-map-wrapper {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    min-height: 475px;

    overflow: hidden;

    border-radius: 14px;

    background: #eeeeee;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;

    min-height: 475px;

    display: block;
}


/* ==================================================
   HOVER MAPA
================================================== */

.contact-map-area:hover
.contact-map-wrapper {
    transform:
        translateY(-5px);

    box-shadow:
        0 22px 43px
        rgba(0, 0, 0, 0.16);
}

.contact-map-area:hover
.contact-map-decoration {
    transform:
        translate(4px, 4px);
}


/* ==================================================
   DECORAÇÃO DA SEÇÃO
================================================== */

.contact-location-section::before {
    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    left: -210px;
    top: 40px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(192, 128, 31, 0.08),
            transparent 70%
        );

    pointer-events: none;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .contact-location-grid {
        grid-template-columns:
            0.9fr
            1.1fr;

        gap: 25px;
    }

    .contact-info-card {
        padding: 28px;
    }

    .contact-info-card h3 {
        font-size: 24px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .contact-location-section {
        padding: 60px 0 75px;
    }

    .contact-location-container {
        width: calc(100% - 30px);
    }

    .contact-location-header {
        margin-bottom: 32px;
    }

    .contact-location-header h2 {
        font-size: 36px;
    }

    .contact-location-header p {
        font-size: 17px;
    }

    .contact-location-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .contact-info-card {
        padding: 27px 22px;
    }

    .contact-info-card h3 {
        font-size: 25px;
    }

    .contact-main-btn {
        width: 100%;
    }

    .contact-map-area {
        width:
            calc(100% - 12px);

        min-height: 370px;
    }

    .contact-map-wrapper,
    .contact-map-wrapper iframe {
        min-height: 370px;
    }

}


/* ==================================================
   MOBILE PEQUENO
================================================== */

@media (max-width: 420px) {

    .contact-info-item strong {
        font-size: 15px;
    }

    .contact-map-area {
        min-height: 320px;
    }

    .contact-map-wrapper,
    .contact-map-wrapper iframe {
        min-height: 320px;
    }

}