@font-face {
    font-family: 'AsapFuente';
    src: url('/Fonts/Asap-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'AsapFuente';
    src: url('/Fonts/Asap-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'AsapFuente';
    src: url('/Fonts/Asap-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'AsapFuente';
    src: url('/Fonts/Asap-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'AsapFuente';
    src: url('/Fonts/Asap-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'AsapFuente';
    src: url('/Fonts/Asap-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}


:root {
    --bs-font-sans-serif: 'AsapFuente', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.vg-wrap {
    background: #fff;
    color: #1a1a1a;
    overflow-x: hidden;
}

.vg-hero {
    background: #0060A8;
    padding: 16px 36px 48px;
    position: relative;
    overflow: hidden;
}

.vg-hero-deco {
    position: absolute;
    right: -60px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #40B4E5;
    opacity: 0.18;
}

.vg-hero-deco2 {
    position: absolute;
    right: 60px;
    bottom: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.07;
}

.vg-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height:80px;
}


.vg-hero h1 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    position: relative;
}

.vg-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    font-weight: 400;
    max-width: 460px;
    line-height: 1.7;
    margin: 0 0 32px;
    position: relative;
    font-style: italic;
}

.vg-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 28px;
    position: relative;
}

.vg-stat {
    flex: 1;
    padding-right: 24px;
    border-right: 1px solid rgba(255,255,255,0.2);
    margin-right: 24px;
}

    .vg-stat:last-child {
        border-right: none;
        margin-right: 0;
    }

.vg-stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.vg-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.vg-valores {
    background: #f4f8fc;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.vg-valor {
    background: #fff;
    border: 1px solid #d0e4f3;
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vg-valor-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #0060A8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .vg-valor-icon svg {
        width: 18px;
        height: 18px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.vg-valor-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0060A8;
    margin: 0 0 2px;
}

.vg-valor-text p {
    font-size: 0.8rem;
    font-style: italic;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.vg-section {
    padding: 36px 36px 8px;
}

.vg-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.vg-section-pill {
    background: #0060A8;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}

.vg-section-line {
    flex: 1;
    height: 1px;
    background: #d0e4f3;
}

.vg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
    padding: 0 36px 40px;
}

.vg-card {
    border: 1px solid #d0e4f3;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s;
    animation: vgFade 0.5s ease both;
    background: #fff;
}

    .vg-card:hover {
        transform: translateY(-3px);
        border-color: #40B4E5;
    }

.vg-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #e8f2fb;
    overflow: hidden;
}

    .vg-thumb iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

.vg-thumb-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #0060A8;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 5px;
}

.vg-body {
    padding: 14px 16px 18px;
}

.vg-tag {
    display: inline-block;
    background: #e6f1fb;
    color: #0060A8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 7px;
}

.vg-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #0a1e35;
    line-height: 1.4;
    margin: 0 0 5px;
}

.vg-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.vg-footer {
    background: #0060A8;
    padding: 0px 2rem 0rem;
}

.vg-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 1rem 3rem;
}

.vg-footer-brand {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.vg-footer-social {
    gap:1rem;
    display: flex;
}

.social-icon {
    color: white;
    display: flex;
}

@media (max-width: 768px) {

    .vg-footer-brand {
        font-size: 0.95rem;
    }

    .vg-footer-social {
        justify-content: center;
    }

    .vg-footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1rem;
        text-align: center;
    }

    .vg-footer-inner > span {
        font-size: 0.8rem;
        order: 3;
    }

    .related-sites {
        justify-content: center;
        order: 2;
        font-size: 0.85rem;
    }

    .vg-footer-social {
        gap: 1rem;
        justify-content: center;
        order: 1;
    }
}


@keyframes vgFade {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.video-description {
    font-size: 0.95rem;
    color: rgb(107, 114, 128);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex-grow: 1;
    margin-bottom: 1rem;
    overflow: hidden;
}

.counter-label {
    font-weight: 400;
    font-style: italic;
}

.related-sites {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

    .related-sites a {
        color: inherit;
        text-decoration: none;
    }

        .related-sites a:hover {
            text-decoration: underline;
        }