* { box-sizing: border-box; }

:root {
    --bottom-nav-height: 64px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --mobile-header-height: 56px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--color-bg);
    color: var(--color-secondary);
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}

/* Splash cobre a tela (fixed) — nao esconder o conteudo por opacity */

/* ===== SPLASH SCREEN ===== */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.splash-screen.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(212,175,55,.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 20%, rgba(212,175,55,.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 70%, rgba(212,175,55,.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(212,175,55,.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 90%, rgba(212,175,55,.4) 0%, transparent 100%);
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.splash-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,.25) 0%, transparent 70%);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

.splash-content {
    position: relative;
    text-align: center;
    animation: splash-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes splash-in {
    from { opacity: 0; transform: scale(0.85) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.splash-logo-wrap { display: none; }

/* ===== GLAMOUR LOGO (splash + hero) ===== */
.glamour-logo-wrap {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.35);
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.25),
        inset 0 0 20px rgba(212, 175, 55, 0.08);
}

.glamour-logo-splash {
    border-radius: 22px;
    animation: logo-float 2.5s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.glamour-logo-splash .glamour-logo-img {
    max-width: 220px;
    max-height: 160px;
    width: auto;
    height: auto;
    display: block;
}

.glamour-logo-hero {
    border-radius: 20px;
    min-width: 140px;
    min-height: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.glamour-logo-hero .glamour-logo-img {
    max-height: 160px;
    max-width: min(320px, 85vw);
    width: auto;
    height: auto;
    display: block;
}

.glamour-logo-img {
    object-fit: contain;
    background: #0a0a0a;
    position: relative;
    z-index: 1;
}

.glamour-logo-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, transparent 65%);
    animation: pulse-glow 2.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.glamour-logo-ring {
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: ring-pulse 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.06); opacity: 1; }
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(212, 175, 55, 0.25); }
    50% { transform: scale(1.03); box-shadow: 0 0 50px rgba(212, 175, 55, 0.45); }
}

.glamour-sparkles {
    position: absolute;
    inset: -20px;
    pointer-events: none;
    z-index: 3;
}

.glamour-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #F5E6C8;
    border-radius: 50%;
    box-shadow: 0 0 8px #D4AF37, 0 0 16px rgba(212, 175, 55, 0.6);
    animation: sparkle-orbit 3s ease-in-out infinite;
}

.glamour-sparkle:nth-child(1) { top: 5%; left: 50%; animation-delay: 0s; }
.glamour-sparkle:nth-child(2) { top: 20%; right: 0; animation-delay: 0.5s; width: 4px; height: 4px; }
.glamour-sparkle:nth-child(3) { bottom: 15%; right: 10%; animation-delay: 1s; }
.glamour-sparkle:nth-child(4) { bottom: 5%; left: 45%; animation-delay: 1.5s; width: 5px; height: 5px; }
.glamour-sparkle:nth-child(5) { top: 30%; left: 0; animation-delay: 2s; }
.glamour-sparkle:nth-child(6) { top: 50%; right: -5px; animation-delay: 2.5s; width: 3px; height: 3px; }

@keyframes sparkle-orbit {
    0%, 100% { opacity: 0.2; transform: scale(0.6) translateY(0); }
    50% { opacity: 1; transform: scale(1.2) translateY(-4px); }
}

.glamour-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.4) 50%, transparent 65%);
    animation: shimmer 2.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.hero-logo-stage {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-stage .glamour-logo-hero {
    animation: logo-pulse 3s ease-in-out infinite;
}

/* Splash progress bar */
.splash-progress {
    margin-top: 36px;
    width: min(260px, 80vw);
    margin-left: auto;
    margin-right: auto;
}

.splash-progress-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.splash-progress-track {
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    overflow: hidden;
}

.splash-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #B8962E, #D4AF37, #F5E6C8);
    border-radius: 99px;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
    transition: width 0.15s linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

.splash-brand-icon {
    display: block;
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 12px;
    animation: spin-slow 4s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.splash-brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, #F5E6C8 0%, #D4AF37 50%, #C9A962 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.08em;
}

.splash-brand-tag {
    color: rgba(255,255,255,.5);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 8px;
}

.splash-loader span:nth-child(3) { animation-delay: 0.4s; }

/* Removido loader dots — usa splash-progress */
.splash-loader { display: none; }

/* ===== MOBILE APP SHELL ===== */
.app-body {
    min-height: 100vh;
    min-height: 100dvh;
}

.app-body:not(.no-bottom-nav) {
    padding-bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 20px);
}

