@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
}

@font-face {
    font-family: 'Gilda Display';
    src: url('../fonts/GildaDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
}

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

html,
body {
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    font-family: 'Montserrat', sans-serif;
    background-color: #00768c;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: 70%;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
    margin: 0 40px;
}

.nav-item {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.3s;
    line-height: 1.5;
}

.nav-item:hover {
    opacity: 0.8;
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-trigger {
    cursor: pointer;
    line-height: 1.5;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 12px;
    min-width: 320px;
    background-color: #f5f5f5;
    border-radius: 0px;
    overflow: hidden;
    display: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 100;
}

.nav-submenu--narrow {
    min-width: 220px;
}

.nav-dropdown.is-open .nav-submenu,
.nav-dropdown.is-hover .nav-submenu {
    display: block;
}

.nav-submenu-item {
    display: block;
    padding: 14px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #00768c;
    background-color: #FFFFFF;
    text-decoration: none;
    border-bottom: 1px solid #00768c;
    transition: background-color 0.2s, color 0.2s;
}

.nav-submenu-item:last-child {
    border-bottom: none;
}

.nav-submenu-item:hover {
    background-color: #00768c;
    color: #FFFFFF;
    border-bottom-color: #00768c;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    padding: 8px 0;
}

.mobile-nav,
.mobile-nav-overlay {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-icon {
    width: 18px;
    height: 18px;
    color: #FFFFFF;
    cursor: pointer;
}

.search-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.search-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    padding: 4px 0;
    width: 150px;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-appointment {
    background-color: #FFFFFF;
    color: #00768c;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.btn-appointment:hover {
    background-color: #C0C0C0;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #5FB3B3;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video--mobile {
    display: none;
}

.me-hero {
    background-color: #00768c;
    padding: 72px 80px 96px;
}

.me-hero--fullwidth-image {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
}

.me-hero--fullwidth-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.me-hero--compact {
    padding-top: 48px;
    padding-bottom: 56px;
}

.me-hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.me-hero-content {
    flex: 1;
    max-width: 520px;
}

.me-hero-title {
    font-family: 'Gilda Display', serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 28px;
}

.me-hero-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 420px;
    margin: 0 0 40px;
}

.me-hero-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 0;
    border: 1px solid #FFFFFF;
    font-family: 'Gilda Display', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hero botão "Marcar Consulta" (internas) */
.hero-consult-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    min-width: 240px;
    padding: 14px 24px;
    border: 0;
    background: #fff;
    color: #00768c;
    font-family: 'Gilda Display', serif;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.hero-consult-btn:hover {
    opacity: 0.92;
}

@media (max-width: 768px) {
    .hero-consult-btn {
        margin: 0 auto;
        min-width: min(240px, 100%);
    }
}

/* Medicina Estética Facial – hub (MedicinaEsteticaFacial.html): hero + barra própria */
.page-medicina-estetica-facial .mef-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #0d2c33;
    background-image: url('../img/12.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-medicina-estetica-1 .mef-hero {
    background-image: url('../img/8.jpg');
}

.page-bem-estar-estetica .mef-hero {
    background-image: url('../img/14.jpg');
}

.page-centro-medico .mef-hero {
    background-image: url('../img/16.jpg');
}

.page-tratamentos-capilares .mef-hero {
    background-image: url('../img/18.jpg');
}

.page-medicina-estetica-corporal .mef-hero {
    background-image: url('../img/20.jpg');
}

.page-emagrecimento-medico .mef-hero {
    background-image: url('../img/10.jpg');
}

.page-cirurgia-plastica-estetica .mef-hero {
    background-image: url('../img/22.jpg');
}

.page-medicina-estetica-facial .mef-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.22) 42%, rgba(0, 0, 0, 0.12) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.38) 0%, rgba(0, 40, 50, 0.35) 50%, rgba(0, 30, 40, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

/* MedicinaEstetica.html: header padrão da index, mas transparente sobre o hero */
.page-medicina-estetica-facial.page-medicina-estetica-1 .header {
    position: relative;
    z-index: 3;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.page-medicina-estetica-facial.page-medicina-estetica-1 .nav-item,
.page-medicina-estetica-facial.page-medicina-estetica-1 .menu-toggle,
.page-medicina-estetica-facial.page-medicina-estetica-1 .search-icon {
    color: #ffffff;
}

.page-medicina-estetica-facial.page-medicina-estetica-1 .search-container {
    border-bottom-color: rgba(255, 255, 255, 0.65);
}

.page-medicina-estetica-facial.page-medicina-estetica-1 .btn-appointment {
    border-color: #ffffff;
    color: #ffffff;
    background: transparent;
}

.page-medicina-estetica-facial.page-medicina-estetica-1 .btn-appointment:hover {
    background: #ffffff;
    color: #00768c;
}

.page-medicina-estetica-facial.page-tratamentos-capilares .header {
    position: relative;
    z-index: 3;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.page-medicina-estetica-facial.page-tratamentos-capilares .nav-item,
.page-medicina-estetica-facial.page-tratamentos-capilares .menu-toggle,
.page-medicina-estetica-facial.page-tratamentos-capilares .search-icon {
    color: #ffffff;
}

.page-medicina-estetica-facial.page-tratamentos-capilares .search-container {
    border-bottom-color: rgba(255, 255, 255, 0.65);
}

.page-medicina-estetica-facial.page-tratamentos-capilares .btn-appointment {
    border-color: #ffffff;
    color: #ffffff;
    background: transparent;
}

.page-medicina-estetica-facial.page-tratamentos-capilares .btn-appointment:hover {
    background: #ffffff;
    color: #00768c;
}

.page-medicina-estetica-facial:not(.page-medicina-estetica-1):not(.page-tratamentos-capilares) .header {
    position: relative;
    z-index: 3;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.page-medicina-estetica-facial:not(.page-medicina-estetica-1):not(.page-tratamentos-capilares) .nav-item,
.page-medicina-estetica-facial:not(.page-medicina-estetica-1):not(.page-tratamentos-capilares) .menu-toggle,
.page-medicina-estetica-facial:not(.page-medicina-estetica-1):not(.page-tratamentos-capilares) .search-icon {
    color: #ffffff;
}

.page-medicina-estetica-facial:not(.page-medicina-estetica-1):not(.page-tratamentos-capilares) .search-container {
    border-bottom-color: rgba(255, 255, 255, 0.65);
}

.page-medicina-estetica-facial:not(.page-medicina-estetica-1):not(.page-tratamentos-capilares) .btn-appointment {
    border-color: #ffffff;
    color: #ffffff;
    background: transparent;
}

.page-medicina-estetica-facial:not(.page-medicina-estetica-1):not(.page-tratamentos-capilares) .btn-appointment:hover {
    background: #ffffff;
    color: #00768c;
}

.page-medicina-estetica-facial .mef-header {
    position: relative;
    z-index: 3;
    background: transparent;
    flex-shrink: 0;
}

.page-medicina-estetica-facial .mef-header-bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 26px 48px 18px;
}

.page-medicina-estetica-facial .mef-header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.page-medicina-estetica-facial .mef-header-logo:hover {
    opacity: 0.9;
}

.page-medicina-estetica-facial .mef-header-logo-img {
    display: block;
    height: 30px;
    width: auto;
    max-width: min(200px, 42vw);
    object-fit: contain;
}

.page-medicina-estetica-facial .mef-menu-toggle {
    display: none;
    margin-left: auto;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #FFFFFF;
    flex-shrink: 0;
}

.page-medicina-estetica-facial .mef-menu-toggle-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 26px;
    height: 20px;
}

.page-medicina-estetica-facial .mef-menu-toggle-line {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.page-medicina-estetica-facial .mef-header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 28px;
}

.page-medicina-estetica-facial .mef-header-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.page-medicina-estetica-facial .mef-header-link:hover {
    opacity: 0.82;
}

.page-medicina-estetica-facial .mef-header-aside {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.page-medicina-estetica-facial .mef-header-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-medicina-estetica-facial .mef-header-search-icon {
    display: flex;
    width: 18px;
    height: 18px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.page-medicina-estetica-facial .mef-header-search-icon svg {
    width: 100%;
    height: 100%;
}

.page-medicina-estetica-facial .mef-header-search-input {
    width: 120px;
    padding: 4px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #FFFFFF;
    outline: none;
}

.page-medicina-estetica-facial .mef-header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.page-medicina-estetica-facial .mef-header-cta {
    padding: 12px 22px;
    border: none;
    border-radius: 6px;
    background-color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00768c;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.page-medicina-estetica-facial .mef-header-cta:hover {
    background-color: #e8e8e8;
}

.page-medicina-estetica-facial .mef-hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 0 0 6vh;
}

.page-medicina-estetica-facial .mef-hero-inner {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 20px 48px 48px;
    text-align: left;
}

.page-medicina-estetica-facial .mef-hero-title {
    font-family: 'Gilda Display', serif;
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 24px;
    max-width: 720px;
}

.page-medicina-estetica-facial .mef-hero-title-line {
    display: inline;
}

.page-medicina-estetica-facial .mef-hero-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.35vw, 16px);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
    max-width: 460px;
    margin: 0 0 32px;
}

.page-medicina-estetica-facial .mef-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 26px 16px 28px;
    border: 1px solid #FFFFFF;
    border-radius: 2px;
    font-family: 'Gilda Display', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    background: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.page-medicina-estetica-facial .mef-hero-btn-arrow {
    display: flex;
    flex-shrink: 0;
}

.page-medicina-estetica-facial .mef-hero-btn-arrow svg {
    display: block;
}

.page-medicina-estetica-facial .mef-hero-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.page-medicina-estetica-facial .mef-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.page-medicina-estetica-facial .mef-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 210;
    width: min(100%, 380px);
    height: 100%;
    max-height: 100dvh;
    background: #FFFFFF;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
}

.page-medicina-estetica-facial .mef-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #e8e8e8;
}

