/* =========================================
    VARIABLES Y ESTILOS BASE (ALBA 2000)
   ========================================= */
:root {
    --blue-deep: #0f172a;       
    --blue-primary: #1e40af;    
    --blue-bright: #3b82f6;     
    --amber-accent: #f59e0b;    
    --bg-light: #f8fafc;        
    --bg-white: #ffffff;        
    --text-main: #334155;       
    --text-muted: #64748b;      
    --soft-shadow: 0 10px 30px rgba(15, 23, 42, 0.05); 
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Nunito Sans', sans-serif; }
body { background-color: var(--bg-light); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; }
.container { max-width: 1250px; margin: 0 auto; padding: 0 20px; }
.text-blue { color: var(--blue-bright); }

.section-light { padding: 100px 0; background-color: var(--bg-light); }
.section-white { padding: 100px 0; background-color: var(--bg-white); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 42px; font-weight: 800; color: var(--blue-deep); margin-bottom: 15px; letter-spacing: -1px; }
.section-title p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Botones */
.btn-solid-blue { background-color: var(--blue-bright); color: #fff; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: 0.3s; box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3); display: inline-block; text-align: center; }
.btn-solid-blue:hover { background-color: var(--blue-primary); transform: translateY(-2px); }
.btn-outline-blue { background-color: transparent; color: var(--blue-primary); border: 2px solid var(--blue-primary); padding: 11px 24px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: 0.3s; display: inline-block; text-align: center; }
.btn-outline-blue:hover { background-color: var(--blue-primary); color: #fff; }
.btn-large { padding: 16px 32px; font-size: 16px; }

/* =========================================
    HERO SECTION
   ========================================= */
.hero-alba { padding: 80px 0; background-color: var(--bg-white); overflow: hidden; }
.hero-grid { display: flex; align-items: center; gap: 60px; }
.hero-text { flex: 1.1; }

.trust-badge { display: inline-flex; align-items: center; gap: 15px; background: var(--bg-light); border: 1px solid #e2e8f0; padding: 6px 20px 6px 6px; border-radius: 50px; margin-bottom: 30px; }
.avatars { display: flex; }
.avatars img { width: 35px; height: 35px; border-radius: 50%; border: 2px solid #fff; margin-right: -10px; }
.trust-badge span { font-size: 14px; color: var(--text-main); font-weight: 600;}

.hero-text h1 { font-size: 58px; font-weight: 900; color: var(--blue-deep); line-height: 1.1; margin-bottom: 25px; letter-spacing: -2px;}
.hero-text p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 20px; }

.hero-image { flex: 0.9; position: relative; }
.image-composition { position: relative; width: 100%; height: 500px; }
.main-photo { width: 100%; height: 100%; background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=800&auto=format&fit=crop'); background-size: cover; background-position: center; border-radius: 24px; box-shadow: var(--soft-shadow); }
.floating-card-ui { position: absolute; bottom: -30px; left: -30px; background: #fff; padding: 20px 30px; border-radius: 16px; box-shadow: var(--soft-shadow); display: flex; align-items: center; gap: 15px; animation: float 6s ease-in-out infinite; }
.floating-card-ui i { font-size: 30px; background: var(--bg-light); padding: 15px; border-radius: 12px; }
.floating-card-ui strong { display: block; color: var(--blue-deep); font-size: 18px; }
.floating-card-ui span { color: var(--text-muted); font-size: 14px; }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }

/* =========================================
    POR QUÉ ELEGIRNOS
   ========================================= */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-box { text-align: center; padding: 40px 20px; }
.feat-icon { width: 80px; height: 80px; background: var(--bg-light); color: var(--blue-bright); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 25px; box-shadow: var(--soft-shadow); }
.feature-box h3 { font-size: 22px; color: var(--blue-deep); font-weight: 800; margin-bottom: 15px; }
.feature-box p { color: var(--text-muted); }

/* =========================================
    PERMISOS (SOFT UI CARDS)
   ========================================= */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.soft-card { background: #fff; padding: 40px; border-radius: 24px; box-shadow: var(--soft-shadow); transition: 0.3s; border: 1px solid transparent; }
.soft-card:hover { transform: translateY(-8px); border-color: #e2e8f0; }
.card-icon { width: 65px; height: 65px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; margin-bottom: 25px; }
.blue-gradient { background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright)); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); }
.amber-gradient { background: linear-gradient(135deg, #d97706, var(--amber-accent)); box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3); }
.dark-gradient { background: linear-gradient(135deg, var(--blue-deep), #334155); box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3); }
.soft-card h3 { font-size: 22px; color: var(--blue-deep); margin-bottom: 15px; font-weight: 800; }
.soft-card p { color: var(--text-muted); margin-bottom: 25px; font-size: 15px; }

/* =========================================
    PRÓXIMOS CURSOS (Extraídos de tus imágenes)
   ========================================= */
.courses-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.course-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; box-shadow: var(--soft-shadow); transition: 0.3s; display: flex; flex-direction: column; }
.course-card:hover { transform: translateY(-5px); border-color: var(--blue-bright); }
.course-date { background: #475569; color: #fff; text-align: center; padding: 20px 10px; border-bottom: 4px solid var(--amber-accent); }
.course-date.date-alt { background: #334155; border-bottom-color: var(--blue-bright); }
.course-date strong { display: block; font-size: 36px; font-weight: 900; line-height: 1; }
.course-date span { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.course-content { padding: 25px 20px; display: flex; flex-direction: column; flex-grow: 1; }
.course-content h4 { font-size: 16px; color: var(--blue-deep); font-weight: 800; margin-bottom: 10px; line-height: 1.4; }
.course-content p { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; flex-grow: 1; }
.course-type { font-size: 12px; color: #94a3b8; border-top: 1px solid #f1f5f9; padding-top: 15px; }

/* =========================================
    RESEÑAS (SOFT CARDS)
   ========================================= */
.reviews-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-ui-card { background: #fff; border-radius: 20px; padding: 40px; box-shadow: var(--soft-shadow); border: 1px solid transparent; transition: 0.3s;}
.review-ui-card:hover { border-color: #e2e8f0; }
.highlight-rev { transform: scale(1.03); border-color: #bae6fd; background: #eff6ff; }
.stars { color: var(--amber-accent); font-size: 14px; margin-bottom: 20px; letter-spacing: 2px; }
.review-ui-card p { font-style: italic; color: var(--text-main); margin-bottom: 25px; line-height: 1.7; font-size: 15px;}
.rev-author { border-top: 1px solid #e2e8f0; padding-top: 20px; }
.rev-author strong { display: block; color: var(--blue-deep); font-size: 15px; }
.rev-author span { color: var(--text-muted); font-size: 13px; }

/* =========================================
    CENTROS (MAPAS Y HORARIOS)
   ========================================= */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.location-smart-box { background: var(--bg-light); border-radius: 24px; overflow: hidden; border: 1px solid #e2e8f0; display: flex; flex-direction: column; }
.loc-map { height: 300px; width: 100%; background: #e2e8f0; border-bottom: 1px solid #cbd5e1; }
.loc-info { padding: 40px; flex-grow: 1; position: relative; }
.loc-badge { position: absolute; top: -15px; left: 40px; background: var(--blue-bright); color: #fff; padding: 6px 16px; border-radius: 30px; font-size: 12px; font-weight: 700; box-shadow: 0 5px 15px rgba(59,130,246,0.3); }
.loc-info h3 { font-size: 24px; color: var(--blue-deep); margin-bottom: 20px; font-weight: 800; }
.loc-details { list-style: none; margin-bottom: 25px; }
.loc-details li { display: flex; gap: 15px; margin-bottom: 10px; color: var(--text-muted); font-size: 14px; align-items: center;}
.loc-details i { color: var(--blue-primary); font-size: 16px; width: 20px; text-align: center; }

/* Horario Dinámico Claro */
.schedule-block { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; overflow: hidden; }
.schedule-status { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-bottom: 1px solid #f1f5f9; background: #f8fafc; font-size: 14px; font-weight: 700;}
.status-indicator { width: 10px; height: 10px; border-radius: 50%; }
.schedule-block.open .status-indicator { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.4); }
.schedule-block.open .status-text { color: #15803d; }
.schedule-block.closed .status-indicator { background: #ef4444; }
.schedule-block.closed .status-text { color: #b91c1c; }
.schedule-times { padding: 15px 20px; font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* =========================================
    FOOTER
   ========================================= */
.alba-footer { background-color: var(--blue-deep); color: #fff; padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand h2 { font-size: 32px; font-weight: 900; margin-bottom: 15px; }
.footer-brand h2 span { font-weight: 400; color: var(--blue-bright); }
.footer-brand p { color: #94a3b8; max-width: 400px; margin-bottom: 25px; }
.footer-contact h4 { font-size: 18px; margin-bottom: 20px; font-weight: 700; }
.footer-phones { display: flex; flex-direction: column; gap: 15px; }
.footer-phone { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.05); padding: 15px 20px; border-radius: 12px; color: #fff; font-size: 18px; font-weight: 700; transition: 0.3s;}
.footer-phone:hover { background: rgba(255,255,255,0.1); }
.footer-phone.wa i { color: #22c55e; }
.footer-bottom { padding: 25px 0; font-size: 14px; color: #64748b; }
.fb-flex { display: flex; justify-content: space-between; align-items: center; }
.legal-links a { color: #64748b; margin-left: 20px; transition: 0.2s; }
.legal-links a:hover { color: #fff; }

/* =========================================
   WIDGET WHATSAPP INTERACTIVO CON ANIMACIÓN
   ========================================= */
.wa-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

/* --- Botón Flotante Animado --- */
.wa-floating-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Efecto anillo de pulso infinito */
.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    animation: waPulse 2s infinite;
    z-index: -1;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.wa-floating-btn:hover {
    transform: scale(1.08);
    background-color: #20b858;
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background-color: #0f172a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.wa-tooltip::after {
    content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%);
    border-left: 5px solid #0f172a; border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}

.wa-floating-btn:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* --- Ventana de Chat Soft UI --- */
.wa-chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 330px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); /* Entrada amortiguada premium */
}

.wa-chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-chat-header {
    background-color: #1e3a8a; /* Royal Blue */
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-header-info { display: flex; align-items: center; gap: 12px; }
.wa-avatar img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); }
.wa-header-info h4 { color: #fff; font-size: 14px; margin-bottom: 1px; font-weight: 700; }
.wa-header-info span { color: #86efac; font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.wa-header-info span::before { content: ''; width: 6px; height: 6px; background: #22c55e; border-radius: 50%; display: inline-block; }

.wa-close { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 18px; cursor: pointer; transition: 0.2s; }
.wa-close:hover { color: #fff; }

.wa-chat-body { padding: 25px 20px; min-height: 160px; background-color: #f8fafc; }

/* Burbuja Escribiendo */
.wa-typing {
    display: flex; gap: 5px; background-color: #fff; padding: 12px 18px; border-radius: 16px;
    border-bottom-left-radius: 4px; width: fit-content; border: 1px solid #e2e8f0;
}
.wa-typing .dot { width: 8px; height: 8px; background-color: #94a3b8; border-radius: 50%; animation: waBounce 1.4s infinite ease-in-out both; }
.wa-typing .dot:nth-child(1) { animation-delay: -0.32s; }
.wa-typing .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes waBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Burbuja de Mensaje Revelado */
.wa-message {
    background-color: #fff; padding: 18px; border-radius: 16px;
    border-bottom-left-radius: 4px; border: 1px solid #e2e8f0;
    animation: waFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.wa-message p { color: #334155; font-size: 14px; margin-bottom: 12px; line-height: 1.5; }
.wa-message p:first-child { color: #0f172a; font-weight: 700; font-size: 15px; }

.btn-wa-redirect {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background-color: #25D366; color: #fff; padding: 12px; border-radius: 8px;
    text-decoration: none; font-weight: 700; font-size: 14px; transition: 0.2s; border: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.btn-wa-redirect:hover { background-color: #16a34a; transform: translateY(-1px); }

@keyframes waFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }



/* =========================================
   PÁGINA DE PERMISOS (PANEL INTERACTIVO MEJORADO)
   ========================================= */
.permisos-layout {
    display: flex;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    min-height: 700px;
}

/* MENÚ LATERAL */
.permisos-sidebar {
    width: 280px;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 30px 20px;
}

.sidebar-heading {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 25px 0 10px 10px;
}
.sidebar-heading:first-child { margin-top: 0; }

.tab-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 5px;
}

.tab-btn:hover { background: #e2e8f0; color: var(--blue-primary); }
.tab-btn.active { background: var(--blue-bright); color: #fff; box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3); }

/* CONTENIDO DINÁMICO */
.permisos-content {
    flex: 1;
    padding: 50px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Cabecera del Permiso */
.permiso-header { display: flex; align-items: center; gap: 25px; margin-bottom: 30px; }
.perm-icon { width: 75px; height: 75px; background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright)); color: #fff; font-size: 30px; display: flex; justify-content: center; align-items: center; border-radius: 16px; box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2); }
.perm-icon.amber-gradient { background: linear-gradient(135deg, #d97706, var(--amber-accent)); box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3); }
.perm-icon.dark-gradient { background: linear-gradient(135deg, var(--blue-deep), #334155); box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3); }

.permiso-header h3 { font-size: 32px; font-weight: 900; color: var(--blue-deep); margin-bottom: 5px; }
.edad-badge { background: #f1f5f9; color: var(--blue-primary); padding: 5px 15px; border-radius: 20px; font-size: 13px; font-weight: 800; border: 1px solid #e2e8f0; display: inline-block; }

.permiso-intro { font-size: 18px; color: var(--text-main); margin-bottom: 40px; line-height: 1.6; }

/* Tarjetas de Información */
.permit-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 40px; }
.permit-info-card { background: #f8fafc; border: 1px solid #e2e8f0; padding: 30px; border-radius: 16px; }
.permit-info-card h4 { color: var(--blue-deep); font-size: 18px; font-weight: 800; margin-bottom: 20px; border-bottom: 2px solid #e2e8f0; padding-bottom: 10px; }
.permit-info-card ul { list-style: none; }
.permit-info-card li { margin-bottom: 15px; color: var(--text-muted); font-size: 15px; display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.permit-info-card li i { font-size: 16px; margin-top: 3px; }
.permit-info-card li strong { color: var(--text-main); }

/* Texto Largo y Método Alba */
.permit-long-text { margin-bottom: 40px; }
.permit-long-text h4 { font-size: 20px; color: var(--blue-deep); margin-bottom: 15px; font-weight: 800; }
.permit-long-text p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 15px; }

.permit-alba-method { background: #fff; border: 1px solid var(--blue-bright); border-left: 5px solid var(--blue-bright); padding: 30px; border-radius: 8px; margin-bottom: 40px; box-shadow: 0 5px 15px rgba(59, 130, 246, 0.05); }
.permit-alba-method h4 { font-size: 20px; color: var(--blue-deep); margin-bottom: 10px; font-weight: 800; }
.permit-alba-method p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.method-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.method-list li { color: var(--text-main); font-size: 14px; display: flex; gap: 10px; font-weight: 600; }
.method-list li i { color: #22c55e; margin-top: 3px; }

/* CAJA DE ROPA OBLIGATORIA MOTO */
.moto-gear-box { background: var(--blue-deep); color: #fff; padding: 40px; border-radius: 16px; margin-top: 20px; box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2); }
.moto-gear-box h4 { color: var(--amber-accent); font-size: 22px; font-weight: 800; margin-bottom: 15px; display: flex; align-items: center; gap: 12px; }
.moto-gear-box > p { color: #cbd5e1; font-size: 15px; margin-bottom: 25px; line-height: 1.6;}
.gear-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; }
.gear-item { background: rgba(255, 255, 255, 0.05); padding: 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
.gear-item strong { display: block; color: var(--amber-accent); font-size: 16px; margin-bottom: 8px; }
.gear-item p { color: #f1f5f9; font-size: 13px; line-height: 1.5; margin: 0; }
.gear-note { font-size: 13px; color: #94a3b8; font-style: italic; border-top: 1px dashed rgba(255,255,255,0.1); padding-top: 15px; margin: 0; }



/* =========================================
   PÁGINA DE CURSOS (TARJETAS EXTENDIDAS)
   ========================================= */
.courses-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.course-extend-card {
    display: flex;
    gap: 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--soft-shadow);
    transition: all 0.3s;
}

.course-extend-card:hover {
    border-color: var(--blue-bright);
    transform: translateY(-5px);
}

.course-extend-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    flex-shrink: 0;
}

.course-extend-content {
    flex-grow: 1;
}

.course-extend-content h3 {
    font-size: 24px;
    color: var(--blue-deep);
    font-weight: 800;
    margin-bottom: 15px;
}

.course-extend-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.course-extend-content .mt-2 {
    margin-top: 15px;
}

.course-extend-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-extend-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.5;
}

.course-extend-list li i {
    margin-top: 4px;
}

.course-badge {
    display: inline-block;
    background: #fef3c7;
    color: #b45309;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 15px;
}
.course-badge.green {
    background: #dcfce7;
    color: #15803d;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.course-extend-card.compact {
    flex-direction: column;
    padding: 30px;
}

/* =========================================
   FORMULARIO DE CONTACTO (ALBA 2000)
   ========================================= */
.course-contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    padding: 50px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--blue-deep);
    margin-bottom: 10px;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.alba-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-main);
    transition: all 0.3s;
    font-family: 'Nunito Sans', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--blue-bright);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--blue-bright);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--blue-bright);
    font-weight: 700;
    text-decoration: underline;
}

.mt-3 { margin-top: 20px; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid, .footer-grid { flex-direction: column; text-align: center; gap: 40px; }
    .hero-buttons { justify-content: center; }
    .hero-image { width: 100%; }
    .floating-card-ui { bottom: 20px; left: 20px; }
    .cards-grid-3, .features-grid, .reviews-wrapper { grid-template-columns: 1fr; }
    .courses-grid, .locations-grid { grid-template-columns: 1fr; }
    .fb-flex { flex-direction: column; gap: 15px; text-align: center; }

    .permisos-layout { flex-direction: column; }
    .permisos-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #e2e8f0; padding: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
    .sidebar-heading { width: 100%; margin-left: 0; }
    .tab-btn { width: auto; flex-grow: 1; text-align: center; }
    .permisos-content { padding: 30px 20px; }
    .permit-info-grid { grid-template-columns: 1fr; }
    .method-list { grid-template-columns: 1fr; }
    .gear-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero-text h1 { font-size: 42px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .courses-grid { grid-template-columns: 1fr; }
    .wa-tooltip { display: none; }

    .course-extend-card { flex-direction: column; padding: 30px; gap: 20px; }
    .grid-2-cols { grid-template-columns: 1fr; }
    .alba-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .course-contact-wrapper { padding: 30px 20px; }

}