/* =========================================================
   STYLE.CSS - CDC STUDIO
   Versão limpa e consolidada
   ========================================================= */

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

:root {
    --clr-dark: #212121;
    --clr-dark-accent: #1a1a1a;
    --clr-dark-hover: #0a0a0a;
    --clr-dark-muted: #333333;
    --clr-white: #ffffff;
    --clr-white-hover: #f5f5f5;

    --font-heading: "Cormorant Garamond", serif;
    --font-hero: "Marcellus", serif;
    --font-body: "Montserrat", sans-serif;

    --container-width: 1200px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================================
   RESET / GERAL
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    width: 100%;
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    font-family: var(--font-body);
    color: var(--clr-dark);
    background-color: var(--clr-white);
    line-height: 1.6;

    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 100vh;

    overflow-x: hidden;
    overflow-y: visible;

    position: relative;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mt-4 {
    margin-top: 2.5rem;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-title-large,
.sobre-title,
.procedimentos-title {
    font-family: var(--font-heading);
    color: inherit;
    font-weight: 400;
    line-height: 0.95;
}

.title-line {
    width: 100%;
    max-width: 300px;
    height: 1px;
    background-color: currentColor;
    opacity: 0.25;
}

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

.btn,
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border-radius: 999px;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-pill {
    min-width: 210px;
    height: 46px;
    padding: 0 2rem;
    font-size: 0.95rem;
    line-height: 46px;
}

.btn-dark {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

.btn-dark:hover {
    background-color: var(--clr-dark-hover);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--clr-white);
    color: var(--clr-dark);
}

.btn-light:hover {
    background-color: var(--clr-white-hover);
    transform: translateY(-2px);
}

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

.header {
    background-color: rgba(33, 33, 33, 0.98);
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    width: 100%;
    max-width: 96%;
    margin: 0 auto;
    padding: 0 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    display: flex;
    flex: none;
    flex-direction: column;
    align-items: center;
    color: var(--clr-white);
}

.header .logo-text {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.header .logo-subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 5px;
}

.header .logo-subtext .line {
    flex: 1;
    max-width: 55px;
    height: 1px;
    background-color: currentColor;
    opacity: 0.5;
}

.header .logo-subtext .text {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.3px;
    white-space: nowrap;
}

.header-right {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 35px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.nav {
    display: flex;
    flex: none;
    width: max-content;
    min-width: max-content;
    flex-wrap: nowrap;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav a {
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    width: max-content;
    min-width: max-content;
    flex: none;
}

.nav a:hover {
    opacity: 0.7;
}

.header-social {
    display: flex;
    flex: none;
    align-items: center;
    gap: 10px;
    width: max-content;
    margin: 0;
    padding: 0;
}

.social-btn {
    width: 44px;
    height: 44px;
    background-color: var(--clr-white) !important;
    color: var(--clr-dark) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.social-btn i {
    color: var(--clr-dark) !important;
}

.social-btn:hover {
    transform: scale(1.08);
}

.menu-mobile-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-mobile-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--clr-white);
    transition: var(--transition);
}

.menu-mobile-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--clr-dark);
}

.menu-mobile-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-mobile-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--clr-dark);
}

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

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--clr-dark);
    height: 600px;
    min-height: 600px;
    position: relative;
}

.hero-image,
.hero-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

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

.planejamento-banner {
    background-color: var(--clr-white);
    color: var(--clr-dark);
    padding: 2.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.planejamento-banner p {
    font-size: 1.25rem;
    color: var(--clr-dark-muted);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

.planejamento-banner .btn-pill {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

/* caso alguma divisória antiga ainda exista no HTML */
.sobre-divisoria,
.resultados-divisoria,
.depoimentos-divisoria,
.localizacao-divisoria {
    display: none !important;
}

.section-divider {
    width: 100%;
    height: 1px;
    background-color: var(--clr-dark);
}

/* =========================================================
   SOBRE
   ========================================================= */

.sobre {
    min-height: 520px;
    height: 520px;
    padding: 0 !important;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.sobre-cris {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

.sobre-daniela {
    background-color: var(--clr-white);
    color: var(--clr-dark);
}

.sobre-container {
    height: 100%;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 5rem;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 0;
}

.sobre-daniela .sobre-container {
    grid-template-columns: 1fr 420px;
}

.sobre-image {
    width: 420px;
    height: 100%;
    overflow: hidden;
    margin-left: -2rem;
}

.sobre-daniela .sobre-image {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    margin-right: -2rem;
}

.sobre-daniela .sobre-text {
    grid-column: 1;
    grid-row: 1;
}

.sobre-image-box {
    width: 100%;
    height: 100%;
    border-radius: 0 24px 24px 0;
    overflow: hidden;
}

.sobre-daniela .sobre-image-box {
    border-radius: 24px 0 0 24px;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.sobre-text {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.sobre-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.sobre-specialty {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.35rem;
    margin-bottom: 1rem;
}

.sobre-text .title-line {
    margin-bottom: 2rem;
}

.sobre-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 650px;
    text-align: justify;
}

.sobre-text .btn-pill {
    margin-top: 1rem;
}

.sobre-cris .btn-pill {
    background-color: var(--clr-white);
    color: var(--clr-dark);
}

.sobre-daniela .btn-pill {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

/* =========================================================
   PROCEDIMENTOS
   ========================================================= */

.procedimentos-cards {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    padding: 3.5rem 0 4rem;
    overflow: hidden;
}

.procedimentos-layout,
.procedimentos-content {
    width: 100%;
}

.procedimentos-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.procedimentos-header {
    text-align: center;
    margin: 0 auto 1rem;
}

.procedimentos-title {
    font-size: 3.8rem;
    line-height: 1;
    color: var(--clr-white);
}

.procedimentos-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 950px;
    margin: 0.7rem auto 0;
    opacity: 0.82;
    color: var(--clr-white);
}

.procedimentos-carousel {
    width: 100%;
    overflow: hidden;
    margin-top: 2.5rem;
    position: relative;
    padding: 1rem 0;
}

.procedimentos-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    gap: 2.5rem;
    will-change: transform;
    animation: procedimentosLoop 90s linear infinite;
}

.procedimentos-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2.5rem;
    width: max-content;
    flex: none;
}

.procedimentos-carousel:hover .procedimentos-track {
    animation-play-state: paused;
}

.proc-card,
.procedimentos-group .proc-card {
    flex: 0 0 270px;
    width: 270px;
    min-width: 270px;
    max-width: 270px;
    height: 340px;
    min-height: 340px;
    background-color: var(--clr-white);
    color: var(--clr-dark);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    align-items: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.proc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.proc-card .card-title {
    color: var(--clr-dark);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.35;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    text-align: center;
}

.proc-card p {
    color: var(--clr-dark-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    text-align: center;
}

@keyframes procedimentosLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 1.25rem));
    }
}

/* =========================================================
   LASER DAY
   ========================================================= */

.laser-day {
    position: relative;
    overflow: hidden;
    background-color: var(--clr-white);
    color: var(--clr-dark);
    padding: 8rem 0 7.5rem;
}

.laser-day-content {
    position: relative;
    z-index: 3;
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
    padding: 2.2rem 2rem;
}

.laser-day-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.laser-day-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.laser-day-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto 1.25rem;
}

.laser-day-highlight {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.9rem 2rem;
    border: 1px solid var(--clr-dark);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-dark);
    background-color: var(--clr-white);
}

