﻿* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-page: #E9E3D6;
  --bg-body: #F4EEE4;
  --bg-nav: #F4EEE4;
  --bg-hero: #EDE1CB;
  --bg-section-alt: #EDE3D2;
  --bg-card: #FFFFFF;
  --bg-field: #F4EEE4;
  --border-soft: #E2D6C3;
  --text-strong: #2E1F14;
  --text-body: #4A2F1B;
  --text-muted: #8B7259;
  --accent: #8B5E3C;
  --accent-strong: #6B4A2E;
  --btn-primary-bg: #8B5E3C;
  --btn-primary-text: #FFFFFF;
  --btn-dark-bg: #6B4A2E;
  --btn-dark-text: #FFFFFF;
  --footer-bg: #EDE1CB;
  --footer-text: #6B4A2E;
  --pattern-color: rgba(139,94,60,0.12);
}

body.dark {
  --bg-page: #17110B;
  --bg-body: #241A11;
  --bg-nav: #17110B;
  --bg-hero: #2E1F14;
  --bg-section-alt: #2A1E13;
  --bg-card: #332416;
  --bg-field: #241A11;
  --border-soft: #4A3524;
  --text-strong: #F4EEE4;
  --text-body: #E5D8C4;
  --text-muted: #B29A7E;
  --accent: #C49B59;
  --accent-strong: #D9B372;
  --btn-primary-bg: #C49B59;
  --btn-primary-text: #241A11;
  --btn-dark-bg: #C49B59;
  --btn-dark-text: #241A11;
  --footer-bg: #0F0B07;
  --footer-text: #C49B59;
  --pattern-color: rgba(196,155,89,0.12);
}

body {
  background: var(--bg-page);
  font-family: Georgia, serif;
  transition: background 0.25s ease;
}

.navbar {
  background: var(--bg-nav);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .logo { display: flex; align-items: center; gap: 8px; }
.navbar .circle {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-card); display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 1px solid var(--border-soft);
}
.navbar .circle img { width: 100%; height: 100%; object-fit: cover; }
.navbar .brand { color: var(--text-strong); font-size: 17px; letter-spacing: 0.5px; }
.navbar .icons { display: flex; gap: 16px; align-items: center; }
.navbar .toggle {
  cursor: pointer; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--accent); color: var(--accent); font-size: 15px;
}
.navbar .menu-btn { cursor: pointer; font-size: 20px; color: var(--text-strong); }

.menu-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 200;
}
.menu-overlay.open { display: block; }
.menu-panel {
  position: absolute; top: 0; right: 0; width: 300px; max-width: 82%; height: 100%;
  background: var(--bg-body); padding: 20px;
}
.menu-close { text-align: right; font-size: 20px; color: var(--text-strong); cursor: pointer; margin-bottom: 20px; }
.menu-link {
  display: block; padding: 14px 4px; font-size: 15px; color: var(--text-strong);
  border-bottom: 1px solid var(--border-soft); text-decoration: none; font-family: Georgia, serif;
}

.hero {
  position: relative; padding: 40px 20px; text-align: center;
  background: var(--bg-hero); overflow: hidden;
}
.hero .pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, var(--pattern-color) 0px, var(--pattern-color) 2px, transparent 2px, transparent 18px);
}
.hero .content { position: relative; max-width: 480px; margin: 0 auto; }
.hero .brand-logo {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--bg-card); border: 1px solid var(--border-soft); overflow: hidden;
}
.hero .brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.hero .tag { font-size: 12px; letter-spacing: 3px; color: var(--accent); margin-bottom: 10px; font-family: Arial, sans-serif; font-weight: bold; }
.hero h1 { font-size: 30px; color: var(--text-strong); margin-bottom: 20px; line-height: 1.2; }

.btn-primary, .btn-outline, .btn-dark {
  display: inline-block; width: 100%; max-width: 320px;
  padding: 14px; border-radius: 6px; font-family: Arial, sans-serif;
  font-size: 13px; font-weight: bold; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; margin-bottom: 10px; border: none;
}
.btn-primary { background: var(--btn-primary-bg); color: var(--btn-primary-text); }
.btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--text-strong); }
.btn-dark { background: var(--btn-dark-bg); color: var(--btn-dark-text); }

.stats { display: flex; background: var(--accent); }
.stats .stat { flex: 1; text-align: center; padding: 16px 6px; border-right: 1px solid rgba(255,255,255,0.25); }
.stats .stat:last-child { border-right: none; }
.stats .stat .num { font-size: 20px; color: var(--btn-primary-text); font-weight: bold; }
.stats .stat .lbl { font-size: 10px; color: var(--btn-primary-text); opacity: 0.85; letter-spacing: 0.5px; font-family: Arial, sans-serif; margin-top: 2px; }

