/* Landing pública (index) — use <body class="page-landing"> para ativar.
   Evita afetar agendamento/assinatura que também carregam este arquivo. */
:root {
    --land-bg: #1a1d1a;
    --land-bg-mid: #252a26;
    --land-accent-gold: #c9a227;
}

.page-landing {
    font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
}

/* Hero: altura da viewport sem somar padding duplo com min-vh na row */
.page-landing .hero-section {
    position: relative;
    box-sizing: border-box;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    background: linear-gradient(145deg, var(--land-bg) 0%, var(--land-bg-mid) 45%, #1e241f 100%);
    color: #f4f6f4;
    overflow: hidden;
}

.page-landing .hero-section > .container {
    width: 100%;
}

.page-landing .hero-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: inherit;
}

.page-landing .hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.88;
}

.page-landing .hero-logo {
    max-height: 120px;
    width: auto;
    height: auto;
    display: block;
    border-radius: 1.25rem;
    object-fit: contain;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .page-landing .col-lg-6.text-lg-start .hero-logo {
        margin-left: 0;
        margin-right: auto;
    }
}

.page-landing .hero-icon {
    font-size: 4rem;
    color: var(--land-accent-gold);
}

.page-landing .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(4rem, 18vw, 12rem);
    color: rgba(201, 162, 39, 0.12);
}

.page-landing .sobre-section .section-title,
.page-landing .servicos-section .section-title,
.page-landing .contato-section .section-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
    color: #1f2420;
}

.page-landing .section-text,
.page-landing .service-text {
    color: #5c636a;
}

.page-landing .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.page-landing .service-icon {
    font-size: 2.25rem;
    color: var(--land-accent-gold);
    margin-bottom: 1rem;
}

.page-landing .service-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2420;
}

.page-landing .footer-section {
    background: #f8f9f8;
    border-top: 1px solid #e8ebe8;
}

/* Links só nos itens (tel/email); não afeta .btn */
.page-landing .contato-section .contato-item a {
    color: #0d6efd;
}

.page-landing .contato-section .contato-item a:hover {
    color: #0a58ca;
}

.page-landing .contato-section .btn.btn-primary,
.page-landing .contato-section .btn.btn-success {
    color: #fff;
}

.page-landing .contato-section .btn.btn-primary:hover,
.page-landing .contato-section .btn.btn-primary:focus,
.page-landing .contato-section .btn.btn-success:hover,
.page-landing .contato-section .btn.btn-success:focus {
    color: #fff;
}

/* Acesso ao sistema — topo direita */
.page-landing .land-access-bar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1040;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.65rem 1rem;
    pointer-events: none;
}

.page-landing .land-access-bar > * {
    pointer-events: auto;
}

.page-landing .btn-access-sistema {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem 0.45rem 0.45rem;
    border-radius: 999px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: #f4f6f4 !important;
    background: rgba(30, 35, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-landing .btn-access-sistema:hover {
    color: #fff !important;
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 162, 39, 0.2);
    transform: translateY(-1px);
}

.page-landing .btn-access-sistema__glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--land-accent-gold) 0%, #a68520 100%);
    color: #1a1d1a;
}

.page-landing .btn-access-sistema__glyph i {
    display: block;
    font-size: 1.05rem;
    line-height: 1;
}

.page-landing .btn-access-sistema__label {
    padding-right: 0.25rem;
}

/* CTAs agenda + assinatura */
.page-landing .hero-cta-wrap {
    max-width: 100%;
}

@media (min-width: 768px) {
    .page-landing .hero-cta-wrap {
        max-width: 560px;
    }
}

.page-landing .hero-cta-kicker {
    letter-spacing: 0.12em;
}

.page-landing .hero-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    min-height: 4.25rem;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 768px) {
    .page-landing .hero-cta {
        gap: 1rem;
        padding: 1rem 1.15rem;
        min-height: 4.5rem;
    }
}

.page-landing .hero-cta:hover {
    color: inherit;
    transform: translateY(-2px);
}

.page-landing .hero-cta--agenda {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.95) 0%, #0a58ca 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(13, 110, 253, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
}

.page-landing .hero-cta--agenda:hover {
    box-shadow: 0 12px 36px rgba(13, 110, 253, 0.5);
    color: #fff;
}

.page-landing .hero-cta--assinatura {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(25, 135, 84, 0.35);
    border-color: rgba(255, 255, 255, 0.2);
}

.page-landing .hero-cta--assinatura:hover {
    box-shadow: 0 12px 36px rgba(25, 135, 84, 0.5);
    color: #fff;
}

.page-landing .hero-cta__icon-wrap {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .page-landing .hero-cta__icon-wrap {
        width: 3rem;
        height: 3rem;
        font-size: 1.45rem;
    }
}

.page-landing .hero-cta__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.page-landing .hero-cta__title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .page-landing .hero-cta__title {
        font-size: 1.05rem;
    }
}

.page-landing .hero-cta__hint {
    font-size: 0.75rem;
    opacity: 0.92;
    margin-top: 0.1rem;
}

@media (min-width: 768px) {
    .page-landing .hero-cta__hint {
        font-size: 0.8rem;
    }
}

.page-landing .hero-cta__chev {
    flex-shrink: 0;
    opacity: 0.85;
    font-size: 1.15rem;
}

@media (max-width: 360px) {
    .page-landing .hero-cta__chev {
        display: none;
    }
}
