.br-container {
    max-width: 1150px;
    margin: 40px auto;
    padding: 36px;
    background: linear-gradient(180deg, #111827 0%, #0b1220 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    font-family: Arial, sans-serif;
    color: #f5f7fb;
}

.br-container h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #ffffff;
}

.br-container h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #ffffff;
}

.br-subtitle {
    margin-bottom: 28px;
    color: #a9b4c7;
    font-size: 16px;
}

.br-field {
    margin-bottom: 18px;
}

.br-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #dce6f7;
}

.br-field input,
.br-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    box-sizing: border-box;
    font-size: 16px;
    background: rgba(255,255,255,0.06);
    color: #ffffff;
}

.br-field input::placeholder,
.br-field textarea::placeholder {
    color: #9ca9bf;
}

.br-field input:focus,
.br-field textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.18);
}

#br-consultar,
#br-reservar,
.br-slot-btn {
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 700;
}

#br-consultar,
#br-reservar {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    padding: 14px 20px;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(37,99,235,0.25);
}

#br-consultar:hover,
#br-reservar:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(37,99,235,0.32);
}

.br-disponibilidad {
    margin-top: 30px;
    margin-bottom: 30px;
}

.br-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.br-pista {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(4px);
}

.br-pista h4 {
    margin: 0 0 16px;
    font-size: 24px;
    color: #ffffff;
}

