/* ============================================================
   LUX SPA PREMIUM - HOME.CSS ORGANIZADO E RESPONSIVO
   Projeto: Lux Spa Premium
   Autor: Ronisvonn Gomes da Silva
   Atualização: Julho de 2026

   Estrutura deste arquivo:
   01. Variáveis e reset
   02. Estrutura geral
   03. Cabeçalho e navegação
   04. Botões
   05. Hero principal
   06. Benefícios
   07. Seções e títulos
   08. Sobre nós
   09. Serviços
   10. Clínica e vídeo
   11. Contato e mapa
   12. WhatsApp flutuante
   13. Rodapé
   14. Responsividade
============================================================ */


/* ============================================================
   01. VARIÁVEIS E RESET
   Define cores, medidas globais e evita estouro horizontal.
============================================================ */
:root {
    --lux-wine: #651014;
    --lux-wine-light: #7a1118;
    --lux-wine-dark: #4b090d;
    --lux-gold: #c99a43;
    --lux-gold-light: #e6bd70;
    --lux-cream: #fbf6f1;
    --lux-blush: #f5e8df;
    --lux-text: #261c1c;
    --lux-muted: #62595a;
    --lux-white: #ffffff;

    --lux-header-height: 108px;
    --lux-shell-max: 1460px;

    --lux-radius-sm: 14px;
    --lux-radius-md: 22px;
    --lux-radius-lg: 30px;

    --lux-shadow-soft: 0 18px 45px rgba(79, 35, 27, .10);
    --lux-shadow-medium: 0 20px 60px rgba(79, 35, 27, .15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--lux-header-height);
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: var(--lux-header-height);
    color: var(--lux-text);
    font-family: Arial, Helvetica, sans-serif;
    background: var(--lux-white);
    overflow-x: hidden;
}

a {
    color: inherit;
}

img,
video,
iframe,
svg {
    max-width: 100%;
}

img {
    display: block;
}


/* ============================================================
   02. ESTRUTURA GERAL
   Limita a largura do conteúdo e padroniza as seções.
============================================================ */
.lux-shell {
    width: min(calc(100% - 80px), var(--lux-shell-max));
    margin-inline: auto;
}

.lux-section {
    min-height: calc(100vh - var(--lux-header-height));
    padding: 70px 0;
    display: flex;
    align-items: center;
}

.lux-section > .lux-shell {
    width: min(calc(100% - 80px), var(--lux-shell-max));
}

.lux-section-soft {
    background: var(--lux-cream);
}


/* ============================================================
   03. CABEÇALHO E NAVEGAÇÃO
   Cabeçalho fixo no celular e sticky no desktop.
============================================================ */
.lux-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    height: var(--lux-header-height);
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid #eee6e1;
    box-shadow: 0 3px 18px rgba(75, 9, 13, .04);
}

.lux-header-inner {
    width: min(calc(100% - 70px), var(--lux-shell-max));
    height: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 38px;
}

.lux-brand {
    width: 190px;
    color: var(--lux-wine);
    text-decoration: none;
    display: grid;
    justify-items: center;
    line-height: 1;
}

.lux-brand-lotus {
    width: 46px;
    height: 31px;
    margin-bottom: -1px;
    color: var(--lux-gold);
}

.lux-brand-name {
    color: var(--lux-wine);
    font: 400 39px/1 Georgia, "Times New Roman", serif;
    letter-spacing: 1px;
    white-space: nowrap;
}

.lux-brand-premium {
    width: 160px;
    margin-top: 6px;
    padding: 5px 0 0 6px;
    border-top: 1px solid var(--lux-gold);
    color: var(--lux-gold);
    font-size: 12px;
    letter-spacing: 6px;
    text-align: center;
}

.lux-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 31px;
}

.lux-nav a {
    position: relative;
    display: inline-block;
    color: #4d2020;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    white-space: nowrap;
    transition: color .25s ease;
}

.lux-nav a:hover,
.lux-nav a.active {
    color: #d59c22;
}

.lux-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 3px;
    border-radius: 10px;
    background: #6f0d15;
}

.lux-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lux-menu-toggle {
    display: none;
}


