/* ============================
   JOTACE BARBEARIA — STYLES
   ============================ */

:root {
    --gold: #ca8829;
    --gold-deep: rgba(204, 120, 0, 0.98);
    --gold-2: #d4af37;
    --bg: #000;
    --card-bg-1: #0b0b0b;
    --card-bg-2: #0c0c0b;
    --muted: #b3b3b3;
    --disabled: #616161;
    --week-bg: #333;
    --white: #ffffff;
    --container: 1560px;
    --radius-sm: 4px;
    --radius-md: 9px;
    --radius-lg: 16px;
    --gold-border: rgba(202, 136, 41, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: transparent;
    color: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: #b3771f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(202, 136, 41, 0.3);
}

.btn-cta {
    min-width: 230px;
    height: 48px;
    border-radius: var(--radius-md);
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--white);
    padding: 0 24px;
}

.btn-cta:hover {
    color: var(--white);
}

.btn-cta .icon-cal {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.btn-continue {
    width: calc(100% - 46px);
    margin: 16px 23px 23px;
    height: 54px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================
   HEADER
   ============================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 88px;
    border-bottom: 1px solid rgba(202, 136, 41, 0.12);
    overflow: visible;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    height: 130px;
    width: auto;
    object-fit: contain;
    margin: -20px 0;
}

.nav {
    display: flex;
    gap: 44px;
}

.nav a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--white);
    transition: color 0.2s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav a:hover::after {
    width: 100%;
}

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 50px 0 60px;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: calc(var(--container) - 48px);
    height: calc(100% - 115px);
    z-index: 1;
    pointer-events: none;
}

.hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.7) 15%,
            rgba(0, 0, 0, 0.25) 45%,
            rgba(0, 0, 0, 0) 75%);
    z-index: 2;
    border-radius: var(--radius-lg);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    max-width: 520px;
    padding-left: 8px;
}

.hero-brand {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    color: #c8c8c8;
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    gap: 36px;
    margin-top: 24px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 26px;
    height: 26px;
}

.feature-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: 1px;
}

.feature-text p {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.4;
    margin-top: 4px;
}

/* ============================
   SECTION TITLE
   ============================ */
.section-title {
    color: var(--gold);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

/* ============================
   COMO FUNCIONA
   ============================ */
.how-it-works {
    padding: 20px 0 0;
    margin-top: -70px;
    position: relative;
    z-index: 5;
}

.steps-card {
    background: linear-gradient(to right, var(--card-bg-1), var(--card-bg-2));
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 30px 50px 36px;
}

.steps-card .section-title {
    margin-bottom: 28px;
    letter-spacing: 5px;
}

.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
    min-width: 0;
}

.step-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.step-icon img {
    width: 28px;
    height: 28px;
}

.step h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.step-num {
    color: var(--gold);
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
}

.step p {
    font-size: 12px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
}

.step-arrow {
    color: var(--gold);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    margin-top: 16px;
    flex-shrink: 0;
    user-select: none;
    width: 30px;
    text-align: center;
}

/* ============================
   BOOKING BANNER (desktop)
   ============================ */
