/* ==========================================================================
   CLOE Premium — Folha de estilo principal
   As cores e fontes têm valores padrão aqui, mas são sobrescritas
   dinamicamente pelo Personalizador (variáveis CSS injetadas no <head>).
   ========================================================================== */

:root {
    /* Paleta — sobrescrita pelo Personalizador do WordPress */
    --cloe-areia:        #E4D7C2; /* Areia */
    --cloe-areia-claro:  #F0E8DA; /* Areia claro */
    --cloe-preto:        #14110E; /* Preto elegante (quente) */
    --cloe-neve:         #FCFBF8; /* Neve */
    --cloe-offwhite:     #F5F1EA; /* Off-white */
    --cloe-dourado:      #C2A14D; /* Dourado/champagne */
    --cloe-dourado-claro:#D9C28A; /* Champagne claro */
    --cloe-texto:        #2A2620; /* Texto principal */
    --cloe-texto-suave:  #6B6256; /* Texto secundário */

    /* Tipografia */
    --cloe-fonte-titulo: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --cloe-fonte-texto:  'Inter', 'Helvetica Neue', Arial, sans-serif;

    /* Estrutura */
    --cloe-header-height: clamp(84px, 7.2vw, 98px);
    --container-max: 1440px;
    --container-padding-desktop: 72px;
    --container-padding-tablet: 40px;
    --container-padding-mobile: 22px;
    --cloe-container: 1180px;
    --cloe-container-narrow: 760px;
    --cloe-radius: 16px;
    --cloe-radius-sm: 12px;
    --cloe-shadow: 0 18px 60px -28px rgba(20, 17, 14, 0.28);
    --cloe-shadow-soft: 0 10px 36px -22px rgba(20, 17, 14, 0.22);
    --cloe-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------- Reset base ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; max-width: 100%; overflow-x: hidden; }

body {
    margin: 0;
    font-family: var(--cloe-fonte-texto);
    color: var(--cloe-texto);
    background: var(--cloe-neve);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.cloe-site-main { overflow-x: clip; max-width: 100%; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.3s var(--cloe-ease); }

h1, h2, h3, h4, h5 {
    font-family: var(--cloe-fonte-titulo);
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 0.4em;
    color: var(--cloe-preto);
    letter-spacing: -0.005em;
    text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }

/* Parágrafos institucionais justificados */
.cloe-text-justify { text-align: justify; text-justify: inter-word; hyphens: auto; }
@media (max-width: 560px) { .cloe-text-justify { text-align: left; hyphens: none; } }

::selection { background: var(--cloe-dourado); color: #fff; }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
    position: fixed; top: 12px; left: 12px;
    width: auto; height: auto; clip: auto;
    background: var(--cloe-preto); color: var(--cloe-neve);
    padding: 12px 20px; border-radius: 8px; z-index: 1000;
}

/* Conteúdo de páginas estáticas e blog */
.cloe-entry-content { font-size: 1.05rem; color: var(--cloe-texto); }
.cloe-entry-content h2, .cloe-entry-content h3 { margin-top: 1.4em; }
.cloe-entry-content img { border-radius: var(--cloe-radius-sm); margin: 1.4em 0; }
.cloe-entry-content a { color: var(--cloe-dourado); text-decoration: underline; }

.pagination, .nav-links { display: flex; gap: 10px; flex-wrap: wrap; }
.pagination .page-numbers, .nav-links a, .nav-links span {
    display: inline-grid; place-items: center;
    min-width: 44px; height: 44px; padding: 0 10px;
    border-radius: 100px;
    border: 1px solid rgba(20,17,14,0.14);
    font-size: 0.9rem;
}
.pagination .current { background: var(--cloe-preto); color: var(--cloe-neve); border-color: var(--cloe-preto); }

/* ----------------------------------- Utilitários — container premium ----------------------------------- */
.cloe-container,
.cloe-header__inner,
.cloe-hero__inner {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--container-padding-desktop) !important;
    padding-right: var(--container-padding-desktop) !important;
    box-sizing: border-box;
}
@media (max-width: 1024px) {
    .cloe-container,
    .cloe-header__inner,
    .cloe-hero__inner {
        padding-left: var(--container-padding-tablet) !important;
        padding-right: var(--container-padding-tablet) !important;
    }
}
@media (max-width: 768px) {
    .cloe-container,
    .cloe-header__inner,
    .cloe-hero__inner {
        padding-left: var(--container-padding-mobile) !important;
        padding-right: var(--container-padding-mobile) !important;
    }
}

.cloe-section { padding: clamp(54px, 6.5vw, 96px) 0; position: relative; }
.cloe-section--neve    { background: var(--cloe-neve); }
.cloe-section--offwhite{ background: var(--cloe-offwhite); }
.cloe-section--areia   { background: var(--cloe-areia-claro); }
.cloe-section--preto   { background: var(--cloe-preto); color: var(--cloe-neve); }
.cloe-section--preto h1,
.cloe-section--preto h2,
.cloe-section--preto h3 { color: var(--cloe-neve); }

.cloe-eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 10px;
    font-family: var(--cloe-fonte-texto);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cloe-dourado);
    margin-bottom: 14px;
}
.cloe-eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--cloe-dourado);
    display: inline-block;
}
.cloe-eyebrow--center { justify-content: center; }