.laser-tapes {
    position: absolute;
    left: -8%;
    width: 116%;
    height: 125px;
    z-index: 2;
    pointer-events: none;
}

.laser-tapes-top {
    top: 0;
}

.laser-tapes-bottom {
    bottom: 0;
}

.laser-tape {
    position: absolute;
    left: -35%;
    width: 170%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.laser-tape span {
    display: none;
}

.laser-tape::before {
    content: "LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY  LASER DAY";
    display: block;
    white-space: nowrap;
    width: max-content;
    min-width: 220vw;
}

.laser-tape-white {
    background-color: var(--clr-white);
    color: var(--clr-dark);
    border-top: 2px solid var(--clr-dark);
    border-bottom: 2px solid var(--clr-dark);
}

.laser-tape-dark {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    border-top: 2px solid var(--clr-white);
    border-bottom: 2px solid var(--clr-white);
}

.laser-tape-1 {
    top: 25px;
    transform: rotate(-4deg);
}

.laser-tape-2 {
    top: 53px;
    transform: rotate(4deg);
}

.laser-tape-3 {
    top: 25px;
    transform: rotate(3.5deg);
}

.laser-tape-4 {
    top: 58px;
    transform: rotate(-3.5deg);
}

/* =========================================================
   RESULTADOS
   ========================================================= */

.resultados {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    padding: 3.5rem 0 4rem;
}

.resultados .text-center {
    margin-bottom: 2.5rem !important;
}

.resultados .sobre-title {
    font-size: 4rem;
    margin-bottom: 0.8rem;
    color: var(--clr-white);
}

.resultados .text-center p {
    color: var(--clr-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0.5rem 0 0;
}
/* =========================================================
   DEPOIMENTOS
   ========================================================= */

.depoimentos {
    background-color: var(--clr-white);
    color: var(--clr-dark);
    padding: 3rem 0 3.5rem;
    overflow: hidden;
}

.depoimentos-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.depoimentos .sobre-title {
    font-size: 4rem;
    margin-bottom: 0.7rem;
    color: var(--clr-dark);
}

.depoimentos-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0.4rem 0 0;
    color: var(--clr-dark);
}

.depoimentos-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}

.depoimentos-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: depoimentosAutoScroll 45s linear infinite;
}

.depoimentos-carousel:hover .depoimentos-track {
    animation-play-state: paused;
}

.depoimento-card {
    flex: 0 0 300px !important;
    width: 300px !important;
    min-width: 300px !important;

    aspect-ratio: 3 / 4 !important;

    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;

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

.depoimento-card img {
    object-fit: cover !important;
    object-position: center top !important;
}

@keyframes depoimentosAutoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

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

.localizacao {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    position: relative;
    height: 560px;
    min-height: 560px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.localizacao-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
    height: 100%;
}

.localizacao-image {
    flex: 0 0 420px;
    width: 420px;
    aspect-ratio: 3 / 4;
    height: auto;

    position: relative;
    overflow: hidden;
    margin-left: -2rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.clinic-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
    z-index: 2;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.localizacao-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.localizacao-text .section-title-large {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
}

.info-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: var(--clr-white);
}

.info-text {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    color: var(--clr-white);
}

.localizacao .mt-4 {
    margin-top: 1.2rem;
}

.localizacao-text .btn-pill {
    margin-top: 0.5rem;
    background-color: var(--clr-white);
    color: var(--clr-dark);
}

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

.footer {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    padding: 3.5rem 0 0;
    border-top: 3px solid var(--clr-white) !important;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: center;
}

.footer-col-1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .logo-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: max-content;
}

.footer .logo-footer .logo-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 1px;
    white-space: nowrap;
    width: max-content;
    margin: 0 auto;
    text-align: center;
}

.footer .logo-footer .logo-subtext {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 0.65rem;
}

.footer .logo-footer .logo-subtext .text {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    white-space: nowrap;
    text-align: center;
    margin: 0 auto;
}

.footer-desc {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.footer-col-3 {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-col-3 p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 0.8rem;
}

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

.floating-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--clr-white);
    color: var(--clr-dark);
    border-radius: 50%;
    border: 1px solid rgba(33, 33, 33, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.18);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp svg,
.floating-whatsapp svg path {
    fill: var(--clr-dark);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
}

