/*Variáveis*/

:root {
    --gold: #b78d3a;
    --black: #121212;
    --black2: #1b1b1b;
    --btn-font-family: "Roboto", Helvetica, Arial, sans-serif;
    --btn-font-size: 1.5em;
    --floating-btn-size: 56px;
    --floating-btn-icon-size: 32px;
    --floating-btn-side: 18px;
    --floating-btn-bottom: 18px;
}

body {
    background-color: var(--black);
    overflow-x: hidden;
}

body.has-floating-bar {
    padding-bottom: 0;
}

body.has-floating-bar footer {
    padding-bottom: 0;
}

@media (max-width: 991px) {
    :root {
        --floating-btn-size: 44px;
        --floating-btn-icon-size: 25px;
        --floating-btn-side: 14px;
        --floating-btn-bottom: 16px;
    }

    footer .container.p-4 {
        padding: 0.75rem !important;
    }

    footer h5 {
        margin-bottom: 0.5rem;
    }

    footer .list-unstyled li {
        line-height: 1.35;
        margin-bottom: 0.25rem;
    }

    .footer-map {
        margin-top: 12px;
    }

    .footer-map iframe {
        height: 140px;
    }

    .copy .p-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
}

/* Keep legacy fixed-width separator images responsive on small screens. */
img[width="500"] {
    width: min(500px, 100%);
    max-width: 100%;
    height: auto;
}

/* ----- CARROSSEL DE CELULARES CUSTOMIZADO ----- */
.gallery-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 550px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.phone-card {
    position: absolute;
    width: 220px;
    height: 440px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    z-index: 1;
    transform: scale(0.8);
}

/* Moldura do Celular */
.phone-card .frame {
    width: 213%;
    height: 109%;
    position: absolute;
    top: -21px;
    left: -124px;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.5));
}

/* Tela (Vídeo) */
.phone-card .screen {
    position: absolute;
    top: 2.5%;
    left: 6%;
    width: 88%;
    height: 94%;
    border-radius: 30px;
    overflow: hidden;
    z-index: 5;
    background: #000;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: none;
    background: rgba(183, 141, 58, 0.92);
    color: #0b0b0b;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.15s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
    z-index: 8;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
    background: #c59a44;
}

.play-overlay:active {
    transform: translate(-50%, -50%) scale(0.97);
}

.phone-card .screen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- ESTADOS DO CARROSSEL --- */

/* Celular Central (Ativo) */
.phone-card.active {
    opacity: 1;
    z-index: 20;
    transform: translateX(0) scale(1.25);
    filter: brightness(1.1);
}

/* Celular à Esquerda */
.phone-card.prev {
    opacity: 0.6;
    z-index: 10;
    transform: translateX(-280px) scale(0.9);
}

/* Celular à Direita */
.phone-card.next {
    opacity: 0.6;
    z-index: 10;
    transform: translateX(280px) scale(0.9);
}

/* Botões de Navegação */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(183, 141, 58, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.gallery-btn:hover {
    background: #b78d3a;
}

.gallery-btn.prev-btn {
    left: 20px;
}
.gallery-btn.next-btn {
    right: 20px;
}

/* Responsivo para celular */
@media (max-width: 768px) {
    .phone-card.prev,
    .phone-card.next {
        opacity: 0;
    }
    .gallery-container {
        height: 500px;
    }
}
/*Fontes*/

@font-face {
    font-family: Raleway-Medium;
    src: url(../fonts/Raleway-Medium.ttf);
}

@font-face {
    font-family: Raleway-ExtraBold;
    src: url(../fonts/Raleway-ExtraBold.ttf);
}

/*Textos*/

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-family: "Raleway-Medium", "Raleway", Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 52px;
}

p {
    color: #ddd;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
}

ul,
li {
    color: #fff;
    padding: 0;
    margin: 0;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
}

/*links*/

a {
    transition: 0.5s;
    text-decoration: none;
    color: var(--gold);
}

a:hover {
    color: var(--gold);
    filter: brightness(1.2);
}

/*Seleção de Texto*/

::selection {
    color: #fff;
    background: #777;
}

::-moz-selection {
    color: #fff;
    background: #777;
}

/*Header*/