.cloe-title {
    font-size: clamp(1.95rem, 3.2vw, 2.75rem); /* ~34px → 44px */
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 0.3em;
    max-width: 16em; /* limite generoso; o balance cuida do equilíbrio */
    text-wrap: balance;
}
.cloe-subtitle {
    font-size: clamp(1.02rem, 1vw, 1.12rem); /* ~16px → 18px */
    line-height: 1.6;
    color: var(--cloe-texto-suave);
    max-width: 680px;
    text-wrap: pretty;
}
.cloe-section--preto .cloe-subtitle { color: rgba(252, 251, 248, 0.78); }

.cloe-section-head { max-width: 780px; }
.cloe-section-head--center { margin: 0 auto; text-align: center; }
.cloe-section-head--center .cloe-title { margin-left: auto; margin-right: auto; max-width: 16em; }
.cloe-section-head--center .cloe-subtitle { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ----------------------------------- Botões ----------------------------------- */
.cloe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--cloe-fonte-texto);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--cloe-ease);
    white-space: nowrap;
}
.cloe-btn--primary {
    background: var(--cloe-preto);
    color: var(--cloe-neve);
    box-shadow: var(--cloe-shadow-soft);
}
.cloe-btn--primary:hover {
    background: var(--cloe-dourado);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -18px rgba(194, 161, 77, 0.6);
}
.cloe-btn--gold {
    background: linear-gradient(120deg, var(--cloe-dourado), var(--cloe-dourado-claro));
    color: #1a1611;
}
.cloe-btn--gold:hover { transform: translateY(-3px); filter: brightness(1.05); box-shadow: 0 18px 40px -18px rgba(194, 161, 77, 0.6); }
.cloe-btn--ghost {
    background: transparent;
    color: var(--cloe-preto);
    border-color: rgba(20, 17, 14, 0.22);
}
.cloe-btn--ghost:hover { border-color: var(--cloe-preto); background: var(--cloe-preto); color: var(--cloe-neve); }
.cloe-section--preto .cloe-btn--ghost { color: var(--cloe-neve); border-color: rgba(252,251,248,0.35); }
.cloe-section--preto .cloe-btn--ghost:hover { background: var(--cloe-neve); color: var(--cloe-preto); }

/* ----------------------------------- Header ----------------------------------- */
.cloe-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    margin-bottom: 0;
    padding: 22px 0;
    overflow: visible;
    transition: background 0.45s var(--cloe-ease), padding 0.45s var(--cloe-ease), box-shadow 0.45s var(--cloe-ease);
}
.cloe-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 0;
    max-width: var(--container-max);
    position: relative;
}
.cloe-header.is-scrolled {
    background: rgba(252, 251, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 8px 30px -20px rgba(20,17,14,0.35);
}
.cloe-logo__link { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.cloe-logo__img,
.cloe-logo img,
.cloe-header__logo img {
    display: block;
    width: auto;
    height: clamp(52px, 4.5vw, 74px);
    max-width: 250px;
    object-fit: contain;
    transition: height 0.4s var(--cloe-ease);
}
.cloe-header.is-scrolled .cloe-logo__img,
.cloe-header.is-scrolled .cloe-logo img,
.cloe-header.is-scrolled .cloe-header__logo img { height: clamp(45px, 3.8vw, 65px); }
.cloe-logo__text {
    font-family: var(--cloe-fonte-titulo);
    font-size: 1.7rem;
    letter-spacing: 0.18em;
    color: var(--cloe-preto);
    font-weight: 600;
}

.cloe-nav { display: flex; align-items: center; gap: 36px; }
.cloe-nav > .cloe-btn { display: none; } /* botão do menu aparece só no mobile */
.cloe-menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.cloe-menu a {
    font-size: 0.84rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cloe-texto);
    position: relative;
    padding: 4px 0;
}
.cloe-menu a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--cloe-dourado);
    transition: width 0.35s var(--cloe-ease);
}
.cloe-menu a:hover { color: var(--cloe-dourado); }
.cloe-menu a:hover::after { width: 100%; }

.cloe-header__cta { display: flex; align-items: center; gap: 16px; }