/* ============================================================
   04. BOTÕES
   Botões primários, WhatsApp e chamadas de ação.
============================================================ */
.lux-btn {
    min-height: 34px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--lux-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1px;
    text-decoration: none;
    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.lux-btn:hover {
    color: var(--lux-white);
    text-decoration: none;
    transform: translateY(-1px);
}

.lux-btn-primary {
    background: linear-gradient(180deg, #77171b, #5b0d11);
    box-shadow: 0 10px 28px rgba(101, 16, 20, .28);
}

.lux-btn-primary:hover {
    background: var(--lux-wine-dark);
}

.lux-btn-whatsapp {
    color: var(--lux-wine);
    border-color: var(--lux-wine);
    background: var(--lux-white);
    padding-inline: 15px;
}

.lux-btn-whatsapp:hover {
    color: var(--lux-wine);
    background: #fbf3f1;
}

.lux-btn-whatsapp svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.lux-btn-treatments {
    min-height: 42px;
    padding-inline: 24px;
    font-size: 11px;
}

.lux-btn-treatments span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}


/* ============================================================
   05. HERO PRINCIPAL
   Título inicial, imagem principal e fundo decorativo.
============================================================ */
.lux-hero {
    position: relative;
    min-height: calc(100vh - var(--lux-header-height));
    padding: 44px 0 38px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 9% 46%, rgba(255, 255, 255, .92), transparent 28%),
        radial-gradient(circle at 83% 27%, rgba(255, 255, 255, .96), transparent 32%),
        linear-gradient(108deg, #fcf8f4 0%, #f9f0e9 52%, #f5e8dd 100%);
}

.lux-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .4;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 3% 50%, rgba(201, 154, 67, .18) 0 2px, transparent 3px),
        linear-gradient(135deg, transparent 48%, rgba(201, 154, 67, .12) 49%, transparent 50%);
    background-size: 150px 150px, 360px 360px;
}

.lux-hero::after {
    content: "";
    position: absolute;
    right: -92px;
    top: 42px;
    width: 265px;
    height: 350px;
    border: 2px solid rgba(202, 154, 67, .12);
    border-radius: 50%;
    transform: rotate(19deg);
}

.lux-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 440px;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
}

.lux-hero-copy {
    padding-top: 5px;
}

.lux-eyebrow {
    min-height: 23px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: var(--lux-wine);
    background: #f2e5dc;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
}

.lux-hero h1 {
    margin: 13px 0 0;
    color: var(--lux-wine);
    font: 700 clamp(54px, 4.4vw, 72px)/.93 Georgia, "Times New Roman", serif;
    letter-spacing: -1.7px;
}

.lux-script {
    margin-top: 4px;
    color: var(--lux-gold);
    font: italic clamp(31px, 2.6vw, 43px)/1.08 "Brush Script MT", "Segoe Script", cursive;
    letter-spacing: .3px;
}

.lux-hero-copy p {
    margin: 18px 0 20px;
    color: #595052;
    font-size: 16px;
    line-height: 1.6;
}

.lux-hero-media {
    padding-left: 34px;
}

.lux-photo-frame {
    width: 100%;
    height: 478px;
    padding: 12px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .95);
    border-radius: 42px;
    background: rgba(255, 255, 255, .7);
    box-shadow:
        0 20px 55px rgba(78, 42, 27, .16),
        0 0 0 8px rgba(255, 255, 255, .28);
}

.lux-photo-frame img {
    width: 100%;
    height: 100%;
    border-radius: 31px;
    object-fit: cover;
    object-position: center;
}


/* ============================================================
   06. BENEFÍCIOS
   Faixa com os quatro diferenciais abaixo do hero.
============================================================ */
.lux-benefits-strip {
    position: relative;
    z-index: 3;
    min-height: 118px;
    margin-top: 22px;
    padding: 18px 34px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .88);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    box-shadow: 0 14px 40px rgba(88, 43, 29, .09);
}

.lux-benefit-item {
    min-width: 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    position: relative;
}

.lux-benefit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 9px;
    bottom: 9px;
    width: 1px;
    background: #eee7e2;
}

.lux-benefit-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--lux-wine);
    background: #f8ece6;
}

.lux-benefit-icon svg {
    width: 32px;
    height: 32px;
}