.booking-banner {
    background: linear-gradient(135deg, #0c0c0c 0%, #131008 100%);
    border: 1px solid var(--gold-border);
    border-radius: 24px;
    padding: 60px 70px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.booking-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202, 136, 41, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.booking-banner h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.booking-banner h2 .gold {
    color: var(--gold);
}

.booking-banner > .banner-content > p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 300;
    max-width: 480px;
}

.banner-stats {
    display: flex;
    gap: 36px;
    margin-bottom: 32px;
    list-style: none;
    padding: 0;
}

.banner-stats li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.banner-stats strong {
    font-size: 28px;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.banner-stats span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
}

.banner-hint {
    margin-top: 14px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 300;
}

.banner-phone-preview {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-preview-frame {
    position: relative;
    width: 260px;
    height: 520px;
    border: 7px solid #2a2a2a;
    border-radius: 38px;
    background: #1a1a1a;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(202, 136, 41, 0.1),
        0 0 50px rgba(202, 136, 41, 0.08);
    padding: 0;
    transform: rotate(-6deg);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.phone-preview-frame:hover {
    transform: rotate(-3deg) scale(1.03);
}

.phone-preview-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 18px;
    background: #000;
    border-radius: 10px;
    z-index: 5;
}

.pp-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 28px;
    padding: 30px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.pp-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    color: var(--white);
    font-weight: 600;
    padding: 0 6px 4px;
}

.pp-status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.pp-bar-icon,
.pp-bat-icon {
    display: inline-block;
    width: 14px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    opacity: 0.85;
}

.pp-bat-icon {
    width: 18px;
    border: 1px solid var(--white);
    background: transparent;
    position: relative;
}

.pp-bat-icon::before {
    content: '';
    position: absolute;
    inset: 1px;
    width: 70%;
    background: var(--white);
    border-radius: 1px;
}

.pp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 2px;
}

.pp-back {
    color: var(--white);
    font-size: 14px;
    line-height: 1;
}

.pp-title {
    font-size: 9px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.6px;
}

.pp-progress {
    display: flex;
    gap: 3px;
    padding: 4px 2px;
}

.pp-dot {
    flex: 1;
    height: 2.5px;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.pp-dot.active {
    background: var(--gold);
}

.pp-subtitle {
    text-align: center;
    font-size: 9px;
    color: var(--muted);
    font-weight: 300;
    margin: 4px 0 6px;
}

.pp-service {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border: 1px solid rgba(202, 136, 41, 0.4);
    border-radius: 8px;
    background: transparent;
}

.pp-service.active {
    border-color: var(--gold);
    background: rgba(202, 136, 41, 0.12);
    box-shadow: 0 0 0 0.5px var(--gold);
}

.pp-icon-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pp-icon-circle img {
    width: 12px;
    height: 12px;
}

.pp-service-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.pp-service-info strong {
    font-size: 9px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.pp-service-info span {
    font-size: 8px;
    color: var(--muted);
    font-weight: 300;
}

.pp-cta-btn {
    margin-top: auto;
    padding: 9px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 8px;
    border: none;
    cursor: default;
}

/* ============================
   PHONE MODAL
   ============================ */
.phone-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.phone-modal.open {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.phone-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.phone-frame {
    position: relative;
    width: 390px;
    height: 800px;
    max-height: calc(100vh - 60px);
    background: #1a1a1a;
    border-radius: 50px;
    padding: 14px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.7),
        0 0 0 2px #2a2a2a,
        0 0 60px rgba(202, 136, 41, 0.1);
    z-index: 2;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.phone-frame-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 30px;
    background: #000;
    border-radius: 16px;
    z-index: 5;
}

.phone-modal-close {
    position: absolute;
    top: -10px;
    right: -56px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.phone-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 38px;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
    scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

.phone-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 30px 14px;
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    z-index: 6;
}

.ps-time {
    padding-left: 4px;
}

.ps-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 4px;
}

.ps-signal::before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 11px;
    background:
        linear-gradient(to top, var(--white) 25%, transparent 25%) 0 100% / 3px 25% no-repeat,
        linear-gradient(to top, var(--white) 50%, transparent 50%) 4px 100% / 3px 50% no-repeat,
        linear-gradient(to top, var(--white) 75%, transparent 75%) 8px 100% / 3px 75% no-repeat,
        linear-gradient(to top, var(--white) 100%, transparent 100%) 12px 100% / 3px 100% no-repeat;
}