/* Hambúrguer */
.cloe-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px; height: 22px;
    background: none; border: none; cursor: pointer;
    padding: 0;
}
.cloe-burger span {
    display: block; width: 100%; height: 2px;
    background: var(--cloe-preto);
    transition: transform 0.35s var(--cloe-ease), opacity 0.3s;
}
.cloe-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cloe-burger.is-open span:nth-child(2) { opacity: 0; }
.cloe-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------- Hero ----------------------------------- */
.cloe-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    display: flex;
    align-items: flex-start;
    min-height: calc(100vh - 120px);
    height: auto;
    padding-top: calc(var(--cloe-header-height) + clamp(6px, 0.8vw, 12px));
    padding-bottom: clamp(52px, 5.5vw, 80px);
    border-bottom: none;
    background: linear-gradient(165deg, var(--cloe-offwhite) 0%, var(--cloe-neve) 50%, #f8f4ec 100%);
    overflow: hidden;
}
.cloe-hero > .cloe-container,
.cloe-hero__inner {
    flex: 1;
    min-width: 0;
    max-width: var(--container-max);
    margin-top: 0 !important;
    padding-top: 0;
    overflow: clip;
}
.cloe-hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -80px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(194,161,77,0.16), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.cloe-hero::after { content: none; display: none; }
.cloe-hero__grid,
.cloe-hero__inner.cloe-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(48px, 6vw, 96px);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: inherit;
    margin-top: 0 !important;
    padding-top: 0;
    position: relative;
    z-index: 2;
}
.cloe-hero .cloe-eyebrow { margin-bottom: 8px; }
.cloe-hero__title {
    font-size: clamp(2.4rem, 3.7vw, 3.35rem); /* ~38px → ~54px, editorial em 2 linhas */
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 0.22em;
    max-width: 820px;
    text-align: left;
}
.cloe-hero__content {
    max-width: 820px;
    min-width: 0;
    margin-left: 0;
    justify-self: start;
}
.cloe-hero__title em,
.cloe-hero__title span { font-style: normal; color: var(--cloe-dourado); }
.cloe-hero__title em { font-style: italic; }
.cloe-hero__text {
    font-size: clamp(1rem, 1vw, 1.12rem);
    line-height: 1.6;
    color: var(--cloe-texto-suave);
    max-width: 600px;
    margin-bottom: 1.15em;
    text-align: left;
    word-spacing: normal;
}
/* Efeito de digitação (typewriter) */
.cloe-hero__typing {
    margin: 0 0 1.15em;
    font-family: var(--cloe-fonte-titulo);
    font-size: clamp(1.5rem, 2.5vw, 2.15rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--cloe-preto);
    text-align: left;
    white-space: nowrap;
    min-height: 1.25em;
}
.cloe-hero__typing-fixed { color: var(--cloe-preto); }
.cloe-hero__typing-word { color: var(--cloe-dourado); font-weight: 600; }
.cloe-hero__typing-cursor {
    display: inline-block;
    width: 2px;
    height: 0.92em;
    margin-left: 5px;
    vertical-align: -0.08em;
    background: var(--cloe-dourado);
    animation: cloeTypingBlink 0.85s steps(1, end) infinite;
}
@keyframes cloeTypingBlink { 0%, 45% { opacity: 1; } 46%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
    .cloe-hero__typing-cursor { animation: none; opacity: 0; }
}

.cloe-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 0; }

