:root {
    --bg: #0f172a;
    --bg-card: #111827;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --primary: #2563eb;
    --success: #065f46;
    --error: #7f1d1d;
    --border: #374151;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

body.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: #15110e;
    background-image: linear-gradient(rgba(8, 6, 4, 0.48), rgba(8, 6, 4, 0.38)), var(--landing-bg-image, url('../imagens/barb01.png'));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

body.landing-page .page-shell {
    flex: 1;
}

body.page-auth {
    min-height: 100dvh;
}

body.page-auth .page-shell {
    flex: 1 0 auto;
    min-height: calc(100dvh - 220px);
}

body.page-auth .auth-card {
    margin: 4rem auto 0;
}

body.page-auth .site-footer {
    margin-top: 4rem;
}

.container {
    width: min(100% - 2rem, 960px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    min-height: 84px;
    padding: 0.75rem 1.25rem 0.75rem 24.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.site-brand {
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 430px;
    flex-shrink: 0;
}

.site-brand__logo {
    display: block;
    width: auto;
    height: 162px;
    max-width: min(54vw, 430px);
    margin-top: 23px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 1.1rem;
}

/* Hamburger button — hidden on desktop */
.site-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    z-index: 110;
}

.site-menu-toggle:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.4);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.site-menu-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, width 0.24s ease, background 0.24s ease;
    transform-origin: center;
}

/* Animated X when open */
.site-menu-toggle[aria-expanded="true"] .site-menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] .site-menu-toggle__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.site-menu-toggle[aria-expanded="true"] .site-menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-menu-toggle.is-active {
    background: rgba(201, 169, 110, 0.18);
    border-color: rgba(201, 169, 110, 0.44);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

a {
    color: #ffffff;
    text-decoration: none;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #ffffff;
    opacity: 0.78;
}

.site-nav__link--active {
    color: #c9a96e !important;
    opacity: 1 !important;
    position: relative;
}

.site-nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: #c9a96e;
}

.site-nav__button,
.inline-form .site-nav__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0.75rem 1.2rem;
    border: 1px solid rgba(201, 169, 110, 0.28);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(44, 34, 24, 0.78) 0%, rgba(25, 19, 14, 0.72) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-nav__button::before,
.inline-form .site-nav__button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top center, rgba(201, 169, 110, 0.14), transparent 60%);
    pointer-events: none;
}

.site-nav__button:hover,
.site-nav__button:focus-visible,
.inline-form .site-nav__button:hover,
.inline-form .site-nav__button:focus-visible {
    border-color: rgba(201, 169, 110, 0.42);
    background: linear-gradient(180deg, rgba(56, 43, 30, 0.86) 0%, rgba(31, 24, 17, 0.8) 100%);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(201, 169, 110, 0.08);
    opacity: 1;
    transform: translateY(-2px);
}

.site-nav__button--gold {
    border-color: #c9a96e;
    background: #c9a96e;
    color: #0f0b07;
    font-weight: 700;
}

.page-shell {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
}

.card {
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 24, 39, 0.52);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.card-sm {
    max-width: 420px;
}

/* ── Auth Card (Login / Cadastro) ─────────────────────── */
.auth-card {
    width: 100%;
    max-width: 460px;
    margin: 4rem auto;
    border: 1px solid rgba(201, 169, 110, 0.25);
    background: rgba(17, 14, 10, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 0;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    width: auto;
    border-radius: 0;
}

.auth-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.auth-tab--active {
    color: #c9a96e;
    border-bottom-color: #c9a96e;
}

.auth-panel {
    padding: 2rem;
}

.auth-panel--hidden {
    display: none;
}

.auth-panel form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.auth-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.03em;
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.auth-input:focus {
    border-color: rgba(201, 169, 110, 0.6);
    background: rgba(255, 255, 255, 0.09);
}

.auth-btn {
    width: 100%;
    padding: 0.85rem;
    border-radius: 999px;
    background: #c9a96e;
    border: none;
    color: #0f0b07;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 0.25rem;
}

.auth-btn:hover {
    background: #d4b87e;
    transform: translateY(-2px);
}

form {
    display: grid;
    gap: 0.75rem;
}

input,
button {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 0.65rem 0.75rem;
}

button {
    background: var(--primary);
    border-color: transparent;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.inline-form {
    display: inline;
}

.inline-form button {
    width: auto;
}

.alert {
    margin-top: 1rem;
    border-radius: 8px;
    padding: 0.75rem;
    transition: opacity 300ms ease, transform 300ms ease;
    will-change: opacity, transform;
}

.alert.is-hidden {
    opacity: 0;
    transform: translateY(-4px);
}

.alert.success {
    background: var(--success);
}

.alert.error {
    background: var(--error);
}

/* ── Services Section ───────────────────────────────────── */
.services {
    padding: 1rem 0 3rem;
}

.services__header {
    text-align: center;
    position: relative;
    max-width: 760px;
    margin: 0 auto 2.5rem;
    padding: 20px 5px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(28, 21, 15, 0.28) 0%, rgba(17, 14, 10, 0.16) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.services__header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(201, 169, 110, 0.08), transparent 60%);
    pointer-events: none;
}

.services__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 0.6rem;
}