.section {
    padding: 24px 20px;
    max-width: 600px;
    margin: 0 auto;
}

    .section.alt {
        background: var(--bg-section-alt);
        max-width: 100%;
        position: relative;
        background-image: repeating-linear-gradient(135deg, var(--pattern-color) 0px, var(--pattern-color) 1px, transparent 1px, transparent 16px);
    }

    .section .tag {
        font-size: 12px;
        letter-spacing: 2px;
        color: var(--accent);
        margin-bottom: 6px;
        font-family: Arial, sans-serif;
        font-weight: bold;
    }

    .section h2 {
        font-size: 22px;
        color: var(--text-strong);
        margin-bottom: 18px;
    }

.about-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.about-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    overflow: hidden;
}

    .about-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-text .name {
    font-size: 17px;
    color: var(--text-strong);
    font-weight: bold;
    margin-bottom: 6px;
}

.about-text p {
    font-size: 13px;
    color: var(--text-body);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.pills {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pill {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
    display: inline-block;
}

    .pill.active {
        background: var(--btn-dark-bg) !important;
        color: var(--btn-dark-text) !important;
        border-color: var(--btn-dark-bg);
    }

    .pill.inactive {
        background: transparent;
        color: var(--accent);
        border-color: var(--border-soft);
    }

    .pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .pill.inactive:hover {
        background: var(--accent);
        color: #FFFFFF;
        border-color: var(--accent);
    }

    .pill.active:hover {
        filter: brightness(1.1);
    }

.card-servicio {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-left: 3px solid var(--accent);
    cursor: pointer;
}

    .card-servicio .nombre {
        font-size: 14px;
        color: var(--text-strong);
        font-weight: bold;
    }

    .card-servicio .duracion {
        font-size: 11px;
        color: var(--text-muted);
        font-family: Arial, sans-serif;
    }

    .card-servicio .precio {
        font-size: 15px;
        color: var(--text-strong);
        font-weight: bold;
    }

.cargando {
    font-size: 13px;
    color: var(--text-muted);
    font-family: Arial, sans-serif;
}

.policy-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 12px;
    color: var(--text-body);
    font-family: Arial, sans-serif;
    line-height: 1.5;
    margin-bottom: 16px;
}

    .policy-banner a {
        color: var(--accent);
        font-weight: bold;
    }

.form-box {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 18px;
    border: 1px solid var(--border-soft);
}

    .form-box label {
        display: block;
        font-size: 12px;
        color: var(--text-body);
        font-family: Arial, sans-serif;
        font-weight: bold;
        margin: 12px 0 6px;
    }

        .form-box label:first-child {
            margin-top: 0;
        }

    .form-box input, .form-box select {
        width: 100%;
        height: 44px;
        background: var(--bg-field);
        border: 1.5px solid var(--border-soft);
        border-radius: 8px;
        padding: 0 14px;
        font-size: 13px;
        color: var(--text-strong);
        font-family: Arial, sans-serif;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .form-box input:focus, .form-box select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.15);
        }

    .form-box select {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B5E3C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 16px;
        cursor: pointer;
    }

    .form-box input[type="date"], .form-box input[type="time"] {
        cursor: pointer;
    }

    .form-box .abono {
        font-size: 13px;
        color: var(--accent);
        font-weight: bold;
        margin: 16px 0;
        font-family: Arial, sans-serif;
    }

.map-box {
    position: relative;
    height: 180px;
    background: var(--bg-field);
    border-radius: 10px;
    overflow: hidden;
    margin: 6px 0 16px;
    border: 1px solid var(--border-soft);
}

    .map-box .pattern2 {
        position: absolute;
        inset: 0;
        opacity: 0.6;
        background-image: linear-gradient(var(--border-soft) 1px, transparent 1px), linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
        background-size: 22px 22px;
    }

    .map-box .pin {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-100%);
    }

        .map-box .pin .drop {
            width: 34px;
            height: 34px;
            border-radius: 50% 50% 50% 0;
            background: var(--btn-dark-bg);
            transform: rotate(-45deg);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--accent);
        }

        .map-box .pin .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            transform: rotate(45deg);
        }

.loc-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.loc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--btn-dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--btn-dark-text);
    font-size: 16px;
}

.loc-title {
    font-size: 15px;
    color: var(--text-strong);
    font-weight: bold;
}