.ps-wifi::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 11px;
    background: radial-gradient(circle at 50% 100%, var(--white) 28%, transparent 30% 50%, var(--white) 50% 70%, transparent 72% 90%, var(--white) 90%);
    -webkit-mask: radial-gradient(circle at 50% 100%, #000 100%);
    mask: radial-gradient(circle at 50% 100%, #000 100%);
}

.ps-battery {
    width: 26px;
    height: 12px;
    border: 1.2px solid var(--white);
    border-radius: 3px;
    position: relative;
    padding: 1px;
}

.ps-battery::before {
    content: '';
    display: block;
    width: 80%;
    height: 100%;
    background: var(--white);
    border-radius: 1px;
}

.ps-battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 5px;
    background: var(--white);
    border-radius: 0 1px 1px 0;
}

.phone-content {
    padding: 12px 18px 24px;
}

.phone-content .booking-card {
    display: none;
    background: transparent;
    border: none;
    min-height: auto;
    padding: 0;
}

.phone-content .booking-card.active {
    display: flex;
    flex-direction: column;
    animation: stepFade 0.3s ease;
}

.phone-content .card-header {
    text-align: center;
    padding: 6px 0 16px;
    border-bottom: none;
}

.phone-content .card-title {
    display: none;
}

.phone-content .card-subtitle {
    font-size: 13px;
    color: var(--muted);
}

.phone-content .booking-grid {
    display: block;
}

.phone-content .wizard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 4px 14px;
}

.phone-content .wizard-back {
    width: 32px;
    height: 32px;
    font-size: 22px;
    color: var(--white);
    line-height: 1;
    background: transparent;
    border: none;
    cursor: pointer;
}

.phone-content .wizard-title {
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.phone-content .wizard-spacer {
    width: 32px;
}

.phone-content .wizard-progress {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    padding: 0 4px;
}

.phone-content .wp-dot {
    flex: 1;
    max-width: 50px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
    transition: background 0.25s ease;
}

.phone-content .wp-dot.active {
    background: var(--gold);
}

.phone-content .wp-dot.completed {
    background: rgba(202, 136, 41, 0.5);
}

.phone-content .btn-continue {
    width: 100%;
    margin: 16px 0 0;
    height: 52px;
    border-radius: 12px;
    color: #000;
    font-size: 14px;
    letter-spacing: 2px;
}

.phone-content .confirmation-card.active {
    background: linear-gradient(to right, var(--card-bg-1), var(--card-bg-2));
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
}

body.modal-open {
    overflow: hidden;
}

@keyframes stepFade {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================
   DADOS FORM (step 5)
   ============================ */
.dados-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.8px;
    padding-left: 4px;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s ease, background 0.2s ease;
    overflow: hidden;
}

.input-wrap:focus-within {
    border-color: var(--gold);
    background: rgba(202, 136, 41, 0.06);
}

.input-icon {
    width: 38px;
    height: 38px;
    padding: 9px;
    flex-shrink: 0;
    border-right: 1px solid rgba(202, 136, 41, 0.2);
}

.input-icon-text {
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    padding: 12px 14px;
    min-width: 0;
}

.input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-wrap input.invalid,
.input-wrap:has(input.invalid) {
    border-color: #ef4444;
}

.form-error {
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
    min-height: 16px;
    padding-left: 4px;
}

.dados-summary {
    margin-top: 8px;
}

/* ============================
   BOOKING (legacy section padding)
   ============================ */
.booking {
    padding: 15px 0 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.booking-card {
    background: linear-gradient(to right, var(--card-bg-1), var(--card-bg-2));
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    min-height: 612px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.booking-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.card-header {
    padding: 24px 23px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(202, 136, 41, 0.15);
}

.card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.card-body {
    padding: 20px 23px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* SERVICE CARD */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
}

.service-item:hover {
    background: rgba(202, 136, 41, 0.08);
    border-color: var(--gold);
}

.service-item {
    position: relative;
}
.service-item.selected {
    background: rgba(202, 136, 41, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}
.service-item.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.combo-summary {
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(202, 136, 41, 0.12);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.combo-summary[hidden] { display: none !important; }
.combo-summary .combo-count {
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.combo-summary .combo-total {
    color: var(--gold);
    font-weight: 800;
    font-size: 18px;
}
.combo-summary .combo-dur {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon img {
    width: 22px;
    height: 22px;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.service-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
}

.service-meta .price {
    color: var(--gold);
    font-weight: 600;
}

/* BARBEIRO CARD */
#barber-list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.barber-profile-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1.5px solid var(--gold-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.2s ease;
}

.barber-profile-card.clickable {
    cursor: pointer;
}

.barber-profile-card.clickable:hover {
    border-color: var(--gold);
    background: rgba(202, 136, 41, 0.06);
}

.barber-profile-card.selected {
    border-color: var(--gold);
    background: rgba(202, 136, 41, 0.08);
    box-shadow: 0 0 0 1px var(--gold);
}

.barber-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(202, 136, 41, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(202, 136, 41, 0.4);
}

.barber-photo img {
    width: 60%;
    height: 60%;
    object-fit: cover;
}

.barber-real-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: 72% 10%;
    transform: scale(1.6);
    transform-origin: 72% 10%;
}

.barber-details {
    flex: 1;
    min-width: 0;
}

.barber-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.barber-name-row h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.verified-badge {
    width: 22px;
    height: 22px;
    margin-left: auto;
    flex-shrink: 0;
}

.barber-stars {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-bottom: 4px;
}

.barber-stars img {
    width: 14px;
    height: 14px;
}

.barber-stars span {
    font-size: 13px;
    color: var(--white);
    margin-left: 6px;
    font-weight: 600;
}

.barber-specialty {
    font-size: 12px;
    color: var(--muted);
    font-weight: 300;
}

.barber-selected-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 18px 0;
    padding: 0 4px;
}

.barber-selected-row > img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 2px;
}

.barber-selected-row h5 {
    font-size: 15px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 6px;
}

.barber-selected-row p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.45;
    font-weight: 300;
}

.barber-features-card {
    border: 1.5px solid var(--gold);
    border-radius: 14px;
    padding: 18px 16px 16px;
    margin-bottom: 8px;
}

.barber-features-title {
    font-size: 14px;
    color: var(--gold);
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(202, 136, 41, 0.3);
}

.barber-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(202, 136, 41, 0.3);
    position: relative;
}

.barber-features-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 14px;
    left: 50%;
    width: 1px;
    background: rgba(202, 136, 41, 0.3);
}

