/* =======================================
   BLOG COMING SOON - Velocity Detail
======================================= */

.blog-coming {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    overflow: hidden;
}

/* Overlay sutil */

.blog-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(233, 2, 30, 0.08), transparent 70%);
    pointer-events: none;
}

/* Contenedor */

.blog-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    color: #ffffff;
}

/* Logo */

.blog-logo-wrapper {
    margin-bottom: 40px;
}

.blog-logo {
    width: 180px;
    max-width: 100%;
}

/* Subtítulo */

.blog-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
}

/* Título principal */

.blog-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

.blog-title span {
    color: #E9021E;
}

/* Texto */

.blog-text {
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #cfcfcf;
}

/* Divider */

.blog-divider {
    width: 60px;
    height: 3px;
    background: #E9021E;
    margin: 40px auto;
    border-radius: 2px;
}

/* Nota inferior */

.blog-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 35px;
}

/* Botón */

.blog-button {
    display: inline-block;
    padding: 14px 35px;
    background: #E9021E;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.blog-button:hover {
    background: #c70118;
    color: #ffffff !important;
    transform: translateY(-3px);
}

.blog-button:visited,
.blog-button:active,
.blog-button:focus {
    color: #ffffff !important;
}


/* Responsive */

@media (max-width: 768px) {

    .blog-title {
        font-size: 32px;
    }

    .blog-text {
        font-size: 15px;
    }

    .blog-logo {
        width: 140px;
    }
}

/* Sistema de blogs  */
.vd-blog-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    color: #ffffff;
}

.vd-blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */

.vd-blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.vd-blog-label {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 15px;
}

.vd-blog-title {
    font-size: 48px;
    font-weight: 800;
}

.vd-blog-title span {
    color: #E9021E;
}

.vd-blog-intro {
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #aaaaaa;
    font-size: 17px;
    line-height: 1.8;
}

/* FILTROS */

.vd-blog-filters {
    margin-top: 40px;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.vd-filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: #aaa;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
}

.vd-filter-btn:hover {
    border-color: #E9021E;
    color: #ffffff;
}

.vd-filter-btn.active {
    background: #E9021E;
    border-color: #E9021E;
    color: #ffffff;
}

/* GRID */

.vd-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* CARD */

.vd-blog-card {
    background: #161616;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #252525;
    transition: all 0.4s ease;
}

.vd-blog-card:hover {
    transform: translateY(-8px);
    border-color: #E9021E;
    box-shadow: 0 12px 30px rgba(233, 2, 30, 0.2);
}

.vd-blog-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vd-blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.vd-blog-content {
    padding: 25px;
}

.vd-blog-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vd-post-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.3;
}

.vd-post-text {
    font-size: 16px;
    line-height: 1.8;
    color: #dcdcdc;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* FOOTER */

.vd-blog-footer {
    text-align: center;
    margin-top: 80px;
}

.vd-blog-button {
    display: inline-block;
    padding: 15px 35px;
    background: #E9021E;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.vd-blog-button:hover {
    background: #c70118;
    transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .vd-blog-title {
        font-size: 32px;
    }

    .vd-blog-grid {
        gap: 30px;
    }

    .vd-post-title {
        font-size: 22px;
    }
}

.vd-blog-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.vd-blog-card.visible {
    opacity: 1;
    transform: translateY(0);
}