.lux-benefit-item strong {
    display: block;
    color: #3a2223;
    font-size: 15px;
    line-height: 1.2;
}

.lux-benefit-item small {
    display: block;
    max-width: 190px;
    margin-top: 7px;
    color: #6a5e5e;
    font-size: 11px;
    line-height: 1.35;
}


/* ============================================================
   07. TÍTULOS E TEXTOS DAS SEÇÕES
   Padroniza tipografia das áreas internas.
============================================================ */
.lux-section h2 {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--lux-wine);
    font: 700 clamp(38px, 4vw, 60px)/1.08 Georgia, "Times New Roman", serif;
}

.lux-section p {
    margin: 0;
    color: var(--lux-muted);
    font-size: 17px;
    line-height: 1.8;
}


/* ============================================================
   08. SOBRE NÓS
   Texto à esquerda e imagem à direita no desktop.
============================================================ */
.lux-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 620px);
    gap: 70px;
    align-items: center;
}

.lux-about-text,
.lux-about-image {
    min-width: 0;
}

.lux-about-text p {
    margin-top: 24px;
}

.lux-about-image {
    display: flex;
    justify-content: center;
}

.lux-about-image img {
    width: 85%;
    max-width: 520px;
    height: auto;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: var(--lux-shadow-medium);
}


/* ============================================================
   09. SERVIÇOS
   Fundo bordô, título centralizado e cinco cards.
============================================================ */
.lux-services {
    position: relative;
    overflow: hidden;
    color: var(--lux-white);
    background: linear-gradient(180deg, #5b0b11 0%, #7b1219 100%);
}

.lux-services::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 70px;
    width: 330px;
    height: 430px;
    border: 2px solid rgba(201, 154, 67, .15);
    border-radius: 50%;
    transform: rotate(18deg);
    pointer-events: none;
}

.lux-services-heading {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 34px;
    text-align: center;
}

.lux-services-heading .lux-eyebrow {
    position: relative;
    top: -30px;
    color: var(--lux-gold-light);
    background: transparent;
}

.lux-services-heading h2,
.lux-services-title {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    color: var(--lux-white);
    font: 700 72px/1.05 Georgia, "Times New Roman", serif;
    text-align: center;
    white-space: nowrap;
}

.lux-service-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 0;
}

.lux-service-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(224, 184, 108, .6);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    text-align: center;
    box-shadow: var(--lux-shadow-soft);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.lux-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 60px rgba(79, 35, 27, .16);
}

.lux-service-photo {
    height: 200px;
    overflow: hidden;
}

.lux-service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.lux-service-card:hover .lux-service-photo img {
    transform: scale(1.05);
}

.lux-service-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    margin: -29px auto 0;
    overflow: hidden;
    border: 2px solid var(--lux-white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--lux-white);
    background: linear-gradient(145deg, #d2a24a, #b88225);
    box-shadow: 0 8px 20px rgba(133, 85, 18, .24);
}

.lux-service-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105% !important;
    height: 105% !important;
    display: block;
    transform: translate(-50%, -50%);
}

.lux-service-card h3 {
    min-height: 70px;
    margin: 12px 16px 14px;
    padding: 10px 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-white);
    background: linear-gradient(180deg, #7a1118, #651014);
    font: 700 16px/1.15 Georgia, "Times New Roman", serif;
    text-align: center;
    text-transform: uppercase;
}

.lux-service-card p {
    min-height: 112px;
    margin: 0;
    padding: 17px 17px 22px;
    color: #5f5556;
    font-size: 13px;
    line-height: 1.55;
}


/* ============================================================
   10. CLÍNICA E VÍDEO
   Texto à esquerda, imagem e vídeo lado a lado no desktop.
============================================================ */
.lux-clinic-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 55px;
}

.lux-clinic-copy,
.lux-clinic-gallery,
.lux-video-wrapper {
    min-width: 0;
}

.lux-clinic-grid p {
    margin-top: 22px;
}

.lux-clinic-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 18px;
}

.lux-clinic-gallery img,
.lux-clinic-video {
    width: 100%;
    height: 390px;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.lux-clinic-video {
    display: block;
    cursor: pointer;
    transition: transform .4s ease;
}

.lux-clinic-video:hover {
    transform: scale(1.03);
}

.lux-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
}