.bf-item {
    text-align: center;
    padding: 0 4px;
}

.bf-item > img {
    width: 26px;
    height: 26px;
    margin: 0 auto 8px;
    display: block;
}

.bf-item strong {
    display: block;
    font-size: 12px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 4px;
}

.bf-item p {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.4;
    font-weight: 300;
}

.bf-bottom {
    text-align: center;
    padding-top: 14px;
}

.bf-bottom > img {
    width: 22px;
    height: 22px;
    margin: 0 auto 8px;
    display: block;
}

.bf-bottom p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
    font-weight: 300;
}

/* CALENDAR CARD */
.calendar {
    margin-bottom: 16px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 8px 4px;
    margin-bottom: 14px;
}

.cal-arrow {
    color: var(--gold);
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cal-arrow:hover {
    color: var(--white);
}

.cal-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.calendar-grid {
    font-family: 'Inter', sans-serif;
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 4px;
}

.cal-week-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cal-week-header {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--muted);
    font-weight: 400;
}

.cal-week-num {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
}

.cal-days-area {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cal-weekdays,
.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-weekdays span {
    text-align: center;
    font-size: 10px;
    color: var(--muted);
    font-weight: 400;
    padding: 4px 0;
}

.cal-weekdays span.weekend {
    color: var(--gold);
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
    font-weight: 400;
}

.cal-day.disabled {
    color: var(--disabled);
    cursor: not-allowed;
}

.cal-day.weekend {
    color: var(--gold);
}

.cal-day:not(.disabled):hover {
    background: rgba(202, 136, 41, 0.15);
}

.cal-day.selected {
    background: var(--gold);
    color: #000;
    font-weight: 700;
}

.selected-date-label {
    text-align: center;
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    margin: 14px 0 16px;
}

.data-info-card {
    border: 1px solid var(--gold);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 8px;
}

.data-info-row {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 10px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(202, 136, 41, 0.3);
}

.di-divider {
    width: 1px;
    height: 36px;
    background: rgba(202, 136, 41, 0.3);
    margin: 0 auto;
}

.di-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.di-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.di-icon-wrap img {
    width: 18px;
    height: 18px;
}

.di-icon-wrap.small {
    width: 32px;
    height: 32px;
}

.di-icon-wrap.small img {
    width: 16px;
    height: 16px;
}

.di-icon-wrap.photo {
    overflow: hidden;
    padding: 0;
}

.di-icon-wrap.photo img {
    width: 100%;
    height: 100%;
}

.di-item span {
    display: block;
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
}

.di-item strong {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
    margin-top: 2px;
}

.data-confirm-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
}

