/* ============================================================
   Grupo Hilax - Custom Styles (Bootstrap 5 base)
   Palette: Primary #1a56db | Accent #ff6b35 | Dark #0f172a
   ============================================================ */

:root {
    --primary:      #1a56db;
    --primary-dark: #1240a8;
    --accent:       #ff6b35;
    --accent-dark:  #e85520;
    --dark:         #0f172a;
    --dark2:        #1e293b;
    --light:        #f8fafc;
    --muted:        #64748b;
    --success:      #10b981;
    --warning:      #f59e0b;
    --danger:       #ef4444;
    --info:         #3b82f6;
    --border:       #e2e8f0;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow:       0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg:    0 10px 15px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.05);
    --radius:       .75rem;
    --radius-sm:    .5rem;
}

/* ---- Reset & Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--dark2); background: var(--light); }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }

/* ---- Scrollbar ------------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-hilax {
    background: var(--dark);
    padding: .6rem 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
    position: sticky;
    top: 0;
    z-index: 1030;
}
.navbar-hilax .navbar-brand img { height: 40px; }
.navbar-hilax .nav-link {
    color: #cbd5e1 !important;
    font-size: .9rem;
    padding: .5rem .75rem !important;
    border-radius: var(--radius-sm);
    transition: all .2s;
}
.navbar-hilax .nav-link:hover,
.navbar-hilax .nav-link.active { color: #fff !important; background: rgba(255,255,255,.08); }
.navbar-hilax .navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-hilax .navbar-toggler-icon { filter: invert(1); }
.navbar-hilax .dropdown-menu { background: var(--dark2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); }
.navbar-hilax .dropdown-item { color: #cbd5e1 !important; font-size: .875rem; padding: .5rem 1rem; transition: background .2s; }
.navbar-hilax .dropdown-item:hover { background: rgba(255,255,255,.08) !important; color: #fff !important; }
.navbar-hilax .dropdown-divider { border-color: rgba(255,255,255,.1); }

/* Notification bell */
.notif-bell { position: relative; display: inline-block; }
.notif-badge {
    position: absolute;
    top: -4px; right: -6px;
    background: var(--accent);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--dark);
}

/* Btn login in navbar */
.btn-nav-login {
    background: var(--accent);
    color: #fff !important;
    border-radius: 2rem;
    padding: .4rem 1.2rem !important;
    font-weight: 600;
    font-size: .875rem;
    transition: all .2s;
}
.btn-nav-login:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-hilax {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: .6rem 1.5rem;
    font-weight: 600;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(26,86,219,.35);
}
.btn-primary-hilax:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(26,86,219,.4); color: #fff; }

.btn-accent {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: .6rem 1.5rem;
    font-weight: 600;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(255,107,53,.35);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); color: #fff; }

.btn-outline-hilax {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: .6rem 1.5rem;
    font-weight: 600;
    transition: all .2s;
}
.btn-outline-hilax:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ============================================================
   HERO SECTION (Landing Page)
   ============================================================ */
