/* ================================================================
   SYMEEB — Design System v2
   Rojo #D41E26 | Azul #2B45D4 | Base oscura #0F1117
   ================================================================ */

:root {
    --bg:           #0F1117;
    --bg-surface:   #1A1D27;
    --bg-elevated:  #22263A;
    --red:          #D41E26;
    --red-hover:    #b81920;
    --blue:         #2B45D4;
    --blue-hover:   #2035b0;
    --text:         #F0F0F0;
    --text-muted:   #9CA3AF;
    --border:       rgba(255, 255, 255, 0.08);
    --radius:       12px;
    --radius-sm:    8px;
    --transition:   0.2s ease;
    --font:         'Poppins', sans-serif;
    --nav-h:        64px;
    --utility-h:    36px;
    --total-nav-h:  calc(var(--utility-h) + var(--nav-h));
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    padding-top: var(--nav-h);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 992px) {
    body { padding-top: var(--total-nav-h); }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Utility Bar ───────────────────────────────────────────── */
.utility-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
    height: var(--utility-h);
    background: var(--red);
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.utility-text {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.utility-link {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

.utility-link:hover { color: #fff; }

.utility-sep { color: rgba(255,255,255,0.35); }

.utility-social {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: rgba(255,255,255,0.85);
    font-size: 0.68rem;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.utility-social:hover {
    background: rgba(0,0,0,0.2);
    color: #fff;
}

.utility-social--wa { background: rgba(0,0,0,0.15); }

/* ── Navbar ────────────────────────────────────────────────── */
.symeeb-nav {
    position: fixed;
    overflow: visible;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: var(--nav-h);
    background: rgba(15, 17, 23, 1);
    border-bottom: 3px solid var(--red);
}

@media (min-width: 992px) {
    .symeeb-nav {
        top: var(--utility-h);
        background: rgba(15, 17, 23, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
    }
}

/* ── Nav layout: logo | links centrados | cta ──────────────── */
.nav-center-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* ── Desktop Nav Links ─────────────────────────────────────── */
.symeeb-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: var(--nav-h);
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}

.symeeb-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--red);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.symeeb-nav-link:hover {
    color: #fff !important;
}

.symeeb-nav-link:hover::before {
    transform: scaleX(1);
}

/* Bootstrap dropdown caret se hereda via ::after, no conflicta con ::before */
.symeeb-nav-link.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    opacity: 0.7;
}

.symeeb-nav .navbar-brand img,
#navDrawer .offcanvas-header img {
    background: #fff;
    border-radius: 6px;
    padding: 4px 6px;
}

/* ── Navbar heredado (compatibilidad) ──────────────────────── */
.symeeb-nav .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
}

/* ── Offcanvas Drawer ──────────────────────────────────────── */
#navDrawer {
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    color: var(--text);
    width: 285px;
}

#navDrawer .offcanvas-header {
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition), padding-left var(--transition);
}

.drawer-link i {
    width: 20px;
    text-align: center;
    color: var(--red);
    flex-shrink: 0;
}

.drawer-link:hover {
    color: var(--red);
    padding-left: 18px;
}

.drawer-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ── Dropdown ──────────────────────────────────────────────── */
.dropdown-menu-dark {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.dropdown-menu-dark .dropdown-item {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.dropdown-menu-dark .dropdown-item:hover {
    background: var(--border);
    color: var(--text);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero { min-height: calc(100svh - var(--total-nav-h)); }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/index/electricidad.jpg');
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.04);
    transition: transform 10s ease;
}

@media (min-width: 992px) {
    .hero-bg { background-position: center; }
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 17, 23, 0.82) 0%,
        rgba(15, 17, 23, 0.78) 50%,
        rgba(15, 17, 23, 0.88) 100%
    );
}

@media (min-width: 992px) {
    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(15, 17, 23, 0.92) 0%,
            rgba(212, 30, 38, 0.18) 55%,
            rgba(43, 69, 212, 0.22) 100%
        );
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 0 4rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.25rem, 8vw, 4.75rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.hero-title span {
    background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 2.5rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-symeeb-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    border: 2px solid var(--red);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-symeeb-red:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 30, 38, 0.35);
}

.btn-symeeb-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid var(--blue);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-symeeb-blue:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 69, 212, 0.35);
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 0.75rem 1rem;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* ── Section ───────────────────────────────────────────────── */
.section {
    padding: 4rem 0;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
    display: block;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 6px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.7;
    max-width: 500px;
}

/* ── Scroll Arrows ─────────────────────────────────────────── */
.scroll-hint {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 10px;
}

.scroll-hint button {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    font-size: 0.8rem;
}

.scroll-hint button:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* ── Brand Scroll Carousel ─────────────────────────────────── */
.brand-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 16px;
    scrollbar-width: none;
}

.brand-scroll::-webkit-scrollbar { display: none; }