.data-info-row + .data-confirm-row.hidden {
    display: none;
}

.data-info-card:has(.data-confirm-row.hidden) .data-info-row {
    border-bottom: none;
    padding-bottom: 0;
}

.confirmation {
    text-align: center;
    margin-top: auto;
    padding-top: 14px;
}

.confirm-title {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.confirm-sub {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
}

/* HORARIO CARD */
.horario-date-display {
    text-align: center;
    padding: 12px 16px;
    margin-bottom: 14px;
    background: rgba(202, 136, 41, 0.08);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hd-label {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hd-value {
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
    text-transform: capitalize;
}

.legend {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend .dot-on {
    background: #22c55e;
}

.legend .dot-off {
    background: #6b6b6b;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.time-slot {
    padding: 12px 6px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
    background: #2a2a2a;
    transition: all 0.2s ease;
    cursor: pointer;
}

.time-slot:hover:not(.disabled):not(.selected) {
    background: #3a3a3a;
}

.time-slot.selected {
    background: var(--gold);
    color: #000;
    font-weight: 700;
}

.time-slot.disabled {
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    background: #1a1a1a;
}

.duration-hint {
    text-align: center;
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
    padding: 10px 14px;
    background: rgba(202, 136, 41, 0.1);
    border: 1px solid rgba(202, 136, 41, 0.3);
    border-radius: 10px;
    margin-bottom: 14px;
    animation: hintFadeIn 0.25s ease;
}

.duration-hint.hidden {
    display: none;
}

.duration-hint strong {
    color: var(--white);
    font-weight: 700;
}

@keyframes hintFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   GALERIA
   ============================ */
.galeria-section {
    padding: 30px 0 40px;
}

.galeria-header {
    text-align: center;
    margin-bottom: 32px;
}

.galeria-header .banner-tag {
    margin-bottom: 14px;
}

.galeria-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.galeria-header p {
    font-size: 15px;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
    font-weight: 300;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.galeria-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--card-bg-1);
    border: 1px solid var(--gold-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.galeria-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.06);
}

.galeria-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-item-overlay {
    opacity: 1;
}

.galeria-item-overlay span {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.galeria-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
    font-size: 14px;
    background: var(--card-bg-1);
    border: 1px dashed var(--gold-border);
    border-radius: var(--radius-lg);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: modalSlideUp 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* ============================
   INFO STRIP
   ============================ */
.info-strip {
    padding: 15px 0 60px;
}

.info-card {
    background: linear-gradient(to right, var(--card-bg-1), var(--card-bg-2));
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(202, 136, 41, 0.1);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon img {
    width: 30px;
    height: 30px;
}

.info-content {
    min-width: 0;
}

.info-content h4 {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.info-content p {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
}

.info-content .strong {
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    margin-top: 2px;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: #060606;
    border-top: 1px solid rgba(202, 136, 41, 0.18);
    padding-top: 70px;
    margin-top: 20px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    align-items: start;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 13px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.socials {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(202, 136, 41, 0.1);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.social-link img {
    width: 22px;
    height: 22px;
    transition: filter 0.2s ease;
}

.social-link:hover img {
    filter: brightness(0);
}

.footer-decor {
    display: none;
}

.footer-bottom {
    border-top: 1px solid rgba(202, 136, 41, 0.15);
    padding: 22px 0;
}

.footer-bottom p {
    text-align: center;
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================
   MOBILE-ONLY ELEMENTS (hidden on desktop)
   ============================ */
.hamburger,
.bell-btn,
.drawer,
.bottom-nav,
.mobile-only-pill,
.wizard-top,
.wizard-progress,
.confirmation-card {
    display: none;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
    .booking-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .step-arrow {
        display: none;
    }

    .info-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-decor {
        display: none;
    }
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .hero-image {
        width: 100%;
        opacity: 0.45;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9));
    }

    .hero-title {
        font-size: 38px;
    }
}

/* ============================
   MOBILE (≤ 768px) — App-style layout
   ============================ */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    /* Hide desktop banner; show phone-modal as inline */
    .booking-banner {
        display: none;
    }

    .phone-modal {
        position: relative;
        inset: auto;
        z-index: auto;
        display: block !important;
        padding: 0;
        animation: none;
    }

    .phone-modal-overlay,
    .phone-modal-close,
    .phone-frame-notch,
    .phone-status-bar {
        display: none;
    }

    .phone-frame {
        width: 100%;
        height: auto;
        max-height: none;
        background: transparent;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        animation: none;
    }

    .phone-screen {
        background: transparent;
        border-radius: 0;
        overflow: visible;
    }

    .phone-content {
        padding: 0;
    }

    /* HEADER — hamburger | logo | bell */
    .header {
        height: 64px;
        background: rgba(0, 0, 0, 0.96);
    }

    .header-container {
        position: relative;
    }

    .nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        padding: 0;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.25s ease;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .logo img {
        height: 44px;
    }

    .bell-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: transparent;
        color: var(--white);
        border: none;
        cursor: pointer;
    }

    /* DRAWER (side menu) */
    .drawer {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 200;
        pointer-events: none;
    }

    .drawer.open {
        pointer-events: auto;
    }

    .drawer-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .drawer.open .drawer-overlay {
        opacity: 1;
    }

    .drawer-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 78%;
        max-width: 320px;
        height: 100%;
        background: #0a0a0a;
        border-right: 1px solid rgba(202, 136, 41, 0.2);
        padding: 22px 22px 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .drawer.open .drawer-panel {
        transform: translateX(0);
    }

    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(202, 136, 41, 0.15);
    }

    .drawer-logo {
        height: 56px;
        width: auto;
    }

    .drawer-close {
        background: transparent;
        color: var(--white);
        font-size: 28px;
        line-height: 1;
        width: 36px;
        height: 36px;
        cursor: pointer;
    }

    .drawer-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
        flex: 1;
    }

    .drawer-nav a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        font-size: 15px;
        color: var(--white);
        font-weight: 400;
        border-radius: 10px;
        transition: background 0.2s ease;
    }

    .drawer-nav a:hover,
    .drawer-nav a.active {
        background: rgba(202, 136, 41, 0.12);
        color: var(--gold);
    }

    .drawer-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        color: var(--gold);
        flex-shrink: 0;
    }

    .drawer-nav a:hover .drawer-icon,
    .drawer-nav a.active .drawer-icon {
        color: var(--gold);
    }

    .drawer-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        font-size: 13px;
        letter-spacing: 1.5px;
        border-radius: 12px;
        border: 1px solid var(--gold);
        background: transparent;
        color: var(--gold);
    }

    /* HERO — photo on top, content below */
    .hero {
        min-height: auto;
        padding: 0 0 30px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-bg {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: 280px;
        margin-bottom: 24px;
    }

    .hero-photo {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-position: center 20%;
    }

    .hero-overlay {
        width: 100%;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 30%,
                rgba(0, 0, 0, 0.7) 75%,
                rgba(0, 0, 0, 1) 100%);
        border-radius: 0;
    }

    .hero-content {
        z-index: 3;
    }

    .hero-text {
        max-width: 100%;
        padding-left: 0;
        text-align: left;
    }

    .hero-brand {
        display: none;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.05;
        margin-bottom: 14px;
    }

    .hero-title br + * {
        color: var(--gold);
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 22px;
        line-height: 1.5;
    }

    .btn-cta {
        width: 100%;
        height: 52px;
        font-size: 14px;
        letter-spacing: 2px;
        border-radius: 12px;
    }

    /* HERO 3 PILLS */
    .hero-features {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        gap: 6px;
        margin-top: 28px;
        padding: 0;
    }

    .mobile-only-pill {
        display: flex !important;
    }

    .feature-pill {
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        text-align: center;
        min-width: 0;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        background: transparent;
        border: 1.5px solid var(--gold);
        box-shadow: none;
    }

    .feature-icon img {
        filter: none;
        width: 22px;
        height: 22px;
    }

    .feature-text {
        display: block;
        width: 100%;
    }

    .feature-text h4 {
        display: block;
        font-size: 11px;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 0.5px;
        text-align: center;
        line-height: 1.25;
        margin: 0;
    }

    .feature-text p {
        display: none;
    }

    /* COMO FUNCIONA - stacked */
    .how-it-works {
        padding: 16px 0 30px;
        margin-top: 0;
    }

    .steps-card {
        padding: 22px 18px 26px;
    }

    .steps-card .section-title {
        font-size: 14px;
        letter-spacing: 3px;
        margin-bottom: 22px;
    }

    .steps-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 12px;
    }

    .step-arrow {
        display: none;
    }

    .step h3 {
        font-size: 11px;
        white-space: normal;
    }

    .step-num {
        font-size: 16px;
    }

    .step p {
        font-size: 11px;
    }

    /* BOOKING — wizard flow (one step at a time) */
    .booking {
        padding: 16px 0 40px;
    }

    .wizard-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 4px 4px 14px;
    }

    .wizard-back {
        width: 32px;
        height: 32px;
        font-size: 22px;
        color: var(--white);
        line-height: 1;
        background: transparent;
    }

    .wizard-title {
        flex: 1;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        color: var(--white);
        letter-spacing: 1px;
    }

    .wizard-spacer {
        width: 32px;
    }

    .wizard-progress {
        display: flex;
        gap: 8px;
        justify-content: center;
        align-items: center;
        margin-bottom: 18px;
        padding: 0 8px;
    }

    .wp-dot {
        flex: 1;
        max-width: 50px;
        height: 4px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.12);
        transition: background 0.25s ease;
    }

    .wp-dot.active {
        background: var(--gold);
    }

    .wp-dot.completed {
        background: rgba(202, 136, 41, 0.5);
    }

    .booking-grid {
        display: block;
        position: relative;
    }

    .booking-card {
        display: none;
        min-height: auto;
        animation: stepFade 0.3s ease;
    }

    .booking-card.active {
        display: flex;
    }

    @keyframes stepFade {
        from { opacity: 0; transform: translateX(20px); }
        to { opacity: 1; transform: translateX(0); }
    }

    .card-header {
        padding: 4px 12px 18px;
        border-bottom: none;
    }

    .card-title {
        display: none;
    }

    .card-subtitle {
        font-size: 13px;
    }

    /* CONFIRMATION CARD */
    .confirmation-card.active {
        display: flex;
        flex-direction: column;
        background: linear-gradient(to right, var(--card-bg-1), var(--card-bg-2));
        border: 1px solid var(--gold-border);
        border-radius: var(--radius-lg);
        padding: 30px 24px;
    }

    .confirmation-body {
        padding: 0;
        align-items: center;
    }

    .confirm-check {
        margin: 10px auto 18px;
    }

    .confirm-heading {
        font-size: 20px;
        font-weight: 700;
        color: var(--white);
        text-align: center;
        line-height: 1.25;
        margin-bottom: 26px;
    }

    .confirm-summary {
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(202, 136, 41, 0.18);
        border-radius: 12px;
        padding: 18px 20px;
        margin-bottom: 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .cs-row {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }

    .cs-row span {
        color: var(--muted);
        font-weight: 400;
    }

    .cs-row strong {
        color: var(--white);
        font-weight: 600;
    }

    .confirm-btn {
        width: 100%;
        margin: 0 0 12px;
        height: 50px;
    }

    .btn-outline {
        background: transparent;
        color: var(--gold);
        border: 1px solid rgba(202, 136, 41, 0.4);
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1.5px;
        border-radius: 12px;
    }

    /* SERVICE: padding ajustado pro mobile (checkmark é global agora) */
    .service-item {
        padding: 16px 18px;
    }

    .service-info h4 {
        font-size: 14px;
    }

    .service-meta {
        flex-direction: column;
        gap: 2px;
    }

    .service-meta .duration {
        order: -1;
    }

    /* TIME SLOTS — green available, gray unavailable */
    .time-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .time-slot {
        padding: 14px 6px;
        font-size: 13px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.03);
        color: var(--white);
    }

    .time-slot:not(.disabled) {
        border-color: rgba(34, 197, 94, 0.5);
        background: rgba(34, 197, 94, 0.18);
        color: #22c55e;
    }

    .time-slot.disabled {
        border-color: rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.04);
        color: rgba(255, 255, 255, 0.35);
    }

    .time-slot.selected {
        background: transparent;
        border: 1.5px solid var(--gold);
        color: var(--gold);
    }

    .legend .dot-on {
        background: #22c55e;
    }

    /* CALENDAR — bigger touch targets */
    .calendar-header {
        padding: 10px 8px;
    }

    .cal-title {
        font-size: 15px;
    }

    .cal-day {
        font-size: 13px;
    }

    .cal-weekdays span {
        font-size: 11px;
    }

    /* CONTINUE button */
    .btn-continue {
        height: 52px;
        font-size: 13px;
        margin: 14px 18px 18px;
        width: calc(100% - 36px);
    }

    /* GALERIA */
    .galeria-section {
        padding: 20px 0 30px;
    }

    .galeria-header h2 {
        font-size: 26px;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .lightbox {
        padding: 20px;
    }

    /* INFO STRIP */
    .info-strip {
        padding: 20px 0 40px;
    }

    .info-card {
        grid-template-columns: 1fr;
        padding: 22px 22px;
        gap: 20px;
    }

    /* FOOTER */
    .footer {
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        padding-bottom: 40px;
    }

    .footer-decor {
        display: none;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        width: 130px;
    }

    .socials {
        justify-content: center;
    }

    /* BOTTOM NAV */
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #0a0a0a;
        border-top: 1px solid rgba(202, 136, 41, 0.18);
        padding: 8px 16px 12px;
        justify-content: space-around;
        align-items: center;
        z-index: 90;
    }

    .bn-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 6px 12px;
        color: var(--muted);
        font-size: 11px;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .bn-item.active {
        color: var(--gold);
    }

    .bn-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
    }

    .bn-cta .bn-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--gold);
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -22px;
        box-shadow: 0 6px 16px rgba(202, 136, 41, 0.4);
    }

    .bn-cta .bn-label {
        color: var(--gold);
        font-weight: 600;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .hero-title {
        font-size: 30px;
    }

    .feature-text h4 {
        font-size: 9px;
    }

    .time-grid {
        gap: 8px;
    }

    .time-slot {
        font-size: 12px;
        padding: 12px 4px;
    }
}
