/* ============================================================
   PITY MENON — style.css
   Mobile-first | Premium Editorial
   ============================================================ */

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

:root {
    --clr-primary:      #11587c;
    --clr-primary-dk:   #0d4460;
    --clr-primary-lt:   #1a7aac;
    --clr-bg:           #fbfbf8;
    --clr-bg-alt:       #f4f3ef;
    --clr-dark:         #1a1a1a;
    --clr-text:         #3d3d3d;
    --clr-muted:        #888;
    --clr-white:        #ffffff;
    --clr-gold:         #c9a96e;

    --ff-serif: 'Playfair Display', Georgia, serif;
    --ff-sans:  'Montserrat', system-ui, sans-serif;

    --ease:      0.35s ease;
    --shadow-sm: 0 2px 16px rgba(17,88,124,.07);
    --shadow-md: 0 6px 32px rgba(17,88,124,.12);
    --shadow-lg: 0 14px 52px rgba(17,88,124,.16);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-sans);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }
ul   { list-style: none; }
h1,h2,h3 { font-family: var(--ff-serif); line-height: 1.15; }

.container  { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ---- Eyebrow / Title ---- */
.section__eyebrow {
    display: block;
    font-size: 10.5px; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--clr-primary); margin-bottom: 12px;
}
.section__eyebrow--light { color: rgba(255,255,255,.55); }

.section__title {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 500; color: var(--clr-dark);
    margin-bottom: 48px; letter-spacing: -.01em;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--ff-sans);
    font-size: 11.5px; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
}
.btn--primary { background: var(--clr-primary); color: #fff; }
.btn--primary:hover { background: var(--clr-primary-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(17,88,124,.28); }
.btn--outline  { background: transparent; color: var(--clr-primary); border: 1.5px solid var(--clr-primary); }
.btn--outline:hover  { background: var(--clr-primary); color: #fff; transform: translateY(-2px); }
.btn--light    { background: #fff; color: var(--clr-primary); }
.btn--light:hover    { background: var(--clr-bg); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }


/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 900; padding: 20px 0;
    transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}
/* scrolled OR menu-open → always opaque */
.nav.scrolled,
.nav.menu-open {
    background: rgba(251,251,248,.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 13px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.05);
}

.nav__container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

/* Logo image in nav */
.nav__logo-img {
    height: 48px; width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);   /* white on transparent bg */
    transition: filter var(--ease);
}
.nav.scrolled .nav__logo-img,
.nav.menu-open .nav__logo-img { filter: none; }

/* Menu */
.nav__menu {
    display: flex; align-items: center; gap: 32px;
}
.nav__link {
    font-size: 11.5px; font-weight: 500;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.82);
    transition: color var(--ease);
    position: relative; padding-bottom: 2px;
}
.nav.scrolled .nav__link,
.nav.menu-open .nav__link { color: var(--clr-text); }
.nav__link::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--clr-primary);
    transition: width var(--ease);
}
.nav__link:hover { color: var(--clr-primary) !important; }
.nav__link:hover::after { width: 100%; }

.nav__cta {
    font-size: 10.5px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 11px 22px;
    background: rgba(255,255,255,.15); color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    transition: all var(--ease); white-space: nowrap;
}
.nav.scrolled .nav__cta,
.nav.menu-open .nav__cta { background: var(--clr-primary); color: #fff; border-color: transparent; }
.nav__cta:hover { background: #fff !important; color: var(--clr-primary) !important; transform: translateY(-1px); }

/* Hamburger */
.nav__toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px; z-index: 10;
}
.nav__toggle span {
    display: block; width: 24px; height: 1.5px;
    background: #fff;
    transition: transform .3s ease, opacity .3s ease, background var(--ease);
    transform-origin: center;
}
.nav.scrolled .nav__toggle span,
.nav.menu-open .nav__toggle span { background: var(--clr-dark); }

/* Hamburger → X */
.nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
}
.hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(140deg, #071e2b 0%, #0d4460 38%, #11587c 68%, #1a7aac 100%);
}
.hero__bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(26,122,172,.2) 0%, transparent 55%);
}

.hero__container {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
    min-height: 100vh;
    padding-top: 100px; padding-bottom: 60px;
}

