:root {
    --orange: #ff5100;
    --orange-hover: #e64900;
    --black: #111111;
    --text: #1a1a1a;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9fafb;
    --white: #ffffff;
}

body { background: var(--white); color: var(--text); }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar { background: var(--bg); border-bottom: 1px solid var(--border); padding: 5px 0; margin-top: 107px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); max-width: 1200px; margin: 0 auto; padding: 0 30px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 10px; color: #d1d5db; }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ===== HERO ===== */
.rec-hero { background: var(--black); padding: 72px 0 60px; position: relative; overflow: hidden; }
.rec-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(255,81,0,0.12) 0%, transparent 65%); pointer-events: none; }
.rec-hero::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,81,0,0.07) 0%, transparent 65%); pointer-events: none; }
.rec-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; text-align: center; position: relative; }
.rec-hero-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); display: inline-block; margin-bottom: 18px; }
.rec-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -1.2px; margin-bottom: 18px; }
.rec-hero h1 span { color: var(--orange); }
.rec-hero p { font-size: 17px; color: #9ca3af; line-height: 1.7; max-width: 580px; margin: 0 auto 36px; }
.rec-hero-stats { display: inline-flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.rec-stat { text-align: center; }
.rec-stat-num { font-size: 28px; font-weight: 800; color: var(--orange); line-height: 1; }
.rec-stat-lbl { font-size: 12px; color: #6b7280; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== WRAPPER ===== */
.rec-wrap { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

/* ===== FILTER TABS ===== */
.rec-tabs-bar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 107px; z-index: 90; }
.rec-tabs { display: flex; gap: 0; max-width: 1200px; margin: 0 auto; padding: 0 30px; overflow-x: auto; scrollbar-width: none; }
.rec-tabs::-webkit-scrollbar { display: none; }
.rec-tab { display: flex; align-items: center; gap: 7px; padding: 14px 20px; font-size: 14px; font-weight: 600; color: var(--text-muted); border-bottom: 2.5px solid transparent; cursor: pointer; white-space: nowrap; transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none; font-family: inherit; }
.rec-tab:hover { color: var(--text); }
.rec-tab.active { color: var(--orange); border-bottom-color: var(--orange); }
.rec-tab i { font-size: 13px; }

/* ===== SECTION HEADER ===== */
.rec-sec { padding: 70px 0; }
.rec-sec + .rec-sec { padding-top: 0; }
.rec-sec-header { margin-bottom: 36px; }
.rec-sec-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 8px; }
.rec-sec-h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--black); letter-spacing: -0.5px; margin-bottom: 6px; }
.rec-sec-sub { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ===== CATEGORY FILTER (videos) ===== */
.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.cat-btn { padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border); background: var(--white); color: var(--text-muted); transition: all 0.18s; font-family: inherit; }
.cat-btn:hover { border-color: var(--orange); color: var(--orange); }
.cat-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ===== VIDEO GRID ===== */
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.vid-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; transition: all 0.22s; }
.vid-card:hover { border-color: rgba(255,81,0,0.3); box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }

.vid-thumb { position: relative; aspect-ratio: 16/9; background: #1a1a1a; cursor: pointer; overflow: hidden; }
.vid-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; opacity: 0.85; }
.vid-card:hover .vid-thumb img { transform: scale(1.03); opacity: 1; }
.vid-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.vid-thumb-placeholder i { font-size: 36px; color: #444; }
.vid-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; background: rgba(255,81,0,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.vid-play-btn i { color: #fff; font-size: 18px; margin-left: 3px; }
.vid-card:hover .vid-play-btn { background: var(--orange); transform: translate(-50%, -50%) scale(1.1); }
.vid-duration { position: absolute; bottom: 8px; right: 10px; background: rgba(0,0,0,0.75); color: #fff; font-size: 11px; font-weight: 600; padding: 2px 7px; border-radius: 4px; }

.vid-body { padding: 16px 18px; }
.vid-cat { font-size: 10.5px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--orange); background: rgba(255,81,0,0.07); padding: 3px 9px; border-radius: 20px; display: inline-block; margin-bottom: 8px; }
.vid-title { font-size: 14.5px; font-weight: 700; color: var(--black); line-height: 1.35; margin-bottom: 6px; }
.vid-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 12px; }
.vid-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #9ca3af; }
.vid-meta i { color: #d1d5db; }

/* Modal video */
.vid-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.vid-modal.open { display: flex; }
.vid-modal-inner { position: relative; width: 100%; max-width: 900px; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; }
.vid-modal iframe, .vid-modal video { width: 100%; height: 100%; border: none; }
.vid-modal-close { position: absolute; top: -44px; right: 0; width: 36px; height: 36px; background: rgba(255,255,255,0.12); border: none; border-radius: 50%; color: #fff; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.vid-modal-close:hover { background: rgba(255,81,0,0.7); }

/* ===== GUÍAS GRID ===== */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.guide-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px 20px; border: 1.5px solid var(--border); border-radius: 14px; background: var(--white); transition: all 0.22s; text-decoration: none; color: inherit; }
.guide-card:hover { border-color: rgba(255,81,0,0.3); box-shadow: 0 6px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
.guide-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.guide-body h3 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 4px; line-height: 1.3; }
.guide-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; }
.guide-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-wrap { max-width: 820px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(255,81,0,0.3); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--black); background: var(--white); user-select: none; }
.faq-q i { font-size: 14px; color: var(--text-muted); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--orange); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ===== CTA STRIP ===== */
.rec-cta { background: var(--black); padding: 64px 0; margin-top: 30px; }
.rec-cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.rec-cta h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 10px; }
.rec-cta p { font-size: 15px; color: #9ca3af; line-height: 1.6; max-width: 480px; }
.rec-cta-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.btn-cta-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: var(--orange); color: #fff; text-decoration: none; border-radius: 8px; font-size: 14px; font-weight: 700; transition: all 0.2s; white-space: nowrap; }
.btn-cta-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-cta-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: transparent; color: #fff; text-decoration: none; border-radius: 8px; font-size: 14px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); transition: all 0.2s; white-space: nowrap; }
.btn-cta-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* HIDDEN (category filter) */
.vid-card.hidden { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .vid-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .rec-hero { padding: 52px 0 44px; }
    .rec-hero-stats { gap: 24px; }
    .rec-sec { padding: 52px 0; }
    .rec-wrap { padding: 0 20px; }
    .rec-cta-inner { grid-template-columns: 1fr; }
    .rec-cta-btns { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 560px) {
    .vid-grid { grid-template-columns: 1fr; }
    .guide-grid { grid-template-columns: 1fr; }
}