.lux-video-audio {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 18px;
    border: 0;
    border-radius: 30px;
    color: var(--lux-white);
    background: rgba(114, 16, 24, .92);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background .3s ease,
        transform .3s ease;
}

.lux-video-audio:hover {
    background: #8d1820;
    transform: scale(1.05);
}


/* ============================================================
   11. CONTATO E MAPA
   Cartão com dados da clínica e mapa incorporado.
============================================================ */
.lux-contact {
    min-height: calc(100vh - var(--lux-header-height));
    padding: 30px 0;
    align-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .95), transparent 36%),
        linear-gradient(135deg, #f8efe9 0%, #ffffff 100%);
}

.lux-contact > .lux-shell {
    width: min(calc(100% - 58px), 1480px);
}

.lux-contact-card {
    width: 100%;
    min-height: auto;
    padding: 42px 48px;
    display: grid;
    grid-template-columns: minmax(340px, .8fr) minmax(520px, 1.2fr);
    gap: 50px;
    align-items: center;
    border: 1px solid rgba(201, 154, 67, .34);
    border-radius: 30px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 22px 64px rgba(80, 42, 28, .10);
}

.lux-contact-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.lux-contact-info .lux-eyebrow {
    min-width: 138px;
    margin: 0 0 16px;
    padding-inline: 18px;
    justify-content: center;
    color: var(--lux-wine);
    background: #f3e6dd;
    letter-spacing: 5px;
}

.lux-contact-info h2 {
    max-width: 500px;
    margin: 0 0 20px;
    color: #721018;
    font: 700 clamp(38px, 3.4vw, 54px)/1 Georgia, "Times New Roman", serif;
    letter-spacing: -1px;
}

.lux-contact-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lux-contact-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.lux-contact-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #eed8ca;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #7a1118;
    background: #fbf2ec;
}

.lux-contact-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lux-contact-item strong {
    display: block;
    margin: 1px 0 3px;
    color: #6b0f16;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.lux-contact-item p,
.lux-contact-item a {
    margin: 0;
    color: #4f4949;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
}

.lux-contact-item a:hover {
    color: #7a1118;
}

.lux-contact-button {
    min-height: 48px;
    margin-top: 18px;
    padding-inline: 28px;
    align-self: flex-start;
    font-size: 12px;
    letter-spacing: .6px;
}

.lux-contact-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #e5bd70;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lux-contact-map {
    width: 100%;
    height: 390px;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid #ead6c9;
    border-radius: 24px;
    background: #f7f2ee;
    box-shadow: 0 20px 44px rgba(79, 35, 27, .13);
}

.lux-contact-map iframe {
    width: 100%;
    height: 390px;
    min-height: 390px;
    display: block;
    border: 0;
}


/* ============================================================
   12. WHATSAPP FLUTUANTE
   Botão fixo no canto inferior direito.
============================================================ */
.lux-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    min-width: 58px;
    height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--lux-white);
    background: #25d366;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.lux-whatsapp-float:hover {
    color: var(--lux-white);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .30);
}

.lux-whatsapp-float svg {
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
    fill: currentColor;
}


/* ============================================================
   13. RODAPÉ
   Informações finais da página.
============================================================ */
.lux-footer {
    padding: 24px 0;
    color: var(--lux-white);
    background: var(--lux-wine-dark);
}

.lux-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.lux-footer a {
    color: var(--lux-white);
}


/* ============================================================
   14. RESPONSIVIDADE
============================================================ */


/* ------------------------------------------------------------
   Desktop intermediário e notebook grande
   Ajustes entre 1181px e 1450px.
------------------------------------------------------------ */
@media (max-width: 1450px) {
    .lux-header-inner {
        width: min(calc(100% - 40px), 1360px);
        grid-template-columns: 200px 1fr auto;
        gap: 24px;
    }

    .lux-nav {
        gap: 24px;
    }
}


/* ------------------------------------------------------------
   Notebook 1360x768
   Mantém o título de serviços em uma linha, porém menor.
------------------------------------------------------------ */
@media (min-width: 1200px) and (max-width: 1450px) {
    .lux-services-heading {
        max-width: 1320px;
    }

    .lux-services-heading h2,
    .lux-services-title {
        font-size: 58px;
        white-space: nowrap;
    }
}


