/* =========================================================
   STYLE.CSS LIMPO E CORRIGIDO
   Dra. Daniela Gregório
   Arquivo consolidado a partir do CSS enviado.
   Repetições do mesmo seletor foram unificadas mantendo os valores finais.
   ========================================================= */


/* =========================
   Regras gerais
   ========================= */

:root {
    --clr-bg: #ddd6c7;
    --clr-bg-alt: #E4DFD5;
    --clr-primary: #7a2d35;
    --clr-primary-dark: #5A1E24;
    --clr-primary-light: #9A414A;
    --clr-text-main: #1d1d1c;
    --clr-text-light: #6A6A6A;
    --clr-white: #ffffff;
    --font-heading: "Cormorant Garamond", serif;
    --font-hero: "Marcellus", serif;
    --font-body: "Montserrat", sans-serif;
    --container-width: 1200px;
    --shadow-soft: 0 10px 30px rgba(48, 66, 84, 0.08);
    --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

section {
    background-color: var(--clr-bg);
}

.container {
    max-width: 1200px;
    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: var(--clr-primary);
    font-weight: 400;
    line-height: 0.95;
}

.title-line {
    width: 100%;
    max-width: 330px;
    height: 1px;
    background-color: rgba(122, 45, 53, 0.65);
}

.header {
    background-color: transparent;
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--clr-text-main);
    letter-spacing: 1px;
    line-height: 0.9;
    white-space: nowrap;
}

.logo-subtext {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 0.3rem;
}

.logo-subtext .line {
    flex: 1;
    height: 1px;
    background-color: var(--clr-primary);
}

.logo-subtext .text {
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--clr-text-main);
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 2.6rem;
    align-items: center;
}

.nav a {
    color: var(--clr-text-main);
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a:hover {
    color: var(--clr-primary);
}

.header-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-btn {
    width: 44px;
    height: 44px;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.social-btn:hover {
    transform: scale(1.08);
    background-color: var(--clr-primary-dark);
}

.btn, .btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr-primary-dark);
    color: var(--clr-white);
    border-radius: 999px;
    border: 0;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.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:hover, .btn-pill:hover {
    background-color: var(--clr-primary);
    transform: translateY(-2px);
    color: var(--clr-white);
}

.planejamento-banner {
    background-color: var(--clr-white);
    padding: 3rem 0;
    margin-bottom: 0;
}

.planejamento-banner p {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    font-weight: 400;
    line-height: 1.7;
}

.section-divider, .white-band, div.fade-in-up[style*="background-color: var(--clr-white)"] {
    width: 100% !important;
    height: 10px !important;
    min-height: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: var(--clr-white) !important;
    border-top: 2px solid #d8d0bf !important;
    overflow: hidden !important;
    display: block !important;
}

.white-band *, div.fade-in-up[style*="background-color: var(--clr-white)"] *, .section-subtitle-spaced, .sobre-subtitle {
    display: none !important;
}

.procedimentos-cards {
    background-color: var(--clr-bg);
    padding: 0.5rem 0 2rem;
    overflow: hidden;
}

.procedimentos-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 1.2rem;
    align-items: stretch;
}

.procedimentos-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem 0 0.5rem;
    overflow: hidden;
    min-width: 0;
}

.procedimentos-header {
    text-align: left;
    margin-bottom: 1rem;
}

.procedimentos-title {
    font-size: 3.1rem;
    margin: 0 0 0.3rem;
}

.procedimentos-subtitle {
    font-family: var(--font-body);
    color: var(--clr-primary);
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
}

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

.procedimentos-track .proc-card:hover, .cards-track .proc-card:hover {
    transform: translateY(-5px);
}

.procedimentos-btn {
    align-self: flex-start;
    margin-top: 1.5rem;
    padding: 0 2rem;
    min-width: 190px;
    height: 42px;
    font-size: 0.9rem;
    line-height: 42px;
}

.procedimentos-image-box {
    background: var(--clr-primary);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 355px;
    max-height: 355px;
}

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