.hero {
    min-height: 92vh;
    background: linear-gradient(135deg, var(--dark) 0%, #162a50 50%, #1a3a6e 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    opacity: .12;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.15; }
.hero h1 span { color: var(--accent); }
.hero p.lead { color: #94a3b8; font-size: 1.15rem; max-width: 520px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: #94a3b8;
    border-radius: 2rem;
    padding: .35rem 1rem;
    font-size: .8rem;
    margin-bottom: 1.5rem;
}
.hero-badge span { color: var(--accent); font-weight: 700; }

/* Floating cards in hero */
.hero-stat {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(8px);
}
.hero-stat h3 { color: var(--accent); font-size: 2rem; font-weight: 800; margin: 0; }
.hero-stat p { color: #94a3b8; font-size: .8rem; margin: 0; }

/* ============================================================
   SECTIONS (Landing)
   ============================================================ */
.section-title { font-size: 2rem; font-weight: 800; color: var(--dark2); position: relative; }
.section-title::after {
    content: '';
    display: block;
    width: 50px; height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: .5rem auto 0;
}
.section-title.left-align::after { margin-left: 0; }
.section-subtitle { color: var(--muted); font-size: 1.05rem; }

/* Service Cards */
.service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    background: #fff;
    transition: all .3s;
    height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card .icon-wrap {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26,86,219,.1), rgba(255,107,53,.1));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--primary);
    transition: all .3s;
}
.service-card:hover .icon-wrap { background: var(--primary); color: #fff; }
.service-card h5 { font-weight: 700; color: var(--dark2); margin-bottom: .5rem; }
.service-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* Why us */
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.25rem; flex-shrink: 0;
}
.feature-item h6 { font-weight: 700; color: var(--dark2); margin-bottom: .25rem; }
.feature-item p { color: var(--muted); font-size: .875rem; margin: 0; }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #1240a8);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    color: #fff;
    text-align: center;
}
.cta-section h2 { font-weight: 800; }
.cta-section p { color: rgba(255,255,255,.8); }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, #162a50 100%);
    display: flex; align-items: center; justify-content: center;
}
.login-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
    width: 100%;
    max-width: 420px;
}
.login-header {
    background: linear-gradient(135deg, var(--primary), #1240a8);
    padding: 2.5rem 2rem;
    text-align: center;
}
.login-header img { height: 56px; }
.login-header h4 { color: #fff; font-weight: 700; margin: 1rem 0 .25rem; }
.login-header p { color: rgba(255,255,255,.7); font-size: .875rem; margin: 0; }
.login-body { padding: 2rem; }
.login-body .form-label { font-weight: 600; color: var(--dark2); font-size: .875rem; }
.login-body .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .65rem 1rem;
    transition: border-color .2s, box-shadow .2s;
}
.login-body .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,.12); }
.input-icon-group { position: relative; }
.input-icon-group .form-control { padding-left: 2.75rem; }
.input-icon-group .input-icon {
    position: absolute; left: .875rem; top: 50%;
    transform: translateY(-50%);
    color: var(--muted); font-size: .95rem;
}
.btn-login {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; border: none;
    border-radius: var(--radius-sm);
    padding: .75rem;
    font-weight: 700; font-size: 1rem;
    width: 100%;
    transition: all .2s;
    box-shadow: 0 4px 12px rgba(26,86,219,.4);
}
.btn-login:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26,86,219,.45); color: #fff; }

/* ============================================================
   CLIENT PANEL (Dashboard, Equipment, etc.)
   ============================================================ */
