/* ---------- Reset (minimal) ---------- */
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* ---------- Canvas background (neural network) ---------- */
#bgCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* behind everything */
    display: block;
    background: linear-gradient(180deg, #0f1720 0%, #0c0f14 60%);
    /* softer than full black */
}
.footerPolitica{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
/* If canvas not supported, a subtle gradient */
.bg-fallback {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(ellipse at center, #0f1720 0%, #0b0d11 60%);
}

/* ---------- Main layout ---------- */
.container {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: flex-start;
}

.widget_bottom {
    position: relative;
    z-index: 2;
    padding-bottom: 176px;
    margin: 48px auto 0;
    width: 100%;
    max-width: 640px;
}

.widget-content {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.img_story {
    padding: 4px;
    background: hsl(174deg 96% 23%);
    width: 94px;
    height: 94px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.img_story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #131212;
}

.widget-flex {
    text-align: center;
    color: #fff;
}

.widget_bottom h1 {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
}

.widget_bottom h2.caption {
    line-height: 22px;
    margin-top: 12px;
    font-weight: 400;
}

ul.social {
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 0;
    margin: 16px 0 0;
    justify-content: center;
}

ul.social li {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

ul.social li a {
    display: block;
    width: 100%;
    height: 100%;
}

ul.social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bioLink {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.bioLink-item {
    border-radius: 8px;
    position: relative;
    transition: transform .15s ease;
}

.bioLink-item:hover {
    transform: translateY(-3px);
}

.bioLink-item a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    min-height: 56px;
    color: #fff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.logo-footer {
    opacity: 0.8;
    color: #fff;
    text-align: center;
    margin-top: 22px;
}

/* Responsive tweaks */
@media (max-width:768px) {
    .widget_bottom {
        width: 90%;
    }
}

@media (max-width:480px) {
    .widget_bottom {
        width: 95% !important;
        padding-bottom: 20px;
    }

    .img_story {
        width: 70px;
        height: 70px;
    }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    #bgCanvas {
        animation: none !important;
    }
}