.app-body.is-booking {
    padding-bottom: calc(72px + var(--safe-bottom));
}

.app-main {
    min-height: calc(100vh - var(--mobile-header-height));
}

/* Mobile top bar */
.mobile-topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: env(safe-area-inset-top, 0px);
}

.mobile-topbar-inner {
    display: flex;
    align-items: center;
    height: var(--mobile-header-height);
    padding: 0 16px;
    gap: 12px;
}

.mobile-topbar-back {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 1.2rem;
}

.mobile-topbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mobile-topbar-logo {
    height: 32px;
    border-radius: 8px;
}

.mobile-topbar-icon {
    font-size: 1.5rem;
}

.mobile-topbar-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-topbar-spacer {
    width: 40px;
}

/* Bottom navigation - premium glamour */
.bottom-nav {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 300;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    height: calc(var(--bottom-nav-height) + 4px);
    padding: 4px 6px;
    padding-bottom: calc(4px + var(--safe-bottom));
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 4px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.3s, transform 0.2s;
    border: none;
    background: none;
    min-height: 48px;
    position: relative;
    border-radius: 14px;
}

.bottom-nav-item.active {
    color: var(--color-gold-light);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.12);
}

.bottom-nav-item:active {
    transform: scale(0.92);
}

.bottom-nav-item i {
    font-size: 1.35rem;
    line-height: 1;
    transition: color 0.3s, filter 0.3s;
}

.bottom-nav-item.active i {
    color: var(--color-gold);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.bottom-nav-item-primary {
    color: rgba(255, 255, 255, 0.85);
}

.bottom-nav-item-primary i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37, #C9A962);
    border-radius: 14px;
    font-size: 1.2rem;
    margin-top: -8px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.45);
    color: #0a0a0a;
}

.bottom-nav-item-primary.active i,
.bottom-nav-item-primary i {
    color: #0a0a0a;
}

.bottom-nav-whatsapp.active i,
.bottom-nav-whatsapp i {
    color: #25D366;
}

