@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* =========================================================
   VARIÁVEIS
   ========================================================= */

:root {
    --gold: #7a5a4a;
    --gold2: #a67f6c;
    --rose: #e7bea8;
    --ice: #f8f7f3;
    --white: #fff;
    --ink: #27231f;
    --muted: #716b63;
    --line: #e8dfd4;
    --shadow: 0 18px 50px rgba(62,48,32,.10);
}


/* =========================================================
   RESET / BASE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ice);
    color: var(--ink);
    font-family: Montserrat, Arial, sans-serif;
    line-height: 1.6;
    opacity: 1;
    transition: opacity .35s ease;
}

body.page-leaving {
    opacity: 0;
}

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

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


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

.container {
    width: min(1160px, 92%);
    margin: auto;
}


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

.eyebrow {
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
}


/* =========================================================
   BOTÕES
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 21px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .04em;

    transition:
        transform .28s ease,
        background .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;

    border: 1px solid transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: scale(.96);
}

.btn-gold {
    background: var(--gold);
    color: white;
    box-shadow: 0 10px 25px rgba(184,138,53,.22);
}

.btn-gold:hover {
    background: #9e742b;
    box-shadow: 0 13px 30px rgba(184,138,53,.28);
}

.btn-outline {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255,255,255,.7);
}

.btn-outline:hover {
    background: white;
}


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

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248,247,243,.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(184,138,53,.16);
}

.nav {
    min-height: 78px;

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

    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.05rem;
    line-height: .8;
    color: var(--gold);
    letter-spacing: -.08em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-size: .86rem;
    letter-spacing: .16em;
}

.brand-copy span {
    font-size: .57rem;
    letter-spacing: .32em;
    color: var(--gold);
    margin-top: 2px;
}

.navlinks {
    display: flex;
    gap: 26px;
    align-items: center;
    font-size: .78rem;
    font-weight: 600;
}

.navlinks a {
    position: relative;
    padding: 8px 0;
}

.navlinks a:after {
    content: '';

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: var(--rose);

    transition: width .3s ease;
}

.navlinks a:hover:after,
.navlinks a.active:after {
    width: 100%;
}

.nav-wa {
    font-size: .75rem;
    padding: 11px 16px;
}

.menu {
    display: none;

    border: 0;
    background: none;

    font-size: 1.5rem;
    color: var(--ink);

    cursor: pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 56px 0 80px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(231,190,168,.26),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fbfaf7 0%,
            #f7f2ed 60%,
            #e7bea8 100%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 58px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3.1rem, 6vw, 5.7rem);
    line-height: .9;
    margin: 15px 0 22px;
    font-weight: 600;
    letter-spacing: -.035em;
}

.hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero p {
    max-width: 570px;
    color: var(--muted);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.hero-note {
    font-size: .74rem;
    color: #8a8177;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-note i {
    width: 7px;
    height: 7px;
    background: var(--rose);
    border-radius: 50%;
}

.hero-photo {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.hero-photo img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 220px 220px 22px 22px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;

    transition:
        transform .6s ease,
        box-shadow .6s ease;
}

.hero-photo:hover img {
    transform: scale(1.015);
}

.hero-photo:before {
    content: '';

    position: absolute;

    inset: 18px -18px -18px 18px;

    border: 1px solid var(--gold2);

    border-radius: 220px 220px 22px 22px;

    z-index: 0;
}

.seal {
    position: absolute;

    z-index: 2;

    bottom: 22px;
    left: -28px;

    background: white;

    border: 1px solid var(--line);

    padding: 16px 18px;

    border-radius: 16px;

    box-shadow: var(--shadow);

    font-size: .72rem;
}

.seal b {
    display: block;

    color: var(--gold);

    font-size: 1.1rem;

    margin-bottom: 2px;
}


/* =========================================================
   SEÇÕES
   ========================================================= */

.section {
    padding: 88px 0;
}

.section-head {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    align-items: end;

    margin-bottom: 36px;
}

.section h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);

    line-height: .95;

    margin: 9px 0 0;

    font-weight: 600;
}

.section-head p {
    max-width: 470px;

    color: var(--muted);

    margin: 0;
}


/* =========================================================
   CARDS
   ========================================================= */

.cards {
    display: grid;

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

    gap: 18px;
}

.card {
    background: white;

    border: 1px solid var(--line);

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 8px 28px rgba(52,40,27,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

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

    box-shadow: var(--shadow);
}

.card-img {
    height: 230px;

    overflow: hidden;
}

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

    object-fit: cover;

    transition: transform .6s ease;
}