.services__title {
    position: relative;
    margin: 0 0 0.6rem;
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.services__subtitle {
    position: relative;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.7;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 1);
    letter-spacing: 0.01em;
}

/* Carousel */
.services__carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.services__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    padding: 1.2rem 0.25rem 1rem;
}

.services__track::-webkit-scrollbar {
    display: none;
}

.services__nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 169, 110, 0.55);
    background: rgba(201, 169, 110, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #c9a96e;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.15);
    z-index: 2;
}

.services__nav:hover {
    background: rgba(201, 169, 110, 0.28);
    border-color: #c9a96e;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(201, 169, 110, 0.35);
}

.services__nav:disabled {
    opacity: 0.25;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.services__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(17, 14, 10, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 0.85rem);
    min-width: 240px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.services__card--featured {
    border-color: rgba(201, 169, 110, 0.45);
    background: rgba(30, 22, 12, 0.72);
    box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.2), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.services__card-badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #c9a96e;
    color: #0f0b07;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}

.services__card-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.services__card-name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.services__card-desc {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
}

.services__card-price {
    font-size: 1.7rem;
    font-weight: 800;
    color: #c9a96e;
    letter-spacing: -0.02em;
}

.services__card-btn {
    margin-top: 0.25rem;
    display: inline-block;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.services__card-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.38);
    opacity: 1;
}

.services__card-btn--featured {
    background: #c9a96e;
    border-color: #c9a96e;
    color: #0f0b07;
}

.services__card-btn--featured:hover {
    background: #d4b87e;
    border-color: #d4b87e;
}

.services__cta {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    margin-top: 2rem;
}

.services__cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 0.95rem 2.4rem;
    border: 1px solid rgba(201, 169, 110, 0.42);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(214, 183, 120, 0.98) 0%, rgba(183, 145, 86, 0.96) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 248, 228, 0.45);
    color: #120d08;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    overflow: hidden;
}

.services__cta-btn::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 55%);
    pointer-events: none;
}

.services__cta-btn:hover,
.services__cta-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 169, 110, 0.18);
    filter: brightness(1.03);
    opacity: 1;
}

.services__cta-btn--secondary {
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(35, 27, 19, 0.82) 0%, rgba(20, 16, 12, 0.92) 100%);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.services__cta-btn--secondary::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%);
}

.services__cta-btn--mobile {
    display: none;
}

/* ── Contato Page ───────────────────────────────────────── */
.contato {
    padding: 2.5rem 0 4rem;
}

.contato__header {
    text-align: center;
    position: relative;
    max-width: 760px;
    margin: 0 auto 2.5rem;
    padding: 1.75rem 1.1rem;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(28, 21, 15, 0.28) 0%, rgba(17, 14, 10, 0.16) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.contato__header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(201, 169, 110, 0.08), transparent 60%);
    pointer-events: none;
}

.contato__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 0.75rem;
}

.contato__title {
    position: relative;
    margin: 0 0 0.75rem;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.contato__subtitle {
    position: relative;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 1);
    max-width: 480px;
    margin-inline: auto;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.contato__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.5rem;
    align-items: start;
}

/* Info cards */
.contato__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contato__info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(17, 14, 10, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.2s ease;
}

.contato__info-card:hover {
    transform: translateY(-2px);
}

.contato__info-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.1rem;
}

.contato__info-title {
    margin: 0 0 0.25rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #c9a96e;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contato__info-text {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.contato__info-text a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contato__info-text a:hover {
    color: #c9a96e;
    opacity: 1;
}

/* Form */
.contato__social-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 20px;
    background: rgba(17, 14, 10, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    height: 100%;
}

.contato__social-label {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    text-align: center;
}

.contato__social-links {
    display: flex;
    gap: 1.25rem;
}

.contato__social-btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.contato__social-btn:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.contato__social-btn--instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(220, 39, 67, 0.35);
}

.contato__social-btn--instagram:hover {
    box-shadow: 0 10px 32px rgba(220, 39, 67, 0.5);
}

.contato__social-btn--facebook {
    background: #1877f2;
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(24, 119, 242, 0.35);
}

.contato__social-btn--facebook:hover {
    box-shadow: 0 10px 32px rgba(24, 119, 242, 0.5);
}

@media (max-width: 778px) {
    .contato__grid {
        grid-template-columns: 1fr;
    }

    .contato__social-links {
        flex-direction: column;
        width: 100%;
    }

    .contato__social-btn {
        justify-content: center;
    }
}

/* ── Sobre Page ─────────────────────────────────────────── */
.sobre {
    padding: 2.5rem 0 4rem;
}