/* Left – text */
.hero__content { animation: heroIn .9s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes heroIn { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }

.hero__eyebrow {
    display: block; font-size: 10.5px; font-weight: 600;
    letter-spacing: .26em; text-transform: uppercase;
    color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.hero__title {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 500; color: #fff;
    line-height: 1.1; margin-bottom: 22px; letter-spacing: -.02em;
}
.hero__subtitle {
    font-size: 16px; font-weight: 300;
    color: rgba(255,255,255,.75); line-height: 1.75;
    margin-bottom: 14px; max-width: 460px;
}
.hero__location {
    display: flex; align-items: center; gap: 8px;
    font-size: 12.5px; color: rgba(255,255,255,.5);
    letter-spacing: .04em; margin-bottom: 44px;
}
.hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero__phone {
    display: flex; align-items: center; gap: 9px;
    color: rgba(255,255,255,.72); font-size: 15px;
    letter-spacing: .04em; transition: color var(--ease);
}
.hero__phone:hover { color: #fff; }

/* Right – image */
.hero__image-col {
    position: relative;
    animation: heroIn .9s .18s cubic-bezier(.16,1,.3,1) both;
    display: flex; justify-content: center;
}
.hero__image-frame {
    position: relative;
    width: 100%; max-width: 420px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,.12);
}
.hero__img { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder when no photo */
.hero__image-frame.no-photo {
    background: linear-gradient(145deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
    display: flex; align-items: center; justify-content: center;
}
.hero__image-frame.no-photo::after {
    content: 'PM';
    font-family: var(--ff-serif); font-size: 80px; font-weight: 600;
    color: rgba(255,255,255,.1);
}

.hero__image-deco {
    position: absolute; bottom: -12px; right: -12px;
    width: 80%; height: 80%;
    border: 1.5px solid rgba(255,255,255,.15);
    pointer-events: none; z-index: -1;
}

.hero__image-badge {
    position: absolute; bottom: 24px; left: -28px;
    background: #fff; padding: 18px 22px; text-align: center;
    box-shadow: var(--shadow-md); min-width: 110px;
}
.hero__badge-number {
    display: block; font-family: var(--ff-serif);
    font-size: 36px; font-weight: 700; color: var(--clr-primary); line-height: 1;
}
.hero__badge-label {
    display: block; font-size: 10px; color: var(--clr-muted);
    text-transform: uppercase; letter-spacing: .12em; margin-top: 5px;
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute; bottom: 32px; left: 48px; z-index: 2;
}
.hero__scroll-hint span {
    display: block; width: 1px; height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}


/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 120px 0; background: var(--clr-bg); }
.about__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 88px; align-items: center;
}

.about__image-wrap { position: relative; }
.about__image-frame {
    aspect-ratio: 1/1; overflow: hidden;
    background: linear-gradient(145deg, var(--clr-primary) 0%, var(--clr-primary-lt) 100%);
}
.about__img { width: 100%; height: 100%; object-fit: cover; }
.about__image-frame.no-photo {
    display: flex; align-items: center; justify-content: center;
}
.about__image-frame.no-photo::after {
    content: 'PM'; font-family: var(--ff-serif);
    font-size: 80px; color: rgba(255,255,255,.15);
}
.about__tag {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--clr-white); padding: 14px 22px;
    font-family: var(--ff-serif); font-size: 18px;
    font-weight: 500; color: var(--clr-primary);
    box-shadow: var(--shadow-md); letter-spacing: .02em;
}

.about__content .section__title { margin-bottom: 18px; }
.about__text { font-size: 15.5px; line-height: 1.85; margin-bottom: 32px; }

.about__list { margin-bottom: 42px; display: flex; flex-direction: column; gap: 12px; }
.about__list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 13.5px; font-weight: 500; color: var(--clr-dark);
}
.about__list-icon {
    width: 24px; height: 24px;
    background: rgba(17,88,124,.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-primary); flex-shrink: 0;
}


/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos { padding: 120px 0; background: var(--clr-bg-alt); }
.servicos .section__title { margin-bottom: 60px; }

.servicos__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.servico__card {
    background: var(--clr-bg); overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease);
    border: 1px solid rgba(17,88,124,.08);
}
.servico__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Image area */
.servico__img-wrap {
    position: relative; height: 200px; overflow: hidden;
    background: var(--clr-bg-alt);
}
.servico__img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.servico__card:hover .servico__img { transform: scale(1.04); }

/* Fallback when image is missing */
.servico__img-wrap.no-img {
    background: linear-gradient(135deg, var(--clr-primary-dk) 0%, var(--clr-primary) 100%);
    display: flex; align-items: center; justify-content: center;
}
.servico__img-fallback {
    display: none;
    font-family: var(--ff-serif); font-size: 15px;
    color: rgba(255,255,255,.55); font-style: italic;
    text-align: center; padding: 0 16px;
}
.servico__img-wrap.no-img .servico__img-fallback { display: block; }