.loc-desc {
    font-size: 12px;
    color: var(--text-muted);
    font-family: Arial, sans-serif;
    margin-top: 3px;
    line-height: 1.5;
}

.loc-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .loc-buttons a {
        text-align: center;
        text-decoration: none;
    }

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.policy-item {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text-body);
    font-family: Arial, sans-serif;
    line-height: 1.5;
    border-left: 3px solid var(--accent);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.2s ease;
}

    .policy-item:hover {
        transform: translateX(4px);
    }

.policy-icon {
    font-size: 18px;
    flex-shrink: 0;
}
.footer {
    padding: 20px;
    text-align: center;
    background: var(--footer-bg);
    color: var(--footer-text);
    font-size: 12px;
    font-family: Arial, sans-serif;
    border-top: 2px solid var(--accent);
}

/* ---------- Galería del espacio ---------- */
.gallery-real {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 240px;
}

    .gallery-real .gr-item {
        background-size: cover;
        background-position: center;
        border-radius: 8px;
        border: 1px solid var(--border-soft);
    }

    .gallery-real .gr-main {
        grid-row: 1 / 3;
    }

/* ---------- Por qué elegirnos ---------- */
.why-grid {
    display: flex;
    gap: 10px;
    margin-bottom: 4px;
}

.why-item {
    flex: 1;
    background: var(--bg-card);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    border-top: 2px solid var(--accent);
    cursor: pointer;
}

    .why-item .ic {
        font-size: 20px;
        color: var(--accent);
        margin-bottom: 6px;
    }

    .why-item .t {
        font-size: 11px;
        color: var(--text-strong);
        font-weight: bold;
        font-family: Arial, sans-serif;
    }

.why-detail {
    display: none;
    background: var(--bg-card);
    border-radius: 10px;
    padding: 14px;
    margin-top: 10px;
    border: 1px solid var(--border-soft);
    font-family: Arial, sans-serif;
}

    .why-detail.open {
        display: block;
    }

    .why-detail .wd-title {
        font-size: 12px;
        color: var(--text-strong);
        font-weight: bold;
        margin-bottom: 8px;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

    .gallery-grid .g-item {
        aspect-ratio: 1;
        background: var(--bg-field);
        background-size: cover;
        background-position: center;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 16px;
    }

.sched-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-body);
    padding: 6px 0;
    border-bottom: 1px dashed var(--border-soft);
}

    .sched-row:last-child {
        border-bottom: none;
    }

.review-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 14px;
    padding: 24px 20px 20px;
    border: 1px solid var(--border-soft);
    text-align: center;
}

.review-quote-mark {
    font-size: 50px;
    color: var(--accent);
    opacity: 0.25;
    font-family: 'Playfair Display', serif;
    line-height: 0.5;
    margin-bottom: 6px;
}

.review-stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.review-name {
    font-size: 12px;
    color: var(--text-strong);
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.btn-leave-review {
    width: 100%;
    margin-top: 10px;
    background: var(--btn-dark-bg);
    color: var(--btn-dark-text);
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: Arial, sans-serif;
}
.detalle-servicio {
    display: none;
    background: var(--bg-field);
    border-radius: 0 0 8px 8px;
    padding: 12px 16px;
    margin: -10px 0 10px;
    border-left: 3px solid var(--accent);
    font-size: 12px;
    color: var(--text-body);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

    .detalle-servicio.open {
        display: block;
    }

    .detalle-servicio p {
        margin-bottom: 10px;
    }

.btn-agendar-servicio {
    width: 100%;
    background: var(--btn-dark-bg);
    color: var(--btn-dark-text);
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: Arial, sans-serif;
}
.hero-photo {
    width: 100%;
    max-width: 420px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}

    .hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.form-resena {
    display: none;
    margin-top: 12px;
    background: var(--bg-field);
    border-radius: 8px;
    padding: 14px;
}

    .form-resena.open {
        display: block;
    }

    .form-resena label {
        display: block;
        font-size: 11px;
        color: var(--text-body);
        font-weight: bold;
        margin: 10px 0 5px;
    }

        .form-resena label:first-child {
            margin-top: 0;
        }

    .form-resena input,
    .form-resena select,
    .form-resena textarea {
        width: 100%;
        background: var(--bg-card);
        border: 1px solid var(--border-soft);
        border-radius: 6px;
        padding: 8px 10px;
        font-size: 12px;
        color: var(--text-strong);
        font-family: Arial, sans-serif;
        resize: none;
    }

    .form-resena .btn-agendar-servicio {
        margin-top: 14px;
    }
.map-embed {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
    margin: 6px 0 16px;
    border: 3px solid var(--accent);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

    .map-embed::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 12px;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
        pointer-events: none;
    }

    .map-embed iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

.map-card {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    background: var(--bg-card);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.map-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-strong);
    font-weight: bold;
    margin-bottom: 4px;
}

.map-card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.map-card-desc {
    font-size: 12px;
    color: var(--text-muted);
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
}

.map-card-btn {
    display: inline-block;
    background: var(--btn-dark-bg);
    color: var(--btn-dark-text);
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    font-family: Arial, sans-serif;
}
.card-servicio {
    transition: all 0.2s ease;
}

    .card-servicio:hover {
        transform: translateX(4px);
        box-shadow: 0 4px 14px rgba(0,0,0,0.12);
        border-left-width: 5px;
    }

.why-item {
    transition: all 0.2s ease;
}

    .why-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

.btn-primary, .btn-outline, .btn-dark {
    transition: all 0.2s ease;
}

    .btn-primary:hover {
        filter: brightness(1.1);
        transform: translateY(-1px);
    }

    .btn-outline:hover {
        background: var(--accent);
        color: #FFFFFF;
    }

    .btn-dark:hover {
        filter: brightness(1.15);
        transform: translateY(-1px);
    }
.about-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.about-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    overflow: hidden;
}

    .about-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-name-box .name {
    font-size: 20px;
    color: var(--text-strong);
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
}