.sobre__hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.sobre__hero-text {
    flex: 1;
    position: relative;
    padding: 1.75rem 1.1rem;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(28, 21, 15, 0.28) 0%, rgba(17, 14, 10, 0.16) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.sobre__hero-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(201, 169, 110, 0.08), transparent 60%);
    pointer-events: none;
}

.sobre__eyebrow {
    position: relative;
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 0.75rem;
}

.sobre__title {
    position: relative;
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.sobre__lead {
    position: relative;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
}

.sobre__hero-photo {
    flex-shrink: 0;
}

.sobre__photo-frame {
    position: relative;
    width: 220px;
    height: 260px;
    border-radius: 24px;
    border: 1.5px solid rgba(201, 169, 110, 0.45);
    background: rgba(17, 14, 10, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre__photo-placeholder {
    font-size: 5rem;
    opacity: 0.4;
}

.sobre__photo + .sobre__photo-placeholder {
    display: none;
}

.sobre__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.sobre__card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(17, 14, 10, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sobre__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.sobre__card--featured {
    border-color: rgba(201, 169, 110, 0.45);
    background: rgba(30, 22, 12, 0.72);
    box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.2), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.sobre__card-icon {
    font-size: 2rem;
    line-height: 1;
}

.sobre__card-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.sobre__card-text {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.sobre__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.sobre__list li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.sobre__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9a96e;
}

.sobre__cta {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 20px;
    background: rgba(17, 14, 10, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.sobre__cta-text {
    margin: 0 0 1.25rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

.sobre__cta-btn {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    border-radius: 999px;
    background: #c9a96e;
    color: #0f0b07;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sobre__cta-btn:hover {
    background: #d4b87e;
    transform: translateY(-2px);
    opacity: 1;
}

@media (max-width: 778px) {
    .sobre__hero {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .sobre__photo-frame {
        width: 160px;
        height: 190px;
    }

    .sobre__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 880px) {
    body.menu-open {
        overflow: hidden;
    }

    .page-home .site-nav .site-nav__auth-link {
        display: none;
    }

    .site-header {
        min-height: 80px;
        padding: 0;
        top: 0;
        overflow: visible;
    }

    .site-header .container {
        width: 100%;
        margin-inline: 0;
        padding-inline: 0.75rem;
    }

    .site-header__inner {
        position: relative;
        border-radius: 5px;
        min-height: 80px;
        padding: 0 0.4rem 0 0;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        overflow: visible;
    }

    .site-brand {
        position: absolute;
        left: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        flex: none;
        overflow: visible;
        display: flex;
        align-items: center;
        min-height: 0;
        margin-left: 0;
        padding-left: 0;
    }

    .site-brand__logo {
        height: auto;
        width: clamp(242px, 64vw, 350px);
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 0;
        margin-left: -48px;
        object-fit: contain;
        object-position: left center;
    }

    .site-menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        margin-left: auto;
        align-self: center;
        border-radius: 14px;
    }

    .site-menu-toggle__bar {
        width: 22px;
    }

    .site-nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 120;
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
        width: auto;
        margin-top: 0;
        padding: 0.25rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(23, 17, 12, 0.94) 0%, rgba(12, 10, 7, 0.96) 100%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, -12px, 0);
        transform-origin: top center;
        overflow: hidden;
        will-change: transform, opacity;
        backface-visibility: hidden;
        contain: layout paint;
        transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.34s;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
        transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
    }

    .site-nav a {
        padding: 0.9rem 1rem;
        border: 1px solid transparent;
        border-radius: 14px;
        font-size: 1rem;
        text-align: center;
        opacity: 1;
        transform: none;
        transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        background: rgba(201, 169, 110, 0.12);
        border-color: rgba(201, 169, 110, 0.18);
        opacity: 1;
    }

    .site-nav__button,
    .inline-form .site-nav__button {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        padding: 0.9rem 1rem;
        border-radius: 20px;
    }

    .site-nav .inline-form {
        opacity: 1;
        transform: none;
    }

    .inline-form {
        display: block;
    }
}

@media (max-width: 778px) {
    body.landing-page {
        background-position: 65% center;
    }

    .services__card {
        flex: 0 0 78vw;
    }

    .services__nav {
        display: none;
    }

    .services__cta {
        display: flex;
        flex-direction: column;
    }

    .services__cta-btn {
        width: min(100%, 320px);
    }

    .services__cta-btn--mobile {
        display: inline-flex;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-menu-toggle,
    .site-menu-toggle__bar,
    .site-nav,
    .site-nav a,
    .site-nav .inline-form {
        transition: none !important;
    }
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    margin-top: 4rem;
    border-top: 1px solid rgba(201, 169, 110, 0.18);
    background: rgba(10, 8, 5, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.1rem 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
}

.site-footer__heart {
    color: #c9a96e;
}

@media (max-width: 778px) {
    .site-footer__bottom {
        justify-content: center;
        text-align: center;
    }
}