.servico__body { padding: 24px 28px 30px; }
.servico__header {
    margin-bottom: 18px; padding-bottom: 14px;
    border-bottom: 1px solid rgba(17,88,124,.1);
}
.servico__category {
    font-family: var(--ff-serif); font-size: 17px;
    font-weight: 500; color: var(--clr-primary);
}
.servico__list { display: flex; flex-direction: column; gap: 9px; }
.servico__list li {
    font-size: 13px; color: var(--clr-text);
    padding-left: 16px; position: relative; line-height: 1.5;
}
.servico__list li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--clr-primary); opacity: .35;
}

.servicos__cta { text-align: center; margin-top: 56px; }


/* ============================================================
   PROCEDIMENTOS
   ============================================================ */
.procedimentos { padding: 120px 0; background: var(--clr-bg); }
.procedimentos__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.procedimento__card {
    background: var(--clr-bg); overflow: hidden;
    border: 1px solid rgba(17,88,124,.09);
    transition: all var(--ease);
    opacity: 0; transform: translateY(18px);
}
.procedimento__card.visible {
    opacity: 1; transform: none;
    transition: opacity .55s ease, transform .55s ease,
                border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.procedimento__card:hover { border-color: rgba(17,88,124,.25); box-shadow: var(--shadow-sm); background: #fff; }

/* Image area */
.procedimento__img-wrap {
    position: relative; height: 180px; overflow: hidden;
    background: var(--clr-bg-alt);
}
.procedimento__img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .5s ease;
}
.procedimento__card:hover .procedimento__img { transform: scale(1.04); }

/* Fallback when image is missing */
.procedimento__img-wrap.no-img {
    background: linear-gradient(135deg, var(--clr-primary-dk) 0%, var(--clr-primary) 100%);
    display: flex; align-items: center; justify-content: center;
}
.procedimento__img-fallback {
    display: none;
    font-family: var(--ff-serif); font-size: 13px;
    color: rgba(255,255,255,.5); font-style: italic;
    text-align: center; padding: 0 16px;
}
.procedimento__img-wrap.no-img .procedimento__img-fallback { display: block; }
.procedimento__body { padding: 24px 26px 28px; }
.procedimento__title {
    font-family: var(--ff-serif); font-size: 17px;
    font-weight: 500; color: var(--clr-primary);
    margin-bottom: 12px; line-height: 1.3;
}
.procedimento__body p { font-size: 13.5px; color: var(--clr-text); line-height: 1.8; }


/* ============================================================
   HORÁRIO
   ============================================================ */
.horario {
    padding: 100px 0; background: var(--clr-bg-alt);
    position: relative; overflow: hidden;
}
.horario::before {
    content: '09—20';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-family: var(--ff-serif); font-size: 200px; font-weight: 700;
    color: rgba(17,88,124,.04); white-space: nowrap;
    pointer-events: none; letter-spacing: -.04em;
}
.horario__inner {
    position: relative; z-index: 1; text-align: center;
    max-width: 600px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
}
.horario__title {
    font-family: var(--ff-serif); font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 500; color: var(--clr-dark); margin-bottom: 40px;
}
.horario__items {
    display: flex; gap: 48px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 48px;
}
.horario__item {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px; text-align: center;
}
.horario__item-icon {
    width: 56px; height: 56px;
    background: rgba(17,88,124,.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-primary);
}
.horario__item span { font-size: 14px; color: var(--clr-text); font-weight: 500; }


/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais { padding: 120px 0; background: var(--clr-bg); }
.diferenciais__grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 40px;
}
.diferencial__item {
    text-align: center; padding: 40px 20px;
    transition: transform var(--ease);
}
.diferencial__item:hover { transform: translateY(-5px); }

.diferencial__icon-wrap {
    width: 64px; height: 64px; margin: 0 auto 22px;
    background: rgba(17,88,124,.07); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-primary); transition: background var(--ease);
}
.diferencial__item:hover .diferencial__icon-wrap { background: rgba(17,88,124,.14); }

.diferencial__title {
    font-family: var(--ff-serif); font-size: 17px;
    font-weight: 500; color: var(--clr-dark);
    margin-bottom: 12px; line-height: 1.35;
}
.diferencial__text { font-size: 13.5px; color: var(--clr-muted); line-height: 1.75; }


