:root {
    --sand: #F8F9FB;
    --ink: #0F172A;
    --ink-light: #1E293B;
    --ink-muted: #64748B;
    --ink-alt: #020617;
    --gold: #C5A059; /* More premium gold color */
    --red: #8B1A2E;
    --red-light: rgba(139, 26, 46, 0.08);
    --cream: #FFFFFF;
    --white: #fff;
    --border: rgba(15, 23, 42, 0.08);
    --shadow-s: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-m: 0 12px 40px rgba(0, 0, 0, 0.08);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --navy: #1B2A5E;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--sand);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

ul {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.15
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px)
}

.section {
    padding: clamp(80px, 12vw, 160px) 0
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    border: 1px solid var(--ink);
    color: var(--white);
    background: var(--ink);
    transition: all 0.5s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.btn:hover {
    background: var(--white);
    color: var(--ink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-m);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn--ghost:hover {
    background: var(--ink);
    color: var(--white);
}

.btn--light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn--light:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.btn--sm {
    padding: 12px 28px;
    font-size: 11px;
}

/* Label */
.label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px
}

.label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    transition: width 0.6s var(--ease);
}

.reveal:hover .label::before {
    width: 60px;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }

/* ── HEADER ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s var(--ease);
    background: rgba(255, 255, 255, 0.85); /* Light glass base */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

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

.header__logo-img {
    height: 48px;
    width: auto;
    border-radius: 4px;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header__logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.header__logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ink-muted);
    line-height: 1;
    margin-top: 2px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 36px
}

.header__link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--ink-light);
    transition: color .3s;
    position: relative
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width .3s var(--ease)
}

.header__link:hover {
    color: var(--ink)
}

.header__link:hover::after {
    width: 100%
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--ink)
}

.hamburger svg {
    width: 24px;
    height: 24px
}

/* Drawer */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 200;
    opacity: 0;
    transition: opacity .3s
}

.drawer-overlay.open {
    display: block;
    opacity: 1
}

.drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--cream);
    z-index: 201;
    padding: 32px;
    transition: right .4s var(--ease);
    display: flex;
    flex-direction: column
}

.drawer.open {
    right: 0
}

.drawer__close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--ink-muted);
    margin-bottom: 40px
}

.drawer__link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: block;
    color: var(--ink)
}

.drawer__cta {
    margin-top: auto
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.7) 100%), url('../img/km_pilates_16x9.png') center 12%/145% no-repeat; /* Ajustado path para ../img/ */
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero .label {
    color: var(--gold)
}

.hero .label::before {
    background: var(--gold)
}

.hero__title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -.02em
}

.hero__sub {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: rgba(255, 255, 255, .75);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

/* ── SERVICES ── */
.services__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px
}

.services__head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem)
}

.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.filter-btn {
    background: none;
    border: 1px solid var(--border);
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all .3s var(--ease)
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--ink);
    border-color: var(--ink);
    background: var(--cream)
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    gap: 32px
}

.svc-card {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--border);
    cursor: pointer
}

.svc-card__img {
    height: 340px;
    background: var(--cream);
    overflow: hidden
}

.svc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mostra a foto INTEIRA, sem zoom */
    transition: transform .8s var(--ease)
}

.svc-card:hover .svc-card__img img {
    transform: scale(1.04)
}

.svc-card__body {
    padding: 28px 28px 32px
}

.svc-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px
}

.svc-card__text {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6
}

/* ── ABOUT ── */
.about {
    background: var(--ink-alt);
    color: var(--white);
    overflow: hidden
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch
}

.about .label {
    color: var(--gold)
}

.about .label::before {
    background: var(--gold)
}

.about h2 {
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 28px
}

.about__text-col {
    padding: clamp(60px, 8vw, 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at 10% 50%, rgba(197, 160, 89, 0.05) 0%, transparent 50%);
    border-left: 1px solid rgba(197, 160, 89, 0.15);
}

.about p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
    max-width: 540px;
}

.about strong {
    color: var(--gold);
    font-weight: 500;
}

.about__stats {
    display: flex;
    gap: clamp(24px, 4vw, 60px);
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.1)
}