/* ------------------------------------------------------------
   Notebook com pouca altura
   Reduz hero, benefícios e mapa para caber melhor.
------------------------------------------------------------ */
@media (min-width: 1000px) and (max-height: 800px) {
    :root {
        --lux-header-height: 104px;
    }

    .lux-hero {
        min-height: calc(100vh - var(--lux-header-height));
        padding: 24px 0 20px;
        justify-content: flex-start;
    }

    .lux-hero-grid {
        min-height: 390px;
    }

    .lux-hero h1 {
        font-size: 60px;
    }

    .lux-script {
        font-size: 32px;
    }

    .lux-hero-copy p {
        margin: 16px 0 18px;
        font-size: 15px;
    }

    .lux-photo-frame {
        height: 430px;
        padding: 9px;
        border-radius: 34px;
    }

    .lux-photo-frame img {
        border-radius: 25px;
    }

    .lux-benefits-strip {
        min-height: 92px;
        margin-top: 14px;
        padding: 12px 24px;
    }

    .lux-benefit-icon {
        width: 48px;
        height: 48px;
    }

    .lux-benefit-item strong {
        font-size: 13px;
    }

    .lux-benefit-item small {
        display: none;
    }

    .lux-contact {
        padding: 22px 0;
    }

    .lux-contact-card {
        padding: 30px 42px;
        gap: 42px;
    }

    .lux-contact-map,
    .lux-contact-map iframe {
        height: 350px;
        min-height: 350px;
    }
}


/* ------------------------------------------------------------
   Até 1250px
   Serviços passam de cinco para três colunas.
------------------------------------------------------------ */
@media (max-width: 1250px) {
    .lux-header-inner {
        grid-template-columns: 175px 1fr auto;
        gap: 16px;
        width: min(calc(100% - 30px), 1180px);
    }

    .lux-nav {
        gap: 18px;
    }

    .lux-header-actions .lux-btn-whatsapp {
        display: none;
    }

    .lux-shell {
        width: min(calc(100% - 50px), 1120px);
    }

    .lux-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lux-services-heading h2,
    .lux-services-title {
        font-size: 52px;
        white-space: normal;
    }
}


/* ------------------------------------------------------------
   Tablet e celular horizontal
   Menu mobile, grids em uma coluna e cabeçalho fixo.
------------------------------------------------------------ */
@media (max-width: 900px) {
    :root {
        --lux-header-height: 86px;
    }

    .lux-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: var(--lux-header-height);
        z-index: 9999;
        background: var(--lux-white);
        box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    }

    .lux-header-inner {
        width: calc(100% - 24px);
        grid-template-columns: 1fr auto;
        margin-inline: auto;
    }

    .lux-brand {
        width: 145px;
    }

    .lux-brand-name {
        font-size: 28px;
    }

    .lux-brand-premium {
        width: 124px;
        font-size: 9px;
    }

    .lux-menu-toggle {
        width: 42px;
        height: 42px;
        padding: 9px;
        border: 1px solid #e5d6ce;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: var(--lux-white);
    }

    .lux-menu-toggle span {
        width: 100%;
        height: 2px;
        background: var(--lux-wine);
    }

    .lux-nav {
        position: fixed;
        top: var(--lux-header-height);
        left: 0;
        right: 0;
        z-index: 9998;
        width: 100%;
        max-height: calc(100vh - var(--lux-header-height));
        padding: 22px;
        overflow-y: auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--lux-white);
        box-shadow: 0 16px 30px rgba(0, 0, 0, .08);
    }

    .lux-nav.is-open {
        display: flex;
    }

    .lux-nav a {
        padding: 9px 0;
        text-align: center;
    }

    .lux-nav a.active::after {
        display: none;
    }

    .lux-header-actions {
        display: none;
    }

    .lux-hero {
        min-height: auto;
        padding: 42px 0;
    }

    .lux-hero-grid {
        grid-template-columns: 1fr;
    }

    .lux-hero-copy {
        text-align: center;
    }

    .lux-hero-media {
        padding: 30px 0 0;
    }

    .lux-photo-frame {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .lux-benefits-strip {
        margin-top: 25px;
        grid-template-columns: 1fr 1fr;
    }

    .lux-benefit-item {
        padding: 13px;
    }

    .lux-benefit-item:nth-child(2)::after {
        display: none;
    }

    .lux-section {
        min-height: auto;
        padding: 75px 0;
    }

    .lux-section > .lux-shell {
        width: min(calc(100% - 40px), 820px);
    }

    .lux-about-grid,
    .lux-clinic-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 35px;
    }

    .lux-about-text,
    .lux-about-image,
    .lux-clinic-copy,
    .lux-clinic-gallery {
        width: 100%;
        max-width: 100%;
    }

    .lux-about-image img {
        width: 100%;
        max-width: 520px;
        margin-inline: auto;
    }

    .lux-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lux-services-heading h2,
    .lux-services-title {
        font-size: 46px;
        line-height: 1.08;
        white-space: normal;
    }

    .lux-clinic-copy {
        order: 1;
        text-align: center;
    }

    .lux-clinic-gallery {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .lux-clinic-gallery img,
    .lux-video-wrapper,
    .lux-clinic-video {
        width: 100%;
        max-width: 100%;
    }

    .lux-clinic-gallery img {
        height: auto;
        aspect-ratio: 4 / 3;
        object-position: center;
    }

    .lux-clinic-video {
        height: auto;
        aspect-ratio: 9 / 16;
    }

    .lux-contact-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .lux-contact-map,
    .lux-contact-map iframe {
        height: 360px;
        min-height: 360px;
    }
}