/* ============================================================
   DEPOIMENTOS — CARROSSEL
   ============================================================ */
.depoimentos { padding: 120px 0; background: var(--clr-bg-alt); overflow: hidden; }
.depoimentos .section__title { margin-bottom: 52px; }
.depoimentos .container { position: relative; }

.carousel {
    position: relative; padding: 0 0 56px;
}
.carousel__viewport {
    overflow: hidden; width: 100%;
}
.carousel__track {
    display: flex; transition: transform .5s cubic-bezier(.25,.1,.25,1);
    will-change: transform;
}
.carousel__slide {
    min-width: 33.333%; padding: 0 12px;
    box-sizing: border-box;
}

.depoimento__card {
    background: var(--clr-bg); padding: 40px 36px;
    border-top: 3px solid var(--clr-primary);
    height: 100%; position: relative;
    transition: box-shadow var(--ease), background var(--ease);
}
.depoimento__card:hover { background: #fff; box-shadow: var(--shadow-md); }

.depoimento__quote {
    font-family: var(--ff-serif); font-size: 72px; font-weight: 700;
    color: rgba(17,88,124,.1); line-height: .7; margin-bottom: 8px;
    user-select: none;
}
.depoimento__stars {
    display: block; color: var(--clr-gold);
    font-size: 14px; letter-spacing: 3px; margin-bottom: 18px;
}
.depoimento__texto {
    font-family: var(--ff-serif); font-size: 15px;
    font-style: italic; color: var(--clr-text);
    line-height: 1.85; margin-bottom: 26px; quotes: none;
}
.depoimento__autor {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--clr-primary); font-style: normal;
}
.depoimento__avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--clr-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; letter-spacing: .04em;
    flex-shrink: 0;
}

/* Carousel buttons */
.carousel__btn {
    position: absolute; top: 50%; transform: translateY(calc(-50% - 28px));
    width: 48px; height: 48px; border-radius: 50%;
    background: #fff; border: 1.5px solid rgba(17,88,124,.18);
    color: var(--clr-primary); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--ease); z-index: 2;
    box-shadow: var(--shadow-sm);
}
.carousel__btn:hover { background: var(--clr-primary); color: #fff; border-color: transparent; box-shadow: var(--shadow-md); }
.carousel__btn--prev { left: -24px; }
.carousel__btn--next { right: -24px; }

/* Dots */
.carousel__dots {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; justify-content: center; gap: 8px;
}
.carousel__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(17,88,124,.2); border: none; cursor: pointer;
    transition: all var(--ease); padding: 0;
}
.carousel__dot.active { background: var(--clr-primary); width: 24px; border-radius: 4px; }


/* ============================================================
   CONTATO
   ============================================================ */