.page-medicina-estetica-facial .mef-drawer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00768c;
}

.page-medicina-estetica-facial .mef-drawer-close {
    display: flex;
    padding: 8px;
    border: none;
    background: transparent;
    color: #333;
    cursor: pointer;
}

.page-medicina-estetica-facial .mef-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 12px 0 28px;
}

.page-medicina-estetica-facial .mef-drawer-link {
    display: block;
    padding: 14px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: left;
    text-decoration: none;
    color: #00768c;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.page-medicina-estetica-facial .mef-drawer-link:hover {
    background-color: rgba(0, 118, 140, 0.06);
}

.page-medicina-estetica-facial .mef-drawer-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 24px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #00768c;
}

.page-medicina-estetica-facial .mef-drawer-search-icon {
    color: #00768c;
    width: 18px;
    height: 18px;
}

.page-medicina-estetica-facial .mef-drawer-search-icon svg {
    width: 100%;
    height: 100%;
}

.page-medicina-estetica-facial .mef-drawer-search-input {
    flex: 1;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
}

body.page-medicina-estetica-facial.mef-menu-open .mef-drawer-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.page-medicina-estetica-facial.mef-menu-open .mef-drawer {
    transform: translateX(0);
}

@media (max-width: 1023px) {
    .page-medicina-estetica-facial .mef-hero {
        background-image: url('../img/13.jpg');
    }

    .page-medicina-estetica-1 .mef-hero {
        background-image: url('../img/9.jpg');
    }

    .page-bem-estar-estetica .mef-hero {
        background-image: url('../img/15.jpg');
    }

    .page-centro-medico .mef-hero {
        background-image: url('../img/17.jpg');
    }

    .page-tratamentos-capilares .mef-hero {
        background-image: url('../img/19.jpg');
    }

    .page-medicina-estetica-corporal .mef-hero {
        background-image: url('../img/21.jpg');
    }

    .page-emagrecimento-medico .mef-hero {
        background-image: url('../img/11.jpg');
    }

    .page-cirurgia-plastica-estetica .mef-hero {
        background-image: url('../img/23.jpg');
    }

    .page-medicina-estetica-facial .mef-header-bar {
        padding: 20px 24px 14px;
        gap: 16px;
    }

    .page-medicina-estetica-facial .mef-menu-toggle {
        display: block;
    }

    .page-medicina-estetica-facial .mef-header-nav,
    .page-medicina-estetica-facial .mef-header-aside {
        display: none;
    }

    .page-medicina-estetica-facial .mef-header-logo-img {
        height: 34px;
        max-width: min(160px, 50vw);
    }

    .page-medicina-estetica-facial .mef-hero-inner {
        padding: 16px 24px 40px;
        text-align: center;
    }

    .page-medicina-estetica-facial .mef-hero-title,
    .page-medicina-estetica-facial .mef-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .page-medicina-estetica-facial .mef-drawer {
        width: 100%;
        max-width: 100%;
        box-shadow: none;
    }
}

.page-medicina-estetica-facial .mef-main {
    background: #FFFFFF;
    padding: 88px 40px 104px;
}

.page-medicina-estetica-facial .mef-main-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.page-medicina-estetica-facial .mef-main-title {
    font-family: 'Gilda Display', serif;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #00768c;
    margin: 0 0 22px;
}

.page-medicina-estetica-facial .mef-main-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 auto 36px;
    max-width: 540px;
    text-align: center;
}

.page-medicina-estetica-facial .mef-treat-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 720px;
    border-top: 1px solid #00768c;
    text-align: left;
}

.page-medicina-estetica-facial .mef-treat-item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #00768c;
}

