@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* IMPORTAR FONTAWESOME DIRECTAMENTE (Solución Nuclear) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

#wpadminbar{ display:none !important; }

:root {
    /* PALETA BLUE VILLAS */
    --bv-blue: #004e92;       /* Azul Principal */
    --bv-blue-light: #508abc; /* Azul Secundario */
    --bv-sand: #d4c4a8;       /* Dorado/Arena */
    --bv-dark: #1a202c;
    --bv-gray: #f7fafc;
    --bv-border: #e2e8f0;
}

/* RESET FLUIDO */
.sr-app-wrapper-fluid {
    padding-top: 50px;
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}

/* NAVBAR */
.sr-top-nav {
    height: 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sr-brand-logo img {
    height: 55px !important;
    width: auto;
    transition: all 0.3s ease;
}
.sr-brand-text { font-weight: 700; color: var(--bv-blue); letter-spacing: 2px; font-size: 18px; }

/* Menú Central */
.sr-nav-center { display: flex; gap: 10px; }
.sr-nav-pill {
    text-decoration: none;
    color: #718096;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex; align-items: center; gap: 8px;
}
.sr-nav-pill:hover { background: var(--bv-gray); color: var(--bv-blue); }
.sr-nav-pill.active { background: var(--bv-blue); color: white; box-shadow: 0 4px 12px rgba(0, 78, 146, 0.3); }

/* Ajuste Iconos Navbar */
.sr-nav-pill i { font-size: 16px; margin-right: 5px; }

/* Usuario */
.sr-user-menu { display: flex; align-items: center; gap: 15px; }
.sr-welcome-text { font-size: 14px; color: #718096; display: none; } 
@media(min-width: 768px) { .sr-welcome-text { display: block; } }

.sr-avatar-circle {
    width: 35px; height: 35px;
    background: var(--bv-sand); color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 600;
}

/* MAIN CONTAINER */
.sr-main-container {
    padding: 40px; max-width: 1600px; margin: 0 auto;
}

/* STATUS BAR */
.sr-status-bar {
    background: linear-gradient(135deg, var(--bv-blue) 0%, #003366 100%);
    border-radius: 16px; padding: 30px 40px; color: white;
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 50px; box-shadow: 0 10px 30px rgba(0, 78, 146, 0.2);
}
.sr-status-info h2 { margin: 0; font-size: 24px; color: white; }
.sr-status-info p { margin: 5px 0 0 0; opacity: 0.8; }
.sr-nights-counter {
    display: flex; align-items: center; gap: 15px;
    background: rgba(255,255,255,0.1); padding: 10px 20px;
    border-radius: 12px; backdrop-filter: blur(5px);
}
.sr-big-number { font-size: 32px; font-weight: 700; color: var(--bv-sand); }
.sr-label { font-size: 12px; line-height: 1.2; text-transform: uppercase; letter-spacing: 1px; }

/* GRID FULL */
.sr-section-heading { font-size: 22px; color: var(--bv-dark); margin-bottom: 30px; font-weight: 600; }
.sr-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }

.sr-card-modern {
    background: white; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--bv-border); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.sr-card-modern:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.sr-card-image-wrap { position: relative; height: 250px; overflow: hidden; }
.sr-card-image { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s; }
.sr-card-modern:hover .sr-card-image { transform: scale(1.05); }

.sr-card-badge-top {
    position: absolute; top: 15px; left: 15px;
    background: rgba(255,255,255,0.95); color: var(--bv-blue);
    padding: 5px 10px; border-radius: 4px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sr-card-overlay-hover {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.sr-card-modern:hover .sr-card-overlay-hover { opacity: 1; }
.sr-btn-view { background: white; color: var(--bv-blue); padding: 10px 20px; border-radius: 20px; font-weight: 600; font-size: 13px; }

/* TARJETA DETALLES & ICONOS */
.sr-card-details { padding: 20px; }
.sr-flex-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.sr-card-details h4 { margin: 0; font-size: 18px; color: var(--bv-blue); }
.sr-star-rating { font-size: 12px; color: var(--bv-sand); font-weight: 600; }

.sr-card-meta-icons {
    display: flex; gap: 15px; margin: 10px 0; padding-bottom: 10px; border-bottom: 1px solid var(--bv-gray);
}
.sr-card-meta-icons span {
    display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--bv-dark); font-weight: 500;
}
/* Estilo de Iconos FontAwesome */
.sr-card-meta-icons i, .sr-amenity-card i, .sr-icon-box i {
    font-size: 20px; color: var(--bv-sand); margin-right: 5px;
}
/* Iconos específicos de la barra de detalles */
.sr-icon-item i { font-size: 28px; color: var(--bv-blue); margin-right: 10px; }

.sr-amenities-row { font-size: 13px; color: #718096; }

/* EXPERIENCIAS */
.sr-experiences-full { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.sr-exp-box { background: var(--bv-gray); padding: 30px; border-radius: 16px; text-align: center; transition: background 0.3s; }
.sr-exp-box:hover { background: #eef4f9; }
.sr-icon-box {
    width: 60px; height: 60px; background: white; border-radius: 50%;
    margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
    color: var(--bv-blue); box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.sr-icon-box i { font-size: 24px; color: var(--bv-blue); margin: 0; }
.sr-exp-box h4 { margin: 0 0 10px 0; color: var(--bv-blue); }
.sr-exp-box p { margin: 0; font-size: 14px; color: #718096; }

/* SINGLE VILLA */
.sr-villa-hero { margin-top: 20px; }
.sr-villa-hero h1 { font-size: 32px; color: var(--bv-dark); margin: 0 0 10px 0; }
.sr-villa-meta-row { color: #718096; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.sr-villa-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; margin-top: 30px; }
.sr-villa-main-image { width: 100%; height: 400px; background-size: cover; background-position: center; border-radius: 16px; margin-bottom: 30px; }

.sr-villa-icons-bar {
    display: flex; justify-content: space-around; align-items: center;
    background: #f8fafc; border: 1px solid #e2e8f0; padding: 20px; border-radius: 12px; margin-bottom: 30px;
}
.sr-icon-item { display: flex; align-items: center; }
.sr-meta-label { display: block; font-size: 12px; text-transform: uppercase; color: #64748b; letter-spacing: 0.5px; }
.sr-icon-item strong { font-size: 18px; color: var(--bv-dark); }
.sr-icon-divider { width: 1px; height: 40px; background: #cbd5e1; }

.sr-amenities-grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 15px; margin-top: 20px; }
.sr-amenity-card {
    background: white; border: 1px solid #e2e8f0; border-radius: 12px;
    padding: 20px 10px; text-align: center; transition: all 0.3s;
    cursor: default; box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.sr-amenity-card:hover { transform: translateY(-5px); border-color: var(--bv-blue); box-shadow: 0 10px 20px rgba(0, 78, 146, 0.15); }
.sr-amenity-card i { font-size: 28px; color: var(--bv-sand); display: block; margin: 0 auto 10px auto; }
.sr-amenity-card span:last-child { font-size: 13px; font-weight: 500; color: var(--bv-dark); }

/* SIDEBAR & FORM */
.sr-villa-sidebar { height: 100%; }
.sr-sticky-card { position: sticky; top: 100px; background: white; border: 1px solid #e2e8f0; box-shadow: 0 10px 40px rgba(0,0,0,0.1); padding: 30px; border-radius: 16px; z-index: 90; }
.sr-card-header-price { margin-bottom: 20px; font-weight: 600; color: var(--bv-blue); }
.sr-input-group-dates { display: flex; border: 1px solid #ccc; border-radius: 8px; overflow: hidden; margin-bottom: 15px; }
.sr-date-input { flex: 1; padding: 10px; border-right: 1px solid #ccc; }
.sr-date-input:last-child { border-right: none; }
.sr-date-input label { font-size: 10px; font-weight: 700; display: block; margin-bottom: 2px; }
.sr-date-input input { border: none; width: 100%; outline: none; font-size: 14px; padding: 0; }
.full-width { width: 100%; display: block; text-align: center; margin-top: 15px; }
.sr-micro-text { font-size: 12px; text-align: center; margin-top: 10px; color: #718096; }

/* LOGIN STYLES */
.sr-login-wrapper { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #f1f5f9; padding: 20px; }
.sr-login-card { background: white; width: 100%; max-width: 420px; padding: 50px 40px; border-radius: 24px; box-shadow: 0 20px 40px rgba(0, 78, 146, 0.08); text-align: center; border: 1px solid #e2e8f0; }
.sr-login-logo { height: 70px; margin-bottom: 25px; }
.sr-login-card h2 { color: var(--bv-blue); margin: 0 0 10px 0; font-size: 26px; }
.sr-login-card p { color: #64748b; margin: 0 0 30px 0; font-size: 15px; }
.sr-input-group { text-align: left; margin-bottom: 20px; }
.sr-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--bv-dark); font-size: 14px; }
.sr-input { width: 100%; padding: 14px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 16px; background: #f8fafc; transition: all 0.3s; box-sizing: border-box; }
.sr-input:focus { border-color: var(--bv-blue); background: white; outline: none; }
.sr-password-wrapper { position: relative; }
.sr-toggle-pass { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); cursor: pointer; color: #94a3b8; font-size: 20px; }
.sr-login-meta { text-align: left; margin-bottom: 25px; font-size: 14px; color: #64748b; }
.sr-login-footer { margin-top: 30px; }
.sr-link-muted { color: #64748b; text-decoration: none; font-size: 14px; }
.sr-divider { height: 1px; background: #e2e8f0; margin: 20px 0; }
.sr-link-back { color: var(--bv-blue); text-decoration: none; font-weight: 500; font-size: 14px; }

/* Mobile */
@media (max-width: 900px) {
    .sr-villa-layout { grid-template-columns: 1fr; gap: 30px; }
    .sr-sticky-card { position: static; margin-top: 30px; }
    .sr-top-nav { padding: 15px 20px; }
}
/* === FOOTER === */
.sr-main-footer {
    background: white;
    border-top: 1px solid var(--bv-border);
    padding: 40px 40px;
    margin-top: 20px;
}

.sr-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.sr-footer-logo-text {
    font-size: 20px; font-weight: 700; color: var(--bv-blue); letter-spacing: 1px;
}
.sr-footer-tagline { color: #64748b; font-size: 13px; margin-top: 5px; text-transform: uppercase; }
.sr-copyright { color: #94a3b8; font-size: 12px; margin-top: 20px; }

.sr-footer-links h4, .sr-footer-contact h4 {
    color: var(--bv-dark); font-size: 14px; text-transform: uppercase; margin-bottom: 20px;
}

.sr-footer-links ul { list-style: none; padding: 0; margin: 0; }
.sr-footer-links li { margin-bottom: 10px; }
.sr-footer-links a { color: #64748b; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.sr-footer-links a:hover { color: var(--bv-blue); }

.sr-footer-contact p { color: #64748b; font-size: 14px; margin: 0 0 5px 0; }
.sr-social-icons { margin-top: 20px; display: flex; gap: 15px; }
.sr-social-icons a { color: var(--bv-blue); font-size: 20px; transition: transform 0.2s; }
.sr-social-icons a:hover { transform: translateY(-3px); color: var(--bv-sand); }

/* === NUEVAS TARJETAS DE CLUB (AMENIDADES) === */
.sr-amenities-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.sr-club-card {
    background: white; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--bv-border); transition: all 0.3s;
    display: flex; flex-direction: column;
}
.sr-club-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }

.sr-club-image {
    height: 180px; background-size: cover; background-position: center; position: relative;
}
.sr-club-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.sr-club-content h4 { margin: 0 0 10px 0; color: var(--bv-blue); font-size: 18px; }
.sr-club-content p { color: #64748b; font-size: 14px; line-height: 1.6; margin: 0 0 20px 0; flex: 1; }

.sr-club-features { display: flex; gap: 10px; flex-wrap: wrap; }
.sr-pill-feature {
    background: #f1f5f9; color: var(--bv-dark); font-size: 11px; padding: 5px 12px;
    border-radius: 20px; font-weight: 600; display: flex; align-items: center; gap: 5px;
}
.sr-pill-feature i { font-size: 12px; color: var(--bv-blue); }

@media (max-width: 768px) {
    .sr-footer-content { grid-template-columns: 1fr; text-align: center; }
    .sr-social-icons { justify-content: center; }
}

/* === 1. BUSCADOR AIRBNB (Redondeado y Sombreado) === */
.sr-airbnb-search-wrapper {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: inline-block;
    width: 100%;
    max-width: 850px;
    margin: 0 auto 40px auto;
    position: relative;
    padding: 0;
}

.sr-search-bar-container {
    display: flex;
    align-items: center;
    height: 66px;
    position: relative;
}

.sr-search-input-group {
    flex: 1;
    padding: 14px 24px;
    border-radius: 40px;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}
.sr-search-input-group:hover { background: #f7f7f7; }

.sr-search-input-group label {
    display: block; font-size: 12px; font-weight: 800; color: #222; margin-bottom: 2px;
}
.sr-search-input-group input {
    border: none; background: transparent; width: 100%; outline: none;
    font-size: 14px; color: #717171; padding: 0; cursor: pointer;
}

.sr-divider-vertical {
    width: 1px; height: 32px; background: #ddd;
}

.sr-dates-group { flex: 1.5; display: flex; }
.sr-date-input { flex: 1; }

.sr-search-btn-large {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--bv-blue);
    color: white; border: none;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 10px; cursor: pointer;
    transition: transform 0.2s;
}
.sr-search-btn-large:hover { transform: scale(1.05); background: #003366; }

/* === 2. DROPDOWN HUÉSPEDES (Contadores) === */
.sr-guest-dropdown {
    position: absolute; top: 75px; right: 0;
    width: 320px; background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 20px;
    border: 1px solid #ddd;
    display: none; z-index: 2000;
}
.sr-guest-dropdown.active { display: block; }

.sr-guest-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 0; border-bottom: 1px solid #ebebeb;
}
.sr-guest-row:last-child { border-bottom: none; }

.sr-guest-info strong { display: block; font-size: 16px; color: #222; margin-bottom: 3px; }
.sr-guest-info span { font-size: 13px; color: #717171; }

.sr-counter-controls { display: flex; align-items: center; gap: 12px; }
.sr-btn-circle {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid #b0b0b0; background: white;
    color: #717171; font-size: 18px; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.sr-btn-circle:disabled { opacity: 0.3; cursor: not-allowed; border-color: #ebebeb; }
.sr-btn-circle:hover:not(:disabled) { border-color: #222; color: #222; }
.sr-guest-footer { text-align: right; margin-top: 10px; }
.sr-link-close { background: none; border: none; text-decoration: underline; cursor: pointer; color: #222; font-weight: 600; }


/* === 3. NUEVAS TARJETAS INFORMATIVAS (Estilo Reference) === */
.sr-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.sr-stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: box-shadow 0.3s;
}
.sr-stat-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.sr-stat-icon {
    min-width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
}
.sr-stat-icon i {
    font-size: 28px;
    color: #d4a017; /* Icono Dorado/Bronce estilo referencia */
}

.sr-stat-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--bv-dark);
    font-weight: 700;
}
.sr-stat-content p {
    margin: 0;
    font-size: 13px;
    color: #717171;
    line-height: 1.5;
}

/* === BUSCADOR CENTRADO Y UNIFICADO === */
.sr-search-container-centered {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 30px;
}

.sr-airbnb-search-wrapper {
    background: white;
    border: 1px solid #dddddd;
    border-radius: 40px; /* Píldora gigante */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 850px;
    padding: 0; /* Sin padding interno en el wrapper */
    position: relative;
}

.sr-search-bar-flex {
    display: flex;
    align-items: center;
    height: 66px;
    width: 100%;
}

/* Items individuales (sin bordes propios) */
.sr-search-item {
    flex: 1;
    padding: 14px 24px;
    position: relative;
    cursor: pointer;
    border-radius: 32px; /* Hover redondeado */
    transition: background 0.2s;
}
.sr-search-item:hover { background: #f7f7f7; }
.sr-search-item.first { padding-left: 32px; } /* Más espacio al inicio */

/* Labels e Inputs limpios */
.sr-search-item label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #222;
    margin-bottom: 2px;
    cursor: pointer;
}

.sr-search-item input {
    border: none !important; /* CLAVE: Quitar bordes */
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 14px;
    color: #717171;
    width: 100%;
    outline: none !important;
    box-shadow: none !important;
}

/* Divisor Vertical */
.sr-search-divider {
    width: 1px;
    height: 32px;
    background-color: #dddddd;
}

/* Botón Lupa */
.sr-search-btn-wrapper {
    padding-right: 10px;
}
.sr-search-btn-circle {
    width: 48px;
    height: 48px;
    background: var(--bv-blue); /* Azul Blue Villas */
    color: white;
    border: none;
    border-radius: 50% !important;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}
.sr-search-btn-circle:hover {
    transform: scale(1.05);
    background: #003e75;
}

/* Dropdown */
.sr-guest-dropdown {
    position: absolute;
    top: 80px; right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 25px;
    width: 320px;
    border: 1px solid #eee;
    z-index: 9999;
    display: none; /* JS lo activa */
}
.sr-guest-dropdown.active { display: block; }

.sr-guest-row {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 20px; margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.sr-guest-row:last-child { border: none; margin: 0; padding: 0; }

.sr-guest-info strong { display: block; font-size: 16px; color: #222; }
.sr-guest-info span { font-size: 13px; color: #717171; }

.sr-counter-controls { display: flex; align-items: center; gap: 15px; }
.sr-btn-circle, .sr-counter-btn {
    width: 32px !important;
    height: 32px;
    border-radius: 50% !important;
    border: 1px solid #b0b0b0 !important;
    background: white;
    color: #717171 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center;
    justify-content: center;}
.sr-btn-circle:disabled { opacity: 0.2; cursor: not-allowed; }
.sr-close-link { color: #222; text-decoration: underline; font-size: 14px; cursor: pointer; font-weight: 600; }

/* FIX Datepicker encima de todo */
#ui-datepicker-div { z-index: 9999 !important; }
/* === 4. CALENDARIO MODERNO (Estilo Blue Villas) === */

/* Contenedor Principal */
#ui-datepicker-div {
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 20px !important; /* Bordes muy redondeados */
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important; /* Sombra suave y difusa */
    padding: 25px !important;
    width: 340px !important; /* Un poco más ancho para que respire */
    font-family: 'Poppins', sans-serif !important;
    z-index: 9999 !important;
}

/* Header (Mes y Año) */
.ui-datepicker-header {
    background: transparent !important;
    border: none !important;
    padding: 0 0 20px 0 !important;
    position: relative;
}

.ui-datepicker-title {
    color: var(--bv-dark) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: capitalize; /* "Febrero 2026" */
    margin: 0 !important;
}

/* Flechas de Navegación (Limpieza total) */
.ui-datepicker-prev, .ui-datepicker-next {
    background: transparent !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    top: -2px !important; /* Ajuste vertical */
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ui-datepicker-prev { left: 0 !important; }
.ui-datepicker-next { right: 0 !important; }

.ui-datepicker-prev span, .ui-datepicker-next span {
    display: none !important; /* Ocultar texto "Prev/Next" */
}

/* Iconos de flechas usando FontAwesome (Truco CSS) */
.ui-datepicker-prev:after { content: "\f053"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 12px; color: #718096; }
.ui-datepicker-next:after { content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 12px; color: #718096; }

.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
    background-color: #f7fafc !important;
    border-color: var(--bv-dark) !important;
}
.ui-datepicker-prev:hover:after, .ui-datepicker-next:hover:after { color: var(--bv-dark); }


/* Tabla de Días */
.ui-datepicker-calendar {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 5px !important; /* Espacio vertical entre filas */
    margin: 0 !important;
}

.ui-datepicker-calendar th {
    color: #a0aec0 !important; /* Gris suave para Lun, Mar, Mie */
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    padding-bottom: 10px !important;
    border: none !important;
}

.ui-datepicker-calendar td {
    padding: 0 !important;
    border: none !important;
}

/* Celdas de Días (Los números) */
.ui-datepicker-calendar td a {
    background: transparent !important;
    border: none !important;
    color: var(--bv-dark) !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    text-align: center !important;
    border-radius: 50% !important; /* CÍRCULO PERFECTO */
    font-weight: 500 !important;
    font-size: 14px !important;
    margin: 0 auto !important;
    display: block !important;
    transition: all 0.2s ease !important;
}

/* Estados: Hover */
.ui-datepicker-calendar td a:hover {
    background-color: #f7fafc !important;
    border: 1px solid var(--bv-dark) !important; /* Borde fino al pasar mouse */
    color: var(--bv-dark) !important;
}

/* Estado: Día Seleccionado (Azul Sólido) */
.ui-datepicker-calendar td.ui-datepicker-current-day a,
.ui-datepicker-calendar td.ui-datepicker-current-day a:hover {
    background-color: var(--bv-blue) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(0, 78, 146, 0.4) !important;
    border: none !important;
}

/* Estado: Hoy (Si no está seleccionado) */
.ui-datepicker-today a {
    background-color: transparent !important;
    color: var(--bv-blue) !important;
    font-weight: 700 !important;
    position: relative;
}
/* Puntito debajo del día de hoy */
.ui-datepicker-today a:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--bv-blue);
    border-radius: 50%;
}
/* Quitar puntito si está seleccionado */
.ui-datepicker-current-day.ui-datepicker-today a:after { display: none; }

/* Días deshabilitados (Pasados) */
.ui-datepicker-unselectable span {
    color: #e2e8f0 !important;
    text-align: center !important;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-weight: 300;
}
/* === BARRA FLOTANTE AZUL === */
.sr-status-floating-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    margin-top: -50px; /* Montado sobre el slider */
    z-index: 10;
    padding: 0 20px;
}

.sr-status-card {
    background: var(--bv-blue); /* AZUL CORPORATIVO */
    background: linear-gradient(135deg, var(--bv-blue) 0%, #003366 100%); /* Gradiente sutil */
    border-radius: 20px;
    padding: 25px 40px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.1);
    color: white; /* Texto Blanco */
}

/* Icono en fondo semitransparente */
.sr-status-icon-box {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.15); /* Blanco translúcido */
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--bv-sand); /* Luna dorada */
    font-size: 24px;
}

.sr-status-text { display: flex; flex-direction: column; }
.sr-label-small { 
    font-size: 11px; text-transform: uppercase; 
    color: rgba(255,255,255,0.7); /* Blanco suave */
    letter-spacing: 1px; font-weight: 600; margin-bottom: 2px; 
}
.sr-big-counter { font-size: 22px; color: white; font-weight: 800; }

.sr-status-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Enlace "Ver Historial" en blanco */
.sr-link-light {
    color: white; text-decoration: none; font-weight: 600; font-size: 14px; 
    border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px;
    transition: all 0.2s;
}
.sr-link-light:hover { border-color: white; color: var(--bv-blue-light); opacity: 0.9; }

/* Ajuste Responsive */
@media (max-width: 768px) {
    .sr-status-card { flex-direction: column; text-align: center; gap: 20px; }
    .sr-status-divider { width: 100%; height: 1px; }
}
/* === HERO SLIDER === */
.sr-hero-section {
    position: relative;
    height: 450px; /* Altura del slider */
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 0; /* Sin margen abajo, la barra flotará aquí */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.sr-hero-slider {
    width: 100%; height: 100%; position: relative;
}

.sr-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    animation: srFade 18s infinite; /* Animación de 18s */
    opacity: 0;
}

/* Lógica de Animación CSS (3 slides) */
.sr-slide:nth-child(1) { animation-delay: 0s; }
.sr-slide:nth-child(2) { animation-delay: 6s; }
.sr-slide:nth-child(3) { animation-delay: 12s; }

@keyframes srFade {
    0% { opacity: 0; transform: scale(1.05); }
    10% { opacity: 1; transform: scale(1); } /* Entra */
    33% { opacity: 1; transform: scale(1); } /* Se mantiene */
    43% { opacity: 0; } /* Sale */
    100% { opacity: 0; }
}

/* Texto sobre el Hero */
.sr-hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: white; text-align: center; z-index: 2;
}
.sr-hero-overlay h1 { font-size: 38px; margin: 0 0 10px 0; font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.sr-hero-overlay p { font-size: 18px; margin: 0; font-weight: 400; opacity: 0.9; }


/* === 
/* Responsive */
@media (max-width: 768px) {
    .sr-hero-section { height: 350px; }
    .sr-hero-overlay h1 { font-size: 26px; padding: 0 20px; }
    .sr-status-card { flex-direction: column; text-align: center; gap: 20px; padding: 25px; }
    .sr-status-divider { width: 100%; height: 1px; }
    .sr-status-floating-container { margin-top: -40px; }
}

/* === BOTONES DEL FORMULARIO SINGLE === */

/* Clase de fuerza bruta para ancho total */
.full-width {
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

/* Botón Primario (Ya existía, reforzado) */
.sr-btn-primary {
    background: var(--bv-blue); 
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 10px; /* Separación abajo */
}
.sr-btn-primary:hover { background: #003366; color:#ffffff; }

/* Botón Secundario (Nuevo: Contactar) */
.sr-btn-secondary {
    background: white; 
    border: 1px solid var(--bv-dark); /* Borde elegante */
    color: var(--bv-dark);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 15px;
}
.sr-btn-secondary:hover {
    background: #f7f7f7;
    border-color: black;
}

/* === ESTILOS PÁGINA MIS VIAJES === */

.sr-page-title {
    font-size: 28px;
    color: var(--bv-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.sr-trips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sr-trip-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    transition: box-shadow 0.3s;
}
.sr-trip-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Imagen Izquierda */
.sr-trip-img {
    width: 200px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

/* Contenido */
.sr-trip-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sr-trip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.sr-trip-title {
    margin: 0;
    font-size: 20px;
    color: var(--bv-blue);
}

/* Badges */
.sr-trip-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}
.sr-badge-success { background: #d1fae5; color: #065f46; } /* Verde suave */
.sr-badge-warning { background: #fef3c7; color: #92400e; } /* Naranja suave */

/* Fechas */
.sr-trip-dates {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    width: fit-content;
}
.sr-date-block { display: flex; flex-direction: column; }
.sr-label { font-size: 11px; text-transform: uppercase; color: #64748b; font-weight: 600; }
.sr-date-block strong { font-size: 16px; color: #1e293b; }
.sr-sub { font-size: 12px; color: #94a3b8; }
.sr-arrow { color: #cbd5e1; font-size: 18px; }

/* Meta Info */
.sr-trip-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #64748b;
}
.sr-trip-meta i { color: var(--bv-sand); margin-right: 5px; }

/* Acciones Derecha */
.sr-trip-actions {
    border-left: 1px solid #e2e8f0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background: #fcfcfc;
}
.sr-btn-outline {
    background: white; border: 1px solid #cbd5e1; color: #475569;
    padding: 8px 15px; border-radius: 6px; font-weight: 600; cursor: pointer;
    transition: all 0.2s;
}
.sr-btn-outline:hover { border-color: var(--bv-blue); color: #ffffff; }

.sr-btn-text-danger {
    background: none; border: none; color: #ef4444; font-size: 13px; 
    font-weight: 600; cursor: pointer; text-decoration: underline;
}

/* Empty State */
.sr-empty-state {
    text-align: center; padding: 60px; background: white; border-radius: 16px; border: 1px dashed #cbd5e1;
}
.sr-empty-state i { font-size: 40px; color: #cbd5e1; margin-bottom: 20px; display: block; }
.sr-empty-state p { color: #64748b; margin-bottom: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .sr-trip-card { flex-direction: column; }
    .sr-trip-img { width: 100%; height: 150px; }
    .sr-trip-actions { border-left: none; border-top: 1px solid #e2e8f0; flex-direction: row; }
    .sr-trip-dates { width: 100%; justify-content: space-between; box-sizing: border-box; }
}
/* ============================================================
   VISTA: MIS VIAJES (DISEÑO AIRBNB STYLE)
   ============================================================ */

.sr-trips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.sr-trip-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
}

.sr-trip-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

/* Imagen de la Villa */
.sr-trip-img {
    width: 220px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

/* Contenido Central */
.sr-trip-content {
    padding: 24px;
    flex-grow: 1;
}

.sr-trip-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.sr-trip-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

/* Badges de Estado */
.sr-trip-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sr-badge-success { background: #dcfce7; color: #166534; } /* Confirmada */
.sr-badge-warning { background: #fef3c7; color: #92400e; } /* Pendiente */
.sr-badge-danger { background: #fee2e2; color: #991b1b; }  /* Cancelada */

/* Bloque de Fechas */
.sr-trip-dates {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;
}

.sr-date-block {
    display: flex;
    flex-direction: column;
}

.sr-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 1px;
}

.sr-date-block strong {
    font-size: 15px;
    color: #334155;
}

.sr-sub {
    font-size: 11px;
    color: #94a3b8;
}

.sr-arrow {
    color: #cbd5e1;
    font-size: 14px;
}

/* Meta Info (Viajeros, ID) */
.sr-trip-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
}

.sr-trip-meta i {
    color: #004e92;
    margin-right: 4px;
}

/* Acciones a la derecha */
.sr-trip-actions {
    padding: 24px;
    border-left: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background: #fafafa;
    min-width: 160px;
}

.sr-btn-text-danger {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 5px;
}

.sr-btn-text-danger:hover {
    color: #ffffff;
}

/* ============================================================
   ESTILOS: MODAL DE DETALLES
   ============================================================ */

.sr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: none; /* Se activa por JS */
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.sr-modal-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: srFadeUp 0.3s ease-out;
}

@keyframes srFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.sr-close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
}

.sr-close-modal:hover {
    color: #1e293b;
}

/* Estilos de tabla en Admin (Refuerzo) */
.column-villa { font-weight: 600; color: #004e92; }
.column-status strong { padding: 4px 8px; border-radius: 4px; background: #eee; font-size: 10px; }

/* === NUEVOS ESTILOS PARA SECCIONES DE CLUB === */

/* Ajuste de Grid para más elementos */
.sr-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* Un poco más compactas */
    gap: 20px;
    margin-bottom: 50px;
}

/* 1. TARJETAS DE SERVICIOS (Futuro Agendamiento) */
.sr-service-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%; /* Igualar alturas */
}
.sr-service-card:hover {
    border-color: var(--bv-blue-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sr-service-icon {
    width: 50px; height: 50px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--bv-blue);
    font-size: 22px;
    transition: all 0.3s;
}
.sr-service-card:hover .sr-service-icon {
    background: var(--bv-blue);
    color: var(--bv-sand);
}

.sr-service-content h4 { margin: 0 0 5px 0; font-size: 16px; color: var(--bv-dark); font-weight: 700; }
.sr-service-content p { margin: 0; font-size: 13px; color: #64748b; line-height: 1.4; }


/* 2. TARJETAS DE NAVEGACIÓN (Noticias, Eventos, etc.) */
/* Toda la tarjeta es un enlace <a> */
.sr-card-link {
    text-decoration: none;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efecto rebote suave */
    position: relative;
    overflow: hidden;
}

/* Animación al pasar el mouse */
.sr-card-link:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 78, 146, 0.1);
    border-color: var(--bv-sand);
}

/* Barra lateral decorativa en hover */
.sr-card-link::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--bv-blue); opacity: 0; transition: opacity 0.3s;
}
.sr-card-link:hover::before { opacity: 1; }

.sr-info-icon {
    font-size: 24px; color: var(--bv-sand); /* Dorado */
    min-width: 40px; text-align: center;
}
.sr-card-link:hover .sr-info-icon { color: var(--bv-blue); }

.sr-info-text h4 { margin: 0; font-size: 15px; color: var(--bv-dark); font-weight: 600; }
.sr-info-text span { font-size: 12px; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }

/* Título de Sección con línea */
.sr-section-heading-line {
    display: flex; align-items: center; gap: 15px; margin: 60px 0 30px 0;
}
.sr-section-heading-line h3 { margin: 0; font-size: 22px; color: var(--bv-blue); font-weight: 700; white-space: nowrap; }
.sr-line { height: 1px; background: #e2e8f0; width: 100%; }

/* === ESTILOS PÁGINA DE PERFIL === */

.sr-profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* Sidebar */
.sr-profile-sidebar {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    height: fit-content;
}

.sr-profile-card-mini {
    padding: 30px 20px;
    text-align: center;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.sr-profile-avatar-large {
    width: 100px; height: 100px;
    border-radius: 50%;
    background-color: #ddd;
    background-size: cover; background-position: center;
    margin: 0 auto 15px auto;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sr-profile-card-mini h3 { margin: 0; font-size: 18px; color: var(--bv-blue); }
.sr-profile-card-mini p { margin: 5px 0 0 0; font-size: 13px; color: #64748b; }

.sr-profile-menu { display: flex; flex-direction: column; }
.sr-profile-tab {
    background: none; border: none;
    padding: 15px 25px;
    text-align: left;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    display: flex; align-items: center; gap: 10px;
}
.sr-profile-tab:hover { background: #f1f5f9; color: var(--bv-blue); }
.sr-profile-tab.active { background: white; border-left-color: var(--bv-blue); color: var(--bv-blue); font-weight: 600; }
.sr-profile-tab.logout { border-top: 1px solid #e2e8f0; color: #ef4444; margin-top: 10px; }
.sr-profile-tab.logout:hover { background: #fef2f2; }

/* Contenido */
.sr-profile-content {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
}

.sr-tab-content { display: none; animation: srFadeIn 0.3s; }
.sr-tab-content.active { display: block; }
.sr-tab-title { margin-top: 0; color: var(--bv-dark); border-bottom: 1px solid #e2e8f0; padding-bottom: 20px; margin-bottom: 30px; }

/* Formulario Grid */
.sr-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.sr-form-group { margin-bottom: 15px; }
.sr-form-group.full { grid-column: span 2; }
.sr-form-group label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 600; color: #64748b; }
.sr-form-group input, .sr-form-group textarea, .sr-form-group select {
    width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 14px;
    box-sizing: border-box;
}

/* Upload Avatar */
.sr-file-upload-wrapper { display: flex; align-items: center; gap: 20px; }
.sr-avatar-preview { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 1px solid #ddd; }
.sr-file-hint { font-size: 12px; color: #94a3b8; }

/* Agenda List */
.sr-agenda-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px; border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 15px;
}
.sr-agenda-date { font-weight: 700; color: var(--bv-blue); display: flex; align-items: center; gap: 10px; }
.sr-agenda-info { display: flex; flex-direction: column; }
.sr-agenda-info span { font-size: 12px; color: #94a3b8; }

/* Responsive */
@media (max-width: 768px) {
    .sr-profile-layout { grid-template-columns: 1fr; }
    .sr-form-grid { grid-template-columns: 1fr; }
    .sr-profile-menu { flex-direction: row; overflow-x: auto; }
    .sr-profile-tab { flex: 1; white-space: nowrap; border-left: none; border-bottom: 3px solid transparent; }
    .sr-profile-tab.active { border-left: none; border-bottom-color: var(--bv-blue); }
}
/* Tarjetas de Solicitudes */
.sr-request-card {
    background: white; border: 1px solid #e2e8f0; border-radius: 12px;
    padding: 20px; margin-bottom: 15px; position: relative;
}
.sr-req-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.sr-req-date { font-size: 12px; color: #94a3b8; }

/* Botones Feedback */
.sr-btn-icon-feedback {
    border: 1px solid #ddd; background: white; padding: 6px 12px; border-radius: 20px;
    cursor: pointer; font-size: 12px; transition: all 0.2s; margin-right: 10px;
}
.sr-btn-icon-feedback:hover { background: #f8fafc; }
.sr-btn-icon-feedback.good { color: green; border-color: #bbf7d0; }
.sr-btn-icon-feedback.good:hover { background: #dcfce7; }
.sr-btn-icon-feedback.bad { color: red; border-color: #fecaca; }
.sr-btn-icon-feedback.bad:hover { background: #fee2e2; }

/* Badges Estado */
.sr-badge-info { background: #e0f2fe; color: #0369a1; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; }

/* === NUEVA BARRA DE ESTADO (MAQUETACIÓN FINAL) === */

.sr-status-floating-container {
    max-width: 1000px; /* Un poco más ancha para que quepa todo */
    margin: 0 auto;
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding: 0 20px;
}

.sr-status-card {
    background: linear-gradient(135deg, var(--bv-blue) 0%, #003366 100%);
    border-radius: 16px;
    padding: 25px 40px;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px; /* Espacio entre columnas */
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
}

/* Columna de Datos */
.sr-status-block {
    display: flex;
    flex-direction: column;
}

.sr-label-top {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* Fila: Número + Texto */
.sr-number-row {
    display: flex;
    align-items: center; /* Alinear base del texto */
    gap: 10px;
}

.sr-big-counter {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.sr-text-inline {
    font-size: 10px;
    line-height: 1.2;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    text-align: left;
}

/* Badge del Plan */
.sr-plan-badge {
    display: inline-block;
    background: rgba(212, 196, 168, 0.2); /* Dorado transparente */
    color: var(--bv-sand);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 5px;
    width: fit-content;
    border: 1px solid rgba(212, 196, 168, 0.3);
}

/* Divisor Vertical */
.sr-status-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
}

/* Responsive Móvil */
@media (max-width: 768px) {
    .sr-status-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        gap: 25px;
    }
    .sr-status-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
    }
    .sr-status-icon-box { display: none; } /* Ocultar icono en móvil para ahorrar espacio */
    .sr-status-action { width: 100%; text-align: right; }
}