.about__stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px
}

.about__stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .55)
}

.about__img-col {
    position: relative;
    overflow: hidden;
    background: var(--ink-alt);
}

.about__img-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--ink-alt) 0%, transparent 20%);
}

.about__img-col img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    filter: saturate(0.8) contrast(1.05);
    transition: transform 2.5s var(--ease), filter 1s var(--ease);
}

.about:hover .about__img-col img {
    transform: scale(1.03);
    filter: saturate(1) contrast(1.1);
}

/* ── FEATURES ── */
.features {
    background: var(--cream)
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border)
}

.feat-card {
    background: var(--cream);
    padding: clamp(28px, 3vw, 48px);
    display: flex;
    flex-direction: column
}

.feat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-light);
    color: var(--gold);
    margin-bottom: 24px
}

.feat-card__icon svg {
    width: 22px;
    height: 22px
}

.feat-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px
}

.feat-card__text {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6
}

/* ── TESTIMONIALS ── */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.test-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: clamp(32px, 5vw, 56px);
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
    border-radius: 8px;
}

.test-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-m);
    border-color: var(--gold);
}

.test-card__stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px
}

.test-card__quote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--ink);
    flex: 1;
    margin-bottom: 24px
}

.test-card__author {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: .04em
}

/* ── LOCATION ── */
.location {
    background: var(--cream)
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    overflow: hidden
}

.location__map {
    min-height: 400px
}

.location__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.7) contrast(1.1)
}

.location__info {
    padding: clamp(32px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.location__info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px
}

.location__info p {
    color: var(--ink-muted);
    margin-bottom: 24px
}

.nav-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
    transition: all .3s var(--ease);
    cursor: pointer
}

.nav-btn:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink)
}

.nav-btn svg {
    width: 18px;
    height: 18px
}

/* ── IG CTA ── */
.ig-cta {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    padding: clamp(48px, 6vw, 80px) 0
}

.ig-cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px
}

.ig-cta p {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

/* ── FOOTER ── */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .6);
    padding: 80px 0 32px
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px
}

.footer__brand-img {
    height: 64px;
    margin-bottom: 16px;
    display: block;
    border-radius: 8px;
}

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 20px
}

.footer__col a {
    display: block;
    margin-bottom: 12px;
    transition: color .3s
}

.footer__col a:hover {
    color: var(--white)
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, .3)
}

/* ── WA FAB ── */
.wa-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    transition: transform .3s var(--ease), box-shadow .3s
}

.wa-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .45)
}

.wa-fab svg {
    width: 28px;
    height: 28px
}

/* ── LIGHTBOX ── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s
}

.lightbox.active {
    opacity: 1;
    pointer-events: all
}

.lightbox img {
    max-width: 88%;
    max-height: 88vh;
    object-fit: contain
}

.lightbox button {
    position: absolute;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .7);
    font-size: 2rem;
    cursor: pointer;
    padding: 16px;
    transition: color .3s
}

.lightbox button:hover {
    color: #fff
}

.lb-close {
    top: 24px;
    right: 24px
}

.lb-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%)
}

.lb-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%)
}

/* ── IG DELICATE POPUP ── */
.ig-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 24px;
    width: 320px;
    max-width: calc(100vw - 48px);
    z-index: 250;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s var(--ease);
    pointer-events: none
}

.ig-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all
}

.ig-toast__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 16px;
    color: var(--ink-muted);
    cursor: pointer;
    padding: 4px;
    line-height: 1
}

.ig-toast__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ig-toast__icon svg {
    width: 20px;
    height: 20px;
    color: white
}

.ig-toast__content h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0
}

.ig-toast__content p {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.4;
    margin-bottom: 12px
}

.ig-toast__content .btn {
    font-size: 11px;
    padding: 8px 16px;
    width: auto;
    display: inline-flex
}

/* ── GALLERY CAROUSEL ── */
.gallery {
    overflow: hidden;
    padding-bottom: 24px
}

.gallery__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 5vw
}

.gallery__track::-webkit-scrollbar {
    display: none
}