.page-medicina-estetica-facial .mef-treat-link {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 22px 24px 22px 28px;
    font-family: 'Gilda Display', serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: left;
    color: #00768c;
    background: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.page-medicina-estetica-facial .mef-treat-link:hover {
    background-color: #00768c;
    color: white;
}

.page-medicina-estetica-facial .mef-treat-link--active,
.page-medicina-estetica-facial .mef-treat-link--active:hover {
    background-color: transparent;
    color: #00768c;
}

@media (max-width: 600px) {
    .page-medicina-estetica-facial .mef-hero-inner {
        padding: 40px 24px 56px;
    }

    .page-medicina-estetica-facial .mef-main {
        padding: 56px 24px 72px;
    }

    .page-medicina-estetica-facial .mef-treat-link {
        padding: 18px 20px 18px 22px;
        font-size: 13px;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 960px) {
    /* TransplanteCapilar: centrar texto no mobile (só esta página) */
    .page-transplante-capilar .tc-info,
    .page-transplante-capilar .tc-how,
    .page-transplante-capilar .tc-gallery,
    .page-transplante-capilar .step-section {
        text-align: center;
    }

    /* Benefícios + FAQ: manter alinhado à esquerda como antes */
    .page-transplante-capilar .tc-benefits,
    .page-transplante-capilar .tc-faq {
        text-align: left;
    }

    .page-transplante-capilar .tc-column--images {
        align-items: center;
    }

    .page-transplante-capilar .tc-how-duration-label--left,
    .page-transplante-capilar .tc-how-duration-label--right {
        text-align: center;
    }

    .page-transplante-capilar .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Sefiller: mesmo comportamento do TransplanteCapilar no mobile */
    .page-sefiller .tc-info,
    .page-sefiller .tc-how,
    .page-sefiller .tc-gallery,
    .page-sefiller .step-section {
        text-align: center;
    }

    /* Benefícios + FAQ: manter alinhado à esquerda */
    .page-sefiller .tc-benefits,
    .page-sefiller .tc-faq {
        text-align: left;
    }

    .page-sefiller .tc-column--images {
        align-items: center;
    }

    .page-sefiller .tc-how-duration-label--left,
    .page-sefiller .tc-how-duration-label--right {
        text-align: center;
    }

    .page-sefiller .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Laser Vasculight Facial: mesmo alinhamento mobile que Sefiller */
    .page-laser-vasculight-facial .tc-info,
    .page-laser-vasculight-facial .tc-how,
    .page-laser-vasculight-facial .tc-gallery,
    .page-laser-vasculight-facial .step-section {
        text-align: center;
    }

    .page-laser-vasculight-facial .tc-benefits,
    .page-laser-vasculight-facial .tc-faq {
        text-align: left;
    }

    .page-laser-vasculight-facial .tc-column--images {
        align-items: center;
    }

    .page-laser-vasculight-facial .tc-how-duration-label--left,
    .page-laser-vasculight-facial .tc-how-duration-label--right {
        text-align: center;
    }

    .page-laser-vasculight-facial .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Laser CO₂: mesmo alinhamento mobile que Sefiller */
    .page-laser-co2 .tc-info,
    .page-laser-co2 .tc-how,
    .page-laser-co2 .tc-gallery,
    .page-laser-co2 .step-section {
        text-align: center;
    }

    .page-laser-co2 .tc-benefits,
    .page-laser-co2 .tc-faq {
        text-align: left;
    }

    .page-laser-co2 .tc-column--images {
        align-items: center;
    }

    .page-laser-co2 .tc-how-duration-label--left,
    .page-laser-co2 .tc-how-duration-label--right {
        text-align: center;
    }

    .page-laser-co2 .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* IPL Facial: mesmo alinhamento mobile que Sefiller */
    .page-ipl-facial .tc-info,
    .page-ipl-facial .tc-how,
    .page-ipl-facial .tc-gallery,
    .page-ipl-facial .step-section {
        text-align: center;
    }

    .page-ipl-facial .tc-benefits,
    .page-ipl-facial .tc-faq {
        text-align: left;
    }

    .page-ipl-facial .tc-column--images {
        align-items: center;
    }

    .page-ipl-facial .tc-how-duration-label--left,
    .page-ipl-facial .tc-how-duration-label--right {
        text-align: center;
    }

    .page-ipl-facial .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* IPL corporal */
    .page-ipl-corporal .tc-info,
    .page-ipl-corporal .tc-how,
    .page-ipl-corporal .tc-gallery,
    .page-ipl-corporal .step-section {
        text-align: center;
    }

    .page-ipl-corporal .tc-benefits,
    .page-ipl-corporal .tc-faq {
        text-align: left;
    }

    .page-ipl-corporal .tc-column--images {
        align-items: center;
    }

    .page-ipl-corporal .tc-how-duration-label--left,
    .page-ipl-corporal .tc-how-duration-label--right {
        text-align: center;
    }

    .page-ipl-corporal .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Aumento de glúteos (corporal) */
    .page-aumento-gluteos-corporal .tc-info,
    .page-aumento-gluteos-corporal .tc-how,
    .page-aumento-gluteos-corporal .tc-gallery,
    .page-aumento-gluteos-corporal .step-section {
        text-align: center;
    }

    .page-aumento-gluteos-corporal .tc-benefits,
    .page-aumento-gluteos-corporal .tc-faq {
        text-align: left;
    }

    .page-aumento-gluteos-corporal .tc-column--images {
        align-items: center;
    }

    .page-aumento-gluteos-corporal .tc-how-duration-label--left,
    .page-aumento-gluteos-corporal .tc-how-duration-label--right {
        text-align: center;
    }

    .page-aumento-gluteos-corporal .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Mounjaro (emagrecimento médico) */
    .page-mounjaro .tc-info,
    .page-mounjaro .tc-how,
    .page-mounjaro .tc-gallery,
    .page-mounjaro .step-section {
        text-align: center;
    }

    .page-mounjaro .tc-benefits,
    .page-mounjaro .tc-faq {
        text-align: left;
    }

    .page-mounjaro .tc-column--images {
        align-items: center;
    }

    .page-mounjaro .tc-how-duration-label--left,
    .page-mounjaro .tc-how-duration-label--right {
        text-align: center;
    }

    .page-mounjaro .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Estudo antropométrico */
    .page-estudo-antropometrico .tc-info,
    .page-estudo-antropometrico .tc-how,
    .page-estudo-antropometrico .tc-gallery,
    .page-estudo-antropometrico .step-section {
        text-align: center;
    }

    .page-estudo-antropometrico .tc-benefits,
    .page-estudo-antropometrico .tc-faq {
        text-align: left;
    }

    .page-estudo-antropometrico .tc-column--images {
        align-items: center;
    }

    .page-estudo-antropometrico .tc-how-duration-label--left,
    .page-estudo-antropometrico .tc-how-duration-label--right {
        text-align: center;
    }

    .page-estudo-antropometrico .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Dietas proteicas */
    .page-dietas-proteicas .tc-info,
    .page-dietas-proteicas .tc-how,
    .page-dietas-proteicas .tc-gallery,
    .page-dietas-proteicas .step-section {
        text-align: center;
    }

    .page-dietas-proteicas .tc-benefits,
    .page-dietas-proteicas .tc-faq {
        text-align: left;
    }

    .page-dietas-proteicas .tc-column--images {
        align-items: center;
    }

    .page-dietas-proteicas .tc-how-duration-label--left,
    .page-dietas-proteicas .tc-how-duration-label--right {
        text-align: center;
    }

    .page-dietas-proteicas .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Consultas de nutrição */
    .page-consultas-nutricao .tc-info,
    .page-consultas-nutricao .tc-how,
    .page-consultas-nutricao .tc-gallery,
    .page-consultas-nutricao .step-section {
        text-align: center;
    }

    .page-consultas-nutricao .tc-benefits,
    .page-consultas-nutricao .tc-faq {
        text-align: left;
    }

    .page-consultas-nutricao .tc-column--images {
        align-items: center;
    }

    .page-consultas-nutricao .tc-how-duration-label--left,
    .page-consultas-nutricao .tc-how-duration-label--right {
        text-align: center;
    }

    .page-consultas-nutricao .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Balão intragástrico Elipse */
    .page-balao-intragastrico-elipse .tc-info,
    .page-balao-intragastrico-elipse .tc-how,
    .page-balao-intragastrico-elipse .tc-gallery,
    .page-balao-intragastrico-elipse .step-section {
        text-align: center;
    }

    .page-balao-intragastrico-elipse .tc-benefits,
    .page-balao-intragastrico-elipse .tc-faq {
        text-align: left;
    }

    .page-balao-intragastrico-elipse .tc-column--images {
        align-items: center;
    }

    .page-balao-intragastrico-elipse .tc-how-duration-label--left,
    .page-balao-intragastrico-elipse .tc-how-duration-label--right {
        text-align: center;
    }

    .page-balao-intragastrico-elipse .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Full Face: mesmo alinhamento mobile que Sefiller */
    .page-full-face .tc-info,
    .page-full-face .tc-how,
    .page-full-face .tc-gallery,
    .page-full-face .step-section {
        text-align: center;
    }

    .page-full-face .tc-benefits,
    .page-full-face .tc-faq {
        text-align: left;
    }

    .page-full-face .tc-column--images {
        align-items: center;
    }

    .page-full-face .tc-how-duration-label--left,
    .page-full-face .tc-how-duration-label--right {
        text-align: center;
    }

    .page-full-face .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Exossomas: mesmo alinhamento mobile que Full Face */
    .page-exossomas .tc-info,
    .page-exossomas .tc-how,
    .page-exossomas .tc-gallery,
    .page-exossomas .step-section {
        text-align: center;
    }

    .page-exossomas .tc-benefits,
    .page-exossomas .tc-faq {
        text-align: left;
    }

    .page-exossomas .tc-column--images {
        align-items: center;
    }

    .page-exossomas .tc-how-duration-label--left,
    .page-exossomas .tc-how-duration-label--right {
        text-align: center;
    }

    .page-exossomas .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Bioestimuladores: mesmo alinhamento mobile que Exossomas */
    .page-bioestimuladores .tc-info,
    .page-bioestimuladores .tc-how,
    .page-bioestimuladores .tc-gallery,
    .page-bioestimuladores .step-section {
        text-align: center;
    }

    .page-bioestimuladores .tc-benefits,
    .page-bioestimuladores .tc-faq {
        text-align: left;
    }

    .page-bioestimuladores .tc-column--images {
        align-items: center;
    }

    .page-bioestimuladores .tc-how-duration-label--left,
    .page-bioestimuladores .tc-how-duration-label--right {
        text-align: center;
    }

    .page-bioestimuladores .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Tratamento de Hiperidrose (corporal): alinhamento mobile consistente */
    .page-tratamento-hiperidrose .tc-info,
    .page-tratamento-hiperidrose .tc-how,
    .page-tratamento-hiperidrose .tc-gallery,
    .page-tratamento-hiperidrose .step-section {
        text-align: center;
    }

    .page-tratamento-hiperidrose .tc-benefits,
    .page-tratamento-hiperidrose .tc-faq {
        text-align: left;
    }

    .page-tratamento-hiperidrose .tc-column--images {
        align-items: center;
    }

    .page-tratamento-hiperidrose .tc-how-duration-label--left,
    .page-tratamento-hiperidrose .tc-how-duration-label--right {
        text-align: center;
    }

    .page-tratamento-hiperidrose .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Rinoplastia */
    .page-rinoplastia .tc-info,
    .page-rinoplastia .tc-how,
    .page-rinoplastia .tc-gallery,
    .page-rinoplastia .step-section {
        text-align: center;
    }

    .page-rinoplastia .tc-benefits,
    .page-rinoplastia .tc-faq {
        text-align: left;
    }

    .page-rinoplastia .tc-column--images {
        align-items: center;
    }

    .page-rinoplastia .tc-how-duration-label--left,
    .page-rinoplastia .tc-how-duration-label--right {
        text-align: center;
    }

    .page-rinoplastia .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Otoplastia */
    .page-otoplastia .tc-info,
    .page-otoplastia .tc-how,
    .page-otoplastia .tc-gallery,
    .page-otoplastia .step-section {
        text-align: center;
    }

    .page-otoplastia .tc-benefits,
    .page-otoplastia .tc-faq {
        text-align: left;
    }

    .page-otoplastia .tc-column--images {
        align-items: center;
    }

    .page-otoplastia .tc-how-duration-label--left,
    .page-otoplastia .tc-how-duration-label--right {
        text-align: center;
    }

    .page-otoplastia .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Ninfoplastia */
    .page-ninfoplastia .tc-info,
    .page-ninfoplastia .tc-how,
    .page-ninfoplastia .tc-gallery,
    .page-ninfoplastia .step-section {
        text-align: center;
    }

    .page-ninfoplastia .tc-benefits,
    .page-ninfoplastia .tc-faq {
        text-align: left;
    }

    .page-ninfoplastia .tc-column--images {
        align-items: center;
    }

    .page-ninfoplastia .tc-how-duration-label--left,
    .page-ninfoplastia .tc-how-duration-label--right {
        text-align: center;
    }

    .page-ninfoplastia .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Mastopexia */
    .page-mastopexia .tc-info,
    .page-mastopexia .tc-how,
    .page-mastopexia .tc-gallery,
    .page-mastopexia .step-section {
        text-align: center;
    }

    .page-mastopexia .tc-benefits,
    .page-mastopexia .tc-faq {
        text-align: left;
    }

    .page-mastopexia .tc-column--images {
        align-items: center;
    }

    .page-mastopexia .tc-how-duration-label--left,
    .page-mastopexia .tc-how-duration-label--right {
        text-align: center;
    }

    .page-mastopexia .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Mamoplastia de redução */
    .page-mamoplastia .tc-info,
    .page-mamoplastia .tc-how,
    .page-mamoplastia .tc-gallery,
    .page-mamoplastia .step-section {
        text-align: center;
    }

    .page-mamoplastia .tc-benefits,
    .page-mamoplastia .tc-faq {
        text-align: left;
    }

    .page-mamoplastia .tc-column--images {
        align-items: center;
    }

    .page-mamoplastia .tc-how-duration-label--left,
    .page-mamoplastia .tc-how-duration-label--right {
        text-align: center;
    }

    .page-mamoplastia .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Mamoplastia de aumento */
    .page-mamoplastia-aumento .tc-info,
    .page-mamoplastia-aumento .tc-how,
    .page-mamoplastia-aumento .tc-gallery,
    .page-mamoplastia-aumento .step-section {
        text-align: center;
    }

    .page-mamoplastia-aumento .tc-benefits,
    .page-mamoplastia-aumento .tc-faq {
        text-align: left;
    }

    .page-mamoplastia-aumento .tc-column--images {
        align-items: center;
    }

    .page-mamoplastia-aumento .tc-how-duration-label--left,
    .page-mamoplastia-aumento .tc-how-duration-label--right {
        text-align: center;
    }

    .page-mamoplastia-aumento .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Lipoaspiração */
    .page-lipoaspiracao .tc-info,
    .page-lipoaspiracao .tc-how,
    .page-lipoaspiracao .tc-gallery,
    .page-lipoaspiracao .step-section {
        text-align: center;
    }

    .page-lipoaspiracao .tc-benefits,
    .page-lipoaspiracao .tc-faq {
        text-align: left;
    }

    .page-lipoaspiracao .tc-column--images {
        align-items: center;
    }

    .page-lipoaspiracao .tc-how-duration-label--left,
    .page-lipoaspiracao .tc-how-duration-label--right {
        text-align: center;
    }

    .page-lipoaspiracao .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Tratamento de Estrias Laser CO₂: alinhamento mobile consistente */
    .page-tratamento-estrias .tc-info,
    .page-tratamento-estrias .tc-how,
    .page-tratamento-estrias .tc-gallery,
    .page-tratamento-estrias .step-section {
        text-align: center;
    }

    .page-tratamento-estrias .tc-benefits,
    .page-tratamento-estrias .tc-faq {
        text-align: left;
    }

    .page-tratamento-estrias .tc-column--images {
        align-items: center;
    }

    .page-tratamento-estrias .tc-how-duration-label--left,
    .page-tratamento-estrias .tc-how-duration-label--right {
        text-align: center;
    }

    .page-tratamento-estrias .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Polinucleótidos corporal */
    .page-polinucleotidos-corporal .tc-info,
    .page-polinucleotidos-corporal .tc-how,
    .page-polinucleotidos-corporal .tc-gallery,
    .page-polinucleotidos-corporal .step-section {
        text-align: center;
    }

    .page-polinucleotidos-corporal .tc-benefits,
    .page-polinucleotidos-corporal .tc-faq {
        text-align: left;
    }

    .page-polinucleotidos-corporal .tc-column--images {
        align-items: center;
    }

    .page-polinucleotidos-corporal .tc-how-duration-label--left,
    .page-polinucleotidos-corporal .tc-how-duration-label--right {
        text-align: center;
    }

    .page-polinucleotidos-corporal .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Microagulhamento com radiofrequência (corporal) */
    .page-microagulhamento-radiofrequencia .tc-info,
    .page-microagulhamento-radiofrequencia .tc-how,
    .page-microagulhamento-radiofrequencia .tc-gallery,
    .page-microagulhamento-radiofrequencia .step-section {
        text-align: center;
    }

    .page-microagulhamento-radiofrequencia .tc-benefits,
    .page-microagulhamento-radiofrequencia .tc-faq {
        text-align: left;
    }

    .page-microagulhamento-radiofrequencia .tc-column--images {
        align-items: center;
    }

    .page-microagulhamento-radiofrequencia .tc-how-duration-label--left,
    .page-microagulhamento-radiofrequencia .tc-how-duration-label--right {
        text-align: center;
    }

    .page-microagulhamento-radiofrequencia .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Mesoterapia corporal (celulite e flacidez) */
    .page-mesoterapia-corporal .tc-info,
    .page-mesoterapia-corporal .tc-how,
    .page-mesoterapia-corporal .tc-gallery,
    .page-mesoterapia-corporal .step-section {
        text-align: center;
    }

    .page-mesoterapia-corporal .tc-benefits,
    .page-mesoterapia-corporal .tc-faq {
        text-align: left;
    }

    .page-mesoterapia-corporal .tc-column--images {
        align-items: center;
    }

    .page-mesoterapia-corporal .tc-how-duration-label--left,
    .page-mesoterapia-corporal .tc-how-duration-label--right {
        text-align: center;
    }

    .page-mesoterapia-corporal .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Laser Vasculight (corporal) */
    .page-laser-vasculight-corporal .tc-info,
    .page-laser-vasculight-corporal .tc-how,
    .page-laser-vasculight-corporal .tc-gallery,
    .page-laser-vasculight-corporal .step-section {
        text-align: center;
    }

    .page-laser-vasculight-corporal .tc-benefits,
    .page-laser-vasculight-corporal .tc-faq {
        text-align: left;
    }

    .page-laser-vasculight-corporal .tc-column--images {
        align-items: center;
    }

    .page-laser-vasculight-corporal .tc-how-duration-label--left,
    .page-laser-vasculight-corporal .tc-how-duration-label--right {
        text-align: center;
    }

    .page-laser-vasculight-corporal .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Laser CO₂ (corporal) */
    .page-laser-co2-corporal .tc-info,
    .page-laser-co2-corporal .tc-how,
    .page-laser-co2-corporal .tc-gallery,
    .page-laser-co2-corporal .step-section {
        text-align: center;
    }

    .page-laser-co2-corporal .tc-benefits,
    .page-laser-co2-corporal .tc-faq {
        text-align: left;
    }

    .page-laser-co2-corporal .tc-column--images {
        align-items: center;
    }

    .page-laser-co2-corporal .tc-how-duration-label--left,
    .page-laser-co2-corporal .tc-how-duration-label--right {
        text-align: center;
    }

    .page-laser-co2-corporal .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* PRP Capilar: mesmo comportamento do Sefiller no mobile */
    .page-prp-capilar .tc-info,
    .page-prp-capilar .tc-how,
    .page-prp-capilar .tc-gallery,
    .page-prp-capilar .step-section {
        text-align: center;
    }

    /* Benefícios + FAQ: manter alinhado à esquerda */
    .page-prp-capilar .tc-benefits,
    .page-prp-capilar .tc-faq {
        text-align: left;
    }

    .page-prp-capilar .tc-column--images {
        align-items: center;
    }

    .page-prp-capilar .tc-how-duration-label--left,
    .page-prp-capilar .tc-how-duration-label--right {
        text-align: center;
    }

    .page-prp-capilar .me-hero-title {
        width: 100%;
        text-align: center;
    }

    /* Microagulhamento: mesmo comportamento do Sefiller no mobile */
    .page-microagulhamento .tc-info,
    .page-microagulhamento .tc-how,
    .page-microagulhamento .tc-gallery,
    .page-microagulhamento .step-section {
        text-align: center;
    }

    /* Benefícios + FAQ: manter alinhado à esquerda */
    .page-microagulhamento .tc-benefits,
    .page-microagulhamento .tc-faq {
        text-align: left;
    }

    .page-microagulhamento .tc-column--images {
        align-items: center;
    }

    .page-microagulhamento .tc-how-duration-label--left,
    .page-microagulhamento .tc-how-duration-label--right {
        text-align: center;
    }

    .page-microagulhamento .me-hero-title {
        width: 100%;
        text-align: center;
    }
    .me-hero-btn {
        display: inline-block;
        padding: 14px 32px;
        border-radius: 0;
        border: 1px solid #FFFFFF;
        font-family: 'Gilda Display', serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #FFFFFF;
        text-decoration: none;
        background-color: transparent;
        transition: background-color 0.2s ease, color 0.2s ease;
    }
}

.me-hero-btn:hover {
    background-color: #FFFFFF;
    color: #00768c;
}

.me-hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.me-hero--fullwidth-image .me-hero-inner {
    position: relative;
    z-index: 2;
}

.me-hero--fullwidth-image .me-hero-content {
    position: relative;
    z-index: 3;
}

.me-hero--fullwidth-image .me-hero-image-wrapper {
    position: absolute;
    /* compensate the base .me-hero padding so image fills full section */
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
    top: -72px;
    bottom: -96px;
    z-index: 0;
    flex: none;
    display: block;
}

.me-hero-image {
    width: 420px;
    max-width: 100%;
    display: block;
}

/* Vídeo testemunho (coluna de imagens — altura contida) */
.page-microagulhamento .tc-testimonial-video {
    display: block;
    width: 100%;
    max-width: 380px;
    max-height: min(500px, 70vh);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    background: transparent;
}

.page-prp-capilar .tc-prp-video-wrap {
    position: relative;
    overflow: hidden;
}

.page-prp-capilar .tc-prp-drive-video {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(500px, 70vh);
    margin: 0 auto;
    object-fit: cover;
    background: #000;
}

.page-prp-capilar .tc-prp-sound-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #1f1f1f;
    background: #ffffff;
    color: #1f1f1f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-prp-capilar .tc-prp-sound-toggle:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.page-prp-capilar .tc-prp-sound-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.me-hero--fullwidth-image .me-hero-image {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover;
}

/* Garantir que o <picture> (usado no MedicinaEstetica) preenche o wrapper */
.me-hero--fullwidth-image .me-hero-image-wrapper picture {
    display: block;
    width: 100vw !important;
    height: 100vh !important;
}

.me-hero--fullwidth-image .me-hero-image-wrapper picture img {
    display: block;
}

.tc-info {
    padding: 96px 24px 120px;
    background-color: #FFFFFF;
}

.tc-info-inner {
    max-width: 1040px;
    margin: 0 auto;
}

.tc-block--center {
    text-align: center;
    margin-bottom: 140px;
}

.tc-title {
    font-family: 'Gilda Display', serif;
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #00768c;
    margin: 0 0 16px;
}

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

.tc-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

.tc-text--center {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.tc-block--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    column-gap: 80px;
}

.tc-column--text .tc-title {
    margin-bottom: 24px;
}

.tc-column--images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tc-image img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 960px) {
    .tc-info {
        padding: 72px 16px 96px;
    }

    .tc-block--center {
        margin-bottom: 80px;
    }

    .tc-block--split {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .tc-title {
        font-size: 24px;
    }
}

.tc-how {
    background-color: #00768c;
    padding: 96px 24px 120px;
}

.tc-how-inner {
    max-width: 880px;
    margin: 0 auto;
}

.tc-how-title {
    font-family: 'Gilda Display', serif;
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 24px;
}

.tc-how-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #FFFFFF;
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: left;
}