.about-name-box .role {
    font-size: 12px;
    color: var(--accent);
    font-family: Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.about-bio {
    font-size: 14px;
    color: var(--text-body);
    font-family: 'Lora', Georgia, serif;
    line-height: 1.8;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
    background: var(--bg-card);
    border-radius: 8px;
    padding: 16px 18px;
    border: 1px solid var(--border-soft);
}
.about-quote {
  position: relative;
  border-left: 3px solid var(--accent);
  padding: 16px 18px 16px 26px;
  margin: 10px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--text-strong);
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.6;
  background: var(--bg-field);
  border-radius: 0 10px 10px 0;
}
.about-quote::before {
  content: '"';
  position: absolute;
  top: -6px;
  left: 8px;
  font-size: 46px;
  color: var(--accent);
  opacity: 0.35;
  font-family: 'Playfair Display', serif;
  font-style: normal;
}


.estrellas-rating {
    display: flex;
    gap: 6px;
    margin: 8px 0 18px;
    cursor: pointer;
}

    .estrellas-rating span {
        font-size: 35px;
        color: #d6d6d6;
        transition: all 0.2s ease;
        user-select: none;
    }

        .estrellas-rating span:hover {
            transform: scale(1.15);
        }

        .estrellas-rating span.activa {
            color: #f5b301;
            text-shadow: 0 2px 5px rgba(245, 179, 1, 0.25);
        }
.pill.bloqueado {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
#estrellasRating {
    display: flex;
    gap: 4px;
    font-size: 26px;
    margin-bottom: 4px;
    cursor: pointer;
}

    #estrellasRating span {
        color: var(--border-soft);
        transition: color 0.15s ease;
    }

        #estrellasRating span.activa {
            color: var(--accent);
        }

.metodos-pago {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.metodo-pago-item {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.metodo-icono {
    font-size: 20px;
}

.metodo-nombre {
    font-size: 12px;
    color: var(--text-strong);
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.metodo-detalle {
    font-size: 11px;
    color: var(--text-muted);
    font-family: Arial, sans-serif;
}

/* =========================================
   POLÍTICAS DEL NEGOCIO
   ========================================= */

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 850px;
    margin: 0 auto;
}

.policy-item {
    background: var(--bg-card);
    border-radius: 9px;
    padding: 10px 16px;
    display: grid;
    grid-template-columns: 135px 2px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.03);
    border: 1px solid var(--border-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .policy-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }

/* TÍTULO */
.policy-titulo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-strong);
    white-space: normal;
    letter-spacing: 0.1px;
}

/* LÍNEA VERTICAL */
.policy-linea {
    width: 2px;
    height: 28px;
    justify-self: center;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.8;
}

/* DESCRIPCIÓN */
.policy-texto {
    font-size: 12px;
    color: var(--text-body);
    font-family: Arial, sans-serif;
    line-height: 1.45;
    max-width: none;
    margin: 0;
}

/* FIRMA */
.policy-signature {
    text-align: center;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--accent);
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-top: 4px;
}
.form-box input[type="date"],
.form-box input[type="time"] {
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    width: 100%;
}

    .form-box input[type="date"]::-webkit-calendar-picker-indicator,
    .form-box input[type="time"]::-webkit-calendar-picker-indicator {
        opacity: 0.7;
        cursor: pointer;
        margin-left: 6px;
    }