.card:hover img {
    transform: scale(1.04);
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 1.65rem;

    margin: 0 0 5px;
}

.card-body p {
    font-size: .78rem;

    color: var(--muted);

    margin: 0 0 14px;
}

.arrow {
    color: var(--gold);

    font-weight: 700;

    font-size: .74rem;
}


/* =========================================================
   APRESENTAÇÃO / SOBRE
   ========================================================= */

.about {
    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns: .88fr 1.12fr;

    gap: 65px;

    align-items: center;
}

.about-photo {
    position: relative;
}

.about-photo img {
    width: 100%;

    aspect-ratio: 4/5;

    object-fit: cover;

    border-radius: 24px;

    transition: transform .6s ease;
}

.about-photo:hover img {
    transform: scale(1.015);
}

.about-photo .mini {
    position: absolute;

    width: 145px;
    height: 190px;

    right: -30px;
    bottom: -35px;

    object-fit: cover;

    border: 8px solid white;

    border-radius: 18px;

    box-shadow: var(--shadow);

    transition: transform .5s ease;
}

.about-photo:hover .mini {
    transform: scale(1.025);
}

.about-copy h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);

    line-height: .98;

    margin: 10px 0 20px;
}

.about-copy p {
    color: var(--muted);
}

.facts {
    display: flex;

    gap: 36px;

    margin: 30px 0;
}

.fact strong {
    font-family: 'Cormorant Garamond';

    font-size: 2.2rem;

    color: var(--gold);

    display: block;

    line-height: 1;
}

.fact span {
    font-size: .68rem;

    color: var(--muted);
}


/* =========================================================
   STRIP
   ========================================================= */

.strip {
    padding: 25px 0;

    background: var(--ink);

    color: white;
}

.strip-inner {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.strip strong {
    font-family: 'Cormorant Garamond';

    font-size: 1.9rem;

    font-weight: 500;
}

.strip span {
    color: #d6cec4;

    font-size: .76rem;
}


/* =========================================================
   HERO DAS PÁGINAS
   ========================================================= */

.page-hero {
    padding: 72px 0 58px;

    background:
        linear-gradient(
            135deg,
            #fbfaf7,
            #e7bea8
        );
}

.page-hero h1 {
    font-family: 'Cormorant Garamond';

    font-size: clamp(3.4rem, 7vw, 6rem);

    line-height: .85;

    margin: 10px 0 14px;
}

.page-hero p {
    max-width: 680px;

    color: var(--muted);
}


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

.service-grid {
    display: grid;

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

    gap: 20px;
}

.service-gallery {
    display: flex;

    gap: 18px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    padding: 8px 3px 22px;

    cursor: grab;

    scrollbar-width: none;

    -ms-overflow-style: none;

    -webkit-overflow-scrolling: touch;
}

.service-gallery::-webkit-scrollbar {
    display: none;
}

.service-gallery:active {
    cursor: grabbing;
}

.service-card {
    flex: 0 0 clamp(280px,31vw,360px);

    scroll-snap-align: start;

    background: white;

    border: 1px solid var(--line);

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 8px 28px rgba(52,40,27,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.service-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow);
}

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

    height: 320px;

    object-fit: cover;

    transition: transform .6s ease;
}

.service-card:hover > img {
    transform: scale(1.025);
}

.service-card-body {
    padding: 20px;
}

.service-card-body h3 {
    font-family: 'Cormorant Garamond',serif;

    font-size: 1.8rem;

    line-height: 1.05;

    margin: 7px 0 8px;
}

.service-card-body p {
    font-size: .8rem;

    color: var(--muted);

    margin: 0;
}

.service-drag-tip {
    margin-top: -8px;
}

.service-card-body .btn {
    margin-top: 16px;

    width: 100%;

    font-size: .72rem;

    padding: 11px 15px;
}


/* =========================================================
   SERVIÇO INDIVIDUAL
   ========================================================= */

.service {
    background: white;

    border: 1px solid var(--line);

    padding: 26px;

    border-radius: 22px;
}

.service h3 {
    font-family: 'Cormorant Garamond';

    font-size: 2rem;

    margin: 0 0 5px;
}

.service ul {
    padding: 0;

    margin: 18px 0 0;

    list-style: none;
}

.service li {
    padding: 9px 0;

    border-bottom: 1px solid #eee7de;

    font-size: .8rem;

    color: var(--muted);

    display: flex;

    justify-content: space-between;

    gap: 12px;
}

.service li:after {
    content: '↗';

    color: var(--gold);
}


/* =========================================================
   PORTFÓLIO
   ========================================================= */

.portfolio-wrap {
    padding: 60px 0 100px;
}