.tc-how-block {
    margin-bottom: 56px;
}

.tc-how-block--results {
    margin-bottom: 0;
}

.tc-how-subtitle {
    font-family: 'Gilda Display', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 20px;
}

.tc-how-duration {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 12px;
}

.tc-how-duration-line {
    position: relative;
    height: 2px;
    background-color: #FFFFFF;
}

.tc-how-dot {
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #FFFFFF;
    transform: translateY(-50%);
}

.tc-how-dot--left {
    left: 0;
}

.tc-how-dot--right {
    right: 0;
}

.tc-how-duration-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
}

.tc-how-duration-label--left {
    text-align: left;
}

.tc-how-duration-label--right {
    text-align: right;
}

@media (max-width: 960px) {
    .tc-how {
        padding: 72px 16px 96px;
    }

    .tc-how-title {
        font-size: 26px;
    }

    .tc-how-text {
        margin-bottom: 40px;
    }

    .tc-how-block {
        margin-bottom: 40px;
    }
}

.tc-benefits {
    padding: 80px 24px 120px;
    background-color: #FFFFFF;
}

.tc-benefits-inner {
    max-width: 880px;
    margin: 0 auto;
}

.tc-benefits-card {
    border: 1px solid #00768c;
    background-color: #FFFFFF;
}