.cards-grid {
    display: none !important;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.image-comparison-slider img {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.image-after-container {
    position: absolute;
    inset: 0 auto auto 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.image-after-container img {
    max-width: none;
    height: 100%;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--clr-white);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
}

.slider-handle-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    background-color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.localizacao-image {
    flex: 0 0 520px;
    width: 520px;
    height: calc(100% - 36px);
    position: relative;
    overflow: hidden;
    margin-left: -16rem;
}

.clinic-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

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

.carousel-item.active {
    opacity: 1;
}

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

.localizacao-text {
    flex: 1;
    height: calc(100% - 36px);
    padding-left: 1.4rem;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.localizacao-text .section-title-large {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    font-size: 4.2rem;
    line-height: 0.95;
    font-weight: 400;
    margin-bottom: 2rem;
}

.info-title {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.info-text {
    color: var(--clr-text-main);
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 0;
    white-space: nowrap;
}

.localizacao-text .btn, .localizacao-text .btn-pill, .localizacao-text .btn-primary {
    align-self: flex-start;
    min-width: 250px;
    height: 54px;
    padding: 0 2rem;
    font-size: 1rem;
    line-height: 54px;
    margin-top: 3rem;
}

.footer {
    background-color: #3e3e3e;
    color: var(--clr-white);
    padding: 3.5rem 0 0;
}

.footer .container {
    max-width: 1500px;
}

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

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

.logo-footer {
    margin-left: -11rem;
    width: max-content;
    text-align: center;
}

.logo-footer .logo-text {
    color: var(--clr-white);
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

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

.logo-footer .text {
    color: var(--clr-white);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.logo-footer .line {
    display: none;
}

.footer-col-2 {
    justify-self: center;
    max-width: 650px;
    width: 100%;
    margin-left: 8rem;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--clr-white);
    line-height: 1.35;
    margin: 0 0 1.5rem;
    max-width: 650px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 4rem;
}

.footer-list li {
    color: var(--clr-white);
    font-size: 0.95rem;
    line-height: 1.35;
    margin-bottom: 0.25rem;
    break-inside: avoid;
    white-space: nowrap;
}

.footer-col-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 11rem;
    min-width: 280px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

.footer-col-3 p {
    color: var(--clr-white);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.footer-bottom {
    background: linear-gradient(to right, #3e3e3e, #2a2a2a, #3e3e3e);
    padding: 1.2rem 0;
    text-align: center;
    font-size: 0.95rem;
    color: var(--clr-white);
    font-weight: 600;
    margin-top: 2.5rem;
}

.floating-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-glow-wa 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}

.fade-in, .fade-in-up, .slide-in-left, .slide-in-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    transition: opacity 1.2s ease;
}

.fade-in-up {
    transform: translateY(30px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

.in-view {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.sobre-title {
    margin: 0 0 0.15rem;
    color: var(--clr-primary);
    text-align: left;
    margin-top: 1.2rem !important;
    font-size: 3rem !important;
    line-height: 0.95 !important;
}

.sobre-name {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    line-height: 1.05;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.45rem;
    font-size: 1.45rem !important;
    margin-bottom: 0.55rem !important;
}

.sobre-text .title-line {
    width: 300px;
    max-width: 300px;
    margin: 0 0 1.15rem;
    margin-bottom: 1.4rem !important;
}

.sobre-text p {
    color: var(--clr-text-main);
    font-weight: 400;
    text-align: left;
    max-width: 1050px !important;
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
    margin-bottom: 1rem !important;
}

.sobre-text .btn-pill {
    align-self: flex-start;
    min-width: 190px;
    margin-top: 0.6rem !important;
    height: 42px !important;
    line-height: 42px !important;
    padding: 0 2rem !important;
    font-size: 0.88rem !important;
}

.sobre {
    min-height: 430px !important;
    height: 430px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    overflow: hidden !important;
    background-color: var(--clr-bg);
}

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

.sobre-image {
    justify-content: flex-start;
    align-items: flex-start;
    width: 360px !important;
    height: 100% !important;
    margin-left: -2rem !important;
    align-self: stretch !important;
    display: block !important;
    overflow: hidden !important;
}

.sobre-image-box {
    flex-shrink: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    border-radius: 0 18px 18px 0 !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

.sobre-image-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

.sobre-text {
    margin-left: 0rem;
    width: 100% !important;
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
    height: 100% !important;
    max-width: 1050px !important;
    padding: 2rem 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.procedimentos-carousel {
    width: 100%;
    margin-top: 1rem;
    position: relative;
    height: 230px !important;
    overflow: hidden !important;
}

.procedimentos-track, .cards-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content;
    animation: procedimentosScroll 38s linear infinite;
    height: 230px !important;
    gap: 1.1rem !important;
    align-items: stretch !important;
}

.procedimentos-track .proc-card, .cards-track .proc-card {
    background: var(--clr-white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: var(--transition);
    flex-basis: 160px !important;
    flex: 0 0 210px !important;
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
    height: 230px !important;
    min-height: 230px !important;
    max-height: 230px !important;
    padding: 0.9rem 0.85rem !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

.procedimentos-track .card-title, .cards-track .card-title {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    text-transform: uppercase;
    font-size: 0.56rem !important;
    line-height: 1.12 !important;
    letter-spacing: 0.2px !important;
    margin: 0 0 0.55rem 0 !important;
}

.procedimentos-track .proc-card p, .cards-track .proc-card p {
    color: var(--clr-text-main);
    font-size: 0.44rem !important;
    line-height: 1.22 !important;
    margin: 0 !important;
}

.proc-card-masculino {
    padding: 0.8rem 0.8rem !important;
}

.proc-card-masculino .card-title {
    font-size: 0.52rem !important;
    line-height: 1.05 !important;
    margin-bottom: 0.45rem !important;
}

.proc-card-masculino p {
    font-size: 0.36rem !important;
}

.resultados {
    background-color: var(--clr-bg);
    overflow: hidden;
    padding: 2rem 0 3rem !important;
}

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

.resultados .sobre-title {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    line-height: 0.95;
    font-weight: 400;
    text-align: center;
    font-size: 3.4rem !important;
    margin-bottom: 0.6rem !important;
}

.resultados .text-center > p {
    color: var(--clr-primary);
    max-width: 980px;
    margin: 0 auto;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
}

.sliders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem !important;
    gap: 2.5rem !important;
}

.image-comparison-slider {
    position: relative;
    width: 100%;
    cursor: ew-resize;
    user-select: none;
    height: 380px !important;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--clr-bg);
    height: 760px !important;
    min-height: 760px !important;
}

.hero-image {
    overflow: hidden;
    width: 100% !important;
    height: 100% !important;
}

.hero-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
}

.proc-card .card-title, .proc-card h4 {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0.4px !important;
    margin-bottom: 1rem !important;
}

.proc-card p {
    font-size: 0.62rem !important;
    line-height: 1.45 !important;
    margin: 0 !important;
}

.proc-card {
    background: #f8f8f8;
    border-radius: 22px !important;
    overflow: hidden;
    padding: 2rem 1.7rem !important;
    min-height: 250px !important;
}

.procedimentos-cards .procedimentos-track .proc-card p, .procedimentos-cards .cards-track .proc-card p, .procedimentos-cards .procedimentos-track .proc-card p *, .procedimentos-cards .cards-track .proc-card p *, .procedimentos-cards .procedimentos-track .proc-card div:not(.card-title), .procedimentos-cards .cards-track .proc-card div:not(.card-title), .procedimentos-cards .procedimentos-track .proc-card span, .procedimentos-cards .cards-track .proc-card span {
    font-size: 1rem !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.procedimentos-cards .procedimentos-track .proc-card .card-title, .procedimentos-cards .cards-track .proc-card .card-title, .procedimentos-cards .procedimentos-track .proc-card h4, .procedimentos-cards .cards-track .proc-card h4 {
    font-size: 1.20rem !important;
    line-height: 1.12 !important;
    letter-spacing: 0.4px !important;
    margin-bottom: 0.55rem !important;
}

.procedimentos-cards .procedimentos-track .proc-card, .procedimentos-cards .cards-track .proc-card {
    border-radius: 24px !important;
    padding: 1.15rem 1.15rem !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.procedimentos-cards .proc-card, .procedimentos-track .proc-card, .cards-track .proc-card {
    background: #fff;
    border-radius: 28px !important;
    overflow: hidden !important;
}


/* =========================
   Animações / At-rules
   ========================= */

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

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

@keyframes pulse-glow-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

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

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


@media (max-width: 1200px) {

    .nav {
        gap: 1.6rem;
    }

    .logo-text {
        font-size: 2.45rem;
    }

    .logo-subtext .text {
        font-size: 0.76rem;
    }

}


@media (max-width: 992px) {

    .nav {
        display: none;
    }

    .header-social {
        display: none;
    }

    .header-container {
        justify-content: center;
    }

    .sobre-title, .sobre-name, .sobre-text p {
        text-align: center;
    }

    .sobre-text .title-line {
        margin-left: auto;
        margin-right: auto;
    }

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

    .procedimentos-layout {
        grid-template-columns: 1fr;
    }

    .procedimentos-image-box {
        display: none;
    }

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

    .procedimentos-btn {
        align-self: center;
    }

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

    .localizacao-container {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }

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

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

    .info-text {
        white-space: normal;
        text-align: center;
    }

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

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

    .logo-footer, .footer-col-2, .footer-col-3 {
        margin-left: 0;
    }

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

    .sobre {
        height: auto !important;
        min-height: auto !important;
        padding: 2.5rem 0 3rem !important;
        display: block !important;
        overflow: hidden !important;
        background-color: var(--clr-bg) !important;
    }

    .sobre-container {
        grid-template-columns: 1fr;
        padding-top: 2rem;
        padding-bottom: 2rem;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        padding: 0 1.2rem !important;
        gap: 2rem !important;
    }

    .sobre-image {
        width: 100% !important;
        max-width: 340px !important;
        height: auto !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: visible !important;
    }

    .sobre-image-box {
        width: 100% !important;
        max-width: 340px !important;
        height: 390px !important;
        margin: 0 auto !important;
        border-radius: 22px !important;
        overflow: hidden !important;
        box-shadow: none !important;
    }

    .sobre-image-box img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
        display: block !important;
    }

    .sobre-text {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
        transform: none !important;
    }

    .sobre-title {
        font-size: 3.2rem !important;
        line-height: 1 !important;
        margin: 0 0 0.3rem !important;
        text-align: center !important;
    }

    .sobre-name {
        font-size: 1.2rem !important;
        line-height: 1.2 !important;
        margin: 0 0 0.8rem !important;
        text-align: center !important;
    }

    .sobre-text .title-line, .sobre .title-line {
        width: 260px !important;
        max-width: 260px !important;
        height: 1px !important;
        margin: 0 auto 1.5rem !important;
    }

    .sobre-text p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
        text-align: center !important;
        margin: 0 0 1.2rem !important;
    }

    .sobre-text .btn-pill, .sobre .btn-pill {
        align-self: center !important;
        min-width: 220px !important;
        height: auto !important;
        line-height: 1.2 !important;
        padding: 0.95rem 1.8rem !important;
        font-size: 0.95rem !important;
        margin-top: 0.5rem !important;
    }

}


@media (max-width: 768px) {

    .section-divider, .white-band, div.fade-in-up[style*="background-color: var(--clr-white)"] {
        height: 8px !important;
        min-height: 8px !important;
        border-top-width: 1px !important;
    }

    .footer .container {
        padding: 0 1.2rem;
    }

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

    body {
        overflow-x: hidden !important;
    }

    .container {
        max-width: 100% !important;
        padding-left: 1.1rem !important;
        padding-right: 1.1rem !important;
    }

    .header-right, .nav, .header-social {
        display: none !important;
    }

    .planejamento-banner .btn-pill, .planejamento-banner .btn {
        max-width: 90% !important;
        font-size: 0.85rem !important;
    }

    .sobre-text .btn-pill {
        align-self: center !important;
    }

    .procedimentos-cards {
        height: auto !important;
        min-height: auto !important;
        padding: 2.5rem 0 3rem !important;
        display: block !important;
    }

    .procedimentos-layout {
        display: block !important;
        padding: 0 1.15rem !important;
        height: auto !important;
    }

    .procedimentos-content {
        height: auto !important;
        padding: 0 !important;
    }

    .procedimentos-header {
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }

    .procedimentos-title {
        font-size: 2.8rem !important;
        text-align: center !important;
    }

    .procedimentos-subtitle {
        font-size: 0.9rem !important;
        text-align: center !important;
    }

    .procedimentos-carousel {
        height: 190px !important;
        overflow: hidden !important;
    }

    .procedimentos-track, .cards-track {
        height: 190px !important;
        gap: 1.1rem !important;
        animation-duration: 34s !important;
    }

    .procedimentos-track .proc-card, .cards-track .proc-card {
        flex: 0 0 185px !important;
        width: 185px !important;
        min-width: 185px !important;
        max-width: 185px !important;
        height: 185px !important;
        min-height: 185px !important;
        max-height: 185px !important;
        padding: 1.1rem 0.95rem !important;
        text-align: left !important;
    }

    .procedimentos-track .card-title, .cards-track .card-title {
        font-size: 0.68rem !important;
        line-height: 1.15 !important;
    }

    .procedimentos-track .proc-card p, .cards-track .proc-card p {
        font-size: 0.58rem !important;
        line-height: 1.28 !important;
    }

    .procedimentos-btn {
        align-self: center !important;
        margin: 1.5rem auto 0 !important;
    }

    .procedimentos-image-box {
        display: none !important;
    }

    .resultados {
        padding: 2.5rem 0 3rem !important;
    }

    .resultados .sobre-title {
        font-size: clamp(3rem, 15vw, 4rem) !important;
    }

    .resultados .text-center > p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        padding: 0 1rem !important;
    }

    .sliders-grid {
        grid-template-columns: 1fr !important;
        max-width: 340px !important;
        gap: 1.7rem !important;
        margin: 2rem auto 0 !important;
    }

    .image-comparison-slider {
        height: 330px !important;
    }

    .info-title {
        font-size: 1.35rem !important;
        text-align: center !important;
    }

    .info-text {
        font-size: 0.9rem !important;
        line-height: 1.45 !important;
        text-align: center !important;
        white-space: normal !important;
    }

    .logo-footer, .footer-col-2, .footer-col-3 {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-list li, .footer-col-3 p {
        white-space: normal !important;
        font-size: 0.9rem !important;
    }

    .floating-whatsapp {
        width: 52px !important;
        height: 52px !important;
        right: 14px !important;
        bottom: 14px !important;
    }

    .nav {
        display: none !important;
    }

    .hero {
        height: 220px !important;
        min-height: 220px !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        background-color: var(--clr-bg) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-image {
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-image img {
        width: 145% !important;
        max-width: none !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center center !important;
        display: block !important;
        transform: translateX(1.05rem) translateY(-0rem) !important;
    }

    .header {
        position: relative !important;
        background-color: var(--clr-bg) !important;
        padding: 0.9rem 0 0.35rem !important;
    }

    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        padding: 0 1.2rem !important;
        align-items: center !important;
    }

    .logo {
        align-items: flex-start !important;
        max-width: 52% !important;
        overflow: visible !important;
    }

    .logo-text {
        text-align: center !important;
        font-size: 1.45rem !important;
        line-height: 0.9 !important;
        letter-spacing: 0.4px !important;
        white-space: nowrap !important;
    }

    .logo-subtext {
        margin-top: 0.22rem !important;
        gap: 0.35rem !important;
    }

    .logo-subtext .text {
        font-size: 0.46rem !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
    }

    .logo-subtext .line {
        min-width: 34px !important;
        max-width: 52px !important;
    }

    .header-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 0.45rem !important;
    }

    .header-social {
        display: flex !important;
        gap: 0.45rem !important;
    }

    .social-btn {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        font-size: 0.95rem !important;
    }

    .planejamento-banner {
        padding: 2.2rem 1rem 2.6rem !important;
        background-color: #ffffff !important;
        text-align: center !important;
    }

    .planejamento-banner p {
        width: 100% !important;
        max-width: 520px !important;
        margin: 0 auto 2rem !important;
        font-size: 1.02rem !important;
        line-height: 1.45 !important;
        font-weight: 400 !important;
        color: #777777 !important;
        text-align: center !important;
        letter-spacing: 0 !important;
    }

    .planejamento-banner .btn, .planejamento-banner .btn-pill {
        background-color: var(--clr-primary) !important;
        color: #ffffff !important;
        width: 88% !important;
        max-width: 460px !important;
        height: 58px !important;
        min-height: 58px !important;
        padding: 0 1.5rem !important;
        border-radius: 999px !important;
        font-size: 0.95rem !important;
        line-height: 1.15 !important;
        font-weight: 700 !important;
        white-space: normal !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }

    .footer .container, .footer-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1.4rem !important;
        padding-right: 1.4rem !important;
        margin: 0 auto !important;
    }

    .footer-col-1, .logo-footer {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .footer-col-2 {
        width: 100% !important;
        max-width: 520px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .footer-list {
        columns: 1 !important;
        column-gap: 0 !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .footer-col-3 {
        width: 100% !important;
        max-width: 520px !important;
        margin: 0 auto !important;
        text-align: center !important;
        align-items: center !important;
    }

    .footer {
        padding: 3.2rem 0 0 !important;
        background-color: #3e3e3e !important;
        text-align: center !important;
        padding-top: 2.6rem !important;
        overflow: hidden !important;
    }

    .footer-container {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.9rem !important;
        margin-bottom: 2rem !important;
    }

    .logo-footer .logo-text {
        width: 100% !important;
        color: #ffffff !important;
        font-size: clamp(2.15rem, 9.2vw, 2.75rem) !important;
        line-height: 0.9 !important;
        letter-spacing: 0.2px !important;
        white-space: nowrap !important;
        text-align: center !important;
        max-width: 94vw !important;
        overflow: visible !important;
    }

    .logo-footer .logo-subtext {
        justify-content: center !important;
        width: 100% !important;
        margin-top: 0.55rem !important;
    }

    .logo-footer .text {
        color: #ffffff !important;
        white-space: nowrap !important;
        font-size: 0.62rem !important;
        letter-spacing: 1.6px !important;
    }

    .footer-desc {
        margin: 0 auto 1.8rem !important;
        color: #ffffff !important;
        text-align: center !important;
        font-size: 0.92rem !important;
        line-height: 1.38 !important;
        max-width: 92vw !important;
        margin-bottom: 1.4rem !important;
    }

    .footer-list li {
        color: #ffffff !important;
        white-space: normal !important;
        text-align: center !important;
        font-size: 0.9rem !important;
        line-height: 1.45 !important;
        margin-bottom: 0.2rem !important;
    }

    .footer-title {
        margin: 0 0 1.8rem !important;
        color: #ffffff !important;
        text-align: center !important;
        font-size: 2.25rem !important;
        line-height: 1 !important;
        margin-bottom: 1.2rem !important;
    }

    .footer-col-3 p {
        color: #ffffff !important;
        text-align: center !important;
        font-size: 0.9rem !important;
        line-height: 1.35 !important;
        margin-bottom: 0.8rem !important;
        white-space: nowrap !important;
    }

    .footer-bottom {
        font-size: 0.8rem !important;
        background: linear-gradient(to right, #3e3e3e, #2a2a2a, #3e3e3e) !important;
        text-align: center !important;
        margin-top: 1.6rem !important;
        padding: 1rem 0.5rem 1.2rem !important;
    }

    .footer-bottom p {
        margin: 0 auto !important;
        color: #ffffff !important;
        text-align: center !important;
        font-size: 0.58rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        max-width: 100% !important;
        overflow: visible !important;
        font-weight: 500 !important;
    }

    .sobre {
        height: auto !important;
        min-height: auto !important;
        display: block !important;
        padding: 0 0 2.8rem !important;
        background-color: var(--clr-bg) !important;
    }

    .sobre-container {
        padding-top: 2rem;
        padding-bottom: 2rem;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        transform: none !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    .sobre-image {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .sobre-image-box {
        width: 100% !important;
        max-width: 100% !important;
        height: 260px !important;
        border-radius: 0 0 22px 22px !important;
        overflow: hidden !important;
    }

    .sobre-image-box img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 22% !important;
        display: block !important;
    }

    .sobre-text {
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 2.4rem 1.45rem 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .sobre-title {
        font-size: 3.7rem !important;
        line-height: 0.9 !important;
        margin: 0 0 0.45rem !important;
        text-align: center !important;
        color: var(--clr-primary) !important;
    }

    .sobre-name {
        font-size: 1.25rem !important;
        line-height: 1.15 !important;
        letter-spacing: 1.2px !important;
        margin: 0 0 0.85rem !important;
        text-align: center !important;
        color: var(--clr-primary) !important;
        white-space: nowrap !important;
    }

    .sobre-text .title-line {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 76% !important;
        max-width: 360px !important;
        height: 1px !important;
        margin: 0 auto 2rem !important;
        background-color: rgba(122, 45, 53, 0.65) !important;
    }

    .sobre-text p {
        width: 100% !important;
        max-width: 520px !important;
        font-size: 1.02rem !important;
        line-height: 1.62 !important;
        font-weight: 400 !important;
        letter-spacing: 0 !important;
        color: var(--clr-text-main) !important;
        text-align: center !important;
        margin: 0 auto 1.45rem !important;
    }

    .sobre-text p:last-of-type {
        margin-bottom: 1.8rem !important;
    }

    .sobre-text .btn, .sobre-text .btn-pill, .sobre-text .btn-primary {
        width: 82% !important;
        max-width: 360px !important;
        height: 56px !important;
        min-height: 56px !important;
        padding: 0 1.6rem !important;
        border-radius: 999px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .localizacao {
        height: auto !important;
        min-height: auto !important;
        padding: 2.4rem 0 3rem !important;
        background-color: var(--clr-bg) !important;
        display: block !important;
        overflow: hidden !important;
    }

    .localizacao-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1.25rem !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2.2rem !important;
    }

    .localizacao-image {
        width: 82vw !important;
        max-width: 360px !important;
        min-width: 0 !important;
        height: 500px !important;
        max-height: 500px !important;
        min-height: 500px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        overflow: hidden !important;
        border-radius: 24px !important;
    }

    .clinic-carousel {
        width: 100% !important;
        height: 100% !important;
        border-radius: 24px !important;
        overflow: hidden !important;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
    }

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

    .carousel-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
        border-radius: 24px !important;
    }

    .localizacao-text {
        width: 100% !important;
        max-width: 520px !important;
        padding: 0 !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .localizacao-text .section-title-large {
        margin-bottom: 1.5rem !important;
        font-size: 3.8rem !important;
        line-height: 0.9 !important;
        margin: 0 0 2rem !important;
        text-align: center !important;
        color: var(--clr-primary) !important;
        transform: none !important;
    }

    .localizacao-text .info-title {
        font-size: 1.55rem !important;
        line-height: 1.05 !important;
        letter-spacing: 1px !important;
        margin: 0 0 0.55rem !important;
        text-align: center !important;
        color: var(--clr-primary) !important;
    }

    .localizacao-text .info-text {
        max-width: 92% !important;
        font-size: 0.98rem !important;
        line-height: 1.45 !important;
        font-weight: 400 !important;
        margin: 0 auto 2.1rem !important;
        text-align: center !important;
        white-space: normal !important;
        color: var(--clr-text-main) !important;
    }

    .localizacao-text .info-title.mt-4 {
        margin-top: 0.6rem !important;
    }

    .localizacao-text .btn, .localizacao-text .btn-pill, .localizacao-text .btn-primary {
        align-self: center !important;
        width: 82% !important;
        max-width: 360px !important;
        height: 56px !important;
        min-height: 56px !important;
        line-height: 1.1 !important;
        padding: 0 1.6rem !important;
        border-radius: 999px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 1rem auto 0 !important;
        text-align: center !important;
    }

}


@media (max-width: 380px) {

    .sobre-title, .resultados .sobre-title, .localizacao-text .section-title-large {
        font-size: 2.75rem;
    }

    .sobre-image-box {
        width: 280px;
        max-width: 300px !important;
        height: 350px !important;
    }

    .procedimentos-track .proc-card, .cards-track .proc-card {
        flex-basis: 175px !important;
        width: 175px !important;
        min-width: 175px !important;
        max-width: 175px !important;
    }

    .image-comparison-slider {
        height: 300px !important;
    }

    .localizacao-image {
        height: 300px !important;
    }

}


@media (min-width: 1400px) {

    .sobre-container {
        transform: translateX(-22rem) !important;
    }

    .sobre-text {
        max-width: 1050px !important;
        width: 1050px !important;
    }

    .sobre-text p {
        max-width: 1050px !important;
        width: 100% !important;
        font-size: 0.9rem !important;
        line-height: 1.42 !important;
    }

    .sobre-text .title-line {
        width: 340px !important;
        max-width: 340px !important;
    }

    .procedimentos-layout {
        width: 92vw !important;
        max-width: 1620px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 360px !important;
        gap: 3rem !important;
        align-items: start !important;
    }

    .procedimentos-content {
        width: 100% !important;
        max-width: none !important;
        overflow: hidden !important;
    }

    .procedimentos-carousel {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .procedimentos-image-box {
        width: 360px !important;
        min-width: 360px !important;
        max-width: 360px !important;
        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;
        margin-top: 6rem !important;
        align-self: start !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        background: var(--clr-primary) !important;
    }

    .procedimentos-image-box img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center bottom !important;
        display: block !important;
    }

}


@media (min-width: 993px) and (max-width: 1399px) {

    .procedimentos-content {
        max-width: calc(96vw - 305px) !important;
        width: calc(96vw - 305px) !important;
        overflow: hidden !important;
    }

    .header-container {
        max-width: 100% !important;
        padding: 0 1.2rem !important;
    }

    .logo-text {
        font-size: 2.35rem !important;
    }

    .logo-subtext .text {
        font-size: 0.72rem !important;
        letter-spacing: 1.5px !important;
    }

    .nav {
        gap: 1.4rem !important;
    }

    .nav a {
        font-size: 0.75rem !important;
    }

    .header-social {
        gap: 8px !important;
    }

    .social-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
    }

    .hero {
        height: 560px !important;
        min-height: 560px !important;
    }

    .hero-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center bottom !important;
    }

    .planejamento-banner {
        padding: 2.2rem 1.5rem !important;
    }

    .planejamento-banner p {
        font-size: 1rem !important;
        line-height: 1.55 !important;
        max-width: 850px !important;
        margin: 0 auto !important;
    }

    .sobre {
        height: 400px !important;
        min-height: 400px !important;
    }

    .sobre-title {
        font-size: 2.7rem !important;
    }

    .sobre-name {
        font-size: 1.25rem !important;
    }

    .sobre-text p {
        font-size: 0.82rem !important;
        line-height: 1.42 !important;
    }

    .sobre-text .btn-pill {
        height: 38px !important;
        line-height: 38px !important;
        font-size: 0.8rem !important;
    }

    .procedimentos-cards {
        height: 400px !important;
        min-height: 400px !important;
    }

    .procedimentos-layout {
        max-width: 96vw !important;
        width: 96vw !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        grid-template-columns: minmax(0, 1fr) 320px !important;
        padding: 0 0 0 2.5rem !important;
        gap: 1.6rem !important;
    }

    .procedimentos-title {
        font-size: 2.7rem !important;
    }

    .procedimentos-subtitle {
        font-size: 0.85rem !important;
    }

    .procedimentos-carousel {
        max-width: calc(96vw - 305px) !important;
        width: calc(96vw - 305px) !important;
        overflow: hidden !important;
        height: 190px !important;
    }

    .procedimentos-track, .cards-track {
        height: 190px !important;
        gap: 1.4rem !important;
    }

    .procedimentos-track .proc-card, .cards-track .proc-card {
        flex: 0 0 190px !important;
        width: 190px !important;
        min-width: 190px !important;
        max-width: 190px !important;
        height: 190px !important;
        min-height: 190px !important;
        max-height: 190px !important;
        padding: 1rem 0.9rem !important;
    }

    .procedimentos-track .card-title, .cards-track .card-title {
        font-size: 0.66rem !important;
        line-height: 1.15 !important;
        margin-bottom: 0.65rem !important;
    }

    .procedimentos-track .proc-card p, .cards-track .proc-card p {
        font-size: 0.57rem !important;
        line-height: 1.28 !important;
    }

    .procedimentos-btn {
        height: 38px !important;
        min-width: 170px !important;
        font-size: 0.82rem !important;
        margin-top: 1.25rem !important;
    }

    .procedimentos-image-box {
        width: 320px !important;
        min-width: 320px !important;
        max-width: 320px !important;
        height: 100% !important;
        border-radius: 18px 0 0 18px !important;
    }

    .resultados {
        padding: 2.5rem 0 3.5rem !important;
    }

    .resultados .sobre-title {
        font-size: 3.5rem !important;
    }

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

    .sliders-grid {
        max-width: 980px !important;
        gap: 2rem !important;
        margin: 2rem auto 0 !important;
    }

    .image-comparison-slider {
        height: 360px !important;
    }

    .localizacao {
        height: 400px !important;
        min-height: 400px !important;
    }

    .localizacao-container {
        grid-template-columns: 320px 1fr !important;
        gap: 2.2rem !important;
    }

    .localizacao-image {
        width: 320px !important;
        min-width: 320px !important;
        max-width: 320px !important;
        height: 100% !important;
    }

    .localizacao-text .section-title-large {
        font-size: 3rem !important;
        margin-bottom: 2rem !important;
    }

    .info-title {
        font-size: 1.45rem !important;
    }

    .info-text {
        font-size: 0.86rem !important;
        line-height: 1.35 !important;
        margin-bottom: 1.4rem !important;
    }

    .localizacao-text .btn, .localizacao-text .btn-pill, .localizacao-text .btn-primary {
        height: 40px !important;
        line-height: 40px !important;
        min-width: 190px !important;
        font-size: 0.85rem !important;
        margin-top: 0.6rem !important;
    }

    .footer-desc, .footer-list li, .footer-col-3 p {
        font-size: 0.78rem !important;
    }

    .sobre-container {
        padding: 0 1.5rem 0 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        transform: none !important;
        grid-template-columns: 360px 1fr !important;
        gap: 2.5rem !important;
    }

    .sobre-image {
        margin-left: 0 !important;
        width: 360px !important;
        min-width: 360px !important;
        max-width: 360px !important;
        justify-self: start !important;
    }

    .sobre-image-box {
        width: 360px !important;
        max-width: 360px !important;
        height: 100% !important;
        border-radius: 0 18px 18px 0 !important;
    }

    .sobre-text {
        padding: 1.5rem 0 !important;
        max-width: 780px !important;
        padding-right: 2rem !important;
    }

    .footer {
        overflow: hidden !important;
    }

    .footer .container {
        max-width: 100% !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .footer-container {
        grid-template-columns: 1fr 1.4fr 0.9fr !important;
        gap: 2rem !important;
        align-items: center !important;
    }

    .logo-footer {
        margin-left: 0 !important;
    }

    .logo-footer .logo-text {
        font-size: 2.45rem !important;
        letter-spacing: 0.3px !important;
    }

    .logo-footer .text {
        font-size: 0.78rem !important;
        letter-spacing: 1.2px !important;
    }

    .footer-col-2 {
        margin-left: 0 !important;
        max-width: 560px !important;
    }

    .footer-desc {
        font-size: 0.78rem !important;
        line-height: 1.3 !important;
        max-width: 560px !important;
    }

    .footer-list {
        column-gap: 2.2rem !important;
    }

    .footer-list li {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        white-space: nowrap !important;
    }

    .footer-col-3 {
        margin-left: 0 !important;
        min-width: 220px !important;
    }

    .footer-title {
        font-size: 1.7rem !important;
        margin-bottom: 1rem !important;
    }

    .footer-col-3 p {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        white-space: nowrap !important;
    }

    .footer-bottom {
        font-size: 0.78rem !important;
    }

}


@media (min-width: 993px) {

    .procedimentos-cards {
        height: 430px !important;
        min-height: 430px !important;
        padding: 0 !important;
        margin: 0 !important;
        background-color: var(--clr-bg) !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: stretch !important;
    }

    .procedimentos-layout {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 0 0 5rem !important;
        display: grid !important;
        grid-template-columns: 1fr 360px !important;
        gap: 2.5rem !important;
        align-items: stretch !important;
    }

    .procedimentos-header {
        margin: 0 0 1.8rem 0 !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .procedimentos-title, .procedimentos-header .section-title-large {
        font-size: 3rem !important;
        line-height: 0.95 !important;
        margin: 0 0 0.25rem 0 !important;
        color: var(--clr-primary) !important;
    }

    .procedimentos-subtitle, .procedimentos-header p {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        color: var(--clr-primary) !important;
    }

    .procedimentos-btn {
        align-self: flex-start !important;
        margin-top: 1.5rem !important;
        min-width: 180px !important;
        height: 40px !important;
        padding: 0 2rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.85rem !important;
        line-height: 1 !important;
    }

    .procedimentos-image-box {
        margin-top: 5 !important;
        margin-bottom: 0 !important;
        background: var(--clr-primary) !important;
        width: 360px !important;
        min-width: 360px !important;
        max-width: 360px !important;
        height: 100% !important;
        min-height: 100% !important;
        max-height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        align-self: stretch !important;
        justify-self: end !important;
        background-color: var(--clr-primary) !important;
        border-radius: 18px 0 0 18px !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: stretch !important;
        justify-content: center !important;
    }

    .procedimentos-image-box img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }

    .procedimentos-carousel {
        width: 100% !important;
        max-width: 100% !important;
        height: 175px !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .procedimentos-track, .cards-track {
        height: 175px !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        display: flex !important;
        align-items: stretch !important;
        gap: 1.8rem !important;
    }

    .procedimentos-track .proc-card, .cards-track .proc-card {
        flex: 0 0 240px !important;
        width: 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
        height: 175px !important;
        min-height: 175px !important;
        max-height: 175px !important;
        padding: 1rem 1rem 0.9rem 1rem !important;
        border-radius: 14px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .procedimentos-track .card-title, .cards-track .card-title {
        margin-bottom: 0.8rem !important;
        font-size: 0.54rem !important;
        line-height: 1.22 !important;
        letter-spacing: 0.4px !important;
        margin: 0 0 0.65rem 0 !important;
        word-break: normal !important;
    }

    .procedimentos-track .proc-card p, .cards-track .proc-card p {
        font-size: 0.38rem !important;
        line-height: 1.42 !important;
        margin: 0 !important;
    }

    .procedimentos-content {
        height: 100% !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    .localizacao {
        height: 430px !important;
        min-height: 430px !important;
        padding: 0 !important;
        margin: 0 !important;
        background-color: var(--clr-bg) !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: stretch !important;
    }

    .localizacao-container {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: 360px 1fr !important;
        gap: 3rem !important;
        align-items: stretch !important;
    }

    .localizacao-image {
        width: 360px !important;
        min-width: 360px !important;
        max-width: 360px !important;
        height: 100% !important;
        min-height: 100% !important;
        max-height: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex: none !important;
        align-self: stretch !important;
        justify-self: start !important;
        overflow: hidden !important;
    }

    .clinic-carousel {
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 18px 18px 0 !important;
        overflow: hidden !important;
        box-shadow: none !important;
    }

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

    .carousel-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }

    .localizacao-text {
        height: 100% !important;
        padding: 2rem 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .info-title {
        line-height: 1.05 !important;
        font-size: 1.7rem !important;
        margin-bottom: 0.25rem !important;
    }

    .info-text {
        white-space: normal !important;
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 2rem !important;
    }

    .localizacao-text .btn, .localizacao-text .btn-pill, .localizacao-text .btn-primary {
        min-width: 190px !important;
        height: 42px !important;
        line-height: 42px !important;
        padding: 0 2rem !important;
        font-size: 0.88rem !important;
        align-self: flex-start !important;
        margin-top: 0.4rem !important;
    }

    .localizacao-text .section-title-large {
        line-height: 0.95 !important;
        margin: 0 0 1.4rem 0 !important;
        transform: none !important;
        font-size: 3.4rem !important;
        margin-bottom: 2.8rem !important;
    }

    .localizacao-text .info-text {
        margin-bottom: 0.8rem !important;
    }

    .localizacao-text .info-title.mt-4 {
        margin-top: 0.6rem !important;
    }

}

/* =========================================================
   PROCEDIMENTOS — CANTOS 100% QUADRADOS
   Correção definitiva para todos os cards do carrossel
   ========================================================= */

.proc-card,
.procedimentos-cards .proc-card,
.procedimentos-carousel .proc-card,
.procedimentos-track .proc-card,
.cards-track .proc-card,
.procedimentos-cards .procedimentos-track .proc-card,
.procedimentos-cards .cards-track .proc-card {
    border-radius: 0 !important;
    overflow: hidden !important;
}

/* Remove arredondamento caso algum pseudo-elemento esteja interferindo */
.proc-card::before,
.proc-card::after,
.procedimentos-cards .proc-card::before,
.procedimentos-cards .proc-card::after,
.procedimentos-track .proc-card::before,
.procedimentos-track .proc-card::after,
.cards-track .proc-card::before,
.cards-track .proc-card::after {
    border-radius: 0 !important;
}

/* Garante que nenhum filho interno aparente arredondamento */
.proc-card *,
.procedimentos-cards .proc-card *,
.procedimentos-track .proc-card *,
.cards-track .proc-card * {
    border-radius: 0 !important;
}

/* HEADER FIXO NO TOPO DA LP */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background-color: #ded7c9 !important;
}

/* Evita que o conteúdo fique escondido atrás do header */
body {
    padding-top: 100px !important;
}

/* Ajuste para tablets e celulares */
@media (max-width: 768px) {
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
    }

    body {
        padding-top: 90px !important;
    }
}

/* Ajuste para celulares menores */
@media (max-width: 480px) {
    body {
        padding-top: 80px !important;
    }
}

/* AJUSTE FINAL HEADER MOBILE */
@media (max-width: 768px) {

    .header {
        height: auto !important;
        padding: 14px 0 !important;
        background-color: #ded7c9 !important;
    }

    .header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 0 18px !important;
    }

    .logo {
        flex: 1 !important;
        max-width: calc(100% - 150px) !important;
        min-width: 0 !important;
    }

    .logo-text {
        font-size: 1.65rem !important;
        line-height: 1 !important;
        letter-spacing: 2px !important;
        white-space: nowrap !important;
    }

    .logo-subtext {
        gap: 8px !important;
        margin-top: 6px !important;
    }

    .logo-subtext .text {
        font-size: 0.72rem !important;
        letter-spacing: 2px !important;
        white-space: nowrap !important;
    }

    .logo-subtext .line {
        width: 42px !important;
    }

    .header-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
    }

    .header-social {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .social-btn,
    .menu-mobile-btn {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        border-radius: 50% !important;
        background-color: #8b2b35 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        border: none !important;
        cursor: pointer !important;
    }

    .social-btn i {
        font-size: 1rem !important;
        color: #ffffff !important;
    }

    .menu-mobile-btn {
        flex-direction: column !important;
        gap: 4px !important;
        z-index: 10001 !important;
        order: -1 !important;
    }

    .menu-mobile-btn span {
        display: block !important;
        width: 16px !important;
        height: 2px !important;
        background-color: #ffffff !important;
        border-radius: 0 !important;
        transition: all 0.3s ease !important;
    }

    .nav {
        position: fixed !important;
        top: 78px !important;
        left: 0 !important;
        width: 100% !important;
        background-color: #ded7c9 !important;
        display: none !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 22px !important;
        padding: 28px 20px !important;
        z-index: 9998 !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    }

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

    .nav a {
        font-size: 0.85rem !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        color: #2b2b2b !important;
        text-decoration: none !important;
    }

    .menu-mobile-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px) !important;
    }

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

    .menu-mobile-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px) !important;
    }

    body {
        padding-top: 78px !important;
    }
}

/* AJUSTE LOGO + ÍCONES NO MOBILE */
@media (max-width: 768px) {

    .header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 14px !important;
        gap: 8px !important;
    }

    .logo {
        flex: 1 !important;
        max-width: calc(100% - 165px) !important;
        min-width: 0 !important;
        text-align: center !important;
        overflow: hidden !important;
    }

    .logo-text {
        font-size: 1.45rem !important;
        line-height: 1 !important;
        letter-spacing: 2px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    .logo-subtext {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        margin-top: 6px !important;
        width: 100% !important;
        text-align: center !important;
    }

    .logo-subtext .text {
        font-size: 0.58rem !important;
        letter-spacing: 1.8px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    .logo-subtext .line {
        width: 26px !important;
        min-width: 26px !important;
    }

    .header-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
    }

    .header-social {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .social-btn,
    .menu-mobile-btn {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
    }

    .social-btn i {
        font-size: 1.05rem !important;
    }

    .menu-mobile-btn span {
        width: 18px !important;
        height: 2px !important;
    }
}

@media (max-width: 480px) {

    .header-container {
        padding: 0 10px !important;
        gap: 5px !important;
    }

    .logo {
        max-width: calc(100% - 145px) !important;
    }

    .logo-text {
        font-size: 1.12rem !important;
        letter-spacing: 1.6px !important;
    }

    .logo-subtext {
        gap: 5px !important;
        margin-top: 5px !important;
    }

    .logo-subtext .text {
        font-size: 0.48rem !important;
        letter-spacing: 1.3px !important;
    }

    .logo-subtext .line {
        width: 20px !important;
        min-width: 20px !important;
    }

    .social-btn,
    .menu-mobile-btn {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
    }

    .social-btn i {
        font-size: 0.95rem !important;
    }

    .menu-mobile-btn span {
        width: 16px !important;
    }

    .header-right,
    .header-social {
        gap: 5px !important;
    }
}

/* ANIMAÇÃO DE ENTRADA - PLANEJAMENTO BANNER */
.planejamento-banner {
    opacity: 0;
    transform: translateY(45px);
    animation: planejamentoEntrando 1s ease forwards;
    animation-delay: 0.25s;
}

/* Texto entrando */
.planejamento-banner p {
    opacity: 0;
    transform: translateY(24px);
    animation: planejamentoTextoEntrando 0.9s ease forwards;
    animation-delay: 0.55s;
}

/* Botão entrando depois */
.planejamento-banner .btn-pill {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    animation: planejamentoBotaoEntrando 0.9s ease forwards;
    animation-delay: 0.85s;
}

/* Movimento da seção */
@keyframes planejamentoEntrando {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

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

/* Movimento do texto */
@keyframes planejamentoTextoEntrando {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* Movimento do botão */
@keyframes planejamentoBotaoEntrando {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }

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

/* ANTES E DEPOIS: SOMENTE A BOLINHA PODE SER ARRASTADA */
.before-after,
.before-after-container,
.comparison-slider,
.result-comparison {
    touch-action: pan-y !important;
}

/* Imagens não recebem toque/clique */
.before-after img,
.before-after-container img,
.comparison-slider img,
.result-comparison img {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
}

/* Apenas a bolinha recebe o toque */
.slider-handle,
.compare-handle,
.ba-handle,
.before-after-handle,
.comparison-handle {
    pointer-events: auto !important;
    touch-action: none !important;
    cursor: ew-resize !important;
    z-index: 50 !important;
}

/* CORREÇÃO DEFINITIVA - WHATSAPP FLUTUANTE SEM VERDE */
.floating-whatsapp {
    background: #8b2b35 !important;
    background-color: #8b2b35 !important;
    box-shadow: none !important;
    filter: none !important;
    animation: none !important;
    position: fixed !important;
    overflow: visible !important;
}

/* Remove qualquer verde vindo de pseudo-elementos */
.floating-whatsapp::before,
.floating-whatsapp::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: 50% !important;
    background: rgba(139, 43, 53, 0.35) !important;
    background-color: rgba(139, 43, 53, 0.35) !important;
    border: none !important;
    box-shadow: none !important;
    filter: none !important;
    z-index: -1 !important;
}

/* Pulso vinho */
.floating-whatsapp::before {
    animation: whatsappPulseVinhoFinal 1.8s ease-out infinite !important;
}

/* Desativa o segundo pulso verde, se existir */
.floating-whatsapp::after {
    display: none !important;
}

/* Ícone */
.floating-whatsapp svg {
    fill: #ffffff !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Animação nova em vinho */
@keyframes whatsappPulseVinhoFinal {
    0% {
        transform: scale(1);
        opacity: 0.55;
        background-color: rgba(139, 43, 53, 0.35);
    }

    70% {
        transform: scale(1.65);
        opacity: 0;
        background-color: rgba(139, 43, 53, 0);
    }

    100% {
        transform: scale(1.65);
        opacity: 0;
        background-color: rgba(139, 43, 53, 0);
    }
}

/* AJUSTE FINAL LOGO TOPO + LOGO FOOTER NO MOBILE */
@media (max-width: 768px) {

    /* ===== TOPO ===== */
    .logo {
        flex: 1 !important;
        max-width: calc(100% - 150px) !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .logo-text {
        width: 100% !important;
        text-align: center !important;
        font-size: 1.18rem !important;
        line-height: 1 !important;
        letter-spacing: 1.4px !important;
        white-space: nowrap !important;
    }

    .logo-subtext {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 6px !important;
        text-align: center !important;
        overflow: hidden !important;
    }

    .logo-subtext .text {
        flex: 0 0 auto !important;
        font-size: 0.44rem !important;
        letter-spacing: 1.6px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    .logo-subtext .line {
        flex: 1 1 auto !important;
        min-width: 18px !important;
        max-width: 54px !important;
        height: 1px !important;
    }

    /* ===== FOOTER ===== */
    .footer,
    .footer-container,
    .footer-col-1,
    .logo-footer {
        overflow: visible !important;
    }

    .logo-footer {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .logo-footer .logo-text {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 2.25rem !important;
        line-height: 1 !important;
        letter-spacing: 0.4px !important;
        white-space: nowrap !important;
        text-align: center !important;
        overflow: visible !important;
    }

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

    .logo-footer .text {
        font-size: 0.62rem !important;
        letter-spacing: 1.5px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }
}

/* PROCEDIMENTOS - TÍTULO CENTRALIZADO E TEXTO À ESQUERDA */
.procedimentos-track .proc-card {
    text-align: left !important;
    align-items: stretch !important;
}

.procedimentos-track .proc-card .card-title,
.procedimentos-track .proc-card h4 {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
}

.procedimentos-track .proc-card p {
    width: 100% !important;
    text-align: left !important;
    display: block !important;
}

/* LABELS "ANTES" E "DEPOIS" NAS FOTOS DE RESULTADOS */
.image-comparison-slider {
    position: relative !important;
}

.image-comparison-slider::before {
    content: "ANTES";
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 25;
    background: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.image-comparison-slider::after {
    content: "DEPOIS";
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 25;
    background: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

/* CORREÇÃO DEFINITIVA - ESCONDE HAMBÚRGUER NO DESKTOP */
@media (min-width: 769px) {
    .menu-mobile-btn,
    .menu-mobile-btn span {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* NO MOBILE ELE VOLTA NORMAL */
@media (max-width: 768px) {
    .menu-mobile-btn {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        overflow: visible !important;
    }

    .menu-mobile-btn span {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 16px !important;
        height: 2px !important;
    }
}