        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --sage: #7a8c78; --sage-light: #a8b8a6; --cream: #f5f0e8;
            --warm-dark: #2c3030; --accent: #b5896a; --white: #fff;
            --border: #e8e3da;
        }

        html { scroll-behavior: smooth; }
        body { background: var(--cream); font-family: 'Jost', sans-serif; color: var(--warm-dark); }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
        }
        .hero-left {
            background: var(--warm-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 64px;
            position: relative;
        }
        .hero-left::after {
            content: '';
            position: absolute;
            right: -40px;
            top: 0;
            width: 80px;
            height: 100%;
            background: var(--warm-dark);
            clip-path: polygon(0 0, 0 100%, 100% 100%);
            z-index: 1;
        }
        .hero-right {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 64px 80px 100px;
            background: var(--cream);
        }
        .tag { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
        .hero-left .tag { color: var(--sage-light); }

        .hero-left h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            font-weight: 300;
            line-height: 1.15;
            color: #fff;
            margin-bottom: 24px;
        }
        .hero-left h1 em { font-style: italic; color: var(--accent); }

        .hero-left p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.8; max-width: 340px; }

        .crp-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            padding: 8px 16px;
            border-radius: 2px;
            margin-top: 32px;
            width: fit-content;
            color: var(--sage-light);
            font-size: 0.82rem;
            letter-spacing: 0.06em;
        }
        

        /* Booking Section */
        .booking-section {
            padding: 100px 0;
            background: #fff;
        }
        .container { max-width: 960px; margin: 0 auto; padding: 0 32px; }

        .section-title {
            text-align: center;
            margin-bottom: 56px;
        }
        .section-title h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.6rem;
            font-weight: 300;
            margin-bottom: 12px;
        }
        .section-title p { color: var(--sage); font-size: 0.9rem; }
        .divider { width: 48px; height: 1px; background: var(--accent); margin: 20px auto; }

        /* Stepper */
        .stepper { display: flex; justify-content: center; gap: 0; margin-bottom: 48px; }
        .step {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 24px;
            position: relative;
        }
        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -1px;
            top: 50%;
            width: 2px;
            height: 30px;
            background: var(--border);
            transform: translateY(-50%);
        }
        .step-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #aaa;
            transition: all 0.3s;
        }
        .step.active .step-num { border-color: var(--sage); background: var(--sage); color: #fff; }
        .step.done .step-num { border-color: var(--accent); background: var(--accent); color: #fff; }
        .step-label { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: #aaa; }
        .step.active .step-label, .step.done .step-label { color: var(--warm-dark); }

        /* Form Steps */
        .form-step { display: none; }
        .form-step.active { display: block; animation: fadeIn 0.3s ease; }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* Calendar */
        .calendar-wrap { max-width: 400px; margin: 0 auto; }
        .cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
        .cal-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; text-transform: capitalize; }
        .cal-nav { background: none; border: 1px solid var(--border); width: 36px; height: 36px; border-radius: 2px; cursor: pointer; font-size: 1rem; color: var(--warm-dark); transition: all 0.2s; }
        .cal-nav:hover { background: var(--sage); color: #fff; border-color: var(--sage); }

        .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
        .cal-day-name { text-align: center; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); padding: 8px 0; }
        .cal-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 2px;
            font-size: 0.88rem;
            cursor: pointer;
            transition: all 0.15s;
            border: 1px solid transparent;
        }
        .cal-day:hover:not(.disabled):not(.empty) { border-color: var(--sage); color: var(--sage); }
        .cal-day.today { font-weight: 600; color: var(--accent); }
        .cal-day.selected { background: var(--sage); color: #fff !important; border-color: var(--sage); }
        .cal-day.disabled { color: #ccc; cursor: not-allowed; }
        .cal-day.empty { cursor: default; }
        .cal-day.has-slots { position: relative; }
        .cal-day.has-slots::after { content: ''; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); }

        /* Slots */
        .slots-wrap { margin-top: 32px; }
        .slots-title { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
        .slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; }
        .slot {
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 2px;
            text-align: center;
            cursor: pointer;
            font-size: 0.88rem;
            transition: all 0.15s;
            background: #faf8f5;
        }
        .slot:hover:not(.occupied) { border-color: var(--sage); color: var(--sage); background: #fff; }
        .slot.selected { background: var(--sage); color: #fff; border-color: var(--sage); }
        .slot.occupied { color: #ccc; cursor: not-allowed; text-decoration: line-through; font-size: 0.8rem; }
        .slot-loading { text-align: center; color: var(--sage); padding: 24px; font-size: 0.88rem; }

        /* Formulário de dados */
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-group { display: flex; flex-direction: column; gap: 8px; }
        .form-group.full { grid-column: 1 / -1; }
        label { font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); }
        input, textarea {
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 2px;
            font-family: 'Jost', sans-serif;
            font-size: 0.95rem;
            color: var(--warm-dark);
            background: #faf8f5;
            outline: none;
            transition: border-color 0.2s;
        }
        input:focus, textarea:focus { border-color: var(--sage); background: #fff; }
        textarea { resize: vertical; min-height: 80px; }

        /* Resumo do agendamento */
        .resumo {
            background: #faf8f5;
            border: 1px solid var(--border);
            border-radius: 2px;
            padding: 24px;
            margin-bottom: 28px;
        }
        .resumo h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 16px; }
        .resumo-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
        .resumo-row:last-child { border-bottom: none; }
        .resumo-row .key { color: var(--sage); }

        /* Botões */
        .btn-row { display: flex; justify-content: space-between; margin-top: 32px; gap: 12px; }
        .btn {
            padding: 14px 28px;
            border: none;
            border-radius: 2px;
            font-family: 'Jost', sans-serif;
            font-size: 0.82rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-primary { background: var(--sage); color: #fff; }
        .btn-primary:hover { background: var(--warm-dark); }
        .btn-outline { background: transparent; color: var(--warm-dark); border: 1px solid var(--border); }
        .btn-outline:hover { border-color: var(--warm-dark); }
        .btn:disabled { opacity: 0.4; cursor: not-allowed; }

        /* Sucesso */
        .success-screen {
            text-align: center;
            padding: 48px 0;
        }
        .success-icon {
            width: 80px;
            height: 80px;
            background: #eafaf1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            font-size: 2.4rem;
        }
        .success-screen h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; margin-bottom: 12px; }
        .success-screen p { color: var(--sage); max-width: 440px; margin: 0 auto; line-height: 1.8; }

        /* Erros */
        .error-msg { background: #fdf0ec; border-left: 3px solid var(--accent); color: #8b4513; padding: 12px 16px; border-radius: 0 2px 2px 0; font-size: 0.85rem; margin-bottom: 16px; display: none; }
        .error-msg.show { display: block; }

        /* Footer */
        footer { padding: 32px; text-align: center; color: var(--sage-light); font-size: 0.8rem; background: var(--warm-dark); }
        footer a { color: var(--sage-light); text-decoration: none; }
        footer a:hover { color: #fff; }

        @media (max-width: 768px) {
            .hero { grid-template-columns: 1fr; }
            .hero-left::after { display: none; }
            .hero-left, .hero-right { padding: 60px 32px; }
            .form-grid { grid-template-columns: 1fr; }
            .stepper { flex-wrap: wrap; }
        }