.cloe-hero__media {
    position: relative;
    justify-self: end;
    align-self: center;
    display: inline-block;
    width: fit-content;
    max-width: min(100%, 560px);
    min-width: 0;
    margin-left: 0;
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}
.cloe-hero__media::before,
.cloe-hero__media::after { content: none; display: none; }
.cloe-hero__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 28px;
}
/* Sem fundo / limpo — foto solta, sem moldura, card, borda ou canto arredondado */
.cloe-hero__media--plain {
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}
.cloe-hero__media--plain img {
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    filter: drop-shadow(0 26px 44px rgba(20,17,14,0.22));
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    max-height: clamp(520px, 68vh, 680px);
    margin-inline: auto;
    object-fit: contain;
    object-position: center bottom;
}
/* Card premium (com fundo) */
.cloe-hero__media--card img {
    border-radius: 36px;
    background: var(--cloe-preto);
    box-shadow: 0 30px 64px -36px rgba(20,17,14,0.35);
    border: 0;
    outline: none;
}
/* Sem sombra (controlável no Customizer) */
.cloe-hero__media--noshadow img { box-shadow: none; filter: none; }
/* Tamanho da imagem do hero */
.cloe-hero__media--size-sm { max-width: min(100%, 420px); }
.cloe-hero__media--size-md { max-width: min(100%, 560px); }
.cloe-hero__media--size-lg { max-width: min(100%, 640px); }
.cloe-hero__media--size-sm img { max-height: clamp(440px, 58vh, 540px); }
.cloe-hero__media--size-md img { max-height: clamp(520px, 68vh, 680px); }
.cloe-hero__media--size-lg img { max-height: clamp(560px, 72vh, 760px); }
.cloe-hero__badge {
    position: absolute;
    z-index: 3;
    background: rgba(252,251,248,0.94);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(217,194,138,0.4);
    border-radius: var(--cloe-radius-sm);
    box-shadow: 0 12px 28px -16px rgba(20,17,14,0.4);
    padding: 11px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cloe-hero__badge--bottom-left { bottom: clamp(88px, 16%, 140px); left: -10px; right: auto; }
.cloe-hero__badge--bottom-right { bottom: clamp(88px, 16%, 140px); right: -10px; left: auto; }
.cloe-hero__badge--bottom-center { bottom: clamp(88px, 16%, 140px); left: 50%; right: auto; transform: translateX(-50%); }
.cloe-hero__badge strong { font-family: var(--cloe-fonte-titulo); font-size: 1.5rem; font-weight: 600; color: var(--cloe-dourado); line-height: 1; }
.cloe-hero__badge span { font-size: 0.72rem; color: var(--cloe-texto-suave); line-height: 1.3; max-width: 12ch; }

/* ----------------------------------- Diferenciais ----------------------------------- */
.cloe-features {
    position: relative;
    border: none;
    background: linear-gradient(to bottom, #f8f4ec 0%, #f7f2e9 42%, var(--cloe-offwhite) 100%);
    padding-top: clamp(72px, 7vw, 100px);
    padding-bottom: clamp(54px, 6.5vw, 96px);
}
.cloe-features::before { content: none; display: none; }
@media (min-width: 1024px) {
    .cloe-features .cloe-section-head { max-width: 1280px; }
    .cloe-features .cloe-section-head--center .cloe-title {
        max-width: 1280px;
        margin-inline: auto;
        white-space: nowrap;
        font-size: clamp(2.6rem, 3.4vw, 4.1rem);
        line-height: 1.08;
        letter-spacing: -0.025em;
        text-align: center;
        text-wrap: nowrap;
    }
}
.cloe-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 44px;
}
.cloe-feature {
    background: var(--cloe-neve);
    border: 1px solid rgba(20,17,14,0.06);
    border-radius: var(--cloe-radius);
    padding: 28px 18px;
    text-align: center;
    box-shadow: var(--cloe-shadow-soft);
    transition: transform 0.4s var(--cloe-ease), box-shadow 0.4s var(--cloe-ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.cloe-feature:hover { transform: translateY(-5px); box-shadow: var(--cloe-shadow); }
.cloe-feature__icon {
    width: 50px; height: 50px;
    margin: 0 auto 16px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--cloe-areia-claro);
    color: var(--cloe-dourado);
    flex-shrink: 0;
}
.cloe-feature__icon svg { width: 23px; height: 23px; }
.cloe-feature h3 {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem); line-height: 1.25; margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: 2.4em;
}
/* Desktop: títulos dos diferenciais em uma única linha (ex.: "Atendimento personalizado"). */
@media (min-width: 1180px) {
    .cloe-feature h3 { white-space: nowrap; min-height: 1.4em; }
}
.cloe-feature p {
    font-size: 0.9rem; color: var(--cloe-texto-suave); margin: 0; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: 3em;
}

/* ----------------------------------- Sobre ----------------------------------- */
.cloe-about__grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(36px, 5vw, 70px);
    align-items: center;
}
.cloe-about__media { position: relative; margin-inline: auto; }
.cloe-about__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--cloe-radius);
    object-fit: cover;
    object-position: center bottom;
}
/* Card premium (com fundo) */
.cloe-about__media--card img {
    background: var(--cloe-preto);
    box-shadow: var(--cloe-shadow);
    aspect-ratio: 4 / 3.4;
}
/* Sem fundo / flutuante (PNG transparente) */
.cloe-about__media--plain img {
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 26px 42px rgba(20,17,14,0.18));
}
.cloe-about__media--noshadow img { box-shadow: none; filter: none; }
/* Moldura champagne discreta apenas no formato card */
.cloe-about__media--card::after {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid var(--cloe-dourado);
    border-radius: var(--cloe-radius);
    z-index: -1;
}
/* Tamanho da imagem da seção Sobre */
.cloe-about__media--size-sm { max-width: 360px; }
.cloe-about__media--size-md { max-width: 460px; }
.cloe-about__media--size-lg { max-width: 560px; }
.cloe-about__card { }
.cloe-about__quote {
    margin-top: 22px;
    padding: 18px 24px;
    border-left: 3px solid var(--cloe-dourado);
    background: var(--cloe-neve);
    border-radius: 0 var(--cloe-radius-sm) var(--cloe-radius-sm) 0;
    font-family: var(--cloe-fonte-titulo);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.35;
    color: var(--cloe-preto);
    box-shadow: var(--cloe-shadow-soft);
}
.cloe-about__signature { margin-top: 20px; font-size: 0.88rem; color: var(--cloe-texto-suave); }
.cloe-about__signature strong { color: var(--cloe-preto); display: block; font-weight: 500; }

/* ----------------------------------- Tratamentos ----------------------------------- */
.cloe-treatments__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 44px;
    align-items: stretch;
}
.cloe-treatment {
    background: var(--cloe-neve);
    border-radius: var(--cloe-radius);
    padding: clamp(28px, 2.5vw, 38px);
    min-height: 250px;
    border: 1px solid rgba(20,17,14,0.06);
    box-shadow: var(--cloe-shadow-soft);
    transition: transform 0.4s var(--cloe-ease), box-shadow 0.4s var(--cloe-ease), border-color 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    gap: 0;
    position: relative;
    overflow: hidden;
}
.cloe-treatment::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cloe-dourado), var(--cloe-dourado-claro));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--cloe-ease);
}
.cloe-treatment:hover { transform: translateY(-6px); box-shadow: var(--cloe-shadow); border-color: rgba(194,161,77,0.4); }
.cloe-treatment:hover::before { transform: scaleX(1); }
.cloe-treatment__icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    background: var(--cloe-areia-claro);
    color: var(--cloe-dourado);
    display: grid; place-items: center;
    margin-bottom: 22px;
    flex-shrink: 0;
}
.cloe-treatment__icon svg { width: 25px; height: 25px; }
.cloe-treatment h3 {
    font-size: clamp(1.2rem, 1.25vw, 1.32rem);
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cloe-treatment p {
    font-size: 0.92rem;
    color: var(--cloe-texto-suave);
    margin: 0;
    line-height: 1.48;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .cloe-treatment h3 {
        font-size: clamp(1.35rem, 1.35vw, 1.65rem);
        white-space: nowrap;
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}
.cloe-treatment__link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cloe-preto);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}
.cloe-treatment__link:hover { color: var(--cloe-dourado); gap: 12px; }