.filterbar {
    display: flex;

    gap: 9px;

    overflow: auto;

    padding-bottom: 10px;

    margin-bottom: 28px;

    scrollbar-width: none;
}

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

.filter {
    white-space: nowrap;

    border: 1px solid var(--line);

    background: white;

    padding: 10px 16px;

    border-radius: 999px;

    font-size: .73rem;

    font-weight: 600;

    cursor: pointer;

    transition: .25s ease;
}

.filter:hover {
    transform: translateY(-1px);
}

.filter.active {
    background: var(--gold);

    border-color: var(--gold);

    color: white;
}

.gallery {
    display: flex;

    gap: 16px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    padding: 8px 3px 22px;

    cursor: grab;

    scrollbar-width: none;

    -ms-overflow-style: none;

    -webkit-overflow-scrolling: touch;
}

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

.gallery:active {
    cursor: grabbing;
}

.gallery-card {
    flex: 0 0 clamp(260px,30vw,350px);

    scroll-snap-align: start;

    background: white;

    border: 1px solid var(--line);

    border-radius: 20px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow);
}

.gallery-card img {
    width: 100%;

    height: 380px;

    object-fit: cover;

    transition: transform .6s ease;
}

.gallery-card:hover img {
    transform: scale(1.025);
}

.gallery-card .caption {
    padding: 14px 16px;
}

.gallery-card b {
    font-family: 'Cormorant Garamond';

    font-size: 1.35rem;
}

.gallery-card small {
    display: block;

    color: var(--muted);

    font-size: .68rem;

    margin-top: 2px;
}

.drag-tip {
    font-size: .7rem;

    color: #8c8379;

    margin-top: -12px;
}


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

.location {
    padding: 75px 0 100px;
}

.location-grid {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 28px;
}

.location-photo {
    overflow: hidden;

    border-radius: 25px;
}

.location-photo img {
    width: 100%;

    height: 100%;

    min-height: 520px;

    object-fit: cover;

    border-radius: 25px;

    transition: transform .6s ease;
}

.location-photo:hover img {
    transform: scale(1.02);
}