.br-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.br-slot-btn {
    background: #0f172a;
    color: #f8fafc;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.br-slot-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(59,130,246,0.5);
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.br-slot-btn.ocupado {
    background: #374151;
    color: #94a3b8;
    cursor: not-allowed;
    border-color: rgba(255,255,255,0.05);
    opacity: 0.7;
}

.br-slot-btn.seleccionado {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}

.br-divider {
    margin: 34px 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.br-form-box {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
}

.br-form-box.hidden {
    display: none;
}

.br-selected-info {
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.25);
    font-weight: 700;
    color: #dbeafe;
}

.br-mensaje {
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
    display: none;
}

.br-mensaje.visible {
    display: block;
}

.br-mensaje.ok {
    background: rgba(34,197,94,0.14);
    color: #bbf7d0;
    border: 1px solid rgba(34,197,94,0.3);
}

.br-mensaje.error {
    background: rgba(239,68,68,0.14);
    color: #fecaca;
    border: 1px solid rgba(239,68,68,0.3);
}

@media (max-width: 900px) {
    .br-grid {
        grid-template-columns: 1fr;
    }

    .br-container {
        padding: 22px;
        border-radius: 18px;
    }

    .br-container h2 {
        font-size: 32px;
    }

    .br-container h3 {
        font-size: 24px;
    }
}

.br-admin-guard {
    max-width: 900px;
    margin: 40px auto;
    padding: 24px;
    border-radius: 16px;
    background: #111827;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
}

.br-admin-panel {
    max-width: 1200px;
    margin: 40px auto;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, #111827 0%, #0b1220 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.br-admin-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.br-admin-header h2 {
    margin: 0 0 6px;
    color: #fff;
}

.br-admin-header p {
    margin: 0;
    color: #a9b4c7;
}

.br-admin-user {
    color: #dbeafe;
    font-weight: 700;
}

.br-admin-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.br-admin-filter input[type="date"] {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.br-admin-filter button,
.br-admin-filter a {
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    font-weight: 700;
}

.br-admin-filter button {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    cursor: pointer;
}

.br-admin-filter a {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.br-admin-table-wrap {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.br-admin-table {
    width: 100%;
    min-width: 1200px;
    border-collapse: collapse;
    color: #eef2ff;
}

.br-admin-table thead th {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-weight: 700;
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
}

.br-admin-table tbody td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #eef2ff;
    vertical-align: middle;
}

.br-admin-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.br-status {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.br-status-pendiente {
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
}

.br-status-confirmada {
    background: rgba(34, 197, 94, 0.18);
    color: #bbf7d0;
}

.br-status-cancelada {
    background: rgba(239, 68, 68, 0.18);
    color: #fecaca;
}

.br-status-bloqueada {
    background: rgba(100,116,139,0.2);
    color: #cbd5f5;
    border: 1px solid rgba(100,116,139,0.4);
}

.br-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.br-action-btn {
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
}

.br-btn-confirmar {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.br-btn-cancelar {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.br-action-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.br-admin-feedback {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
    display: none;
}

.br-admin-feedback.visible {
    display: block;
}

.br-admin-feedback.ok {
    background: rgba(34,197,94,0.14);
    color: #bbf7d0;
    border: 1px solid rgba(34,197,94,0.3);
}

.br-admin-feedback.error {
    background: rgba(239,68,68,0.14);
    color: #fecaca;
    border: 1px solid rgba(239,68,68,0.3);
}

.br-btn-bloquear {
    background: linear-gradient(135deg, #64748b, #334155);
}

.br-admin-block-form {
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.br-admin-block-form h3 {
    margin: 0 0 16px;
    color: #fff;
}

.br-admin-block-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.br-admin-block-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: #dbeafe;
}

.br-admin-block-form input,
.br-admin-block-form select,
.br-admin-block-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    box-sizing: border-box;
}

.br-admin-block-notes {
    margin-bottom: 14px;
}

.br-admin-create-btn {
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #64748b, #334155);
}

@media (max-width: 900px) {
    .br-admin-block-grid {
        grid-template-columns: 1fr;
    }
}

/* Dropdown oscuro */
.br-admin-panel select {
    background-color: #0f172a !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Opciones del dropdown */
.br-admin-panel select option {
    background-color: #0f172a;
    color: #fff;
}

.br-admin-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.br-admin-filter-grid label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: #dbeafe;
}

.br-admin-filter-grid input,
.br-admin-filter-grid select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #0f172a;
    color: #fff;
    box-sizing: border-box;
}

.br-admin-filter-grid input::placeholder {
    color: #94a3b8;
}

.br-admin-filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.br-admin-filter-actions button,
.br-admin-filter-actions a {
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    font-weight: 700;
}

.br-admin-filter-actions button {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    cursor: pointer;
}

.br-admin-filter-actions a {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

@media (max-width: 900px) {
    .br-admin-filter-grid {
        grid-template-columns: 1fr;
    }
}

.br-admin-calendar {
    margin-bottom: 28px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.br-admin-calendar-header {
    margin-bottom: 16px;
}

.br-admin-calendar-header h3 {
    margin: 0 0 6px;
    color: #fff;
}

.br-admin-calendar-header p {
    margin: 0;
    color: #a9b4c7;
}

.br-admin-calendar-wrap {
    overflow-x: auto;
}

.br-admin-calendar-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}

.br-admin-calendar-table th {
    text-align: left;
    color: #fff;
    padding: 10px 8px;
    font-size: 14px;
}

.br-admin-calendar-table td {
    vertical-align: top;
    min-width: 170px;
}

.br-calendar-time {
    color: #dbeafe;
    font-weight: 700;
    white-space: nowrap;
    min-width: 120px;
}

.br-calendar-card {
    border-radius: 16px;
    padding: 12px;
    min-height: 90px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05);
}

.br-calendar-status {
    font-weight: 800;
    margin-bottom: 6px;
}

.br-calendar-name {
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.br-calendar-meta {
    font-size: 13px;
    color: #d6def0;
    margin-bottom: 4px;
}

.br-calendar-note {
    font-size: 12px;
    color: #b8c4da;
}

.br-calendar-libre {
    background: rgba(15, 23, 42, 0.7);
    color: #94a3b8;
}

.br-calendar-pendiente {
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.3);
}

.br-calendar-confirmada {
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(34, 197, 94, 0.3);
}

.br-calendar-cancelada {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.25);
}

.br-calendar-bloqueada {
    background: rgba(100, 116, 139, 0.16);
    border-color: rgba(100, 116, 139, 0.3);
}

.br-calendar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.br-mini-action {
    border: none;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
}

.br-mini-confirmar {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.br-mini-cancelar {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.br-mini-bloquear {
    background: linear-gradient(135deg, #64748b, #334155);
}

.br-mini-create-reserva {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.br-mini-create-bloqueo {
    background: linear-gradient(135deg, #475569, #1e293b);
}

.br-admin-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.br-admin-calendar-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.br-admin-nav-btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s ease;
}

.br-admin-nav-btn:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-1px);
}

.br-admin-dashboard {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.br-admin-stat-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.16);
}

.br-admin-stat-label {
    font-size: 13px;
    color: #a9b4c7;
    margin-bottom: 8px;
    font-weight: 700;
}

.br-admin-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

@media (max-width: 1200px) {
    .br-admin-dashboard {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .br-admin-dashboard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.br-whatsapp-btn {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    font-size: 13px;
}

.br-whatsapp-btn:hover {
    opacity: 0.95;
}

.br-whatsapp-disabled {
    color: #94a3b8;
}

.br-mini-whatsapp {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* HOME */
.br-home-hero {
    padding: 140px 24px 110px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(59,130,246,0.22), transparent 35%),
        linear-gradient(180deg, #0f172a 0%, #020617 100%);
    border-radius: 0 0 32px 32px;
    margin: 0 0 50px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.br-home-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.br-home-hero h1 {
    font-size: 54px;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 800;
}

.br-home-hero p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 28px;
}

.br-home-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.br-home-btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.br-home-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.br-home-btn-secondary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(34,197,94,0.35);
}

.br-home-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(34,197,94,0.5);
}

.br-home-btn:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.br-home-features {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.br-home-feature-card {
    padding: 22px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #111827 0%, #0b1220 100%);
    color: #fff;
    text-align: center;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.br-home-promos {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 24px;
}

.br-home-section-head {
    margin-bottom: 24px;
}

.br-home-section-head h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0f172a;
}

.br-home-section-head p {
    margin: 0;
    color: #475569;
    font-size: 17px;
}

.br-home-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.br-home-promo-card {
    position: relative;
    padding: 28px;
    border-radius: 24px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.br-home-promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,6,23,0.15), rgba(2,6,23,0.82));
    z-index: 1;
}

.br-home-promo-card > * {
    position: relative;
    z-index: 2;
}

.br-home-promo-card-1 {
    background:
        radial-gradient(circle at top, rgba(239,68,68,0.25), transparent 35%),
        linear-gradient(135deg, #1e293b, #7c2d12);
}

.br-home-promo-card-2 {
    background:
        radial-gradient(circle at top, rgba(245,158,11,0.25), transparent 35%),
        linear-gradient(135deg, #1e293b, #78350f);
}

.br-home-promo-card-3 {
    background:
        radial-gradient(circle at top, rgba(59,130,246,0.24), transparent 35%),
        linear-gradient(135deg, #0f172a, #312e81);
}

.br-home-promo-tag {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.br-home-promo-card h3 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #fff;
}

.br-home-promo-card p {
    margin: 0;
    color: #e2e8f0;
    line-height: 1.5;
    font-size: 16px;
}

.br-home-promos-cta {
    margin-top: 24px;
    text-align: center;
}

.br-home-promos h2 {
    font-size: 34px;
    margin-bottom: 22px;
    color: #0f172a;
}

.br-home-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.br-home-promos-card {
    position: relative;
    padding: 26px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
}

/* Glow suave */
.br-home-promos-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(59,130,246,0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.br-home-promos-card:hover::before {
    opacity: 1;
}

.br-home-promos-card:hover {
    transform: translateY(-6px) scale(1.01);
}

/* Día (badge) */
.br-home-promos-day {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #cbd5f5;
    font-size: 13px;
    margin-bottom: 14px;
}

/* Título */
.br-home-promos-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Texto */
.br-home-promos-card p {
    color: #cbd5e1;
}

.br-home-cta {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 0 24px;
}

.br-home-cta-inner {
    padding: 60px 28px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(59,130,246,0.22), transparent 30%),
        linear-gradient(135deg, #0f172a, #111827 55%, #1d4ed8);
    border-radius: 28px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.br-home-cta-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.br-home-cta h2 {
    font-size: 42px;
    margin: 0 0 14px;
    color: #fff;
    line-height: 1.1;
}

.br-home-cta p {
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 18px;
    color: #dbeafe;
    line-height: 1.5;
}

.br-home-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 700px) {
    .br-home-cta-inner {
        padding: 42px 20px;
    }

    .br-home-cta h2 {
        font-size: 32px;
    }

    .br-home-cta p {
        font-size: 16px;
    }
}

@media (max-width: 1000px) {
    .br-home-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .br-home-promos-grid {
        grid-template-columns: 1fr;
    }

    .br-home-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 700px) {
    .br-home-features {
        grid-template-columns: 1fr;
    }

    .br-home-hero {
        padding: 80px 20px 70px;
    }

    .br-home-hero h1 {
        font-size: 34px;
    }

    .br-home-hero p {
        font-size: 17px;
    }

    .br-home-cta h2 {
        font-size: 30px;
    }
}

/* Ocultar título de la página en Inicio */
.page-id-16 .wp-block-post-title,
.page-id-16 h1.wp-block-post-title,
.page-id-16 .entry-title {
    display: none !important;
}

/* Reducir espacio superior en la Home */
.page-id-16 .wp-site-blocks,
.page-id-16 main,
.page-id-16 .entry-content,
.page-id-16 .wp-block-group {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.page-id-16 .wp-block-post-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.page-id-16 .entry-content > * {
    max-width: 100% !important;
}

.page-id-16 .br-home-hero,
.page-id-16 .br-home-features,
.page-id-16 .br-home-promos,
.page-id-16 .br-home-cta {
    width: 100%;
    box-sizing: border-box;
}

/* HEADER */
header.wp-block-template-part,
header.site-header,
.wp-site-blocks > header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    min-height: 82px;
    padding: 0 28px;
    display: flex;
    align-items: center;
}

/* estructura interna */
header.wp-block-template-part > *,
header.site-header > *,
.wp-site-blocks > header > * {
    width: 100%;
}

/* grupos internos */
header .wp-block-group,
header .wp-block-columns,
header .wp-block-column,
header .wp-block-navigation {
    display: flex;
    align-items: center !important;
}

/* que no queden pegados arriba */
header .wp-block-group {
    min-height: 82px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* título/logo */
header .wp-block-site-title,
header .site-title,
header .wp-block-site-logo + .wp-block-site-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 !important;
    line-height: 1;
    display: flex;
    align-items: center;
    min-height: 82px;
}

/* navegación */
header .wp-block-navigation {
    gap: 26px;
    min-height: 82px;
}

/* links del menú */
header .wp-block-navigation-item {
    display: flex;
    align-items: center;
    min-height: 82px;
}

header .wp-block-navigation-item__content {
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    display: flex !important;
    align-items: center !important;
    min-height: 82px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

header .wp-block-navigation-item__content:hover {
    color: #60a5fa;
}

/* limpiar márgenes raros */
header .wp-block-navigation,
header .wp-block-site-title,
header p,
header h1,
header h2,
header h3 {
    margin: 0 !important;
}

/* Fondo general del sitio */
body,
.editor-styles-wrapper,
.wp-site-blocks {
    background: #e9eef7 !important;
}

/* Empujar navegación a la derecha */
header .wp-block-navigation {
    margin-left: auto !important;
}

/* Layout header limpio */
header .wp-block-group,
header .wp-block-columns {
    display: flex;
    align-items: center;
    width: 100%;
}

header .wp-block-site-title {
    margin-right: 20px;
}

/* Hacer que "Reservas" se vea como botón en el menú */
header .wp-block-navigation-item:nth-child(2) .wp-block-navigation-item__content {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff !important;
    padding: 12px 18px !important;
    border-radius: 14px;
    min-height: auto !important;
    line-height: 1 !important;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

header .wp-block-navigation-item:nth-child(2) .wp-block-navigation-item__content:hover {
    color: #ffffff !important;
    opacity: 0.96;
    transform: translateY(-1px);
}

.br-home-food {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 24px;
}

.br-home-food-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.br-home-food-card {
    padding: 28px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.br-home-food-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

.br-home-food-card h3 {
    margin: 0 0 10px;
    font-size: 28px;
    color: #111827;
}

.br-home-food-card p {
    margin: 0;
    color: #475569;
    line-height: 1.5;
}

.br-home-food-cta {
    margin-top: 22px;
    text-align: center;
}

@media (max-width: 1000px) {
    .br-home-food-grid {
        grid-template-columns: 1fr;
    }
}

/* PÁGINA RESERVAS */
.br-reservas-page-hero {
    max-width: 1200px;
    margin: 40px auto 26px;
    padding: 0 24px;
}

.br-reservas-page-hero-inner {
    padding: 52px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(59,130,246,0.22), transparent 30%),
        linear-gradient(135deg, #0f172a, #111827 55%, #1d4ed8);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(15,23,42,0.16);
    text-align: center;
}

.br-reservas-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.br-reservas-page-hero-inner h1 {
    font-size: 44px;
    margin: 0 0 14px;
    color: #fff;
    line-height: 1.08;
}

.br-reservas-page-hero-inner p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    color: #dbeafe;
    line-height: 1.5;
}

.br-reservas-steps {
    max-width: 1200px;
    margin: 0 auto 26px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.br-reservas-step {
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}

.br-reservas-step-number {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
}

.br-reservas-step h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #111827;
}

.br-reservas-step p {
    margin: 0;
    color: #475569;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .br-reservas-steps {
        grid-template-columns: 1fr;
    }

    .br-reservas-page-hero-inner h1 {
        font-size: 34px;
    }

    .br-reservas-page-hero-inner p {
        font-size: 16px;
    }
}

/* WRAPPER RESERVAS */
.br-reservas-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

/* CONTENEDOR INTERNO DEL PLUGIN */
.br-reservas-wrapper > div {
    background: #ffffff;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(15,23,42,0.08);
    border: 1px solid #e5e7eb;
}

/* INPUTS */
.br-reservas-wrapper input,
.br-reservas-wrapper select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    margin-top: 6px;
    margin-bottom: 14px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.br-reservas-wrapper input:focus,
.br-reservas-wrapper select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

/* LABELS */
.br-reservas-wrapper label {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

/* BOTÓN FINAL */
.br-reservas-wrapper button {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.br-reservas-wrapper button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59,130,246,0.35);
}

/* ===== PÁGINA RESERVAS ===== */

/* fondo general un poco más elegante */
body,
.wp-site-blocks {
    background: #dfe7f3 !important;
}

/* ocultar el título de la página de reservas
   CAMBIÁ el 8 por el ID real de tu página Reservas */
.page-id-9 .wp-block-post-title,
.page-id-9 h1.wp-block-post-title,
.page-id-9 .entry-title {
    display: none !important;
}

/* quitar espacio raro arriba de la página Reservas */
.page-id-9 .wp-block-post-content,
.page-id-9 main,
.page-id-9 .entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* wrapper general */
.br-reservas-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

/* contenedor principal del shortcode */
.br-reservas-wrapper .br-container {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%) !important;
    border-radius: 28px !important;
    padding: 30px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 20px 40px rgba(15,23,42,0.16) !important;
    color: #ffffff !important;
}

/* textos internos */
.br-reservas-wrapper .br-container h2,
.br-reservas-wrapper .br-container h3,
.br-reservas-wrapper .br-container h4,
.br-reservas-wrapper .br-container p,
.br-reservas-wrapper .br-container label,
.br-reservas-wrapper .br-selected-info {
    color: #ffffff !important;
}

/* subtítulo aclarado */
.br-reservas-wrapper .br-container p {
    color: #cbd5e1 !important;
}

/* campos */
.br-reservas-wrapper .br-container input,
.br-reservas-wrapper .br-container select,
.br-reservas-wrapper .br-container textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12) !important;
    background: rgba(255,255,255,0.06) !important;
    color: #ffffff !important;
    box-sizing: border-box;
}

/* placeholder */
.br-reservas-wrapper .br-container input::placeholder,
.br-reservas-wrapper .br-container textarea::placeholder {
    color: #94a3b8 !important;
}

/* focus */
.br-reservas-wrapper .br-container input:focus,
.br-reservas-wrapper .br-container select:focus,
.br-reservas-wrapper .br-container textarea:focus {
    outline: none;
    border-color: #60a5fa !important;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.18);
}

/* selector de fecha y opciones */
.br-reservas-wrapper .br-container input[type="date"] {
    color-scheme: dark;
    color: #ffffff !important;
}

.br-reservas-wrapper .br-container select option {
    background: #0f172a !important;
    color: #ffffff !important;
}

/* tarjetas de pista */
.br-reservas-wrapper .br-pista {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
}

/* slots */
.br-reservas-wrapper .br-slot-btn {
    background: linear-gradient(135deg, #2563eb, #4f46e5) !important;
    color: #ffffff !important;
    border-radius: 14px !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(37,99,235,0.22);
}

.br-reservas-wrapper .br-slot-btn.ocupado {
    background: #475569 !important;
    color: #cbd5e1 !important;
    box-shadow: none !important;
}

.br-reservas-wrapper .br-slot-btn.seleccionado {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}

/* bloque del formulario */
.br-reservas-wrapper .br-form-box {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
}

/* mensaje seleccionado */
.br-reservas-wrapper .br-selected-info {
    background: linear-gradient(135deg, rgba(37,99,235,0.16), rgba(79,70,229,0.16)) !important;
    border: 1px solid rgba(96,165,250,0.28) !important;
    color: #dbeafe !important;
    border-radius: 16px !important;
    padding: 16px 18px !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 24px rgba(37,99,235,0.10);
}

/* botón principal */
.br-reservas-wrapper .br-container button,
.br-reservas-wrapper .br-container #br-consultar,
.br-reservas-wrapper .br-container #br-reservar {
    background: linear-gradient(135deg, #2563eb, #4f46e5) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 22px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(37,99,235,0.28);
}

.br-reservas-wrapper .br-container button:hover,
.br-reservas-wrapper .br-container #br-consultar:hover,
.br-reservas-wrapper .br-container #br-reservar:hover {
    transform: translateY(-1px);
    opacity: 0.97;
}

/* responsive */
@media (max-width: 900px) {
    .br-reservas-wrapper .br-container {
        padding: 20px !important;
    }
}

/* ===== AGENDA VISUAL CLIENTE ===== */
.br-agenda-wrapper {
    margin-top: 24px;
    overflow-x: auto;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.br-agenda-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.br-agenda-table thead th {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.br-agenda-table tbody td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.br-agenda-time {
    color: #dbeafe;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(255,255,255,0.03);
}

.br-agenda-slot {
    width: 100%;
    min-width: 120px;
    padding: 14px 12px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    box-shadow: 0 8px 18px rgba(37,99,235,0.22);
}

.br-agenda-slot:hover {
    transform: translateY(-1px);
    opacity: 0.97;
}

.br-agenda-slot.disponible {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(37,99,235,0.22);
}

.br-agenda-slot.ocupado {
    box-shadow: none;
    cursor: not-allowed;
}

.br-agenda-slot.reservada {
    background: #475569 !important;
    color: #e2e8f0 !important;
}

.br-agenda-slot.bloqueada {
    background: #1f2937 !important;
    color: #cbd5e1 !important;
    border: 1px solid rgba(255,255,255,0.08);
}

.br-agenda-slot.nodisponible {
    background: #334155 !important;
    color: #e2e8f0 !important;
}

.br-agenda-slot.seleccionado {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}

@media (max-width: 900px) {
    .br-agenda-table {
        min-width: 760px;
    }
}

.br-reservas-legend {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 24px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.br-reservas-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-weight: 600;
}

.br-reservas-legend-color {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: inline-block;
}

.br-reservas-legend-color.disponible {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.br-reservas-legend-color.reservada {
    background: #475569;
}

.br-reservas-legend-color.bloqueada {
    background: #1f2937;
}

/* Leyenda reservas */
.br-reservas-legend {
    max-width: 1200px;
    margin: 0 auto 14px;
    padding: 0 24px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.br-reservas-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-weight: 600;
}

.br-reservas-legend-color {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: inline-block;
}

.br-reservas-legend-color.disponible {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.br-reservas-legend-color.reservada {
    background: #475569;
}

.br-reservas-legend-color.bloqueada {
    background: #1f2937;
}

/* Texto helper */
.br-reservas-helper {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 24px;
    color: #334155;
    font-size: 15px;
}

/* formulario más limpio */
.br-reservas-wrapper .br-field {
    margin-bottom: 18px;
}

.br-reservas-wrapper .br-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #e5e7eb;
}

.br-reservas-wrapper .br-container input,
.br-reservas-wrapper .br-container textarea,
.br-reservas-wrapper .br-container select {
    font-size: 15px;
}

.br-reservas-wrapper .br-container textarea {
    min-height: 120px;
    resize: vertical;
}

.br-reservas-wrapper .br-form-box h3 {
    margin-bottom: 18px !important;
    font-size: 30px !important;
    color: #ffffff !important;
}

.br-reservas-wrapper .br-form-box {
    margin-top: 10px;
}

/* HERO OSCURO */
.br-menu-hero-dark {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 60px 24px;
    text-align: center;
    background: linear-gradient(135deg, #0b1220, #1e3a8a);
    border-radius: 24px;
    color: white;
}

.br-menu-hero-dark h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.br-menu-hero-dark p {
    color: #cbd5f5;
    font-size: 18px;
}

/* WRAPPER */
.br-menu-wrapper {
    background: #0b1220;
    padding: 30px 0 50px;
}

/* CONTENEDOR */
.br-menu-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.br-menu-container iframe {
    width: 100%;
    height: 80vh;
    border: none;
    border-radius: 20px;
    background: #0b1220;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* CTA */
.br-menu-cta {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 24px;
    text-align: center;
    background: linear-gradient(135deg, #0b1220, #1e3a8a);
    border-radius: 24px;
    color: white;
}

.br-menu-cta h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.br-menu-cta p {
    margin-bottom: 20px;
    color: #cbd5f5;
}

h1.entry-title {
    display: none;
}

/* ===== CONTACTO ===== */
.br-contact-hero {
    max-width: 1200px;
    margin: 40px auto 26px;
    padding: 0 24px;
}

.br-contact-hero-inner {
    padding: 56px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(59,130,246,0.20), transparent 30%),
        linear-gradient(135deg, #0f172a, #111827 55%, #1d4ed8);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(15,23,42,0.16);
    text-align: center;
}

.br-contact-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.br-contact-hero-inner h1 {
    font-size: 44px;
    margin: 0 0 14px;
    color: #fff;
}

.br-contact-hero-inner p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    color: #dbeafe;
    line-height: 1.5;
}

.br-contact-grid {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.br-contact-card {
    padding: 26px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}

.br-contact-card h3 {
    margin: 0 0 12px;
    font-size: 28px;
    color: #111827;
}

.br-contact-card p {
    margin: 0 0 12px;
    color: #475569;
    line-height: 1.5;
}

.br-contact-map {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 0 24px;
}

.br-contact-map-inner {
    padding: 40px 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #111827, #0f172a 55%, #2563eb);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(15,23,42,0.16);
}

.br-contact-map-inner h2 {
    margin: 0 0 10px;
    font-size: 36px;
    color: #fff;
}

.br-contact-map-inner p {
    margin: 0 0 20px;
    color: #dbeafe;
}

.br-contact-map-box {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.br-contact-map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1000px) {
    .br-contact-grid {
        grid-template-columns: 1fr;
    }

    .br-contact-hero-inner h1 {
        font-size: 36px;
    }
}

/* ===== WHATSAPP FLOTANTE GLOBAL ===== */
.br-whatsapp-floating {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 18px 36px rgba(34,197,94,0.35);
    transition: all 0.2s ease;
}

.br-whatsapp-floating:hover {
    transform: translateY(-2px);
    opacity: 0.97;
}

@media (max-width: 700px) {
    .br-whatsapp-floating {
        right: 14px;
        bottom: 14px;
        padding: 13px 16px;
        font-size: 16px;
    }
}

/* ===== FOOTER PROPIO ===== */
.br-footer {
    margin-top: 60px;
    padding: 50px 24px 24px;
    background: linear-gradient(180deg, #0b1220 0%, #020617 100%);
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.br-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
}

.br-footer-brand h3,
.br-footer-col h4 {
    margin: 0 0 14px;
    color: #ffffff;
}

.br-footer-brand h3 {
    font-size: 30px;
}

.br-footer-brand p,
.br-footer-col p,
.br-footer-col li,
.br-footer-col a {
    color: #cbd5e1;
    line-height: 1.6;
    text-decoration: none;
}

.br-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.br-footer-col a:hover {
    color: #60a5fa;
}

.br-footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.br-footer-bottom p {
    margin: 0;
    color: #94a3b8;
}

@media (max-width: 1000px) {
    .br-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .br-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Ocultar título de la página Contacto */
.page-id-19 .wp-block-post-title,
.page-id-19 h1.wp-block-post-title,
.page-id-19 .entry-title {
    display: none !important;
}

.page-id-19 .wp-block-post-content,
.page-id-19 main,
.page-id-19 .entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}