/* ----------------------------------- Galeria / Ambiente ----------------------------------- */
.cloe-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(150px, 16vw, 200px);
    gap: 5px;
    margin-top: clamp(24px, 3vw, 38px);
    border-radius: var(--cloe-radius);
    overflow: hidden;
    box-shadow: var(--cloe-shadow);
}
.cloe-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: var(--cloe-areia);
    margin: 0;
}
.cloe-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--cloe-ease); }
.cloe-gallery__item:hover img { transform: scale(1.06); }
.cloe-gallery__item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20,17,14,0.28));
    opacity: 0;
    transition: opacity 0.4s var(--cloe-ease);
}
.cloe-gallery__item:hover::after { opacity: 1; }
.cloe-gallery__item--big { grid-column: span 2; grid-row: span 2; }
.cloe-gallery__item--tall { grid-row: span 2; }
.cloe-gallery__item--wide { grid-column: span 2; }

@media (min-width: 1024px) {
    .cloe-gallery .cloe-section-head { max-width: 1200px; }
    .cloe-gallery .cloe-section-head--center .cloe-title,
    .cloe-gallery .environment-title {
        max-width: 980px;
        margin-inline: auto;
        text-align: center;
        white-space: normal;
        text-wrap: balance;
        font-size: clamp(2.6rem, 3.5vw, 4.2rem);
        line-height: 1.08;
    }
    .cloe-gallery .cloe-section-head--center .cloe-subtitle {
        max-width: 1000px;
        margin-inline: auto;
        white-space: nowrap;
        font-size: clamp(1rem, 1.15vw, 1.25rem);
        line-height: 1.5;
        text-wrap: nowrap;
    }
}
.environment-title br { display: block; }

/* ----------------------------------- CTA ----------------------------------- */
.cloe-cta { text-align: center; padding-top: clamp(44px, 4.4vw, 68px); padding-bottom: clamp(44px, 4.4vw, 68px); }
.cloe-cta__inner { max-width: 960px; margin: 0 auto; }
.cloe-cta__title { font-size: clamp(1.6rem, 2.4vw, 2.05rem); line-height: 1.16; letter-spacing: -0.02em; margin: 0 auto 0.55em; max-width: 30ch; text-wrap: balance; }
.cloe-cta__text { font-size: clamp(1rem, 1.1vw, 1.1rem); line-height: 1.6; color: rgba(252,251,248,0.8); margin: 0 auto 1.5em; max-width: 44ch; text-wrap: pretty; }
.cloe-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* Desktop amplo: título do CTA em uma única linha. */
@media (min-width: 1080px) {
    .cloe-cta__title { white-space: nowrap; max-width: none; }
}

/* ----------------------------------- Avaliações ----------------------------------- */
.cloe-reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 44px;
}
.cloe-review {
    background: var(--cloe-neve);
    border-radius: var(--cloe-radius);
    padding: 28px 26px;
    border: 1px solid rgba(20,17,14,0.06);
    box-shadow: var(--cloe-shadow-soft);
    display: flex;
    flex-direction: column;
}
.cloe-review__stars { color: var(--cloe-dourado); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.cloe-review__text { font-family: var(--cloe-fonte-titulo); font-style: italic; font-size: 1.3rem; line-height: 1.4; color: var(--cloe-preto); margin-bottom: 20px; flex: 1; text-wrap: pretty; }
.cloe-review__author { display: flex; align-items: center; gap: 14px; }
.cloe-review__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--cloe-areia);
    color: var(--cloe-dourado);
    display: grid; place-items: center;
    font-family: var(--cloe-fonte-titulo);
    font-weight: 600;
    font-size: 1.1rem;
}
.cloe-review__name { font-weight: 500; color: var(--cloe-preto); font-size: 0.98rem; }
.cloe-review__role { font-size: 0.82rem; color: var(--cloe-texto-suave); }