.tc-benefits-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    border-bottom: 1px solid #00768c;
}

.tc-benefits-title {
    font-family: 'Gilda Display', serif;
    font-size:35px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00768c;
    margin: 0;
}

.tc-benefits-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00768c;
}

.tc-benefits-body {
    padding: 28px 40px 32px;
}

.tc-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tc-benefits-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
}

.tc-benefits-item + .tc-benefits-item {
    margin-top: 14px;
}

.tc-benefits-bullet {
    flex-shrink: 0;
    width: 18px;
    height: 2px;
    margin-top: 10px;
    background-color: #00768c;
}

@media (max-width: 960px) {
    .tc-benefits {
        padding: 64px 16px 96px;
    }

    .tc-benefits-header {
        padding: 16px 20px;
    }

    .tc-benefits-body {
        padding: 24px 20px 28px;
    }

    .tc-benefits-title {
        font-size: 20px;
    }
}

.tc-faq {
    background-color: #00768c;
    padding: 80px 24px 120px;
}

.tc-faq-inner {
    max-width: 880px;
    margin: 0 auto;
    border-top: 1px solid #FFFFFF;
}

.tc-faq-item {
    border-bottom: 1px solid #FFFFFF;
    padding: 18px 0;
}

.tc-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tc-faq-title {
    font-family: 'Gilda Display', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.tc-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.tc-faq-icon--minus {
    font-family: 'Gilda Display', serif;
    font-size: 20px;
    line-height: 1;
}

.tc-faq-answer {
    margin-top: 16px;
}

.tc-faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #FFFFFF;
    margin: 0;
    max-width: 750px;
}

