/* ===== SECCIÓN INTEGRADA (ESTILO BLOG PREMIUM) ===== */
.kb-intro-section {
    position: relative;
    padding: 120px 0 30px;
    background-color: #1d468d;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.panel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    /* Ajustado al punto dulce visual */
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Efectos de fondo heredados */
.kb-bg-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.kb-ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.04;
    will-change: transform;
}

.kb-blob-1 {
    width: 450px;
    height: 450px;
    background: #2d4f95;
    top: -10%;
    left: -5%;
}

.kb-blob-2 {
    width: 350px;
    height: 350px;
    background: #d01341;
    bottom: -10%;
    right: 5%;
}

.kb-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Cpath fill='%232d4f95' fill-opacity='0.025' d='M1 5h1v1H1V5zm3-3h1v1H4V2z'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.85;
}

.kb-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* ===== GRID ESTILO HERO (DOS COLUMNAS ASIMÉTRICAS) ===== */
.kb-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Proporción asimétrica elegante */
    gap: 60px;
    align-items: start;
    opacity: 0;
    transform: translateY(20px);
    animation: kbFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes kbFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== COLUMNA IZQUIERDA ===== */
.kb-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.kb-overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #b7bac1;
    margin-bottom: 24px;
}

.kb-overline-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d01341;
    position: relative;
}

.kb-overline-dot::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #d01341;
    animation: kbRadar 2s infinite ease-out;
}

@keyframes kbRadar {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.kb-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 53px);
    /* Título ultra impacto como el "You thirsty?" */
    font-weight: 500;
    line-height: .85;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.kb-title em {
    font-style: italic;
    font-weight: 400;
    /* Color dorado premium del blog anterior */
    background: #d1173c;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== COLUMNA DERECHA ===== */
.kb-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.kb-subtitle {
    font-size: 15px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 35px;
}

/* Tu barra de estadísticas flotante adaptada al ancho */
.kb-stat-bar {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    border: 1px solid rgba(45, 79, 149, 0.08);
    border-radius: 100px;
    padding: 12px 28px;
    box-shadow: 0 12px 30px -14px rgba(45, 79, 149, 0.12);
    margin-bottom: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kb-stat-bar:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(208, 19, 65, 0.15);
}

.kb-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.kb-count,
.kb-stat-static {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a1b36;
}

.kb-stat-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}

.kb-stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(226, 232, 240, 1);
}

/* Botón de acción estilo Blog Goldenrod de alta gama */
.kb-btn-explore {
    background-color: #b4935a;
    /* Tu color dorado */
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: white;
    border-radius: 12px;
    padding: 16px 32px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(180, 147, 90, 0.15);
}

.kb-btn-explore:hover {
    background-color: #d01341;
    /* Transiciona al rojo quirúrgico interactivo */
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(208, 19, 65, 0.25);
}

/* ===== COMPORTAMIENTO RESPONSIVO ===== */
@media (max-width: 992px) {
    .kb-hero-grid {
        grid-template-columns: 1fr;
        /* Colapsa a una sola columna en pantallas medianas/móviles */
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .kb-intro-section {
        padding: 80px 0 60px;
    }

    .kb-container {
        padding: 0 24px;
    }

    .kb-title {
        font-size: 28px;
    }

    .kb-stat-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        border-radius: 16px;
        width: 100%;
        padding: 20px;
    }

    .kb-stat-divider {
        width: 100%;
        height: 1px;
    }
}