/* Carrossel de avaliações (visual dos cards mantido) */
.cloe-reviews__carousel { position: relative; margin-top: clamp(34px, 4vw, 48px); padding-inline: 56px; }
.cloe-reviews__viewport { overflow: hidden; }
.cloe-reviews__track { display: flex; gap: 20px; transition: transform 0.6s var(--cloe-ease); will-change: transform; }
.cloe-reviews__track .cloe-review { flex: 0 0 calc((100% - 40px) / 3); box-sizing: border-box; margin: 0; }
.cloe-reviews__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 2; width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid rgba(20,17,14,0.14); background: var(--cloe-neve);
    color: var(--cloe-preto); display: grid; place-items: center; cursor: pointer;
    box-shadow: var(--cloe-shadow-soft); transition: background 0.3s var(--cloe-ease), color 0.3s var(--cloe-ease), border-color 0.3s var(--cloe-ease);
}
.cloe-reviews__arrow:hover { background: var(--cloe-dourado); border-color: var(--cloe-dourado); color: #fff; }
.cloe-reviews__arrow svg { width: 20px; height: 20px; }
.cloe-reviews__arrow--prev { left: 0; }
.cloe-reviews__arrow--prev svg { transform: rotate(180deg); }
.cloe-reviews__arrow--next { right: 0; }
.cloe-reviews__arrow[disabled] { opacity: 0.35; cursor: default; }
.cloe-reviews__dots { display: flex; justify-content: center; gap: 9px; margin-top: 26px; }
.cloe-reviews__dots button {
    width: 9px; height: 9px; border-radius: 50%; padding: 0; cursor: pointer; border: 0;
    background: rgba(20,17,14,0.18); transition: transform 0.3s var(--cloe-ease), background 0.3s var(--cloe-ease);
}
.cloe-reviews__dots button.is-active { background: var(--cloe-dourado); transform: scale(1.3); }
.cloe-reviews__dots:empty { display: none; }

/* ----------------------------------- Footer ----------------------------------- */
.cloe-footer { background: var(--cloe-preto); color: rgba(252,251,248,0.78); padding: clamp(46px, 5.2vw, 66px) 0 0; }
.cloe-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.4fr;
    gap: clamp(26px, 3.4vw, 46px);
    padding-bottom: clamp(30px, 3.4vw, 42px);
}
.cloe-footer__logo img,
.footer-logo img {
    display: block;
    width: auto;
    height: clamp(60px, 5vw, 90px);
    max-width: 300px;
    object-fit: contain;
    margin-bottom: 16px;
}
.cloe-footer__logo .cloe-logo__text { color: var(--cloe-dourado-claro); }
.cloe-footer__about { font-size: 0.9rem; line-height: 1.55; max-width: 320px; color: rgba(252,251,248,0.66); }
.cloe-footer h4 {
    color: var(--cloe-neve);
    font-family: var(--cloe-fonte-texto);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}
.cloe-footer__h4-spaced { margin-top: 26px; }
.cloe-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.cloe-footer__links a { font-size: 0.92rem; color: rgba(252,251,248,0.72); }
.cloe-footer__links a:hover { color: var(--cloe-dourado-claro); }

.cloe-footer__contact { font-size: 0.92rem; line-height: 1.55; }
.cloe-footer__contact-item { display: flex; gap: 11px; margin-bottom: 12px; align-items: flex-start; }
.cloe-footer__contact-item svg { width: 17px; height: 17px; color: var(--cloe-dourado-claro); flex-shrink: 0; margin-top: 3px; }

.cloe-footer__map {
    border-radius: var(--cloe-radius);
    overflow: hidden;
    box-shadow: 0 16px 40px -22px rgba(0,0,0,0.6);
    border: 1px solid rgba(252,251,248,0.1);
    margin-top: 8px;
}
.cloe-footer__map iframe { display: block; width: 100%; height: clamp(170px, 18vw, 200px); border: 0; filter: grayscale(0.2) contrast(1.05); }
.cloe-footer__map-actions,
.cloe-footer__actions,
.footer-actions,
.footer-location-actions,
.footer-map-actions,
.footer-buttons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    margin-top: 22px !important;
}
.cloe-footer__map-actions a,
.cloe-footer__actions a,
.footer-actions a,
.footer-location-actions a,
.footer-map-actions a,
.footer-buttons a,
.cloe-footer__directions-btn,
.cloe-footer__whatsapp-btn {
    width: auto !important;
    min-width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 54px !important;
    padding: 16px 28px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    height: auto;
    gap: 10px;
    border: none;
    box-shadow: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
@media (min-width: 561px) {
    .cloe-footer__map-actions,
    .cloe-footer__actions,
    .footer-actions,
    .footer-location-actions,
    .footer-map-actions,
    .footer-buttons {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
}
.cloe-footer__directions-btn svg,
.cloe-footer__map-actions a svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px;
    flex: 0 0 18px;
}
.cloe-footer .cloe-btn--ghost { color: var(--cloe-neve); border-color: rgba(252,251,248,0.35); }
.cloe-footer .cloe-btn--ghost:hover { background: var(--cloe-neve); color: var(--cloe-preto); border-color: var(--cloe-neve); }

.cloe-footer__social { display: flex; gap: 11px; margin-top: 18px; }
.cloe-footer__social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(252,251,248,0.2);
    display: grid; place-items: center;
    color: rgba(252,251,248,0.8);
    transition: all 0.35s var(--cloe-ease);
}
.cloe-footer__social a:hover { background: var(--cloe-dourado); border-color: var(--cloe-dourado); color: #1a1611; transform: translateY(-3px); }
.cloe-footer__social svg { width: 18px; height: 18px; }

.cloe-footer__bottom {
    border-top: 1px solid rgba(201,162,74,0.18);
    margin-top: 4px;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.8rem;
    color: rgba(252,251,248,0.6);
}
.cloe-footer__credit a { color: var(--cloe-dourado-claro); }
.cloe-footer__credit a:hover { color: var(--cloe-neve); }

/* ----------------------------------- Botão flutuante WhatsApp ----------------------------------- */
.cloe-whatsapp-float {
    position: fixed;
    right: 24px; bottom: 24px;
    z-index: 99;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: grid; place-items: center;
    box-shadow: 0 10px 30px -10px rgba(37,211,102,0.6);
    transition: transform 0.35s var(--cloe-ease);
}
.cloe-whatsapp-float:hover { transform: scale(1.08); }
.cloe-whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ----------------------------------- Animações ao rolar ----------------------------------- */
.cloe-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--cloe-ease), transform 0.8s var(--cloe-ease);
    will-change: opacity, transform;
}
.cloe-reveal.is-visible { opacity: 1; transform: none; }
.cloe-reveal[data-delay="1"] { transition-delay: 0.1s; }
.cloe-reveal[data-delay="2"] { transition-delay: 0.2s; }
.cloe-reveal[data-delay="3"] { transition-delay: 0.3s; }
.cloe-reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .cloe-reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ----------------------------------- Responsivo ----------------------------------- */