.brand-card {
    flex: 0 0 175px;
    scroll-snap-align: start;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.brand-card:hover {
    border-color: rgba(212, 30, 38, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.brand-card img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .brand-card {
        flex: 0 0 200px;
    }
    .brand-card img {
        height: 96px;
    }
}

.brand-card .brand-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.brand-card .brand-actions .btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
}

/* ── Category Cards ────────────────────────────────────────── */
.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); }
}

.category-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.25rem;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    display: block;
}

.category-card:hover {
    border-color: rgba(212, 30, 38, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--text);
}

.cat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--red) 0%, #8B1018 100%);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

@media (min-width: 992px) {
    .cta-section {
        margin: 0;
        padding: 4rem 3rem;
    }
}

.cta-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
}

/* ── WhatsApp Float ────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    z-index: 1040;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

/* ── Modal Dark Theme ──────────────────────────────────────── */
.modal-content {
    background: var(--bg-surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.modal-header {
    border-bottom-color: var(--border);
}

.modal-footer {
    border-top-color: var(--border);
}

.form-control, .form-select {
    background: var(--bg-elevated);
    border-color: var(--border);
    color: var(--text);
    border-radius: var(--radius-sm);
}

.form-control::placeholder { color: var(--text-muted); }

.form-control:focus, .form-select:focus {
    background: var(--bg-elevated);
    border-color: rgba(212, 30, 38, 0.6);
    color: var(--text);
    box-shadow: 0 0 0 0.2rem rgba(212, 30, 38, 0.15);
}

.form-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-control-plaintext { color: var(--text); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 0;
    margin-top: 5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition);
    line-height: 1.5;
}

.footer-contact a i {
    color: var(--red);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact a:hover { color: var(--text); }

.footer-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--text);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid var(--border);
    padding: 1.1rem 0;
}

.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-bottom a { color: var(--red); }

/* ── Page Header ───────────────────────────────────────────── */
.page-header {
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.page-header h1 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 6px;
}

/* ── Hero Subpage (Quiénes somos) ──────────────────────────── */
.hero-sub {
    height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.hero-sub::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,17,23,0.88) 0%, rgba(15,17,23,0.3) 100%);
}

/* ── Quiénes somos Tabs ────────────────────────────────────── */
.nav-tabs-symeeb {
    border: none;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.nav-tabs-symeeb::-webkit-scrollbar { display: none; }

.nav-tabs-symeeb .nav-link {
    color: var(--text-muted);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.55rem 1.1rem;
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all var(--transition);
}

.nav-tabs-symeeb .nav-link:hover {
    color: var(--text);
    border-color: rgba(212, 30, 38, 0.4);
}

.nav-tabs-symeeb .nav-link.active {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
}

@media (min-width: 992px) {
    .nav-tabs-symeeb {
        flex-direction: column;
        flex-wrap: wrap;
        overflow-x: visible;
        gap: 6px;
        padding-bottom: 0;
    }
    .nav-tabs-symeeb .nav-link {
        border-radius: var(--radius-sm);
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: left;
        white-space: normal;
        flex-shrink: unset;
    }
}

.tab-content-symeeb {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.tab-content-symeeb h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.tab-content-symeeb p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.925rem;
}

.tab-content-symeeb img {
    border-radius: var(--radius-sm);
    object-fit: cover;
}

/* ── Products Page ─────────────────────────────────────────── */
.product-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
    display: block;
}

/* ── Gallery Modal ─────────────────────────────────────────── */
#modal-galeria .modal-content {
    background: rgba(15, 17, 23, 0.97);
}

#modal-galeria .modal-body {
    padding: 1.5rem;
}

.gallery-img-card {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 30, 38, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--red);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.contact-card h5 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
    font-size: 0.925rem;
    color: var(--text);
    margin: 0;
}

.contact-card a:hover { color: var(--red); }

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Custom file input label */
.custom-file-label {
    background: var(--bg-elevated);
    border-color: var(--border);
    color: var(--text-muted);
}

/* ── Utilities ─────────────────────────────────────────────── */
.text-red  { color: var(--red) !important; }
.text-blue { color: var(--blue) !important; }
.bg-surface { background: var(--bg-surface) !important; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.5s ease forwards; }

/* ── Video banner (solo desktop) ───────────────────────────── */
.video-banner {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 4rem;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Bootstrap overrides for dark theme ────────────────────── */
.btn-outline-secondary {
    --bs-btn-color: var(--text-muted);
    --bs-btn-border-color: var(--border);
    --bs-btn-hover-bg: var(--bg-elevated);
    --bs-btn-hover-color: var(--text);
    --bs-btn-hover-border-color: var(--border);
}

.btn-close-white { filter: invert(1); }

/* Bootstrap .text-muted usa #6c757d que se pierde en fondo oscuro;
   lo reemplazamos con nuestro --text-muted (#9CA3AF) de mayor contraste */
.text-muted { color: var(--text-muted) !important; }