.panel-wrapper {
    background: var(--light);
    min-height: calc(100vh - 62px);
}
.panel-header {
    background: linear-gradient(135deg, var(--dark), #162a50);
    padding: 2rem 0;
    margin-bottom: 2rem;
}
.panel-header h1 { color: #fff; font-weight: 800; font-size: 1.75rem; }
.panel-header p { color: #94a3b8; margin: 0; }
.panel-header .breadcrumb { background: none; padding: 0; margin: .5rem 0 0; }
.panel-header .breadcrumb-item { color: #94a3b8; font-size: .8rem; }
.panel-header .breadcrumb-item.active { color: rgba(255,255,255,.7); }
.panel-header .breadcrumb-item + .breadcrumb-item::before { color: #475569; }

/* Stat Cards */
.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border);
    transition: all .3s;
    height: 100%;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.stat-icon.blue  { background: rgba(26,86,219,.1);  color: var(--primary); }
.stat-icon.orange{ background: rgba(255,107,53,.1);  color: var(--accent);  }
.stat-icon.green { background: rgba(16,185,129,.1);  color: var(--success); }
.stat-icon.amber { background: rgba(245,158,11,.1);  color: var(--warning); }
.stat-icon.red   { background: rgba(239,68,68,.1);   color: var(--danger);  }
.stat-card h3 { font-size: 2rem; font-weight: 800; margin: 0; color: var(--dark2); }
.stat-card span { font-size: .8rem; color: var(--muted); }

/* Equipment Cards */
.equipo-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s;
    height: 100%;
}
.equipo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.equipo-card-top {
    background: linear-gradient(135deg, var(--dark), #1e3a5f);
    padding: 1.25rem;
    display: flex; align-items: center; gap: 1rem;
}
.equipo-type-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem;
    flex-shrink: 0;
}
.equipo-card-top h6 { color: #fff; font-weight: 700; margin: 0; }
.equipo-card-top small { color: #94a3b8; }
.equipo-card-body { padding: 1.25rem; }
.equipo-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.equipo-meta-item { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--muted); }
.equipo-cost { font-size: 1.35rem; font-weight: 800; color: var(--dark2); }
.equipo-cost span { font-size: .75rem; color: var(--muted); font-weight: 400; }
.equipo-actions { display: flex; gap: .5rem; flex-wrap: wrap; }

/* Status Badges */
.badge-estado {
    display: inline-flex; align-items: center; gap: .3rem;
    border-radius: 2rem;
    padding: .3rem .75rem;
    font-size: .75rem;
    font-weight: 700;
    text-transform: capitalize;
}
.badge-recibido  { background: rgba(245,158,11,.15);  color: #b45309; }
.badge-proceso   { background: rgba(59,130,246,.15);  color: #1d4ed8; }
.badge-terminado { background: rgba(16,185,129,.15);  color: #065f46; }
.badge-entregado { background: rgba(26,86,219,.15);   color: var(--primary); }
.badge-sin-estado{ background: rgba(100,116,139,.15); color: #475569; }

/* ============================================================
   TIMELINE (History)
   ============================================================ */
.timeline { position: relative; padding: 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 22px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(26,86,219,.1));
}
.timeline-item { position: relative; padding-left: 60px; margin-bottom: 2rem; }
.timeline-dot {
    position: absolute;
    left: 10px; top: 4px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem;
    color: var(--primary);
    z-index: 1;
}
.timeline-dot.recibido  { border-color: var(--warning); color: var(--warning); }
.timeline-dot.proceso   { border-color: var(--info);    color: var(--info); }
.timeline-dot.terminado { border-color: var(--success); color: var(--success); }
.timeline-dot.entregado { border-color: var(--primary); color: var(--primary); }

.timeline-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.timeline-card-header {
    padding: 1rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
    border-bottom: 1px solid var(--border);
}
.timeline-card-body { padding: 1.25rem; }
.timeline-date { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .35rem; }
.photo-thumb {
    width: 80px; height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: transform .2s;
}
.photo-thumb:hover { transform: scale(1.05); border-color: var(--primary); }

/* ============================================================
   CHAT / MESSAGING
   ============================================================ */
.chat-wrapper {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 200px);
    min-height: 400px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.chat-header {
    background: linear-gradient(135deg, var(--dark), #1e3a5f);
    padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 1rem;
}
.chat-header .equipo-info h6 { color: #fff; font-weight: 700; margin: 0; }
.chat-header .equipo-info small { color: #94a3b8; }
.chat-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.25rem; }
.chat-messages { flex: 1; overflow-y: auto; padding: 1.25rem; background: #f8fafc; display: flex; flex-direction: column; gap: 1rem; }
.msg-bubble { max-width: 75%; }
.msg-bubble.from-tech { align-self: flex-start; }
.msg-bubble.from-client { align-self: flex-end; }
.msg-content {
    padding: .75rem 1rem;
    border-radius: var(--radius);
    font-size: .9rem;
    line-height: 1.5;
}
.from-tech .msg-content { background: #fff; border: 1px solid var(--border); color: var(--dark2); border-bottom-left-radius: .25rem; }
.from-client .msg-content { background: var(--primary); color: #fff; border-bottom-right-radius: .25rem; }
.msg-meta { font-size: .72rem; color: var(--muted); margin-top: .25rem; display: flex; align-items: center; gap: .35rem; }
.from-client .msg-meta { justify-content: flex-end; color: rgba(255,255,255,.6); }
.from-tech .msg-sender { font-size: .75rem; font-weight: 700; color: var(--primary); margin-bottom: .2rem; }
.chat-input-area { padding: 1rem; border-top: 1px solid var(--border); background: #fff; }
.chat-input { border: 1.5px solid var(--border); border-radius: 2rem; padding: .65rem 1rem; resize: none; width: 100%; font-size: .9rem; transition: border-color .2s; }
.chat-input:focus { outline: none; border-color: var(--primary); }
.btn-send { background: var(--primary); color: #fff; border: none; border-radius: 2rem; padding: .65rem 1.5rem; font-weight: 600; transition: all .2s; }
.btn-send:hover { background: var(--primary-dark); }

/* Typing indicator */
.typing-indicator { display: none; align-items: center; gap: .35rem; color: var(--muted); font-size: .8rem; padding: 0 1.25rem .5rem; }
.typing-dot { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; animation: typing-bounce .6s infinite alternate; }
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typing-bounce { from { transform: translateY(0); } to { transform: translateY(-4px); } }

/* ============================================================
   PROFILE
   ============================================================ */
.profile-avatar {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: #fff;
    font-size: 2rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(26,86,219,.4);
}
.profile-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.profile-card-top { background: linear-gradient(135deg, var(--dark), #1e3a5f); padding: 2rem; text-align: center; }
.profile-card-top h5 { color: #fff; font-weight: 700; margin: 1rem 0 .25rem; }
.profile-card-top p { color: #94a3b8; margin: 0; font-size: .875rem; }
.profile-info-item { display: flex; align-items: center; gap: 1rem; padding: .875rem 0; border-bottom: 1px solid var(--border); }
.profile-info-item:last-child { border-bottom: none; }
.profile-info-icon { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(26,86,219,.08); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.profile-info-label { font-size: .75rem; color: var(--muted); }
.profile-info-value { font-weight: 600; color: var(--dark2); font-size: .9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main {
    background: var(--dark);
    color: #94a3b8;
    padding: 3rem 0 1.5rem;
}
.footer-main .footer-logo { height: 40px; margin-bottom: 1rem; }
.footer-main p { font-size: .875rem; color: #64748b; }
.footer-main h6 { color: #fff; font-weight: 700; margin-bottom: 1rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
.footer-main a { color: #64748b; font-size: .875rem; transition: color .2s; }
.footer-main a:hover { color: var(--accent); }
.footer-main ul { list-style: none; padding: 0; margin: 0; }
.footer-main ul li { margin-bottom: .5rem; }
.footer-bottom { background: rgba(0,0,0,.2); padding: 1rem 0; margin-top: 2rem; font-size: .8rem; color: #475569; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); color: #94a3b8; display: inline-flex; align-items: center; justify-content: center; margin-right: .5rem; transition: all .2s; }
.footer-social a:hover { background: var(--accent); color: #fff; }

/* ============================================================
   ALERTS & MISC
   ============================================================ */
.alert-hilax-danger { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); color: #b91c1c; border-radius: var(--radius-sm); padding: .75rem 1rem; font-size: .875rem; }
.alert-hilax-info { background: rgba(26,86,219,.08); border: 1px solid rgba(26,86,219,.2); color: #1d4ed8; border-radius: var(--radius-sm); padding: .75rem 1rem; font-size: .875rem; }
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state i { font-size: 3.5rem; color: #e2e8f0; margin-bottom: 1rem; }
.empty-state h5 { color: var(--dark2); font-weight: 700; }
.empty-state p { color: var(--muted); font-size: .9rem; }
.card-hilax { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.loading-spinner { display: flex; align-items: center; justify-content: center; padding: 2rem; }
.spinner-hilax { width: 36px; height: 36px; border: 3px solid rgba(26,86,219,.15); border-top-color: var(--primary); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
    .hero { min-height: 80vh; text-align: center; }
    .hero p.lead { margin: 0 auto 1.5rem; }
    .hero-stats { margin-top: 2rem; }
    .timeline::before { left: 14px; }
    .timeline-item { padding-left: 44px; }
    .timeline-dot { left: 3px; width: 22px; height: 22px; }
    .chat-wrapper { height: calc(100vh - 160px); }
    .msg-bubble { max-width: 88%; }
    .stat-card h3 { font-size: 1.6rem; }
}

/* ============================================================
   PRINT STYLES (PDF)
   ============================================================ */
@media print {
    .navbar-hilax, .panel-header .breadcrumb, .no-print { display: none !important; }
    body { background: #fff !important; }
    .timeline-card { box-shadow: none !important; border: 1px solid #ccc !important; }
    .badge-estado { border: 1px solid #ccc; }
    .print-header { display: block !important; }
}
.print-header { display: none; }

/* Smooth fade-in on page load */
.fade-in { animation: fadeIn .4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