#header {
    background: var(--black);
    height: 70px;
    position: relative;
    z-index: 1002;
}

#header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: clamp(16px, 4vw, 64px);
}

#header #logo h1 {
    font-size: 32px;
    margin: 0;
    line-height: 0;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: #fff;
}

#header #logo img {
    padding: 0;
    margin: 0;
    max-height: 50px;
}

.scrolled-offset {
    margin-top: 70px;
}

/*Navbar*/

.navbar {
    padding: 0;
    margin-right: auto;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #555;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--gold);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        right: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        right: -100%;
    }
}

/*Ícones de redes sociais na Header*/

.header-social-links {
    margin: 0 0 0 30px;
}

.header-social-links a {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 8px;
    display: inline-block;
    line-height: 0px;
    transition: 0.3s;
}

.header-social-links a i {
    line-height: 0;
    font-size: 24px;
}

.header-social-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    #header #logo img {
        max-height: 40px;
    }

    .header-social-links {
        margin: 0 15px 0 0;
    }
}

/*Mobile Navigation*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    background: transparent;
    padding: 4px 8px;
}

.mobile-nav-toggle:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    #header {
        height: auto;
        min-height: 70px;
    }

    #header .container {
        padding-inline: 12px;
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    #header #logo {
        flex: 1 1 auto;
        min-width: 0;
        margin-right: auto;
    }

    #header #logo img {
        width: clamp(100px, 34vw, 165px);
        height: auto;
        max-height: none;
    }

    .navbar {
        margin-right: 0;
        margin-left: 0;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        position: relative;
    }

    .header-social-links {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 6px;
        flex: 0 0 auto;
    }

    .header-social-links a {
        padding-left: 0;
    }

    .header-social-links a i {
        font-size: 20px;
    }

    .mobile-nav-toggle {
        display: block;
        font-size: 24px;
        margin-left: 2px;
    }

    .mobile-nav-toggle i {
        color: #fff;
        font-size: 22px;
    }

    .navbar .navbar-collapse {
        position: fixed;
        top: 78px;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
        padding: 10px 0;
        z-index: 1001;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
    }

    .navbar .navbar-collapse ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .navbar .navbar-collapse li {
        width: 100%;
    }

    .navbar .navbar-collapse a,
    .navbar .navbar-collapse a:focus {
        width: 100%;
        padding: 12px 18px;
        color: #555;
        white-space: normal;
        word-break: break-word;
        justify-content: flex-start;
        line-height: 1.35;
    }

    .navbar .navbar-collapse a:hover,
    .navbar .navbar-collapse .active,
    .navbar .navbar-collapse .active:focus,
    .navbar .navbar-collapse li:hover > a {
        color: var(--gold);
    }
}

@media (max-width: 420px) {
    .header-social-links {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 12px;
    background: rgba(34, 34, 34, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 52px;
    width: 100%;
    max-height: calc(100vh - 94px);
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 12px 20px;
    font-size: 15px;
    color: #555;
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--gold);
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible !important;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}
.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: var(--gold);
}
.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*Botões WPP Insta*/

.btn-bg {
    position: fixed;
    inset-inline: 0;
    bottom: calc(var(--floating-btn-bottom) + env(safe-area-inset-bottom));
    z-index: 99;
    pointer-events: none;
}
.btn-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: var(--floating-btn-side);
    pointer-events: none;
}

.btn-bar button {
    border: none;
    padding: 0;
    width: var(--floating-btn-size);
    height: var(--floating-btn-size);
    border-radius: 50%;
    box-sizing: border-box;
    pointer-events: auto;
    flex: 0 0 var(--floating-btn-size);
}
.btn-bar i {
    color: #fff;
    line-height: 1;
}

.btn-insta {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: var(--floating-btn-icon-size);
    transition: 0.6s;
}

.btn-insta:hover {
    filter: brightness(50%);
}

.btn-wpp {
    background-color: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: var(--floating-btn-icon-size);
    transition: 0.6s;
}