.location-card {
    background: white;

    border: 1px solid var(--line);

    border-radius: 25px;

    padding: 38px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.location-card h2 {
    font-family: 'Cormorant Garamond';

    font-size: 3.4rem;

    line-height: .9;

    margin: 10px 0 24px;
}

.address {
    font-size: .9rem;

    color: var(--muted);

    margin-bottom: 24px;
}

.address strong {
    color: var(--ink);

    display: block;

    margin-bottom: 5px;
}

.ref {
    padding: 16px;

    background: #faf5f1;

    border-left: 3px solid var(--rose);

    font-size: .78rem;

    color: #6e6258;

    margin-bottom: 25px;
}

.hours {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin: 10px 0 26px;
}

.hour {
    border: 1px solid var(--line);

    padding: 13px;

    border-radius: 14px;
}

.hour span {
    font-size: .65rem;

    color: var(--muted);

    display: block;
}

.hour b {
    font-size: .75rem;
}


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

footer {
    background: #f3e4db;

    color: #493a34;

    padding: 42px 0 18px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    gap: 55px;

    align-items: start;
}

.footer-brand {
    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: 23px;

    font-weight: 500;

    letter-spacing: .04em;

    line-height: 1.2;

    margin-bottom: 10px;
}

footer p {
    color: #66554d;

    margin: 0;

    line-height: 1.6;

    font-size: 14px;
}

footer h4 {
    color: #493a34;

    margin: 0 0 14px;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .03em;
}

.footer-navigation {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.footer-navigation a {
    color: #66554d;

    text-decoration: none;

    font-size: 14px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-navigation a:hover {
    color: #9b7564;

    transform: translateX(2px);
}

.footer-socials {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 4px;
}

.footer-social-icon {
    width: 27px;
    height: 27px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    color: #695047;

    text-decoration: none;

    transition:
        transform .2s ease,
        color .2s ease;
}

.footer-social-icon:hover {
    color: #9b7564;

    transform: translateY(-2px);
}

.footer-social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-social-icon.whatsapp svg {
    fill: currentColor;
}

.footer-social-icon.instagram svg {
    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;
}

.copyright {
    border-top:
        1px solid rgba(73,58,52,.15);

    margin-top: 34px;

    padding-top: 16px;

    font-size: .62rem;

    color: #806e65;

    display: flex;

    justify-content: space-between;
}


/* =========================================================
   ANIMAÇÕES DE ENTRADA / SCROLL
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.show {
    opacity: 1;

    transform: none;
}

.reveal:nth-child(2) {
    transition-delay: .08s;
}

.reveal:nth-child(3) {
    transition-delay: .16s;
}

.reveal:nth-child(4) {
    transition-delay: .24s;
}


/* =========================================================
   WHATSAPP — PULSE DISCRETO
   ========================================================= */

.nav-wa {
    animation: whatsappPulse 5s ease-in-out infinite;
}

@keyframes whatsappPulse {

    0%,
    88%,
    100% {
        transform: scale(1);
    }

    92% {
        transform: scale(1.035);
    }

    95% {
        transform: scale(.985);
    }

}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

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

}


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

@media (max-width: 900px) {

    .navlinks {
        display: none;
    }

    .menu {
        display: block;
    }

    .nav.open .navlinks {

        display: flex;

        position: absolute;

        top: 78px;

        left: 0;
        right: 0;

        background: var(--ice);

        padding: 18px 4%;

        flex-direction: column;

        align-items: flex-start;

        border-bottom: 1px solid var(--line);

        box-shadow:
            0 12px 25px rgba(40,30,20,.06);
    }

    .nav-wa {
        display: none;
    }

    .hero {
        padding: 38px 0 58px;
    }

    .hero-grid,
    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .hero-photo {
        max-width: 460px;

        margin: 0 auto;
    }

    .hero h1 {
        font-size: clamp(3rem,13vw,5rem);
    }

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

    .service-grid {
        grid-template-columns: 1fr;
    }

    .about-photo {
        max-width: 560px;

        margin: auto;
    }

    .location-photo img {
        min-height: 350px;
    }

    .section {
        padding: 65px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .strip-inner {
        align-items: flex-start;

        flex-direction: column;
    }

    .gallery-card {
        flex-basis: 78vw;
    }

    .service-card {
        flex-basis: 82vw;
    }

    .service-card > img {
        height: 280px;
    }

}


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

@media (max-width: 560px) {

    /* HEADER */

    .nav {
        min-height: 70px;
    }

    .brand {
        gap: 9px;
    }

    .brand-mark {
        font-size: 1.8rem;
    }

    .brand-copy strong {
        font-size: .72rem;
    }

    .brand-copy span {
        font-size: .48rem;
    }


    /* HERO MOBILE
       Foto antes do título
    */

    .hero-grid {
        display: flex;

        flex-direction: column;

        gap: 28px;
    }

    .hero-photo {
        order: -1;

        width: min(88vw, 390px);

        margin: 0 auto;
    }

    .hero-photo img {
        aspect-ratio: 4/5;

        border-radius:
            150px 150px 18px 18px;
    }

    .hero-photo:before {
        inset: 12px -10px -10px 10px;

        border-radius:
            150px 150px 18px 18px;
    }

    .hero {
        padding: 28px 0 50px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);

        line-height: .92;

        margin-top: 12px;
    }

    .hero p {
        font-size: .9rem;
    }

    .hero-actions {
        flex-direction: column;

        gap: 10px;

        margin: 22px 0;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .seal {
        left: 8px;

        bottom: 14px;

        padding: 11px 13px;

        font-size: .63rem;
    }

    .seal b {
        font-size: .95rem;
    }


    /* TÍTULOS */

    .section h2 {
        font-size: clamp(2.15rem, 10vw, 3.1rem);

        line-height: .98;
    }

    .about-copy h2 {
        font-size: clamp(2.1rem, 9vw, 3rem);

        line-height: 1;
    }

    .page-hero {
        padding: 52px 0 42px;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }


    /* SEÇÕES */

    .section {
        padding: 55px 0;
    }

    .section-head {
        display: block;

        margin-bottom: 28px;
    }

    .section-head p {
        margin-top: 15px;

        font-size: .86rem;
    }


    /* CARDS */

    .cards {
        grid-template-columns: 1fr;
    }

    .card-img {
        height: 250px;
    }


    /* SOBRE */

    .about-grid {
        gap: 42px;
    }

    .about-photo .mini {
        width: 110px;

        height: 145px;

        right: -8px;
    }

    .facts {
        gap: 20px;

        flex-wrap: wrap;
    }

    .fact strong {
        font-size: 1.9rem;
    }


    /* SERVIÇOS */

    .service-gallery {
        gap: 14px;

        padding-bottom: 16px;
    }

    .service-card {
        flex: 0 0 calc(100vw - 38px);

        border-radius: 18px;
    }

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

        height: auto;

        aspect-ratio: 4 / 3;

        object-fit: contain;

        background: #faf7f3;
    }

    .service-card-body {
        padding: 18px;
    }

    .service-card-body h3 {
        font-size: 1.65rem;
    }

    .service-card-body p {
        font-size: .78rem;
    }

    .service-card-body .btn {
        width: 100%;

        margin-top: 15px;
    }


    /* =====================================================
       REMOVE SETAS DOS SERVIÇOS NO MOBILE
       A rolagem lateral continua funcionando normalmente.
       ===================================================== */

    .service-arrow,
    .service-gallery .arrow,
    .service-gallery .prev,
    .service-gallery .next,
    .service-gallery .left,
    .service-gallery .right {
        display: none !important;
    }


    /* PORTFÓLIO */

    .portfolio-wrap {
        padding: 45px 0 70px;
    }

    .gallery {
        gap: 12px;

        padding-bottom: 15px;
    }

    .gallery-card {
        flex: 0 0 calc(100vw - 38px);

        border-radius: 18px;
    }

    .gallery-card img {
        height: auto;

        aspect-ratio: 4 / 5;

        object-fit: cover;
    }

    .drag-tip {
        margin-top: -4px;
    }


    /* =====================================================
       REMOVE AS SETAS DO PORTFÓLIO NO CELULAR
       A rolagem lateral continua funcionando normalmente.
       ===================================================== */

    .portfolio-arrow {
        display: none !important;
    }


    /* =====================================================
       NANO SHADOW — 6ª IMAGEM
       Mostra a imagem inteira sem cortar.
       ===================================================== */

    .gallery-card:nth-child(6) img {
        object-fit: contain !important;
        aspect-ratio: 4 / 5;
        background: #faf7f3;
    }


    /* =====================================================
       ESPAÇAMENTO ENTRE FOTO DO TOPO E TÍTULO NO MOBILE
       ===================================================== */

    .hero-grid {
        gap: 34px;
    }


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

    .location {
        padding: 50px 0 70px;
    }

    .location-grid {
        gap: 25px;
    }

    .location-photo img {
        min-height: 0;

        height: auto;

        aspect-ratio: 4 / 3;

        object-fit: cover;

        border-radius: 20px;
    }

    .location-card {
        padding: 25px;

        border-radius: 20px;
    }

    .location-card h2 {
        font-size: 2.65rem;

        line-height: .95;
    }

    .address {
        font-size: .84rem;
    }


    /* =====================================================
       STRIP
       ===================================================== */

    .strip {
        padding: 22px 0;
    }

    .strip strong {
        font-size: 1.65rem;
    }


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

    footer {
        padding: 38px 0 18px;
    }

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

        gap: 27px;
    }

    .footer-brand {
        font-size: 21px;
    }

    footer p {
        font-size: 13px;
    }

    footer h4 {
        margin-bottom: 11px;
    }

    .footer-navigation {
        gap: 6px;
    }

    .footer-navigation a {
        font-size: 13px;
    }

    .footer-socials {
        gap: 16px;
    }

    .footer-social-icon {
        width: 29px;
        height: 29px;
    }

    .footer-social-icon svg {
        width: 22px;
        height: 22px;
    }

    .copyright {
        display: block;

        margin-top: 28px;

        padding-top: 14px;

        font-size: .61rem;
    }

    .copyright span {
        display: block;

        margin-top: 5px;
    }


    /* =====================================================
       REMOVE SETAS DOS BOTÕES
       ===================================================== */

    .btn .arrow,
    .btn .btn-arrow,
    .btn .fa-arrow-right,
    .btn .fa-arrow-left,
    .btn svg {
        display: none !important;
    }

}


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

@media (max-width: 380px) {

    .container {
        width: 90%;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .about-copy h2 {
        font-size: 2.1rem;
    }

    .location-card h2 {
        font-size: 2.35rem;
    }

    .service-card {
        flex-basis: calc(100vw - 30px);
    }

    .gallery-card {
        flex-basis: calc(100vw - 30px);
    }

}


/* =========================================================
   TOUCH — EVITA EFEITOS ESTRANHOS NO CELULAR
   ========================================================= */

@media (hover: none) {

    .card:hover,
    .gallery-card:hover,
    .service-card:hover {
        transform: none;

        box-shadow:
            0 8px 28px rgba(52,40,27,.05);
    }

    .card:hover img,
    .gallery-card:hover img,
    .service-card:hover > img,
    .hero-photo:hover img,
    .about-photo:hover img {
        transform: none;
    }

}


/* =========================================================
   NANO SHADOW — 6ª IMAGEM DO PORTFÓLIO
   AJUSTE PARA TODAS AS VERSÕES
   ========================================================= */

.gallery-card:nth-child(6) img {
    object-fit: contain;
    background: #faf7f3;
}