/* Tablet — grids e colunas */
@media (max-width: 1024px) {
    .cloe-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
    .cloe-treatments__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
    .cloe-gallery .cloe-section-head--center .cloe-title,
    .cloe-gallery .cloe-section-head--center .cloe-subtitle {
        white-space: normal;
        text-wrap: balance;
        font-size: clamp(1.95rem, 3.2vw, 2.75rem);
    }
    .cloe-gallery .cloe-section-head--center .cloe-subtitle {
        font-size: clamp(1.02rem, 1vw, 1.12rem);
    }
    .cloe-features .cloe-section-head--center .cloe-title {
        white-space: normal;
        text-wrap: balance;
        font-size: clamp(1.95rem, 3.2vw, 2.75rem);
    }
}

@media (max-width: 980px) {
    .cloe-hero__grid { grid-template-columns: 1fr; }
    .cloe-hero__content { max-width: 100%; margin-inline: 0; justify-self: stretch; }
    .cloe-hero__title { max-width: 100%; }
    .cloe-hero__media {
        justify-self: center;
        max-width: min(480px, 100%);
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cloe-hero__badge--bottom-left,
    .cloe-hero__badge--bottom-right,
    .cloe-hero__badge--bottom-center {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin-top: 14px;
        align-self: flex-start;
    }
    .cloe-about__grid { grid-template-columns: 1fr; gap: 36px; }
    .cloe-about__media { order: 2; max-width: min(520px, 100%); margin-inline: auto; }
    .cloe-about__card { order: 1; }
    .cloe-footer__grid { grid-template-columns: 1fr 1fr; }
    .cloe-footer__map-col { grid-column: span 2; }
    .cloe-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 180px; gap: 5px; }
    .cloe-gallery__item--big { grid-column: span 2; }
    .cloe-reviews__carousel { padding-inline: 46px; }
    .cloe-reviews__track .cloe-review { flex-basis: calc((100% - 20px) / 2); }
}

/* Mobile menu + hero refinado */
@media (max-width: 900px) {
    :root { --cloe-header-height: 76px; }

    .cloe-header { padding: 14px 0; }
    .cloe-logo { flex: 1; min-width: 0; max-width: calc(100% - 52px); }
    .cloe-header__cta { flex-shrink: 0; margin-left: auto; }

    .cloe-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 18px;
        padding: 24px;
        background: #fbf8f1;
        border-radius: 22px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
        z-index: 105;
        transform: none;
        inset: auto;
    }
    .cloe-nav.is-open { display: flex; }
    .cloe-menu { flex-direction: column; gap: 18px; width: 100%; }
    .cloe-menu a { font-size: 0.95rem; padding: 2px 0; }
    .cloe-nav > .cloe-btn {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-top: 4px;
    }
    .cloe-header__cta .cloe-btn { display: none; }
    .cloe-burger { display: flex; flex-shrink: 0; }

    .cloe-nav-backdrop {
        position: fixed; inset: 0;
        background: rgba(20,17,14,0.4);
        opacity: 0; visibility: hidden;
        transition: opacity 0.4s;
        z-index: 99;
    }
    .cloe-nav-backdrop.is-open { opacity: 1; visibility: visible; }

    .cloe-logo__img,
    .cloe-logo img,
    .cloe-header__logo img,
    .cloe-header.is-scrolled .cloe-logo__img,
    .cloe-header.is-scrolled .cloe-logo img,
    .cloe-header.is-scrolled .cloe-header__logo img { height: 42px; max-width: 170px; }

    .cloe-hero {
        display: block;
        min-height: auto;
        height: auto;
        padding-top: calc(var(--cloe-header-height) + 16px);
        padding-bottom: 64px;
    }
    .cloe-hero > .cloe-container { display: block; flex: none; }
    .cloe-hero__grid { gap: 36px; min-height: auto; text-align: left; }
    .cloe-hero__content { width: 100%; max-width: 100%; min-width: 0; }
    .cloe-hero .cloe-eyebrow { justify-content: flex-start; margin-bottom: 10px; }
    .cloe-hero__title {
        font-size: clamp(1.75rem, 8.2vw, 2.6rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
        text-align: left;
        white-space: normal;
        text-wrap: balance;
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    .cloe-hero__text {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
        text-align: left;
    }
    .cloe-hero__typing { text-align: left; white-space: normal; }
    .cloe-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        justify-content: flex-start;
    }
    .cloe-hero__actions .cloe-btn { width: 100%; justify-content: center; }
    .cloe-hero__media { max-width: min(100%, 420px); }
    .cloe-hero__media--plain img,
    .cloe-hero__media img { max-height: min(420px, 72vw); object-fit: contain; }

    .cloe-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 5px; }
    .cloe-gallery__item--big,
    .cloe-gallery__item--wide { grid-column: span 1; }
    .cloe-gallery__item img { min-height: 220px; object-fit: cover; }
}