.tc-faq-item .tc-faq-answer {
    display: none;
}

.tc-faq-item.tc-faq-item--active .tc-faq-answer {
    display: block;
}

@media (max-width: 960px) {
    .tc-faq {
        padding: 64px 16px 96px;
    }

    .tc-faq-inner {
        padding: 0;
    }

    .tc-faq-title {
        font-size: 16px;
    }
}

.tc-gallery {
    background-color: #FFFFFF;
    padding: 96px 24px 140px;
}

.tc-gallery-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.tc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 16px;
}

.tc-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 960px) {
    .tc-gallery {
        padding: 72px 16px 112px;
    }

    .tc-gallery-grid {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }
}

.me-facial {
    padding: 72px 24px 96px;
    background-color: #FFFFFF;
}

.me-facial-inner {
    max-width: 840px;
    margin: 0 auto;
}

.me-facial-title {
    font-family: 'Gilda Display', serif;
    font-size: 37px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #00768c;
    text-align: center;
    margin: 0 0 16px;
}

.me-facial-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}

.me-facial-list {
    border-top: 1px solid #00768c;
}

.me-facial-item {
    display: block;
    padding: 12px 32px;
    font-family: 'Gilda Display', serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #00768c;
    text-decoration: none;
    border-bottom: 1px solid #00768c;
}

.me-facial-item--highlight {
    background-color: #00768c;
    color: #FFFFFF;
    font-weight: 700;
}

.me-facial-item--highlight sub {
    font-size: 0.7em;
}

.me-facial-item:hover {
    background-color: #00768c;
    color: #FFFFFF;
}

@media (max-width: 960px) {
    .me-hero {
        padding: 48px 24px 64px;
    }

    /* MedicinaEstetica full-bleed: overlay e centragem do texto só no mobile */
    .me-hero--fullwidth-image {
        padding: 0;
        min-height: 100vh;
        height: 100vh;
    }

    .page-med-estetica .me-hero--fullwidth-image {
        /* Centrar no espaço realmente visível no mobile (desconta header) */
        min-height: calc(100svh - 84px);
        height: calc(100svh - 84px);
    }

    .me-hero--fullwidth-image::before {
        background: transparent;
    }

    .page-med-estetica .me-hero--fullwidth-image .me-hero-inner {
        display: grid;
        place-items: center;
        min-height: 100%;
        height: 100%;
        width: 100%;
        max-width: none;
        padding: 0 24px;
        position: relative;
        z-index: 2;
    }

    .page-med-estetica .me-hero--fullwidth-image .me-hero-content {
        position: relative;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        z-index: 3;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .page-med-estetica .me-hero--fullwidth-image .me-hero-image-wrapper {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        transform: none;
        z-index: 0;
    }

    .me-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .me-hero-content {
        max-width: none;
    }

    .page-med-estetica .me-hero--fullwidth-image .me-hero-title {
        text-align: center;
        font-size: 32px;
    }

    .page-med-estetica .me-hero--fullwidth-image .me-hero-text {
        max-width: none;
        text-align: center;
    }

    .me-hero-image-wrapper {
        width: 100%;
        justify-content: center;
    }

    .me-hero-image {
        width: 100%;
       
    }

    .me-hero--fullwidth-image .me-hero-image-wrapper {
        left: 50%;
        right: auto;
        width: 100%;
        transform: translateX(-50%);
        top: -48px;
        bottom: -64px;
    }

    .page-med-estetica .me-hero--fullwidth-image .me-hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: none;
    }

    /* Override final: centrar hero mobile de forma determinística */
    .page-med-estetica .me-hero--fullwidth-image {
        position: relative;
        min-height: calc(100svh - 84px) !important;
        height: calc(100svh - 84px) !important;
    }

    .page-med-estetica .me-hero--fullwidth-image .me-hero-inner {
        position: absolute;
        inset: 0;
        display: flex !important;
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 24px !important;
        z-index: 2;
    }

    .page-med-estetica .me-hero--fullwidth-image .me-hero-content {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: min(520px, 100%) !important;
        margin: 0 auto !important;
    }

    .me-facial {
        padding: 56px 16px 72px;
    }

    .me-facial-title {
        font-size: 26px;
    }

    .me-facial-subtitle {
        margin-bottom: 32px;
    }
}

.play-button-container {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.play-button {
    width: 100px;
    height: 100px;
    background-color: #D3D3D3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 6px;
}

.progress-bar-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    z-index: 2;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    border-radius: 1px;
}