/* ------------------------------------------------------------
   Celular
   Uma coluna, títulos menores e espaçamentos reduzidos.
------------------------------------------------------------ */
@media (max-width: 575px) {
    .lux-shell,
    .lux-section > .lux-shell {
        width: min(calc(100% - 30px), 520px);
    }

    .lux-hero {
        padding-top: 28px;
    }

    .lux-hero h1 {
        font-size: 42px;
    }

    .lux-script {
        font-size: 27px;
    }

    .lux-desktop-break {
        display: none;
    }

    .lux-photo-frame {
        height: 320px;
        aspect-ratio: auto;
        padding: 7px;
        border-radius: 26px;
    }

    .lux-photo-frame img {
        border-radius: 20px;
    }

    .lux-benefits-strip {
        grid-template-columns: 1fr;
        padding: 8px 16px;
    }

    .lux-benefit-item {
        justify-content: flex-start;
        padding-left: 8px;
    }

    .lux-benefit-item::after {
        display: none;
    }

    .lux-section {
        padding: 62px 0;
    }

    .lux-section h2 {
        font-size: 40px;
        line-height: 1.05;
    }

    .lux-services-heading {
        margin-bottom: 28px;
    }

    .lux-services-heading .lux-eyebrow {
        top: -16px;
    }

    .lux-services-heading h2,
    .lux-services-title {
        font-size: 36px;
        line-height: 1.15;
        white-space: normal;
    }

    .lux-service-grid {
        grid-template-columns: 1fr;
    }

    .lux-service-photo {
        height: 300px;
    }

    .lux-service-card p {
        min-height: auto;
    }

    .lux-clinic-gallery img {
        aspect-ratio: 4 / 3;
        border-radius: 24px;
    }

    .lux-clinic-video {
        height: 320px;
        aspect-ratio: auto;
        border-radius: 24px;
    }

    .lux-video-audio {
        right: 12px;
        bottom: 12px;
        padding: 9px 13px;
        font-size: 12px;
    }

    .lux-contact {
        padding: 24px 0;
    }

    .lux-contact > .lux-shell {
        width: min(calc(100% - 24px), 520px);
    }

    .lux-contact-card {
        padding: 28px 20px;
        gap: 30px;
        border-radius: 22px;
    }

    .lux-contact-info h2 {
        font-size: 38px;
    }

    .lux-contact-map,
    .lux-contact-map iframe {
        height: 300px;
        min-height: 300px;
    }

    .lux-whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        min-width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
    }

    .lux-whatsapp-float span {
        display: none;
    }

    .lux-footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}


.lux-services-title{

    margin-top:-20px;

    font-family: Georgia, "Times New Roman", serif;
    font-weight:700;

    font-size:48px;   /* diminua aqui */

    line-height:1.05;

    text-align:center;

    color:#fff;

}