@media (max-width: 768px) {
    .cloe-title {
        font-size: clamp(1.85rem, 7.5vw, 2.35rem);
        line-height: 1.12;
        max-width: 100%;
        white-space: normal;
        text-wrap: balance;
    }
    .cloe-subtitle { font-size: 1rem; line-height: 1.6; max-width: 100%; }
    .cloe-section-head--center .cloe-title { max-width: 100%; }
    .environment-title br { display: none; }
    .cloe-hero__grid { gap: 28px; }
    .cloe-hero::before { width: 260px; height: 260px; right: -50px; top: -50px; }

    .cloe-hero__media {
        position: relative;
        margin-bottom: 0;
        display: block;
    }
    .cloe-hero__badge,
    .cloe-hero__badge--bottom-left,
    .cloe-hero__badge--bottom-right,
    .cloe-hero__badge--bottom-center {
        position: absolute;
        left: 50%;
        right: auto;
        bottom: 10px;
        transform: translateX(-50%);
        margin-top: 0;
        align-self: auto;
        z-index: 5;
        width: auto;
        min-width: 210px;
        padding: 18px 24px;
    }
    .cloe-hero__badge strong { font-size: 1.45rem; }
    .cloe-hero__badge span { font-size: 1rem; line-height: 1.25; max-width: 14ch; }

    .cloe-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .cloe-footer__map-col { grid-column: span 1; }
    .cloe-footer__about { max-width: none; margin-inline: auto; }
    .cloe-footer__social { justify-content: center; }
    .cloe-footer__contact-item { justify-content: center; text-align: left; }
    .cloe-footer__links { align-items: center; }
    .cloe-footer__map iframe { height: 240px; }
    .cloe-footer__logo img,
    .footer-logo img { height: 50px; max-width: 210px; margin-inline: auto; }
    .cloe-footer__bottom { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
    .cloe-footer__map-actions,
    .cloe-footer__actions,
    .footer-actions,
    .footer-location-actions,
    .footer-map-actions,
    .footer-buttons { justify-content: center !important; gap: 14px !important; }

    .cloe-reviews__carousel { padding-inline: 0; overflow: hidden; }
    .cloe-reviews__viewport { overflow: hidden; }
    .cloe-reviews__track .cloe-review { flex-basis: 100%; min-width: 0; }
    .cloe-reviews__arrow { display: none; }
    .cloe-reviews__dots { margin-top: 22px; }
    .cloe-review { padding: 28px 24px; }

    .cloe-whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
    .cloe-whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 640px) {
    .cloe-features__grid,
    .cloe-treatments__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .cloe-feature,
    .cloe-treatment {
        padding: 28px 24px;
        min-height: auto;
    }
    .cloe-feature h3 { white-space: normal; min-height: auto; }
    .cloe-feature p { min-height: auto; }
    .cloe-treatment h3 { white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; overflow: hidden; }
}

@media (max-width: 560px) {
    .cloe-footer__map-actions,
    .cloe-footer__actions,
    .footer-actions,
    .footer-location-actions,
    .footer-map-actions,
    .footer-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .cloe-footer__map-actions a,
    .cloe-footer__actions a,
    .footer-actions a,
    .footer-location-actions a,
    .footer-map-actions a,
    .footer-buttons a,
    .cloe-footer__directions-btn,
    .cloe-footer__whatsapp-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 560px) {
    body { font-size: 15px; }
    .cloe-eyebrow { font-size: 0.62rem; letter-spacing: 0.1em; gap: 8px; }
    .cloe-eyebrow::before { width: 22px; }
    .cloe-hero__actions .cloe-btn { font-size: 0.82rem; }
    .cloe-hero__title { font-size: clamp(1.55rem, 7.5vw, 1.95rem); line-height: 1.08; }
    .cloe-hero__typing { font-size: clamp(1.3rem, 6vw, 1.7rem); }
    .cloe-cta__title { font-size: clamp(1.65rem, 6.2vw, 2.05rem); max-width: 100%; }
    .cloe-treatment h3 { font-size: 1.22rem; }
    .cloe-review__text { font-size: 1.18rem; }
    .cloe-about__quote { font-size: 1.2rem; padding: 16px 18px; }
}

/* Touch: hover visual só no desktop com mouse */
@media (hover: none) and (max-width: 1024px) {
    .cloe-treatment:hover,
    .cloe-feature:hover { transform: none; box-shadow: var(--cloe-shadow-soft); }
    .cloe-treatment:hover::before { transform: scaleX(0); }
}