.gallery__item {
    flex: 0 0 85vw;
    max-width: 450px;
    height: 500px;
    background: var(--cream);
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Foto INTEIRA na galeria */
    transition: transform 0.6s var(--ease)
}

.gallery__item:hover img {
    transform: scale(1.05)
}

.gallery__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px
}

.gallery__btn {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
    transition: all 0.3s var(--ease)
}

.gallery__btn:hover {
    background: var(--ink);
    color: var(--white)
}

.gallery__btn svg {
    width: 20px;
    height: 20px
}

@media(min-width: 768px) {
    .gallery__item {
        flex: 0 0 400px;
        scroll-snap-align: start
    }
}

/* ── VIDEO SECTION ── */
.video-container {
    position: relative;
    width: 100%;
    max-width: 360px; /* Force vertical/mobile size on desktop */
    margin: 0 auto; /* Center horizontally */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 42, 94, 0.1);
    aspect-ratio: 9/16;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ── LGPD ── */
.lgpd {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    color: rgba(255, 255, 255, .8);
    z-index: 150;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform .5s var(--ease)
}

.lgpd.show {
    transform: translateY(0)
}

.lgpd__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.lgpd__text {
    font-size: 13px;
    max-width: 800px;
    line-height: 1.6
}

.lgpd__text a {
    color: var(--gold);
    text-decoration: underline
}

.lgpd__btn {
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--ink);
    border: none;
    cursor: pointer;
    transition: background .3s;
    font-family: var(--font-body)
}

.lgpd__btn:hover {
    background: var(--gold);
    color: var(--white)
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .services__grid {
        grid-template-columns: 1fr 1fr
    }

    .about__grid {
        grid-template-columns: 1.2fr .8fr
    }

    .about__img-col {
        min-height: 400px
    }

    .about__text-col {
        padding: clamp(24px, 4vw, 48px)
    }

    .about__stats {
        gap: 24px
    }

    .about__stat-num {
        font-size: 2rem
    }

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

    .location__grid {
        grid-template-columns: 1fr
    }

    .location__map {
        min-height: 280px
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .header__nav {
        display: none
    }

    .hamburger {
        display: block
    }

    .services__grid {
        grid-template-columns: 1fr
    }

    .services__head {
        flex-direction: column;
        align-items: flex-start
    }

    .about__grid {
        grid-template-columns: 1fr
    }

    .about__img-col {
        order: -1;
        max-width: 85%;
        margin: 40px auto 0;
        min-height: auto;
        aspect-ratio: 4/5;
        border-radius: 240px 240px 0 0;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15)
    }

    .about__img-col img {
        object-position: center 10%
    }

    .about__text-col {
        padding: 40px 24px 60px;
        text-align: center
    }

    .about__stats {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        border-top: none;
        margin-top: 24px;
        padding-top: 0
    }

    .testimonials__grid {
        grid-template-columns: 1fr
    }

    .features__grid {
        grid-template-columns: 1fr
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .hero {
        min-height: 80vh;
        margin-top: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.85) 100%), url('../img/km_pilates_sao paulo_1.jpeg') center top/cover no-repeat !important;
    }

    .hero__content {
        padding-top: 80px;
    }

    .hero__title {
        font-size: 2rem;
        text-shadow: 2px 2px 15px rgba(0,0,0,0.9);
        padding: 0 10px;
    }

    .hero__sub {
        font-size: 0.95rem;
        text-shadow: 1px 1px 10px rgba(0,0,0,0.9);
        padding: 0 20px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
        padding: 10px 4px;
    }

    .svc-card__img img {
        object-position: center top; 
    }

    .gallery__item img {
        object-position: center top;
    }

    .wa-fab {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px
    }

    .wa-fab svg {
        width: 24px;
        height: 24px
    }

    .lgpd__inner {
        flex-direction: column;
        text-align: center
    }

    .ig-toast {
        bottom: 16px;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
        padding: 16px;
        gap: 12px;
        border-radius: 16px
    }

    .ig-toast__content h3 {
        font-size: 13px
    }

    .ig-toast__content p {
        font-size: 11px;
        margin-bottom: 8px
    }
}