.progress-indicator {
    position: absolute;
    left: 12%;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #5FB3B3;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Care Section */
.care-section {
    background-color: #FFFFFF;
    min-height: calc(100vh - 80px);
    padding: 0 24px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.care-inner {
    width: 50%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.care-headline {
    font-family: 'Gilda Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    color: #00768c;
    text-transform: uppercase;
    margin-bottom: 32px;
    text-align: center;
}

.care-paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: #4A4A4A;
    max-width: 640px;
    margin-bottom: 56px;
    text-align: center;
}

.care-segmented {
    display: flex;
    border: 1px solid #00768c;
    border-radius: 0;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.care-segmented-btn {
    font-family: 'Gilda Display', serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #00768c;
    background-color: #FFFFFF;
    border: none;
    border-right: 1px solid #00768c;
    padding: 14px 28px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    text-decoration: none;
}

.care-segmented-btn:last-child {
    border-right: none;
}

.care-segmented-btn:hover {
    background-color: #00768c;
    color: #FFFFFF;
}

/* Why Rejuvemed Section */
.why-section {
    background-color: #00768c;
    padding: 120px 24px 140px;
    text-align: left;
    width: 100%;
    height: 100vh;
}

.why-inner {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.why-headline {
    font-family: 'Gilda Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 32px;
    text-align: center;
}

.why-paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: #FFFFFF;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    text-align: center;
}

.why-paragraph:last-of-type {
    margin-bottom: 56px;
}

.why-features {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.why-feature {
    flex: 1;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-feature-icon {
    width: 56px;
    height: 56px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.why-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.why-feature-title {
    font-family: 'Gilda Display', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-feature-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: #FFFFFF;
    margin: 0;
}

/* Clinics Section */
.clinics-section {
    background-color: #FFFFFF;
    padding: 120px 24px 140px;
    width: 100%;
}

.clinics-inner {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.clinics-content {
    padding-right: 20px;
}

.clinics-headline {
    font-family: 'Gilda Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    color: #00768c;
    text-transform: uppercase;
    margin-bottom: 32px;
    text-align: left;
}

.clinics-paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: #4A4A4A;
    margin-bottom: 20px;
    text-align: left;
}

.clinics-paragraph:last-of-type {
    margin-bottom: 36px;
}

.clinics-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.clinics-btn {
    font-family: 'Gilda Display', serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 0px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.clinics-btn--outline {
    background-color: transparent;
    color: #00768c;
    border: 1px solid #00768c;
}

.clinics-btn--outline:hover {
    background-color: #00768c;
    color: #FFFFFF;
}

.clinics-btn--filled {
    background-color: #00768c;
    color: #FFFFFF;
    border: 2px solid #00768c;
}

.clinics-btn--filled:hover {
    background-color: #006a7a;
    border-color: #006a7a;
}

.clinics-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.clinics-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.clinics-img--top {
    max-height: 280px;
    object-fit: cover;
}

.clinics-img--bottom {
    max-height: 320px;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #00768c;
    padding: 100px 24px 120px;
    width: 100%;
    text-align: center;
}

.testimonials-subtitle {
    font-family: 'Gilda Display', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.testimonials-headline {
    font-family: 'Gilda Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0 0 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e8e8e8;
    border: none;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.testimonials-arrow:hover {
    background-color: #fff;
    color: #00768c;
}

.testimonials-arrow svg {
    width: 24px;
    height: 24px;
}

.testimonials-viewport {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.testimonials-viewport::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 8px 0;
}

.testimonials-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 300px;
    max-width: 420px;
    height: auto;
    min-height: 35vh;
    scroll-snap-align: start;
    background-color: #FFFFFF;
    padding: 28px 24px;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.testimonials-quote {
    font-family: 'Gilda Display', serif;
    font-size: 64px;
    line-height: 1;
    color: #00768c;
    position: absolute;
    top: 16px;
    right: 20px;
    left: auto;
}

.testimonials-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0 0 20px;
}

.testimonials-name {
    font-family: 'Gilda Display', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #00768c;
    margin: auto 0 4px;
}

.testimonials-treatment {
    font-family: 'Gilda Display', serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #888;
    margin: 0;
}

/* Campaigns Section */
.campaigns-section {
    background-color: #FFFFFF;
    padding: 100px 24px 120px;
    width: 100%;
    text-align: center;
}

.campaigns-headline {
    font-family: 'Gilda Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    color: #00768c;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.campaigns-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0 auto 56px;
    max-width: 560px;
}

.campaigns-carousel {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.campaigns-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #00768c;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, opacity 0.2s;
}

.campaigns-arrow:hover {
    background-color: #006a7a;
}

.campaigns-arrow svg {
    width: 24px;
    height: 24px;
}

.campaigns-viewport {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.campaigns-viewport::-webkit-scrollbar {
    display: none;
}

.campaigns-track {
    display: flex;
    gap: 24px;
    padding: 8px 0;
}

.campaigns-card {
    flex: 0 0 calc(55% - 12px);
    min-width: 280px;
    max-width: 380px;
    scroll-snap-align: start;
    background-color: #FFFFFF;
    text-align: center;
}

.campaigns-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.campaigns-card-content {
    padding: 20px 16px 24px;
}

.campaigns-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 8px;
}

.campaigns-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #2a2a2a;
    margin: 0;
}

/* Step CTA Section */
.step-section {
    width: 100%;
    min-height: 56vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 24px;
    text-align: center;
}

.step-inner {
    max-width: 820px;
    margin: 0 auto;
}

.step-headline {
    font-family: 'Gilda Display', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.3;
    color: #00768c;
    text-transform: uppercase;
    margin: 0 0 48px;
}

.step-btn {
    font-family: 'Gilda Display', serif;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-block;
    padding: 18px 40px;
    background-color: #00768c;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    border-radius: 0;
    transition: background-color 0.2s;
}

.step-btn:hover {
    background-color: #006a7a;
}

/* Footer */
.site-footer {
    background-color: #00768c;
    width: 100%;
    padding: 72px 40px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-column {
    text-align: left;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #f5f5f5;
    margin: 0 0 20px;
}

.footer-heading--sub {
    margin-top: 28px;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #f5f5f5;
    margin: 0 0 6px;
}

.footer-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(245, 245, 245, 0.85);
    margin: 0 0 12px;
}

.footer-link {
    color: #f5f5f5;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-social-link {
    color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-link:hover {
    opacity: 0.85;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #00768c;
    background-color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding: 20px 24px;
    width: 100vw;
    box-sizing: border-box;
    margin-left: calc(50% - 50vw);
}

/* Form Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #FFFFFF;
    border: 1px solid #00768c;
    border-radius: 8px;
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 16px;
}

.modal-title {
    font-family: 'Gilda Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #00768c;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #00768c;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    opacity: 0.8;
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-body {
    padding: 0 24px 24px;
}

.form-appointment .form-row {
    margin-bottom: 20px;
}

.form-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #333333;
    padding: 8px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333;
    background: transparent;
    outline: none;
}

.form-input:focus {
    border-bottom-color: #00768c;
}

.form-phone-fields {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 14px;
    align-items: end;
}

@media (max-width: 640px) {
    .form-phone-fields {
        grid-template-columns: 140px 1fr;
        gap: 10px;
    }

    .form-row--half {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300768c' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #00768c;
}

.form-helper {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 24px;
    line-height: 1.5;
}

.form-submit {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 14px 24px;
    font-family: 'Gilda Display', serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    background-color: #00768c;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.form-submit:hover {
    background-color: #006a7a;
}

/* Obrigado / Confirmation page */
.obrigado-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    padding: 80px 24px;
    text-align: center;
}

.obrigado-inner {
    max-width: 560px;
    margin: 0 auto;
}

.obrigado-headline {
    font-family: 'Gilda Display', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #00768c;
    text-transform: uppercase;
    margin: 0 0 28px;
}

.obrigado-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 36px;
}

.obrigado-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Gilda Display', serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #00768c;
    background-color: #FFFFFF;
    border: 1px solid #00768c;
    border-radius: 0px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.obrigado-btn:hover {
    background-color: #00768c;
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
        margin: 0 20px;
    }

    .nav-item {
        font-size: 11px;
    }
}

@media (max-width: 968px) {
    .hero-video--desktop {
        display: none;
    }

    .hero-video--mobile {
        display: block;
    }

    .header {
        padding: 20px 24px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1000;
    }

    .brand {
        flex: 1;
        justify-content: flex-start;
    }

    .brand-logo {
        width: auto;
        max-width: 180px;
        height: 44px;
    }

    .menu-toggle {
        display: block;
        flex-shrink: 0;
        order: 2;
    }

    .nav-menu,
    .header-right {
        display: none;
    }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    body.mobile-menu-open .mobile-nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 84px);
        background: #FFFFFF;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    body.mobile-menu-open .mobile-nav {
        transform: translateX(0);
    }

    .mobile-nav-inner {
        padding: 24px 0 32px;
    }

    .mobile-nav-group {
        border-bottom: 1px solid #e0e0e0;
    }

    .mobile-nav-link--parent {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        padding: 16px 24px;
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: #00768c;
        cursor: pointer;
    }

    .mobile-nav-submenu {
        display: none;
        background-color: #ffffff;
    }

    .mobile-nav-group.is-open .mobile-nav-submenu {
        display: block;
    }

    .mobile-nav-subitem {
        display: block;
        padding: 12px 40px;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #00768c;
        text-decoration: none;
        border-top: 1px solid #e0e0e0;
    }

    .mobile-nav-subitem:hover {
        background-color: #00768c;
        color: #ffffff;
    }

    .mobile-nav-link {
        display: block;
        padding: 16px 24px;
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: #00768c;
        text-decoration: none;
        border-bottom: 1px solid #e0e0e0;
        transition: background-color 0.2s, color 0.2s;
    }

    .mobile-nav-link--active {
        background-color: #00768c;
        color: #FFFFFF;
    }

    .mobile-nav-search {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 20px 24px;
        margin-top: 8px;
        border-top: 1px solid #e0e0e0;
    }

    .mobile-nav-search-icon {
        width: 20px;
        height: 20px;
        color: #00768c;
        flex-shrink: 0;
    }

    .mobile-nav-search-icon svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
    }

    .mobile-nav-search-input {
        flex: 1;
        border: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 8px 0;
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        color: #333;
        background: transparent;
        outline: none;
    }

    .care-section {
        text-align: center;
        padding: 0 16px;
    }

    .care-headline,
    .care-paragraph {
        text-align: center;
    }

    .care-segmented {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        width: 100%;
    }

    .care-segmented-btn {
        font-size: 13px;
        padding: 12px 18px;
    }

    .care-inner {
        width: 100%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

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

    .why-inner {
        width: 100%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .why-headline,
    .why-paragraph {
        text-align: center;
    }

    .why-features {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        overflow: hidden;
        scroll-behavior: smooth;
    }

    .why-feature {
        flex: 0 0 100%;
        min-width: 100%;
        margin-top: 24px;
        padding: 0 8px;
        box-sizing: border-box;
    }

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

    .clinics-content {
        padding-right: 0;
    }

    .clinics-headline,
    .clinics-paragraph {
        text-align: center;
    }

    .clinics-buttons {
        align-items: center;
    }

    .clinics-img--top,
    .clinics-img--bottom {
        max-height: none;
    }

    .testimonials-headline {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .testimonials-carousel {
        flex-direction: row;
        gap: 12px;
    }

    .testimonials-arrow {
        width: 30px;
        height: 30px;
    }

    .testimonials-card {
        flex: 0 0 92%;
        min-width: 260px;
    }

    .campaigns-headline {
        font-size: 32px;
    }

    .campaigns-subtitle {
        margin-bottom: 40px;
    }

    .campaigns-card {
        flex: 0 0 85%;
        min-width: 260px;
    }

    .step-headline {
        font-size: 28px;
    }

    .step-section {
        min-height: 50vh;
        padding: 80px 20px;
    }

    .obrigado-headline {
        font-size: 28px;
    }

    .obrigado-section {
        padding: 60px 20px;
    }

    .site-footer {
        padding: 56px 24px 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .footer-copyright {
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* Contact Page */
.contact-page {
    background-color: #FFFFFF;
    width: 100%;
}

.contact-hero {
    padding: 80px 24px 40px;
    text-align: center;
}

.contact-title {
    font-family: 'Gilda Display', serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
    color: #00768c;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 18px;
}

.contact-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #00768c;
    margin: 0;
}

.contact-map {
    padding: 0 24px 60px;
}

.contact-map-frame {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 320px;
}

.contact-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-map-overlay {
    position: absolute;
    left: 50%;
    /* metade dentro e metade fora do mapa (sobe acima do frame) */
    top: -52px;
    transform: translateX(-50%);
    width: 480px;
    background-color: #00768c;
    border-radius: 14px;
    padding: 18px 26px 20px;
}

.contact-map-overlay-kicker {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.contact-map-overlay-title {
    font-family: 'Gilda Display', serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.contact-map-overlay-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
}

.contact-cards {
    padding: 20px 24px 120px;
}

.contact-cards-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.contact-card-title {
    font-family: 'Gilda Display', serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #00768c;
    letter-spacing: 0.04em;
    margin: 0 0 14px;
}

.contact-card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333333;
    margin: 0 0 4px;
    line-height: 1.5;
}

.contact-card-link {
    color: #333333;
    text-decoration: none;
}

.contact-card-link:hover {
    text-decoration: underline;
}

.contact-card-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.55);
    margin: 0 0 10px;
}

.contact-card-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333333;
    margin: 16px 0 0;
    line-height: 1.5;
}

@media (max-width: 960px) {
    .contact-hero {
        padding: 72px 16px 34px;
    }

    .contact-title {
        font-size: 34px;
    }

    .contact-map-frame {
        height: 260px;
    }

    .contact-map-overlay {
        width: calc(100% - 32px);
        padding: 16px 18px;
        top: -26px;
    }

    .contact-cards-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contact-cards {
        padding: 0 16px 72px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 60vh;
    }
}

.page-politica-privacidade .tc-info {
    background: #f7f8f9;
    padding-top: 72px;
    padding-bottom: 88px;
}

.page-politica-privacidade .privacy-inner {
    max-width: 980px;
}

.page-politica-privacidade .privacy-intro {
    margin-bottom: 56px;
}

.page-politica-privacidade .privacy-intro .tc-title {
    margin-bottom: 20px;
}

.page-politica-privacidade .privacy-card {
    background: #ffffff;
    border: 1px solid #d9e5e7;
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 16px;
}

.page-politica-privacidade .privacy-card .tc-title {
    font-size: 26px;
    margin-bottom: 10px;
}

.page-politica-privacidade .privacy-card .tc-text {
    margin: 0;
}

.page-politica-privacidade .privacy-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #233334;
}

.page-politica-privacidade .tc-text a {
    color: #233334;
    text-decoration: underline;
}

.page-politica-privacidade .tc-text a:hover {
    color: #00768c;
}

@media (max-width: 960px) {

    .page-politica-privacidade .tc-info {
        padding-top: 48px;
        padding-bottom: 64px;
    }

    .page-politica-privacidade .privacy-card {
        padding: 18px 18px;
    }

    .page-politica-privacidade .privacy-card .tc-title {
        font-size: 22px;
    }

    .page-politica-privacidade .privacy-list {
        font-size: 15px;
        line-height: 1.6;
    }
}