/* Wizard sticky action bar */
.wizard-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 250;
    padding: 12px 16px calc(12px + var(--safe-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.wizard-sticky-bar .btn {
    padding: 14px;
    font-size: 1rem;
    border-radius: 12px;
}

/* Hide inline wizard buttons on mobile (use sticky bar) */
@media (max-width: 991.98px) {
    .is-booking .wizard-panel > .btn-primary.w-100 {
        display: none !important;
    }

    .wizard-steps {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .wizard-steps::-webkit-scrollbar {
        display: none;
    }

    .wizard-steps .step {
        flex-shrink: 0;
        font-size: 0;
    }

    .wizard-steps .step span {
        font-size: 0.75rem;
    }

    .hero-section {
        padding: 32px 0 24px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-social {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px;
    }

    .services-section {
        padding-bottom: 16px !important;
    }

    .service-card {
        border-radius: 14px;
    }

    .site-footer {
        padding-bottom: 8px !important;
        font-size: 0.8rem;
    }

    .booking-page .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .booking-page .text-center.mb-4:first-child {
        display: none;
    }

    .wizard-card {
        padding: 20px 16px;
        border-radius: 14px;
        box-shadow: none;
        background: transparent;
    }

    .horarios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .horario-btn {
        padding: 14px 8px;
        font-size: 0.95rem;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #C9A962);
    border: none;
    color: #0a0a0a;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 24px;
}
.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, #E5C158, #D4AF37);
    color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(212,175,55,.35);
}

.btn-gold {
    background: linear-gradient(135deg, #D4AF37, #B8962E);
    border: none;
    color: #0a0a0a;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px 36px;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,.4);
    color: #0a0a0a;
}

.btn-outline-gold {
    border: 1.5px solid var(--color-gold);
    color: var(--color-secondary);
    border-radius: 10px;
    background: transparent;
    font-weight: 500;
}
.btn-outline-gold:hover {
    background: linear-gradient(135deg, #D4AF37, #C9A962);
    border-color: transparent;
    color: #0a0a0a;
}

.btn-outline-primary {
    border-color: var(--color-gold);
    color: var(--color-secondary);
    border-radius: 10px;
}
.btn-outline-primary:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #0a0a0a;
}

/* Hero */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #FAFAF8 100%);
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(212,175,55,.3);
    border-radius: 50px;
}

.hero-logo-wrap { margin-bottom: 24px; }

.hero-logo-stage .glamour-logo-wrap {
    z-index: 1;
}

.hero-brand-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 16px;
}

.hero-brand-accent {
    display: block;
    color: rgba(255,255,255,.9);
    font-weight: 400;
    font-style: italic;
}

.hero-brand-main {
    display: block;
    background: linear-gradient(135deg, #F5E6C8, #D4AF37, #C9A962);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    max-width: 480px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.hero-info {
    color: rgba(255,255,255,.5);
    font-size: 0.9rem;
}

.hero-social { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

.social-link {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(212,175,55,.25);
    font-size: .85rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(212,175,55,.15);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}

.btn-agendar { font-size: 1rem; }

/* Services */
.section-header { margin-bottom: 48px; }

.section-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.section-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 16px auto 0;
}

.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,.04);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.service-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    font-size: 3rem;
    color: var(--color-gold);
}

.price {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-gold);
}

.site-footer {
    background: #0a0a0a;
    color: rgba(255,255,255,.4);
    font-size: 0.85rem;
}
.service-body { padding: 20px; }
.service-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.duration { color: #888; font-size: .85rem; }
.service-img { height: 180px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.booking-page { min-height: 100vh; }

/* Barra de experiência do agendamento */
.wizard-experience {
    max-width: 640px;
    margin: 0 auto;
}

.wizard-experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.wizard-experience-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-secondary);
    letter-spacing: 0.02em;
}

.wizard-experience-percent {
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
}

.wizard-experience-track {
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 99px;
    overflow: hidden;
}

.wizard-experience-fill {
    height: 100%;
    background: linear-gradient(90deg, #B8962E, #D4AF37);
    border-radius: 99px;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.wizard-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.wizard-steps .step {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    background: white;
    font-size: .8rem;
    color: #999;
    box-shadow: var(--shadow);
}
.wizard-steps .step span {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #eee;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: .75rem;
}
.wizard-steps .step.active { color: var(--color-secondary); background: #faf6eb; }
.wizard-steps .step.active span { background: var(--color-primary); }
.wizard-steps .step.done { color: #4caf50; }
.wizard-steps .step.done span { background: #4caf50; color: white; }

.wizard-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 32px;
    max-width: 640px;
    margin: 0 auto;
}
.wizard-panel {
    display: none;
    opacity: 0;
    transform: translateX(16px);
}

.wizard-panel.active {
    display: block;
    animation: wizard-slide-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wizard-slide-in {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.service-select-card {
    border: 2px solid #eee;
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-select-card:active {
    transform: scale(0.98);
}

.service-select-card.selected {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, #faf6eb, #fff);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    transform: scale(1.01);
}
.service-select-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: #fafafa;
}

.price-tag { font-weight: 700; white-space: nowrap; color: var(--color-gold); }

/* Calendar */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.cal-header { text-align: center; font-size: .75rem; color: #999; font-weight: 600; padding: 4px; }
.cal-day {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    font-size: .9rem;
    cursor: default;
    color: #ccc;
}
.cal-day.available {
    cursor: pointer;
    color: var(--color-secondary);
    background: #f5f5f5;
    font-weight: 500;
}
.cal-day.available:hover { background: rgba(212, 175, 55, 0.35); }
.cal-day.selected {
    background: linear-gradient(135deg, #D4AF37, #C9A962);
    color: #0a0a0a;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
    animation: cal-pop 0.3s ease;
}

@keyframes cal-pop {
    0% { transform: scale(0.9); }
    70% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.cal-day.empty { visibility: hidden; }

/* Horarios */
.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}
.horario-btn {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    transition: all .2s;
}
.horario-btn:hover, .horario-btn.selected {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, #faf6eb, #fff);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.horario-btn.selected {
    animation: cal-pop 0.3s ease;
}

/* Resumo */
.resumo-card { background: #fafafa; border-radius: 12px; padding: 20px; }
.resumo-item {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.resumo-item:last-child { border: none; }
.resumo-item.highlight { font-size: 1.1rem; color: var(--color-primary); }

.payment-method-card,
.payment-scope-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 0;
    width: 100%;
    background: #fff;
}
.payment-method-card:has(input:checked),
.payment-scope-card:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(201, 169, 98, 0.08);
}
.payment-scope-options { display: flex; flex-direction: column; gap: 10px; }

/* PIX */
.pix-qrcode img { max-width: 220px; border-radius: 12px; }
.pix-timer { color: #e65100; font-size: 1rem; }

.success-page { min-height: 60vh; display: flex; align-items: center; }
.success-icon { font-size: 5rem; }

/* ===== PORTFOLIO CAROUSEL 3D ===== */
.portfolio-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 40%, #FAFAF8 100%);
    padding-bottom: 3rem !important;
}

.portfolio-section .section-title { color: #fff; }
.portfolio-section .section-label { color: var(--color-gold); }

.portfolio-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px;
}

.portfolio-carousel-viewport {
    perspective: 1100px;
    overflow: hidden;
    height: 360px;
    position: relative;
}

.portfolio-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.portfolio-carousel-slide {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 240px;
    height: 300px;
    margin-left: -120px;
    margin-top: -150px;
    transform-origin: center center;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
    pointer-events: none;
}

.portfolio-carousel-slide.is-center {
    pointer-events: auto;
}

.portfolio-slide-inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
    border: 2px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.portfolio-carousel-slide.is-center .portfolio-slide-inner {
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 24px 60px rgba(212, 175, 55, 0.25), 0 0 40px rgba(212, 175, 55, 0.15);
}

.portfolio-slide-inner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}

.portfolio-slide-caption {
    padding: 12px 14px;
    text-align: center;
    background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
    flex: 1;
}

.portfolio-slide-caption strong {
    display: block;
    color: var(--color-gold-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.portfolio-slide-caption span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-top: 4px;
}

.portfolio-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(10, 10, 10, 0.85);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.portfolio-nav:hover {
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.portfolio-nav-prev { left: 0; }
.portfolio-nav-next { right: 0; }

.portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.portfolio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(212, 175, 55, 0.25);
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-dot.active {
    background: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

/* ===== SERVICE LAYOUTS ===== */
.service-card-h {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-h:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.service-card-h-photo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.service-card-h-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-h-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: var(--color-gold);
    font-size: 2rem;
}

.service-card-h-body { flex: 1; min-width: 0; }
.service-card-h-body h5 { margin-bottom: 6px; font-weight: 600; }
.service-card-h-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.service-card-elegant {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 28px 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
}

.service-card-elegant:hover { transform: translateY(-6px); }

.service-card-elegant-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--color-gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.service-card-elegant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.service-list-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.12);
    transform: translateX(4px);
}

.service-list-thumb {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: var(--color-gold);
}

.service-list-thumb img { width: 100%; height: 100%; object-fit: cover; }

.service-list-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-list-price {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
}

.service-list-price i { opacity: 0.5; }

@media (max-width: 576px) {
    .service-card-h {
        flex-direction: column;
        text-align: center;
    }
    .service-card-h-meta { justify-content: center; }
    .portfolio-carousel { padding: 0 36px; }
    .portfolio-carousel-viewport { height: 320px; }
    .portfolio-carousel-slide { width: 200px; height: 260px; margin-left: -100px; margin-top: -130px; }
    .portfolio-slide-inner img { height: 180px; }
    .hero-brand-text { font-size: 2.8rem; }
    .splash-brand-name { font-size: 2.2rem; }
    .glamour-logo-splash .glamour-logo-img { max-width: 180px; }
    .wizard-steps .step { padding: 8px 10px; font-size: 0; }
    .wizard-steps .step span { font-size: 0.75rem; }
}

@media (min-width: 992px) {
    .mobile-topbar,
    .bottom-nav,
    .wizard-sticky-bar {
        display: none !important;
    }

    .app-body {
        padding-bottom: 0 !important;
    }
}
