/* ==========================================================================
   COMYVO - Reservas de Salón Social
   Ubicación: wwwroot/css/reservas-salon.css
   
   CORREGIDO 2026-02-05: 
   - CTA y FAQ con colores turquesa/teal (igual que Piscina y Pádel)
   - Eliminado el morado de toda la página inferior
   ========================================================================== */

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb-nav {
    background: #ffffff !important;
    border-bottom: 2px solid #e5e7eb;
    padding: 1.25rem 0;
    padding-top: calc(1.8rem + 90px);
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: #374151 !important;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151 !important;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: #9ca3af !important;
    margin-left: 0.25rem;
}

.breadcrumb-list a {
    color: #4F95A3 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
    color: #3a7a86 !important;
    text-decoration: underline;
}

.breadcrumb-list a i {
    font-size: 0.75rem;
    margin-right: 0.25rem;
}

.breadcrumb-list li[aria-current="page"] span {
    color: #111827 !important;
    font-weight: 700;
}

/* ==========================================================================
   HERO SECTION - Colores turquesa (igual que Piscina)
   ========================================================================== */
.salon-hero {
    background: var(--bg-gradient);
    padding: 4rem 0 3rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.salon-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.salon-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.salon-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.salon-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.salon-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 520px;
    color: #ffffff;
}

.salon-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

/* Stats - estilo glass */
.salon-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.salon-hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 0.625rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.salon-hero-stats .stat-item i {
    font-size: 1.25rem;
    opacity: 0.85;
    color: #ffffff;
}

.salon-hero-stats .stat-item strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.salon-hero-stats .stat-item span {
    font-size: 0.75rem;
    opacity: 0.8;
    color: #ffffff;
}

/* Hero Visual */
.salon-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.salon-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.salon-hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg, 16px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: floatCard 3s ease-in-out infinite alternate;
    color: #111827;
    z-index: 2;
}

.floating-card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card .card-content strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    color: #6b7280;
}

.floating-card .card-content span {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
}

.card-capacidad {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.card-capacidad .card-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
}

.capacidad-display {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.capacidad-display i {
    color: #3b82f6;
    font-size: 0.7rem;
}

.card-reserva-ok {
    bottom: 15%;
    left: -10%;
    animation-delay: 1.5s;
}

.card-reserva-ok .card-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #ffffff;
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* ==========================================================================
   INTRODUCCIÓN + CIFRAS
   ========================================================================== */
.salon-intro {
    padding: 80px 0;
    background: #ffffff;
}

.salon-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.salon-intro-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.salon-intro-text p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
}

.salon-intro-cifras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Cifras con colores TURQUESA (no morado) */
.cifra-card {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    border: 1px solid #99f6e4;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cifra-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(79, 149, 163, 0.12);
}

.cifra-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #4F95A3;
    margin-bottom: 0.25rem;
}

.cifra-text {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

/* ==========================================================================
   SECTION HEADER (reutilizable)
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ==========================================================================
   FEATURES SECTION - Fondo turquesa
   ========================================================================== */
.salon-features {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.salon-features .section-title,
.salon-features .section-subtitle {
    color: #ffffff;
}

.salon-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.salon-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f3f4f6;
}

.salon-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.salon-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
}

.icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.icon-green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.icon-orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.icon-red { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.icon-teal { background: rgba(79, 149, 163, 0.1); color: #4F95A3; }
.icon-amber { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.icon-rose { background: rgba(244, 63, 94, 0.1); color: #f43f5e; }

.salon-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.salon-feature-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ==========================================================================
   DEMO CALENDARIO
   ========================================================================== */
.salon-calendario {
    padding: 80px 0;
    background: #ffffff;
}

.calendario-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.calendario-panel {
    padding: 2rem;
}

.calendario-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cal-month {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.cal-nav {
    background: none;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: all 0.2s ease;
}

.cal-nav:hover {
    background: #4F95A3;
    border-color: #4F95A3;
    color: #ffffff;
}

.calendario-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 0.75rem;
}

.calendario-weekdays span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
}

.calendario-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cal-day:hover:not(.cal-day-empty):not(.cal-day-past) {
    background: rgba(79, 149, 163, 0.08);
}

.cal-day-empty {
    cursor: default;
}

.cal-day-past {
    color: #d1d5db;
    cursor: default;
}

.cal-day-today {
    font-weight: 700;
    color: #4F95A3;
    background: rgba(79, 149, 163, 0.06);
}

.cal-day-selected {
    background: #4F95A3 !important;
    color: #ffffff !important;
    font-weight: 700;
}

.cal-day-selected .cal-indicator {
    background: rgba(255, 255, 255, 0.8) !important;
}

.cal-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 3px;
}

.cal-indicator.available { background: #10b981; }
.cal-indicator.limited { background: #f59e0b; }
.cal-indicator.full { background: #ef4444; }

.calendario-legend {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.calendario-legend span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.text-available { color: #10b981 !important; font-size: 0.5rem; }
.text-limited { color: #f59e0b !important; font-size: 0.5rem; }
.text-full { color: #ef4444 !important; font-size: 0.5rem; }

/* Panel derecho: Franjas - COLORES TURQUESA */
.turnos-panel {
    background: #f0fdfa;
    padding: 2rem;
    border-left: 1px solid #99f6e4;
}

.turnos-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.turnos-header h3 i {
    color: #4F95A3;
}

.turnos-list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.turnos-placeholder {
    text-align: center;
    padding: 3rem 1rem;
    color: #9ca3af;
}

.turnos-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.turnos-placeholder p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Franja/turno item */
.turno-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease;
}

.turno-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.turno-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.turno-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111827;
}

.turno-item-time {
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.turno-item-time i {
    color: #4F95A3;
}

.turno-item-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.turno-detail {
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.turno-detail i {
    color: #4F95A3;
    font-size: 0.75rem;
}

.turno-detail strong {
    color: #111827;
    font-weight: 600;
}

.turno-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.turno-status {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.turno-status i {
    font-size: 0.5rem;
}

.status-available { color: #10b981; }
.status-limited { color: #f59e0b; }
.status-full { color: #ef4444; }

.turno-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reservar {
    background: #4F95A3;
    color: #ffffff;
}

.btn-reservar:hover {
    background: #3a7a86;
    transform: translateY(-1px);
}

.btn-disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* ==========================================================================
   PAGOS SECTION - Fondo turquesa
   ========================================================================== */
.salon-pagos {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.salon-pagos .section-title,
.salon-pagos .section-subtitle {
    color: #ffffff;
}

.pagos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pago-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pago-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pago-card-featured {
    border: 2px solid #4F95A3;
    box-shadow: 0 4px 20px rgba(79, 149, 163, 0.12);
}

.pago-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4F95A3;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pago-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.pago-bizum { background: linear-gradient(135deg, #e0f2fe, #bae6fd); color: #0284c7; }
.pago-transferencia { background: linear-gradient(135deg, #f0fdf4, #bbf7d0); color: #16a34a; }
.pago-tarjeta { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); color: #4F95A3; }

.pago-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.pago-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.pago-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563;
    background: #f9fafb;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
}

/* ==========================================================================
   GALERÍA MULTIMEDIA
   ========================================================================== */
.salon-galeria {
    padding: 80px 0;
    background: #ffffff;
}

.galeria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.galeria-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.galeria-item-lg {
    grid-row: span 2;
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    color: #ffffff;
    font-size: 1.5rem;
}

.galeria-video {
    background: linear-gradient(135deg, #134e4a, #0f766e);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.galeria-video-placeholder {
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    padding: 2rem;
}

.galeria-video-placeholder i {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.galeria-video:hover .galeria-video-placeholder i {
    transform: scale(1.15);
}

.galeria-video-placeholder span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================================================
   NORMAS SECTION - Fondo turquesa
   ========================================================================== */
.salon-normas {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.salon-normas .section-title,
.salon-normas .section-subtitle {
    color: #ffffff;
}

.normas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.norma-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.norma-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.norma-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(79, 149, 163, 0.1), rgba(58, 122, 134, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #4F95A3;
    margin: 0 auto 1rem;
}

.norma-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.norma-card p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ==========================================================================
   CTA SECTION - TURQUESA (igual que Piscina y Pádel)
   ========================================================================== */
.salon-cta {
    padding: 5rem 0;
    background: var(--bg-gradient);
    text-align: center;
    color: #ffffff;
}

.salon-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.salon-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.salon-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.salon-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botones para CTA turquesa */
.btn-white {
    background: #ffffff !important;
    color: #4F95A3 !important;
    border: none;
}

.btn-white:hover {
    background: #f0fdfa !important;
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   FAQ SECTION - Colores neutros (igual que Piscina y Pádel)
   ========================================================================== */
.salon-faq {
    padding: 5rem 0;
    background: var(--white, #ffffff);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.faq-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-content p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* FAQ Items - Colores NEUTROS (gris claro, no morado) */
.faq-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #d1d5db;
}

.faq-item.active {
    border-color: #4F95A3;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    gap: 1rem;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(79, 149, 163, 0.04);
}

.faq-question h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
    line-height: 1.4;
}

.faq-question h3 i {
    color: #4F95A3;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(79, 149, 163, 0.1);
    transition: all 0.3s ease;
}

.faq-toggle i {
    font-size: 0.7rem;
    color: #4F95A3;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #4F95A3;
}

.faq-item.active .faq-toggle i {
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .salon-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .salon-hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .salon-hero-buttons {
        justify-content: center;
    }

    .salon-hero-stats {
        justify-content: center;
    }

    .salon-hero-visual {
        order: -1;
    }

    .salon-hero-image-container {
        max-width: 420px;
    }

    .salon-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .salon-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendario-demo {
        grid-template-columns: 1fr;
    }

    .turnos-panel {
        border-left: none;
        border-top: 1px solid #99f6e4;
    }

    .pagos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .galeria-item-lg {
        grid-row: span 1;
    }

    .normas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-content {
        text-align: center;
    }
}

/* ==========================================================================
   RESPONSIVE - MÓVIL (max-width: 640px)
   ========================================================================== */
@media (max-width: 640px) {
    .breadcrumb-nav {
        padding-top: calc(1.5rem + 70px);
    }

    .salon-hero {
        padding: 50px 0 40px;
    }

    .salon-hero-title {
        font-size: 1.75rem;
    }

    .salon-hero-subtitle {
        font-size: 1rem;
    }

    .salon-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .salon-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-card {
        display: none;
    }

    .salon-intro-text h2 {
        font-size: 1.5rem;
    }

    .salon-intro-cifras {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .cifra-num {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .salon-features-grid {
        grid-template-columns: 1fr;
    }

    .calendario-panel {
        padding: 1.25rem;
    }

    .turnos-panel {
        padding: 1.25rem;
    }

    .normas-grid {
        grid-template-columns: 1fr;
    }

    .salon-cta-content h2 {
        font-size: 1.5rem;
    }

    .salon-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-question h3 {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   SWEETALERT2 CUSTOM STYLES
   ========================================================================== */
.swal-salon-popup {
    border-radius: 16px !important;
    font-family: inherit !important;
}

.swal-salon-popup .swal2-title {
    color: #111827 !important;
    font-weight: 700 !important;
}

.swal-salon-popup .swal2-html-container {
    color: #4b5563 !important;
    line-height: 1.6 !important;
}
