/* Espaço Zelo - alinhado com UI global Pixel em Foco */

@font-face {
    font-family: "ZeloSans";
    src: url("../../../font/fonts/OpenSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ZeloSans";
    src: url("../../../font/fonts/OpenSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ZeloDisplay";
    src: url("../../../font/fonts/MontserratAlternates-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ZeloDisplay";
    src: url("../../../font/fonts/MontserratAlternates-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-main: #f3e5e1;
    --bg-soft: #ffffff;
    --bg-card: #ffffff;
    --text-main: #4e3e3a;
    --text-soft: #645350;
    --brand: #d4af8c;
    --brand-strong: #c49a72;
    --brand-soft: rgba(212, 175, 140, 0.22);
    --border: rgba(212, 175, 140, 0.42);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-family: "ZeloSans", "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    background:
        radial-gradient(circle at 14% -8%, rgba(232, 207, 203, 0.9) 0%, transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(212, 175, 140, 0.34) 0%, transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f8eeeb 48%, #f3e5e1 100%);
    color: var(--text-main);
}

body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

body::before {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    top: -140px;
    right: -80px;
    background: radial-gradient(circle, rgba(232, 207, 203, 0.5) 0%, rgba(243, 229, 225, 0) 70%);
    filter: blur(6px);
}

body::after {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    left: -200px;
    bottom: -210px;
    background: radial-gradient(circle, rgba(212, 175, 140, 0.23) 0%, rgba(243, 229, 225, 0) 72%);
    filter: blur(8px);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "ZeloDisplay", "Montserrat", sans-serif;
    letter-spacing: 0.2px;
}

p {
    color: var(--text-soft);
}

.hero {
    background: linear-gradient(135deg, #e8cfcb 0%, #f3e5e1 45%, #ffffff 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        115deg,
        rgba(255, 255, 255, 0.2) 0,
        rgba(255, 255, 255, 0.2) 2px,
        transparent 2px,
        transparent 14px
    );
    opacity: 0.35;
}

.hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brand {
    color: #5f4b47;
    font-family: "ZeloDisplay", "Montserrat", sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-link-custom {
    color: #5f4b47;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.92;
    transition: 0.2s ease;
}

.nav-link-custom:hover {
    color: var(--brand);
    opacity: 1;
}

.hero-content {
    padding: 2rem 0 3.5rem;
}

.hero-tag {
    display: inline-block;
    color: #715953;
    background: var(--brand-soft);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.74rem;
    padding: 0.25rem 0.7rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 0.8rem;
    font-size: clamp(1.85rem, 5vw, 3rem);
    line-height: 1.12;
}

.hero-subtitle {
    margin-top: 0.8rem;
    max-width: 600px;
    color: #65524e;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-card h2 {
    font-size: 1.2rem;
}

.hero-card p,
.hero-card li {
    color: #5f4d4a;
}

.hero-card ul {
    margin: 0.7rem 0 0;
    padding-left: 1.1rem;
}

.btn {
    border-radius: 8px;
    border-width: 0;
    font-weight: 700;
    font-family: "ZeloSans", "Open Sans", Arial, sans-serif;
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    color: #5f4b47;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 128, 9, 0.28);
}

.btn-brand:hover {
    background: linear-gradient(135deg, var(--brand-strong) 0%, #b78960 100%);
    color: #4f3f3b;
}

.btn-outline-light {
    border: 1px solid var(--border);
    color: #6f5551;
}

.section-highlight {
    margin-top: -1.4rem;
    position: relative;
    z-index: 2;
}

.metric-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 0.7rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.metric-box strong {
    display: block;
    color: var(--brand);
    font-size: 1.35rem;
}

.metric-box span {
    color: #63514e;
    font-size: 0.88rem;
}

main section {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
}

.section-title-wrap {
    margin-bottom: 1rem;
}

.section-kicker {
    color: var(--brand);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.35rem;
}

.section-title-wrap h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 128, 9, 0.45);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.service-image {
    width: 100%;
    height: 195px;
    object-fit: cover;
}

.service-body {
    padding: 1rem;
    display: grid;
    gap: 0.8rem;
}

.service-body h3 {
    font-size: 1.1rem;
    color: #6b5551;
}

.service-body p {
    margin: 0;
    font-size: 0.93rem;
    color: #5f4d4a;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.8rem;
}

.price-item {
    background: linear-gradient(145deg, #ffffff 0%, #f3e5e1 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.8rem 0.95rem;
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
}

.price-item span {
    color: #6b5551;
    font-weight: 700;
}

.price-item strong {
    color: var(--brand);
}

.price-note {
    margin-top: 0.8rem;
    color: #5f4d4a;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.95rem;
}

.review-stars {
    color: #ffba3a;
    letter-spacing: 1.2px;
    margin-bottom: 0.45rem;
}

.review-card p {
    color: #5f4d4a;
}

.review-card strong {
    color: var(--brand);
    font-size: 0.86rem;
}

.photo-wall {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
}

.photo-wall h3 {
    color: #6b5551;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.photo-grid img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.cta-band {
    background: linear-gradient(135deg, #e8cfcb 0%, #f3e5e1 60%, #ffffff 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-band p {
    color: #5e4d49;
}

.btn-contrast {
    background: var(--brand);
    color: #5f4b47;
    border: none;
}

.btn-contrast:hover {
    background: var(--brand-strong);
    color: #4f3f3b;
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.site-footer h3 {
    font-size: 1.1rem;
    color: #6b5551;
    margin-bottom: 0.5rem;
}

.site-footer p,
.site-footer a {
    color: #5f4d4a;
}

.form-text {
    color: #6a5753;
}

.site-footer a:hover {
    color: var(--brand);
}

.modal-content {
    background: #ffffff;
    color: #6b5551;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, #e8cfcb 0%, #f3e5e1 100%);
}

.btn-close {
    filter: none;
}

.form-control,
.form-select {
    background-color: #ffffff;
    border: 1px solid var(--border);
    color: #6b5551;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 140, 0.25);
    background-color: #ffffff;
    color: #6b5551;
}

#formFeedback,
#whatsFeedback {
    border-radius: 8px;
}

.schedule-status {
    color: #64524f;
    font-size: 0.84rem;
    min-height: 18px;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
}

.slot-pill {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    color: #6b5551;
    font-size: 0.77rem;
    font-weight: 700;
    padding: 0.3rem 0.2rem;
    text-align: center;
    transition: 0.2s ease;
}

.slot-pill[data-status="disponivel"] {
    cursor: pointer;
}

.slot-pill[data-status="disponivel"]:hover,
.slot-pill.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.slot-pill[data-status="ocupado"] {
    background: #f3e5e1;
    color: #8e7672;
    text-decoration: line-through;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .hero-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-nav > div {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding-bottom: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-highlight {
        margin-top: -0.7rem;
    }

    .service-image {
        height: 175px;
    }

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

    .photo-grid img {
        height: 95px;
    }

    body::before {
        width: 320px;
        height: 320px;
    }

    body::after {
        width: 360px;
        height: 360px;
    }
}