/* CORREÇÃO FINAL DO TÍTULO DOS SERVIÇOS */
#servicos .lux-services-heading h2 {
    width: 100% !important;
    max-width: none !important;
    margin: -20px auto 30px !important;

    font-size: 28px !important;
    line-height: 1.05 !important;

    text-align: center !important;
    white-space: nowrap !important;
}


/* Celular */
@media (max-width: 900px) {
    #servicos .lux-services-heading h2 {
        font-size: 38px !important;
        line-height: 1.12 !important;
        white-space: normal !important;
    }
}

@media (max-width: 575px) {
    #servicos .lux-services-heading h2 {
        font-size: 34px !important;
    }
}




/*=====================================================
  RODAPÉ
=====================================================*/

.lux-footer{
    background:#5a0b10;
    padding:22px 0;
}

.lux-footer-inner{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
}

.lux-footer-admin{
    justify-self:left;

    color:#ffffff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.lux-footer-copy{
    justify-self:center;

    color:#ffffff;
    font-size:14px;
    font-weight:600;
}

.lux-footer-credit{
    justify-self:right;

    color:#ffffff;
    font-size:14px;
}

.lux-footer-credit a{
    color:#d9a441;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.lux-footer-credit a:hover{
    color:#ffffff;
    text-decoration:underline;
}

/* Footer celular */
@media (max-width: 768px) {
    .lux-footer-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
}



/* ======================================================
   MODAL DE VAGAS
====================================================== */

.lux-vagas-modal {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(190, 145, 55, 0.75);
    border-radius: 20px;
    background-color: #f8eee4;
    box-shadow: 0 25px 70px rgba(48, 0, 13, 0.45);
}

.lux-vagas-imagem {
    display: block;
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    background-color: #f8eee4;
}

.lux-vagas-fechar {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;

    width: 38px;
    height: 38px;

    padding: 10px;
    border: none;
    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.30);

    cursor: pointer;
    opacity: 1;

    transition: all .25s ease;
}

.lux-vagas-fechar:hover {
    transform: scale(1.06);
    background-color: #ffffff;
}

.lux-vagas-acoes {
    display: flex;
    justify-content: center;
    padding: 16px 20px 20px;
    background-color: #4d0015;
}

.lux-vagas-botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 230px;
    padding: 13px 24px;

    border: 1px solid #d5a84b;
    border-radius: 999px;

    color: #ffffff;
    background-color: #710020;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .6px;

    transition:
        transform .25s ease,
        background-color .25s ease,
        box-shadow .25s ease;
}

.lux-vagas-botao:hover {
    color: #ffffff;
    background-color: #95002c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


/* ======================================================
   RESPONSIVIDADE
====================================================== */

@media (max-width: 768px) {

    #modalVagas .modal-dialog {
        margin: 12px;
    }

    .lux-vagas-modal {
        border-radius: 14px;
    }

    .lux-vagas-imagem {
        max-height: 76vh;
    }

    .lux-vagas-acoes {
        padding: 12px;
    }

    .lux-vagas-botao {
        width: 100%;
        min-width: 0;
        font-size: 13px;
    }

    .lux-vagas-fechar {
        top: 8px;
        right: 8px;
        width: 34px;
        height: 34px;
    }

}


/* ======================================================
   BOTÃO TRABALHE CONOSCO
====================================================== */

.lux-botao-vagas {
    position: fixed;
    right: 22px;
    bottom: 95px;

    z-index: 10000;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;

    border: 1px solid #d5a84b;
    border-radius: 999px;

    color: #ffffff;
    background-color: #65001d;

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;

    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.25);

    transition:
        background-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.lux-botao-vagas:hover {
    color: #ffffff;
    background-color: #850028;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.30);
}

@media (max-width: 576px) {

    .lux-botao-vagas {
        right: 14px;
        bottom: 88px;
        padding: 11px 14px;
        font-size: 11px;
    }

}


/* ======================================================
   MODAL ACIMA DO CABEÇALHO
====================================================== */

#modalVagas {
    z-index: 30000;
}

#modalVagas .modal-dialog {
    position: relative;
    z-index: 30001;
}