/* Reserva pública de reuniones — alineado con el sitio */
.agenda-public-wrap {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.agenda-public-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    padding: 0;
    overflow: hidden;
}

.agenda-public-card-header {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

/* Capa de imagen de borde a borde (incl. parte superior); el padding va solo en .agenda-public-head */
.agenda-public-card-header-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #1e293b;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    pointer-events: none;
}

.agenda-public-card-header-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
}

.agenda-public-card-header .agenda-public-head {
    position: relative;
    z-index: 1;
    padding: 1.75rem 1.5rem 2rem;
}

.agenda-public-header-kicker {
    letter-spacing: 0.12em;
    font-weight: 600;
}

.agenda-public-card-header .agenda-public-header-kicker.text-primary {
    color: var(--primary, #c49b66);
}

.agenda-public-header-desc,
.agenda-public-header-desc strong {
    color: #fff;
}

.agenda-public-header-sub {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.agenda-public-header-sub strong {
    color: #fff;
    font-weight: 600;
}

.agenda-public-header-sep {
    color: rgba(255, 255, 255, 0.55);
}

.agenda-public-card-body {
    padding: 40px 1.5rem 2rem;
}

@media (min-width: 768px) {
    .agenda-public-card-header .agenda-public-head {
        padding: 2.25rem 2.5rem 2.5rem;
    }

    .agenda-public-card-body {
        padding: 40px 2.5rem 2.5rem;
    }
}

.agenda-public-kicker {
    letter-spacing: 0.06em;
}

.agenda-public-card-header .agenda-public-kicker.agenda-public-header-kicker {
    letter-spacing: 0.12em;
}

.agenda-public-step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

@media (min-width: 768px) {
    .agenda-public-step-title {
        font-size: 1.5rem;
    }
}

.agenda-public-highlight {
    font-size: 1.05rem;
    color: #334155;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    border-left: 4px solid #c9a962;
}

.agenda-public-summary-card {
    background: #fafafa;
    border-color: #e2e8f0 !important;
}

.agenda-public-summary-list strong {
    color: #0f172a;
}

.agenda-public-wizard-nav .btn {
    min-width: 140px;
}

.agenda-public-input:focus {
    border-color: #c9a962;
    box-shadow: 0 0 0 0.15rem rgba(201, 169, 98, 0.25);
}

.agenda-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.agenda-cal-weekdays span {
    min-width: 0;
}

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

.agenda-cal-day {
    aspect-ratio: 1;
    max-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.agenda-cal-day.muted {
    color: #cbd5e1;
    pointer-events: none;
}

.agenda-cal-day.available {
    cursor: pointer;
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #0f172a;
    font-weight: 600;
}

.agenda-cal-day.available:hover {
    background: #fff7ed;
    border-color: #c9a962;
    color: #92400e;
}

.agenda-cal-day.today.available {
    box-shadow: inset 0 0 0 2px #c9a962;
}

.agenda-cal-day.selected {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    border-color: #1e293b;
}

.agenda-public-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.agenda-slot-btn {
    border-radius: 8px !important;
    min-width: 4.5rem;
}

.agenda-slot-btn.active {
    background: #1e293b !important;
    color: #fff !important;
    border-color: #1e293b !important;
}

.agenda-public-pick {
    border-radius: 10px;
}

/* Honeypot: oculto a usuarios */
.agenda-public-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