.btn-teste {
    background-color: var(--gold);
    font-family: var(--btn-font-family);
    font-weight: bold;
    font-size: var(--btn-font-size);
    color: #fff;
    padding: 18px 36px;
    border: 2px solid transparent;
    border-radius: 40px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border 0.3s ease;
    min-width: 240px;
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-teste:hover {
    background-color: #fff;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-teste:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.btn-wpp:hover {
    filter: brightness(70%);
}

/*Botão*/

.btn {
    background-color: var(--gold);
    font-family: var(--btn-font-family);
    font-weight: bold;
    font-size: var(--btn-font-size);
    color: #fff;
    padding: 18px 36px;
    border: 2px solid transparent;
    border-radius: 40px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border 0.3s ease;
    min-width: 240px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn:hover {
    background-color: #fff;
    color: var(--gold);
    border-color: var(--gold);
}
.btn:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.btn.btn-sm {
    padding: 10px 20px !important;
    font-size: 1rem !important;
    min-width: auto !important;
    min-height: auto !important;
    border-radius: 30px !important;
}

.btn2 {
    background-color: var(--black);
    font-family: var(--btn-font-family);
    font-weight: bold;
    font-size: var(--btn-font-size);
    color: #fff;
    padding: 18px 36px;
    border: 2px solid transparent;
    border-radius: 40px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border 0.3s ease;
    min-width: 240px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn2:hover {
    background-color: #fff;
    color: var(--black);
    border-color: transparent;
}

.btn2:focus {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
}

.btn2.btn-sm {
    padding: 10px 20px !important;
    font-size: 1rem !important;
    min-width: auto !important;
    min-height: auto !important;
    border-radius: 30px !important;
}

/*Minha missão*/

.minha-missao {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    padding: clamp(60px, 8vw, 120px) clamp(12px, 4vw, 40px);
    background-color: var(--black);
}

.minha-missao div {
    width: 100%;
}

.texto-missao {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

.texto-missao div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(100%, 1200px);
    margin: 0 auto;
    text-align: center;
}

.texto-missao h1 {
    font-size: 76px;
    font-family: "Raleway-ExtraBold", "Raleway", Helvetica, Arial, sans-serif;
    color: var(--gold);
    margin: 0;
}

.texto-missao h2 {
    margin: 0;
}

.img-missao {
    background-image: url("../img/dr-marco-missao.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.page-lipo .minha-missao {
    padding-top: 0;
}

.page-lipo .texto-missao div {
    justify-content: flex-start;
    padding-top: clamp(8px, 2vw, 24px);
}

.page-lipo .img-missao {
    background-size: cover;
    background-position: center top;
}

.harmonizacao {
    height: 100vh;
    display: flex;
    justify-content: center;
}

.harmonizacao div {
    width: 100%;
}

.img-harmonizacao {
    background-image: url("../img/Imagens/Harmonizacao.png");
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
}

.flip-horizontal {
    transform: scaleX(-1);
}

.minha-missao .btn {
    min-width: 0 !important;
    width: fit-content;
    max-width: 100%;
    padding: 18px 36px;
    margin: 0 auto;
}

/*Seção 2*/

.secao2 {
    width: 90%;
    text-align: center;
}

.secao2 h2 {
    font-size: 36px;
    font-family: "Raleway-ExtraBold", "Raleway", Helvetica, Arial, sans-serif;
}

.secao2 p {
    font-size: 20px;
}

.resultados {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.resultados h2 {
    font-size: 36px;
    font-family: "Raleway-ExtraBold", "Raleway", Helvetica, Arial, sans-serif;
}

.carrousel-text {
    margin-top: 2%;
    font-size: 56px;
    font-family: "Raleway-ExtraBold", "Raleway", Helvetica, Arial, sans-serif;
    text-align: center;
}

.resultados-img {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
}

.resultados-img img {
    border-radius: 16px;
}

.resultado-foto {
    display: block;
    margin-block: 0;
    border-radius: 16px !important;
    overflow: hidden;
    clip-path: inset(0 round 16px);
}

.resultados-lipo {
    gap: 34px;
}

.resultados-lipo h2 {
    margin-bottom: 0;
}

.resultados-lipo .resultados-img {
    margin: 0;
}

.resultados-lipo .resultados-cta {
    margin-top: 6px;
}

/*pós operatório*/

.pos-operatorio {
    background-color: var(--gold);
}

.pos-operatorio h2 {
    color: #fff;
    font-family: "Raleway-ExtraBold", "Raleway", Helvetica, Arial, sans-serif;
}

.pos-operatorio button {
    font-size: 18px;
}

.container-operatorio {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.div-operatorio {
    width: 50%;
}

.div-operatorio2 {
    width: 50%;
}

/*Pop up*/

.modal-content {
    text-align: left;
}

.modal-content h5 {
    color: #0a0a0a !important;
}
.modal-content p {
    color: #0a0a0a !important;
}

.modal-content ul {
    color: #0a0a0a !important;
    margin: 1rem 2rem;
}

.modal-content li {
    color: #0a0a0a !important;
    padding: 5px 0;
}

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

/*Papada pela raiz*/

.papada-raiz {
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

.papada-raiz-div {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.papada-raiz-titulo {
    width: 70%;
    text-align: center;
}

.papada-raiz h2 {
    font-size: 36px;
    font-family: "Raleway-ExtraBold", "Raleway", Helvetica, Arial, sans-serif;
}

.papada-check-bg {
    width: 100%;
    display: flex;
    justify-content: space-around;
    font-size: 18px;
}

.papada-check {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
/*Principais Procedimentos*/
.titulo-procedimentos {
    font-size: 76px;
    font-family: "Raleway-ExtraBold", "Raleway", Helvetica, Arial, sans-serif;
    color: var(--gold);
}

.card-procedimento {
    background-color: var(--black2) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px;
    transition:
        box-shadow 0.4s ease-in-out,
        transform 0.2s ease-out;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.card-procedimento:hover {
    box-shadow:
        0 0 15px rgba(183, 141, 58, 0.8),
        0 0 30px rgba(183, 141, 58, 0.4);
    transform: translateY(-5px);
}

.icone-procedimento {
    color: var(--gold);
}

.texto-procedimento {
    color: #ddd !important;
}

.beneficio-item p {
    text-align: center;
}

.img-sorriso {
    height: 100vh;
    object-fit: cover;
    mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 90%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 80%,
        transparent 100%
    );
}

*/ .texto-beneficios-harmonizacao {
    display: flex;
    justify-content: center;
}

.texto-beneficios-harmonizacao ul {
    width: 100%;
}

.beneficio-item {
    font-size: 14px;
    min-width: 130px;
    max-width: 400px;
}

.beneficio-titulo {
    font-weight: bold;
    margin-bottom: 5px;
}

.beneficio-descricao {
    font-size: 14px;
    line-height: 1.4;
    color: #a9a9a9;
}

.texto-beneficios-harmonizacao > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}

.texto-beneficios-harmonizacao h1 {
    font-size: 71px;
    font-family: "Raleway-ExtraBold", "Raleway", Helvetica, Arial, sans-serif;
    color: var(--gold);
}

.texto-beneficios-harmonizacao li {
    padding: 5px 0;
}

.img-sobre-mim {
    background-image: url("../img/dr-marco-sobre.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.imagens-beneficios {
    width: 160px;
    height: 200px;
}
/*Sobre mim*/

.sobre-mim {
    height: 100vh;
    display: flex;
    justify-content: center;
}

.sobre-mim div {
    width: 100%;
}

.texto-sobre-mim {
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-sobre-mim div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    height: 50%;
}

.texto-sobre-mim h1 {
    font-size: 76px;
    font-family: "Raleway-ExtraBold", "Raleway", Helvetica, Arial, sans-serif;
    color: var(--gold);
}

.texto-sobre-mim li {
    padding: 5px 0;
}

.img-sobre-mim {
    background-image: url("../img/dr-marco-sobre.png");
    background-repeat: no-repeat;
    background-size: cover;
}

/*Google Maps responsivo*/

.map-responsive {
    width: min(100%, 900px);
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
}
.map-responsive iframe {
    inset: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/*Footer*/

footer {
    background-color: #0f0f0f;
    margin-bottom: 0;
}

footer a {
    color: #fff;
}

.footer-map {
    display: flex;
    justify-content: center;
}

.footer-map iframe {
    width: min(350px, 100%);
    max-width: 100%;
    height: 190px;
    display: block;
}

.copy {
    color: #757575;
    background-color: #0f0f0f;
}

.copy a {
    color: var(--gold);
}

/*Media rule*/

@media only screen and (max-width: 950px) {
    /*Minha missão*/

    .minha-missao {
        display: block;
    }

    .texto-missao {
        height: 50vh;
    }

    .texto-missao div {
        width: min(90%, 620px);
        height: 70%;
        margin: 0 auto;
        align-items: center;
    }

    .texto-missao h1 {
        font-size: 40px;
    }

    .texto-missao h2 {
        font-size: 20px;
    }

    .img-harmonizacao {
        margin-top: 5%;
        height: 47vh;
        background-image: url("../img/Imagens/Harmonizacao.png");
        background-repeat: no-repeat;
        background-size: contain;
        object-fit: contain;
        background-position: center;
    }

    .img-missao {
        height: 50vh;
        background-image: url("../img/dr-marco-missao.png");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .img-dentario {
        margin-top: 5%;
        height: 47vh;
        background-image: url("../img/implante/implatacaodentaria.jpeg");
        background-repeat: no-repeat;
        background-size: contain;
        object-fit: contain;
        background-position: center;
        transform: scaleX(-1);
    }

    .page-lipo .minha-missao {
        padding-top: 16px;
    }

    .page-lipo .texto-missao {
        height: auto;
        min-height: 46vh;
    }

    .page-lipo .texto-missao div {
        height: auto;
        padding-top: 8px;
    }

    .page-lipo .img-missao {
        margin-top: 0;
        height: 56vh;
        background-size: 112%;
        background-position: center 0;
    }

    /*Resultados*/

    .resultados-img {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /*pós operatório*/

    .container-operatorio {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .div-operatorio {
        width: 100%;
        height: 15vh;
    }

    .div-operatorio2 {
        width: 100%;
    }

    /*Papada Raiz*/

    .papada-raiz h2 {
        font-size: 30px;
    }

    .papada-check-bg {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /*Principais PRocedimentos*/
    .titulo-procedimentos {
        font-size: 70px;
    }

    /*Sobre mim*/
    .harmonizacao {
        display: block;
    }
    .sobre-mim {
        display: block;
    }

    .texto-sobre-mim {
        height: 50vh;
        font-size: 15px;
    }

    .texto-sobre-mim div {
        width: 90%;
        height: 70%;
    }

    .texto-sobre-mim h1 {
        font-size: 48px;
    }

    .texto-sobre-mim li {
        padding: 0;
    }

    .img-sobre-mim {
        height: 50vh;
        background-image: url("../img/dr-marco-sobre.png");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    /*Google Maps*/

    .map-responsive iframe {
        height: 100%;
        width: 100%;
        position: absolute;
    }
}

@media only screen and (max-width: 590px) {
    .img-harmonizacao {
        margin-top: 20px;
        height: 50vh;
    }

    .texto-sobre-mim {
        font-size: 13px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 589px) {
    .texto-sobre-mim {
        font-size: 10px;
    }

    .texto-sobre-mim h1 {
        font-size: 38px;
    }

    .titulo-procedimentos {
        font-size: 43px;
    }

    .text-center h1 {
        font-size: 43px;
    }

    .texto-missao h1 {
        font-size: 37px;
    }

    .texto-missao h2 {
        font-size: 17px;
    }

    .btn-teste {
        padding: 12px;
        border-radius: 12px;
    }
    .modal-teste {
        width: 81%;
        height: 74%;
        margin-bottom: 21%;
        margin-left: 1%;
    }
}

@media only screen and (max-width: 590px) {
    .img-dentario {
        margin-top: 20px;
        height: 50vh;
    }

    .texto-missao h1 {
        font-size: 34px;
    }

    .texto-missao h2 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .btn,
    .btn2 {
        font-size: 1.2rem;
        padding: 12px 20px;
    }
    .btn {
        min-width: 0;
    }
}

/* Animação de fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-left > * {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-left > *:nth-child(1) {
    animation-delay: 0.2s;
}
.fade-in-left > *:nth-child(2) {
    animation-delay: 0.4s;
}
.fade-in-left > *:nth-child(3) {
    animation-delay: 0.6s;
}
.fade-in-left > *:nth-child(4) {
    animation-delay: 0.8s;
}

.fade-in-right {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.7s;
}