.contato { padding: 120px 0; background: var(--clr-bg); }
.contato__grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1px; background: rgba(17,88,124,.08);
    border: 1px solid rgba(17,88,124,.08);
}
.contato__card {
    background: var(--clr-bg); padding: 60px 44px;
    text-align: center; transition: background var(--ease);
    display: flex; flex-direction: column; align-items: center;
}
.contato__card:hover { background: #fff; }
.contato__card--destaque { background: var(--clr-primary); }
.contato__card--destaque:hover { background: var(--clr-primary-dk); }

.contato__icon-wrap { color: var(--clr-primary); margin-bottom: 20px; }
.contato__card--destaque .contato__icon-wrap { color: rgba(255,255,255,.75); }

.contato__titulo {
    font-family: var(--ff-serif); font-size: 21px;
    font-weight: 500; color: var(--clr-dark); margin-bottom: 12px;
}
.contato__card--destaque .contato__titulo { color: #fff; }
.contato__info { font-size: 14px; color: var(--clr-muted); line-height: 1.7; }
.contato__card--destaque .contato__info { color: rgba(255,255,255,.65); }
.contato__btn { margin-top: 28px; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #111; padding: 60px 0 32px; }
.footer__content {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap;
    gap: 28px; margin-bottom: 40px;
}

.footer__logo-wrap { display: block; }
.footer__logo-img  { height: 48px; width: auto; object-fit: contain; }

.footer__nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__nav a {
    font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.4); transition: color var(--ease);
}
.footer__nav a:hover { color: rgba(255,255,255,.85); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 24px;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 11.5px; color: rgba(255,255,255,.25); }

.footer__credit { font-size: 11.5px; color: rgba(255,255,255,.25); }
.footer__credit a {
    color: rgba(255,255,255,.45);
    transition: color var(--ease);
    text-decoration: underline; text-decoration-color: rgba(255,255,255,.15);
}
.footer__credit a:hover { color: rgba(255,255,255,.8); }


/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 800;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
    transition: transform var(--ease), box-shadow var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.whatsapp-float__pulse {
    position: absolute; inset: 0; border-radius: 50%;
    background: #25d366; animation: pulse 2.4s ease-out infinite; z-index: -1;
}
@keyframes pulse {
    0%  { transform: scale(1); opacity: .6; }
    70% { transform: scale(1.55); opacity: 0; }
    100%{ transform: scale(1.55); opacity: 0; }
}


/* ============================================================
   RESPONSIVE ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .hero__container { gap: 40px; }
    .about__grid { gap: 56px; }
    .servicos__grid { grid-template-columns: repeat(2,1fr); }
    .procedimentos__grid { grid-template-columns: repeat(2,1fr); }
    .diferenciais__grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
    .carousel__slide { min-width: 50%; }
}


/* ============================================================
   RESPONSIVE ≤ 768px (mobile)
   ============================================================ */
@media (max-width: 768px) {
    /* Nav */
    .nav__toggle { display: flex; }

    .nav__menu {
        position: absolute;
        top: 100%; left: 0; right: 0;
        display: flex; flex-direction: column;
        align-items: stretch; gap: 0;
        background: var(--clr-bg);
        box-shadow: 0 8px 28px rgba(0,0,0,.12);
        max-height: 0; overflow: hidden;
        transition: max-height .35s ease;
    }
    .nav__menu.open { max-height: 480px; }

    .nav__menu li { width: 100%; }
    .nav__link {
        display: block; padding: 16px 24px;
        font-size: 14px !important; color: var(--clr-text) !important;
        border-bottom: 1px solid rgba(17,88,124,.07);
        letter-spacing: .06em;
    }
    .nav__link:hover { color: var(--clr-primary) !important; }
    .nav__link::after { display: none; }

    .nav__menu li:last-child { padding: 16px 24px 20px; }
    .nav__cta {
        display: block; text-align: center;
        background: var(--clr-primary) !important;
        color: #fff !important; border-color: transparent !important;
    }
    .nav__cta:hover { background: var(--clr-primary-dk) !important; color: #fff !important; transform: none; }

    /* Hero */
    .hero__container {
        grid-template-columns: 1fr;
        padding-top: 110px; gap: 40px;
        text-align: center;
    }
    .hero__location { justify-content: center; }
    .hero__actions  { justify-content: center; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__image-col { order: -1; }
    .hero__image-frame { max-width: 280px; margin: 0 auto; aspect-ratio: 1/1; }
    .hero__image-badge { left: -12px; bottom: -12px; padding: 14px 16px; }
    .hero__badge-number { font-size: 28px; }
    .hero__scroll-hint { left: 24px; }

    /* About */
    .about { padding: 80px 0; }
    .about__grid { grid-template-columns: 1fr; gap: 56px; }
    .about__tag { right: 0; }

    /* Servicos */
    .servicos { padding: 80px 0; }
    .servicos__grid { grid-template-columns: 1fr; }

    /* Procedimentos */
    .procedimentos { padding: 80px 0; }
    .procedimentos__grid { grid-template-columns: 1fr; }

    /* Horario */
    .horario { padding: 80px 0; }
    .horario__items { gap: 28px; }

    /* Diferenciais */
    .diferenciais { padding: 80px 0; }

    /* Depoimentos */
    .depoimentos { padding: 80px 0; }
    .carousel__slide { min-width: 85%; }
    .carousel__btn--prev { left: 0; }
    .carousel__btn--next { right: 0; }

    /* Contato */
    .contato { padding: 80px 0; }
    .contato__grid { grid-template-columns: repeat(2,1fr); gap: 1px; }

    /* Footer */
    .footer__content { flex-direction: column; align-items: flex-start; }
    .footer__bottom  { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   RESPONSIVE ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
    .diferenciais__grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: center; gap: 16px; }
    .servico__card, .depoimento__card { padding-left: 20px; padding-right: 20px; }
    .contato__card { padding: 44px 24px; }
    .contato__grid { grid-template-columns: 1fr; }
    .carousel__slide { min-width: 100%; }
    .carousel__btn { display: none; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