#bloqueExtra {
    margin: 14px 0;
    padding-top: 4px;
}

    #bloqueExtra label {
        display: block;
        font-size: 12px;
        color: var(--text-body);
        font-weight: bold;
        margin-bottom: 6px;
        font-family: Arial, sans-serif;
    }

#inputExtra {
    width: 100%;
    height: 44px;
    background: var(--bg-field);
    border: 1.5px solid var(--border-soft);
    border-radius: 8px;
    padding: 0 14px;
    font-size: 13px;
    color: var(--text-strong);
    font-family: Arial, sans-serif;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B5E3C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}

.franjas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.btn-hora {
    background: var(--bg-field);
    border: 1px solid var(--border-soft);
    color: var(--text-strong);
    padding: 7px 11px;
    min-width: 82px;
    border-radius: 7px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .btn-hora:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--btn-primary-text);
        transform: translateY(-2px);
        box-shadow: 0 4px 9px rgba(74, 47, 27, 0.12);
    }

    .btn-hora.activa {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--btn-primary-text);
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(74, 47, 27, 0.12);
    }

    /* Horario ocupado */

    .btn-hora.ocupado {
        background: var(--border-soft);
        color: var(--text-muted);
        border-color: var(--border-soft);
        cursor: not-allowed;
        opacity: 0.55;
        text-decoration: line-through;
    }

        .btn-hora.ocupado:hover {
            background: var(--border-soft);
            border-color: var(--border-soft);
            color: var(--text-muted);
            transform: none;
        }
.review-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
}

    .review-nav button {
        background: var(--bg-field);
        border: 1px solid var(--border-soft);
        color: var(--accent);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
    }

.review-dots {
    font-size: 11px;
    color: var(--text-muted);
    font-family: Arial, sans-serif;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 4px 0 18px;
}

    .divider span {
        width: 40px;
        height: 1px;
        background: var(--border-soft);
    }

    .divider i {
        color: var(--accent);
        font-size: 12px;
        font-style: normal;
    }

.aviso-extras {
    font-size: 12px;
    color: var(--text-muted);
    font-family: Arial, sans-serif;
    font-style: italic;
    margin: -8px 0 14px;
}
/* =========================================
   FOOTER DY RECOVERY
   ========================================= */
.footer {
    width: 100vw;
    max-width: none;
    background: var(--bg-section-alt);
    color: var(--text-strong);
    margin: 0;
    border-top: 3px solid var(--accent);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.footer-top {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
    padding: 50px 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: normal;
    letter-spacing: 3px;
    line-height: 1;
    color: var(--text-strong);
}

    .footer-brand h2 span {
        color: var(--accent);
        font-weight: bold;
    }

.footer-brand p {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-family: Arial, sans-serif;
}

.footer-social {
    display: flex;
    flex-direction: column;
}

    .footer-social a {
        color: var(--text-body);
        text-decoration: none;
        font-size: 13px;
        font-family: Arial, sans-serif;
        transition: color 0.25s ease;
    }

        .footer-social a:hover {
            color: var(--accent);
        }

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

    .footer-contact span {
        font-size: 10px;
        letter-spacing: 2px;
        color: var(--accent);
        font-family: Arial, sans-serif;
        font-weight: bold;
    }

    .footer-contact a {
        color: var(--text-strong);
        text-decoration: none;
        font-size: 14px;
        font-family: Arial, sans-serif;
    }

.footer-bottom {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
    padding: 18px 0 22px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-bottom > span {
        font-size: 10px;
        letter-spacing: 0.5px;
        color: var(--text-muted);
        font-family: Arial, sans-serif;
    }

.footer-creator {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    gap: 3px;
    transition: 0.25s ease;
}

    .footer-creator span {
        font-size: 10px;
        letter-spacing: 2px;
        color: var(--text-body);
        font-family: Arial, sans-serif;
    }

    .footer-creator small {
        font-size: 9px;
        color: var(--text-muted);
        font-family: Arial, sans-serif;
    }

    .footer-creator:hover span {
        color: var(--accent);
    }

@media (max-width: 700px) {
    .footer-top {
        width: calc(100% - 50px);
        padding: 40px 0 35px;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-bottom {
        width: calc(100% - 50px);
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-creator {
        align-items: flex-start;
    }
}

#inputFecha {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .policy-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .policy-titulo {
        white-space: normal;
    }

    .policy-linea {
        width: 100%;
        height: 2px;
        align-self: stretch;
    }
}