@keyframes waGlowWhite {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* HEADER */
.header {
    animation: headerEntrada 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes headerEntrada {
    from {
        opacity: 0;
        transform: translateY(-28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WHATSAPP FLUTUANTE */
.floating-whatsapp {
    animation:
        whatsappEntrada 0.7s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both,
        waGlowWhite 2s 1.25s infinite;
}

@keyframes whatsappEntrada {
    from {
        opacity: 0;
        transform: scale(0.65);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 1250px) {
    .header-right {
        margin-left: 24px;
        gap: 12px;
    }

    .nav {
        gap: 22px;
    }

    .nav a {
        font-size: 10px;
    }

    .header .logo-text {
        font-size: 26px;
    }

    .social-btn {
        width: 42px;
        height: 42px;
    }

    .sobre-container {
        gap: 3rem;
        grid-template-columns: 360px 1fr;
    }

    .sobre-daniela .sobre-container {
        grid-template-columns: 1fr 360px;
    }

    .sobre-image {
        width: 360px;
    }
}

@media (max-width: 992px) {
    .header-container {
        justify-content: space-between;
    }

    .header-right {
        display: flex;
        flex: none;
        margin-left: 0;
    }

    .header-social,
    .nav {
        display: none;
    }
.nav.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        inset: 0;
        width: 100%;
        min-width: 100%;
        background-color: var(--clr-white);
        z-index: 1050;
        gap: 2.5rem;
    }

    .nav.active a {
        color: var(--clr-dark);
        font-size: 1.4rem;
        font-weight: 500;
    }

    .sobre {
        height: auto;
        min-height: auto;
        padding: 4rem 0 !important;
    }

    .sobre-container,
    .sobre-daniela .sobre-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sobre-image,
    .sobre-daniela .sobre-image {
        width: 100%;
        max-width: 400px;
        height: 480px;
        margin: 0 auto !important;
        border-radius: 20px;
        grid-column: auto;
        grid-row: auto;
    }

    .sobre-image-box,
    .sobre-daniela .sobre-image-box {
        border-radius: 20px;
    }

    .sobre-text,
    .sobre-daniela .sobre-text {
        padding: 0;
        align-items: center;
        text-align: center;
        grid-column: auto;
        grid-row: auto;
    }

    .sobre-text p {
        text-align: center;
    }

    .sliders-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 3rem;
    }

    .localizacao {
        height: auto;
        min-height: auto;
        padding: 4rem 0;
    }

    .localizacao-container {
        flex-direction: column;
        gap: 3rem;
    }

    .localizacao-image {
        width: 100%;
        max-width: 500px;
        height: 400px;
        margin: 0 auto;
        flex: none;
    }

    .localizacao-text {
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .localizacao-text .btn-pill {
        align-self: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3 {
        align-items: center;
        justify-self: center;
    }

    .footer-desc {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.4rem;
    }

    .header {
        padding: 1rem 0;
    }

    .header .logo-text {
        font-size: 24px;
    }

    .header .logo-subtext .text {
        font-size: 8px;
        letter-spacing: 1.1px;
    }

    .header .logo-subtext .line {
        display: none;
    }
.planejamento-banner .btn-pill {
        width: 100%;
        max-width: 360px;
        height: auto;
        min-height: 48px;
        padding: 0.9rem 1.2rem !important;
        font-size: 0.95rem !important;
        line-height: 1.35;
    }

    .sobre-name {
        font-size: 1.7rem;
    }

    .procedimentos-title,
    .resultados .sobre-title,
    .depoimentos .sobre-title,
    .localizacao-text .section-title-large {
        font-size: 3rem;
    }
.procedimentos-carousel {
        margin-top: 2rem;
    }

    .proc-card,
    .procedimentos-group .proc-card {
        flex: 0 0 250px;
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        height: 310px;
        min-height: 310px;
        padding: 2.2rem 1.5rem;
    }

    .proc-card .card-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .proc-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .laser-day {
        padding: 7rem 0 6.5rem;
    }

    .laser-day-content {
        padding: 1.8rem 1.4rem;
    }

    .laser-day-title {
        font-size: 3rem;
    }

    .laser-day-text {
        font-size: 1rem;
        line-height: 1.55;
    }

    .laser-day-highlight {
        font-size: 0.82rem;
        padding: 0.8rem 1.2rem;
    }

    .image-comparison-slider {
        height: 320px;
    }

    .slider-handle-arrows {
        width: 54px;
        height: 54px;
    }

    .depoimentos {
        padding: 2.5rem 0 3rem;
    }

    .depoimentos-track {
        gap: 1.25rem;
        animation-duration: 35s;
    }

    .depoimento-card {
        flex: 0 0 260px;
        width: 260px;
        min-width: 260px;
    }

    .depoimento-card img {
        height: 430px;
    }
.footer {
        padding-top: 3rem;
    }

    .footer .logo-footer .logo-text {
        font-size: 2.6rem;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        right: 20px;
        bottom: 20px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

/* =========================================================
   BOTÃO ABAIXO DOS PROCEDIMENTOS
   ========================================================= */

.procedimentos-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 360px !important;
    max-width: calc(100% - 40px) !important;

    min-height: 58px !important;

    margin: 3rem auto 0 !important;
    padding: 0.9rem 2rem !important;

    background-color: #ffffff !important;
    color: #212121 !important;

    border: 1px solid #ffffff !important;
    border-radius: 999px !important;

    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;

    text-align: center !important;
    text-transform: uppercase !important;

    position: relative !important;
    z-index: 20 !important;

    opacity: 1 !important;
    visibility: visible !important;
}

.procedimentos-btn:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

.laser-day-highlight {
    cursor: pointer !important;
    text-decoration: none !important;
    position: relative !important;
    z-index: 10 !important;
}

.laser-day-highlight:hover {
    background-color: #212121 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* =========================================================
   DEPOIMENTOS - CONTORNO ESCURO
   ========================================================= */

.depoimento-card {
    background-color: #2b2b2b !important;
    border: 1px solid #2b2b2b !important;

    /* diminui a moldura ao redor da imagem */
    padding: 6px !important;

    border-radius: 22px !important;

    overflow: hidden !important;
}

.depoimento-card img {
    width: 100% !important;
    height: 100% !important;

    border-radius: 17px !important;

    display: block !important;
}

/* =========================================================
   RESULTADOS — CARROSSEL MANUAL + SLIDER ANTES/DEPOIS
   BLOCO ÚNICO E DEFINITIVO
   ========================================================= */

#resultados {
    scroll-margin-top: 110px;
}

/* Estrutura do carrossel: 3 cards no desktop */
.resultados-carousel-shell {
    position: relative;
    width: 100%;
    padding: 0 46px;
    box-sizing: border-box;
}

.resultados-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.resultados-carousel-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 2rem;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.resultados-carousel-track > .slider-wrapper {
    position: relative;
    flex: 0 0 calc((100% - 4rem) / 3);
    width: calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
    height: 380px;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #151515;
    box-shadow: var(--shadow-soft);
}

/* =========================================================
   ANTES / DEPOIS
   ========================================================= */

.resultados .image-comparison-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.resultados .image-comparison-slider > .image-before {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.resultados .image-after-container {
    position: absolute;
    top: 0;
    left: 0;

    /* NÃO usar !important aqui:
       o JavaScript precisa alterar essa largura durante o arraste. */
    width: 50%;
    height: 100%;

    overflow: hidden;
    z-index: 2;
}

.resultados .image-after-container > .image-after {
    position: absolute;
    top: 0;
    left: 0;

    /* O script.js troca essa largura por pixels equivalentes
       à largura total do card. */
    width: 100%;
    height: 100%;

    max-width: none;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

/* Linha móvel do comparador */
.resultados .slider-handle {
    position: absolute;
    top: 0;

    /* NÃO usar !important:
       o JavaScript precisa mover o handle. */
    left: 50%;

    width: 3px;
    height: 100%;
    background: #ffffff;
    transform: translateX(-50%);
    z-index: 8;
    cursor: ew-resize;
    pointer-events: auto;
    touch-action: none;
}

/* Bolinha central do comparador */
.resultados .slider-handle-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62px;
    height: 62px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #ffffff;
    color: #212121;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.22);

    /* o clique deve cair no .slider-handle */
    pointer-events: none;
}

/* Impede definitivamente os SVGs internos de virarem setas gigantes */
.resultados .slider-handle-arrows svg {
    display: block;
    flex: 0 0 13px;
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    min-height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
}

/* =========================================================
   SETAS LATERAIS DO CARROSSEL
   São desenhadas por CSS; o caractere do HTML fica oculto.
   ========================================================= */

.resultados-arrow {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    padding: 0;
    margin: 0;
    transform: translateY(-50%);
    border: 1px solid rgba(33, 33, 33, 0.08);
    border-radius: 50%;
    background: #ffffff;
    color: transparent;
    font-size: 0;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    z-index: 40;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.resultados-arrow::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    border-top: 2px solid #212121;
    border-right: 2px solid #212121;
}

.resultados-arrow-left {
    left: 0;
}

.resultados-arrow-left::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.resultados-arrow-right {
    right: 0;
}

.resultados-arrow-right::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.resultados-arrow:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.08);
    background: #f3f3f3;
}

.resultados-arrow:disabled {
    opacity: 0.22;
    cursor: default;
}

/* =========================================================
   TABLET — 2 POR VEZ
   ========================================================= */

@media (max-width: 992px) {
    .resultados-carousel-shell {
        padding: 0 40px;
    }

    .resultados-carousel-track {
        gap: 1.5rem;
    }

    .resultados-carousel-track > .slider-wrapper {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        width: calc((100% - 1.5rem) / 2);
        min-width: calc((100% - 1.5rem) / 2);
        height: 360px;
    }
}

/* =========================================================
   CELULAR — 1 POR VEZ
   ========================================================= */

@media (max-width: 768px) {
    .resultados-carousel-shell {
        padding: 0;
    }

    .resultados-carousel-track {
        gap: 1rem;
    }

    .resultados-carousel-track > .slider-wrapper {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        height: 320px;
    }

    .resultados-arrow {
        width: 42px;
        height: 42px;
    }

    .resultados-arrow-left {
        left: 8px;
    }

    .resultados-arrow-right {
        right: 8px;
    }

    .resultados .slider-handle-arrows {
        width: 54px;
        height: 54px;
    }

    .resultados .slider-handle-arrows svg {
        flex-basis: 12px;
        width: 12px !important;
        height: 12px !important;
        min-width: 12px !important;
        min-height: 12px !important;
        max-width: 12px !important;
        max-height: 12px !important;
    }
}

/* GARANTIA DA LOCALIZAÇÃO */

.localizacao-text {
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 10 !important;
}

.localizacao-text h2,
.localizacao-text h3,
.localizacao-text p,
.localizacao-text a {
    visibility: visible !important;
}

.localizacao-image {
    position: relative !important;
    z-index: 1 !important;
}

/* =========================================================
   AUMENTAR ÁREA DE TOQUE DA BOLINHA ANTES/DEPOIS
   ========================================================= */

.slider-handle,
.slider-handle-arrows {
    touch-action: none !important;
    cursor: ew-resize !important;
}

/* mantém a bolinha no tamanho atual */
.slider-handle-arrows {
    width: 64px !important;
    height: 64px !important;

    position: absolute !important;
    overflow: visible !important;
}

/*
   Área invisível maior ao redor da bolinha.
   A bolinha continua com 64px,
   mas passa a responder como se tivesse cerca de 108px.
*/
.slider-handle-arrows::after {
    content: "";

    position: absolute;

    top: -22px;
    right: -22px;
    bottom: -22px;
    left: -22px;

    border-radius: 50%;

    background: transparent;

    pointer-events: auto;

    cursor: ew-resize;
}

@media (max-width: 768px) {

    .slider-handle-arrows::after {
        top: -30px;
        right: -30px;
        bottom: -30px;
        left: -30px;
    }

}

/* =========================================================
   COPYRIGHT - SEMPRE VISÍVEL
   ========================================================= */

.footer-bottom {
    background-color: #ffffff !important;
    color: #212121 !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;
    animation: none !important;

    display: block !important;
    border-top: none !important;

    padding: 0.8rem 0 !important;
    text-align: center !important;
}

.footer-bottom p {
    display: block !important;

    opacity: 1 !important;
    visibility: visible !important;

    color: #212121 !important;

    margin: 0 !important;

    font-family: var(--font-body) !important;
    font-size: 0.82rem !important;
    font-weight: 400 !important;
}

/* =========================================================
   MENU MOBILE - HAMBÚRGUER
   ========================================================= */

@media (max-width: 992px) {

    /* botão das 3 barras */
    .menu-mobile-btn {
        display: flex !important;
        position: relative !important;
        z-index: 5001 !important;

        width: 32px !important;
        height: 24px !important;

        padding: 0 !important;
        margin: 0 !important;

        background: transparent !important;
        border: 0 !important;

        flex-direction: column !important;
        justify-content: space-between !important;

        cursor: pointer !important;
    }

    .menu-mobile-btn span {
        display: block !important;

        width: 100% !important;
        height: 2px !important;

        background-color: #ffffff !important;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease,
            background-color 0.3s ease !important;
    }


    /* menu fechado */
    .header .nav {
        display: none !important;
    }


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

    .header .nav.active {
        display: flex !important;

        position: fixed !important;
        inset: 0 !important;

        width: 100vw !important;
        height: 100dvh !important;

        min-width: 100vw !important;

        padding:
            110px
            24px
            45px
            24px !important;

        margin: 0 !important;

        background-color: #212121 !important;

        flex-direction: column !important;

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

        gap: 25px !important;

        z-index: 5000 !important;

        overflow-y: auto !important;

        animation:
            menuMobileEntrada
            0.35s ease
            forwards !important;
    }


    /* TODOS OS LINKS */
    .header .nav.active a {
        display: block !important;

        width: 100% !important;
        min-width: 0 !important;

        color: #ffffff !important;

        font-family:
            var(--font-body) !important;

        font-size: 17px !important;
        font-weight: 500 !important;

        letter-spacing: 1.5px !important;

        text-align: center !important;

        padding: 7px 0 !important;

        white-space: nowrap !important;
    }


    .header .nav.active a:hover {
        opacity: 0.65 !important;
    }


    /* =====================================================
       TRANSFORMA AS 3 BARRAS EM X
       ===================================================== */

    .menu-mobile-btn.active span:nth-child(1) {
        transform:
            translateY(11px)
            rotate(45deg) !important;

        background-color: #ffffff !important;
    }

    .menu-mobile-btn.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .menu-mobile-btn.active span:nth-child(3) {
        transform:
            translateY(-11px)
            rotate(-45deg) !important;

        background-color: #ffffff !important;
    }


    /* esconde redes do header quando mobile */
    .header-social {
        display: none !important;
    }


    @keyframes menuMobileEntrada {

        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

    }

}

/* =========================================================
   CORREÇÃO FINAL — ROLAGEM, VISIBILIDADE E BANNER MOBILE
   ========================================================= */

/*
   A página inteira volta a fazer parte do fluxo normal.
   A rolagem é feita pelo documento, e não por um body preso em 100dvh.
*/
html {
    width: 100% !important;
    height: auto !important;
    min-height: 100% !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

body {
    width: 100% !important;
    max-width: 100% !important;

    height: auto !important;
    min-height: 100vh !important;

    overflow-x: hidden !important;
    overflow-y: visible !important;

    position: relative !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* Só bloqueia a rolagem quando o menu mobile estiver realmente aberto. */
body.menu-open {
    overflow: hidden !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

/*
   Fail-safe: nenhuma classe antiga de animação pode manter
   uma seção invisível caso o JavaScript falhe.
*/
.fade-in,
.fade-in-up,
.slide-in-left,
.slide-in-right,
.reveal-item,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.in-view {
    visibility: visible !important;
}

/* =========================================================
   BANNER MOBILE
   Suporta <picture> com uma imagem própria para celular.
   ========================================================= */

@media (max-width: 768px) {

    .hero {
        width: 100% !important;

        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;

        display: block !important;

        overflow: hidden !important;

        background-color: #212121 !important;
    }

    .hero-image,
    .hero-image picture {
        width: 100% !important;
        height: 100% !important;

        display: block !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;
    }

    .hero-image img {
        position: static !important;

        display: block !important;

        width: 100% !important;
        height: 100% !important;

        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: cover !important;
        object-position: center center !important;

        transform: none !important;
    }

    /* A apresentação deve aparecer imediatamente abaixo do banner. */
    .planejamento-banner {
        position: relative !important;
        display: block !important;
    }
}

/* =========================================================
   GARANTIA DE FLUXO DAS SEÇÕES
   ========================================================= */

.planejamento-banner,
.procedimentos-cards,
.laser-day,
.resultados,
.depoimentos,
.footer {
    position: relative;
}

.sobre,
.localizacao {
    position: relative;
}

/* Copyright sempre visível. */
.footer-bottom,
.footer-bottom p {
    opacity: 1 !important;
    visibility: visible !important;
}

/* =========================================================
   CORREÇÃO DEFINITIVA — FOTOS NUNCA PODEM SUMIR
   ========================================================= */

/* Neutraliza TODOS os sistemas antigos que escondiam conteúdo globalmente. */
html.js-reveal body [data-reveal],
html.reveal-active body [data-reveal],
html.motion-ready body [data-reveal],
body.animacoes-ativas .reveal-item,
.reveal-item,
.fade-in,
.fade-in-up,
.slide-in-left,
.slide-in-right {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

/* O estado normal é SEMPRE visível. */
body [data-reveal] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
}

/*
   O JavaScript prepara somente o elemento que está próximo de entrar
   na tela. Se o JS falhar, esta classe nunca é adicionada e o conteúdo
   permanece visível.
*/
body [data-reveal].entry-prepared {
    opacity: 0 !important;
    transition:
        opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-delay: var(--entry-delay, 0ms) !important;
}

body [data-reveal="up"].entry-prepared {
    transform: translate3d(0, 42px, 0) !important;
}

body [data-reveal="left"].entry-prepared {
    transform: translate3d(-50px, 0, 0) !important;
}

body [data-reveal="right"].entry-prepared {
    transform: translate3d(50px, 0, 0) !important;
}

body [data-reveal="scale"].entry-prepared {
    transform: scale(0.97) !important;
}

body [data-reveal].entry-prepared.entry-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

/* Laser Day mais lento e elegante. */
body .laser-day [data-reveal].entry-prepared {
    transition-duration: 1.25s, 1.25s !important;
}


/* Espaço visual durante carregamento, sem esconder a imagem. */
.sobre-image,
.resultados-carousel-track > .slider-wrapper,
.localizacao-image,
.depoimento-card {
    background-color: #2b2b2b;
}


/* Carrosséis fora da tela ficam pausados para aliviar CPU/GPU. */
.procedimentos-track,
.depoimentos-track {
    animation-play-state: paused !important;
    will-change: auto !important;
}

.procedimentos-cards.carousel-running .procedimentos-track,
.depoimentos.carousel-running .depoimentos-track {
    animation-play-state: running !important;
    will-change: transform !important;
}

/* Pausa o carrossel ao passar o mouse. */
.procedimentos-cards.carousel-running .procedimentos-carousel:hover .procedimentos-track,
.depoimentos.carousel-running .depoimentos-carousel:hover .depoimentos-track {
    animation-play-state: paused !important;
}

.resultados .image-comparison-slider img,
.clinic-carousel img,
.depoimento-card img {
    backface-visibility: hidden;
}

/* Não usar content-visibility em imagens; alguns celulares mostram "pulos". */
img {
    content-visibility: visible !important;
}

/* Se o usuário pedir menos movimento, tudo continua visível. */
@media (prefers-reduced-motion: reduce) {
    body [data-reveal].entry-prepared,
    body [data-reveal].entry-prepared.entry-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .procedimentos-track,
    .depoimentos-track {
        animation: none !important;
    }
}

/* =========================================================
   AJUSTES MOBILE 01 — BANNER + APRESENTAÇÃO
   ========================================================= */

/* ---------------------------------------------------------
   BANNER — ENTRADA SUAVE NO DESKTOP E MOBILE
   A animação acontece no container inteiro da imagem.
   --------------------------------------------------------- */

.hero > .hero-image {
    opacity: 0;
    transform: scale(1.025);
    transform-origin: center center;

    animation:
        bannerEntradaSuaveCDC
        1.65s
        0.08s
        cubic-bezier(0.16, 1, 0.3, 1)
        forwards;
}

@keyframes bannerEntradaSuaveCDC {

    0% {
        opacity: 0;
        transform: scale(1.025);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* O fundo permanece escuro enquanto a imagem entra,
   evitando qualquer clarão/piscada branca. */
.hero {
    background-color: #212121 !important;
}


/* ---------------------------------------------------------
   BOTÃO DA APRESENTAÇÃO — DESKTOP
   --------------------------------------------------------- */

.planejamento-cta {
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    font-weight: 600;

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

    gap: 0.28em;
}

.planejamento-cta .cta-prefix,
.planejamento-cta .cta-suffix {
    white-space: nowrap;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    /*
       O header é fixed.
       Este espaço faz o banner começar DEPOIS dele,
       evitando que a parte de cima da foto da Cris fique
       escondida atrás do cabeçalho.
    */
    .hero {
        margin-top: 76px !important;

        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;

        width: 100% !important;

        padding: 0 !important;

        overflow: hidden !important;
    }

    .hero-image,
    .hero-image picture {
        width: 100% !important;
        height: 100% !important;

        display: block !important;
    }

    .hero-image img {
        width: 100% !important;
        height: 100% !important;

        max-width: none !important;

        object-fit: cover !important;

        /*
           Mantém o TOPO da arte visível.
           A cabeça da Cris deixa de ficar escondida.
        */
        object-position: 60% 0% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* -----------------------------------------------------
       APRESENTAÇÃO — MENOR QUE O BANNER
       ----------------------------------------------------- */

    .planejamento-banner {
        padding: 1.9rem 0 2.1rem !important;
    }

    .planejamento-banner .container {
        padding-left: 1.35rem !important;
        padding-right: 1.35rem !important;
    }

    .planejamento-banner p {
        letter-spacing: 0 !important;
    }

    /*
       O HTML antigo tinha margin-top inline de 2rem
       na div que envolve o botão.
    */
/* -----------------------------------------------------
       BOTÃO — MAIS COMPACTO E SEM QUEBRAR CDC / STUDIO
       ----------------------------------------------------- */

    .planejamento-banner .planejamento-cta {
        width: auto !important;
        min-width: 0 !important;
        min-height: 43px !important;
        height: auto !important;
        line-height: 1.15 !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        gap: 0.30em !important;
    }

    .planejamento-cta .cta-prefix,
    .planejamento-cta .cta-suffix {
        white-space: nowrap !important;
    }

}


/* ---------------------------------------------------------
   CELULARES MUITO ESTREITOS
   Se não couber tudo em uma linha, quebra SOMENTE antes de
   "NO CDC STUDIO". "CDC STUDIO" nunca fica separado.
   --------------------------------------------------------- */

@media (max-width: 355px) {

    .planejamento-banner .planejamento-cta {
        width: 290px !important;
        max-width: calc(100% - 12px) !important;

        flex-wrap: wrap !important;
        white-space: normal !important;

        row-gap: 2px !important;
    }

    .planejamento-cta .cta-prefix {
        display: block !important;
        width: 100% !important;
    }

    .planejamento-cta .cta-suffix {
        display: block !important;
        width: 100% !important;

        white-space: nowrap !important;
    }

}


/* ---------------------------------------------------------
   ACESSIBILIDADE
   --------------------------------------------------------- */

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

    .hero > .hero-image {
        opacity: 1;
        transform: none;
        animation: none;
    }

}

/* =========================================================
   LINKS CLICÁVEIS — LOCALIZAÇÃO E CONTATOS
   ========================================================= */

.localizacao-photo-link {
    display: block !important;
    width: 100% !important;
    height: 100% !important;

    color: inherit !important;
    text-decoration: none !important;

    cursor: pointer !important;
}

.localizacao-photo-link .clinic-carousel {
    width: 100% !important;
    height: 100% !important;
}

.localizacao-text-link {
    display: block !important;

    color: inherit !important;
    text-decoration: none !important;

    cursor: pointer !important;

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

.localizacao-text-link:hover {
    opacity: 0.72 !important;
    transform: translateY(-1px);
}

.footer-contact-link {
    color: inherit !important;
    text-decoration: none !important;

    transition: opacity 0.3s ease !important;
}

.footer-contact-link:hover {
    opacity: 0.68 !important;
}


/* =========================================================
   ANIMAÇÕES MOBILE — MAIS LENTAS E ACOMPANHANDO A ROLAGEM
   ========================================================= */

@media (max-width: 768px) {

    body [data-reveal].entry-prepared {
        transition:
            opacity 1.45s cubic-bezier(0.16, 1, 0.3, 1),
            transform 1.45s cubic-bezier(0.16, 1, 0.3, 1) !important;

        transition-delay:
            var(--entry-delay, 0ms) !important;
    }

    body [data-reveal="up"].entry-prepared {
        transform: translate3d(0, 46px, 0) !important;
    }

    body [data-reveal="left"].entry-prepared {
        transform: translate3d(-42px, 0, 0) !important;
    }

    body [data-reveal="right"].entry-prepared {
        transform: translate3d(42px, 0, 0) !important;
    }

    body [data-reveal="scale"].entry-prepared {
        transform: scale(0.965) !important;
    }

    body .laser-day [data-reveal].entry-prepared {
        transition-duration:
            1.7s,
            1.7s !important;
    }

}

/* =========================================================
   RESPONSIVIDADE FLUIDA — TELEFONES + IPAD
   NÃO ALTERA O BANNER
   ========================================================= */


/* =========================================================
   TABLETS / IPAD / CELULARES
   ========================================================= */

@media (max-width: 1024px) {

    /* CONTAINERS */

    .container {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: clamp(18px, 4vw, 34px) !important;
        padding-right: clamp(18px, 4vw, 34px) !important;
    }


    /* =====================================================
       TÍTULOS
       ===================================================== */

    .procedimentos-title,
    .resultados .sobre-title,
    .depoimentos .sobre-title,
    .localizacao-text .section-title-large {
        font-size: clamp(
            2.4rem,
            7vw,
            3.5rem
        ) !important;
    }


    .sobre-name {
        font-size: clamp(
            1.45rem,
            4.5vw,
            2rem
        ) !important;
    }


    .sobre-specialty {
        font-size: clamp(
            0.72rem,
            2.5vw,
            0.95rem
        ) !important;

        line-height: 1.45 !important;
    }


    .laser-day-title {
        font-size: clamp(
            2.5rem,
            8vw,
            4rem
        ) !important;
    }


    .info-title {
        font-size: clamp(
            1.25rem,
            4.5vw,
            1.7rem
        ) !important;
    }


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

    .planejamento-banner p,
    .sobre-text p,
    .procedimentos-subtitle,
    .proc-card p,
    .laser-day-text,
    .resultados .text-center p,
    .depoimentos-subtitle,
    .info-text,
    .footer-desc,
    .footer-col-3 p {

        font-size: clamp(
            0.82rem,
            2.4vw,
            1rem
        ) !important;

        line-height: 1.55 !important;

        max-width: 100% !important;

        overflow-wrap: break-word !important;
        word-break: normal !important;
    }


    /* =====================================================
       BOTÕES EM GERAL
       ===================================================== */

    .btn,
    .btn-pill,
    .procedimentos-btn,
    .laser-day-highlight,
    .localizacao-text .btn-pill {

        width: fit-content !important;
        max-width: 100% !important;

        min-width: 0 !important;

        height: auto !important;
        min-height: 42px !important;

        padding:
            clamp(0.65rem, 2vw, 0.85rem)
            clamp(1rem, 4vw, 1.8rem) !important;

        font-size: clamp(
            0.72rem,
            2.2vw,
            0.92rem
        ) !important;

        line-height: 1.25 !important;

        white-space: normal !important;

        text-align: center !important;

        overflow-wrap: normal !important;
        word-break: normal !important;
    }


    /* =====================================================
       BOTÃO "AGENDE SUA AVALIAÇÃO..."
       ===================================================== */

    .planejamento-banner .planejamento-cta {

        width: auto !important;
        max-width: min(
            100%,
            430px
        ) !important;

        min-width: 0 !important;

        padding:
            clamp(0.65rem, 2vw, 0.8rem)
            clamp(0.9rem, 3.5vw, 1.5rem)
            !important;

        font-size: clamp(
            0.70rem,
            2.25vw,
            0.88rem
        ) !important;

        line-height: 1.2 !important;

        display: inline-flex !important;

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

        flex-wrap: wrap !important;

        column-gap: 0.32em !important;
        row-gap: 2px !important;

        white-space: normal !important;
    }


    /*
       Estas duas partes podem quebrar ENTRE SI,
       mas nunca quebram "CDC Studio".
    */

    .planejamento-cta .cta-prefix,
    .planejamento-cta .cta-suffix {

        white-space: nowrap !important;
    }


    /* =====================================================
       LOCALIZAÇÃO
       PROPORÇÃO DEFINIDA: 3 : 4,5
       ===================================================== */

    .localizacao-image {

        width: clamp(
            250px,
            55vw,
            420px
        ) !important;

        max-width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        aspect-ratio: 3 / 4.5 !important;

        flex: 0 0 auto !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    .localizacao-photo-link,
    .clinic-carousel,
    .clinic-carousel .carousel-item {

        width: 100% !important;
        height: 100% !important;
    }


    .clinic-carousel .carousel-item img {

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }


    .localizacao-text {

        width: 100% !important;

        max-width: 650px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        padding-left: 0 !important;
        padding-right: 0 !important;
    }


    .localizacao-text .info-text {

        max-width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;

        text-align: center !important;
    }

}


/* =========================================================
   CELULARES
   ========================================================= */

@media (max-width: 768px) {

    /* NÃO ALTERA .hero */


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

    .planejamento-banner {

        padding:
            clamp(1.4rem, 5vw, 1.9rem)
            0
            clamp(1.5rem, 5vw, 2rem)
            !important;
    }


    .planejamento-banner p {

        width: 100% !important;

        max-width: 36em !important;

        margin-left: auto !important;
        margin-right: auto !important;

        font-size: clamp(
            0.78rem,
            3.4vw,
            0.92rem
        ) !important;

        line-height: 1.55 !important;
    }


    .planejamento-banner .container > div {

        margin-top:
            clamp(
                0.85rem,
                4vw,
                1.25rem
            ) !important;
    }


    /* =====================================================
       CTA PRINCIPAL
       ===================================================== */

    .planejamento-banner .planejamento-cta {

        max-width: 100% !important;

        padding:
            0.7rem
            clamp(
                0.8rem,
                4vw,
                1.3rem
            ) !important;

        font-size: clamp(
            0.68rem,
            3vw,
            0.80rem
        ) !important;

        letter-spacing:
            clamp(
                0.2px,
                0.15vw,
                0.6px
            ) !important;
    }


    /* =====================================================
       SOBRE
       ===================================================== */

    .sobre-text {

        width: 100% !important;

        padding-left: 0 !important;
        padding-right: 0 !important;
    }


    .sobre-text p {

        width: 100% !important;

        font-size: clamp(
            0.82rem,
            3.25vw,
            0.94rem
        ) !important;

        line-height: 1.6 !important;
    }


    /* =====================================================
       PROCEDIMENTOS
       ===================================================== */

    .procedimentos-subtitle {

        max-width: 620px !important;

        padding-left: 0 !important;
        padding-right: 0 !important;
    }


    /* =====================================================
       LASER DAY
       ===================================================== */

    .laser-day-content {

        width: 100% !important;

        padding-left:
            clamp(
                1rem,
                5vw,
                1.5rem
            ) !important;

        padding-right:
            clamp(
                1rem,
                5vw,
                1.5rem
            ) !important;
    }


    .laser-day-text {

        width: 100% !important;

        font-size: clamp(
            0.84rem,
            3.35vw,
            1rem
        ) !important;
    }


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

    .localizacao-container {

        width: 100% !important;

        gap:
            clamp(
                2rem,
                8vw,
                3rem
            ) !important;
    }
.localizacao-text {

        width: 100% !important;

        max-width: 520px !important;
    }


    .localizacao-text .info-text {

        width: 100% !important;

        max-width: 34em !important;

        font-size: clamp(
            0.82rem,
            3.4vw,
            0.98rem
        ) !important;

        line-height: 1.55 !important;
    }


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

    .footer-container {

        padding-left:
            clamp(
                1rem,
                5vw,
                1.5rem
            ) !important;

        padding-right:
            clamp(
                1rem,
                5vw,
                1.5rem
            ) !important;
    }


    .footer-desc {

        max-width: 34em !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

}


/* =========================================================
   TELEFONES BEM ESTREITOS
   ========================================================= */

@media (max-width: 380px) {

    .container {

        padding-left: 16px !important;
        padding-right: 16px !important;
    }


    /*
       Se o botão principal não couber,
       ele quebra SOMENTE entre as duas partes.
    */

    .planejamento-banner .planejamento-cta {

        width: 100% !important;

        max-width: 310px !important;

        flex-wrap: wrap !important;
    }


    .planejamento-cta .cta-prefix {

        white-space: nowrap !important;
    }


    .planejamento-cta .cta-suffix {

        white-space: nowrap !important;
    }


}

/* =========================================================
   MOBILE — LOCALIZAÇÃO NA MESMA PROPORÇÃO DO SOBRE
   ========================================================= */

@media (max-width: 768px) {

    .localizacao-image {
        width: 100% !important;
        max-width: 400px !important;

        height: auto !important;
        min-height: 0 !important;

        /* MESMA PROPORÇÃO DAS FOTOS CRIS / DANIELA */
        aspect-ratio: 5 / 6 !important;

        margin-left: auto !important;
        margin-right: auto !important;

        border-radius: 20px !important;
        overflow: hidden !important;

        flex: none !important;
    }

    .localizacao-photo-link,
    .clinic-carousel,
    .clinic-carousel .carousel-item {
        width: 100% !important;
        height: 100% !important;
    }

    .clinic-carousel .carousel-item img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center center !important;
    }

}

/* =========================================================
   REGRA FINAL — BANNER MOBILE RESPONSIVO
   ========================================================= */

@media (max-width: 768px) {

    .hero {
        width: 100% !important;

        /*
           Celular normal: 360px
           Celular muito estreito: reduz automaticamente
        */
        height: min(360px, 100vw) !important;
        min-height: min(360px, 100vw) !important;
        max-height: min(360px, 100vw) !important;

        margin-top: 76px !important;
        padding: 0 !important;

        position: relative !important;
        display: block !important;

        overflow: hidden !important;

        background: #212121 !important;
    }


    .hero > .hero-image,
    .hero-image picture {
        position: absolute !important;
        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        display: block !important;

        overflow: hidden !important;
    }


    .hero-image img {
        position: absolute !important;

        top: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        min-width: 100% !important;
        min-height: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;

        display: block !important;

        object-fit: cover !important;

        /* mantém o enquadramento que você escolheu */
        object-position: 60% 0% !important;

        transform: none !important;
    }

}

/* =========================================================
   RESULTADOS — SUPORTE AO 7º ANTES / DEPOIS
   O carrossel usa seletores genéricos para todos os
   .slider-wrapper. Este reforço apenas garante que o
   sétimo card mantenha o mesmo comportamento de flex.
   ========================================================= */

.resultados-carousel-track > .slider-wrapper:nth-child(7) {
    flex-shrink: 0;
}