       body {
            background-color: #1a1a1a;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
       #blog {
            padding: 40px 0;
        }

        .titulo {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            display: inline-block;
            border-bottom: 3px solid #ffaa00;
            padding-bottom: 10px;
        }

        /* Estilos de las tarjetas */
        .cardBlog {
            position: relative;
            display: block;
            height: 350px;
            border-radius: 15px;
            overflow: hidden;
            text-decoration: none;
            color: white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            margin-bottom: 20px; /* Espaciado entre filas */
        }

        .cardBlog:hover {
            transform: scale(1.02);
        }

        /* Imagen que ocupa toda la tarjeta */
        .imgBlog {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Cubre el área sin distorsión */
            z-index: 1;
        }

        /* Overlay que oscurece la imagen al hacer hover */
        .cardBlog::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0);
            transition: background 0.3s ease;
            z-index: 2;
        }

        .cardBlog:hover::before {
            background: rgba(0, 0, 0, 0.6); /* Oscurece la imagen */
        }

        /* Contenedor del texto superpuesto */
        .cardTitulo, .cardInfo {
            position: absolute;
            left: 0;
            right: 0;
            z-index: 3;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            transition: all 0.3s ease;
        }

        .cardTitulo {
            bottom: 0;
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            transform: translateY(0);
        }

        .cardInfo {
            bottom: 0;
            transform: translateY(100%); /* Oculto inicialmente */
            opacity: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.5));
            padding-top: 30px;
        }

        .cardBlog:hover .cardTitulo {
            transform: translateY(-80px); /* Se desplaza hacia arriba para dejar espacio a cardInfo */
        }

        .cardBlog:hover .cardInfo {
            transform: translateY(0);
            opacity: 1;
        }

        /* Estilos del texto dentro de cardInfo */
        .cardInfo p {
            margin: 0 0 10px 0;
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .cardInfo p b {
            color: #ffaa00;
            font-size: 1.2rem;
        }

        .cardInfo p[style*="color:yellow"] {
            color: #ffaa00 !important;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cardInfo p[style*="color:grey"] {
            color: #ccc !important;
            font-size: 0.9rem;
        }

        /* Efecto hover adicional para el texto exclamativo */
        .cardBlog:hover .cardInfo p[style*="color:yellow"] {
            color: #ffdd44 !important;
            text-shadow: 0 0 10px rgba(255, 221, 68, 0.5);
        }

        /* Responsive: ajustes para móviles */
        @media (max-width: 768px) {
            .cardBlog {
                height: 300px;
            }
        }
        
        
        
        /* Estilo del botón de búsqueda y caja de texto */
        /* Contenedor tipo Tarjeta */
.search-card {
    background: rgba(255, 255, 255, 0.05); /* Efecto cristalizado */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 0, 0.2); /* Borde sutil amarillo */
    padding: 15px;
    border-radius: 50px; /* Bordes muy redondeados */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.search-card:hover {
    border-color: rgba(255, 255, 0, 0.6);
    box-shadow: 0 10px 40px rgba(255, 255, 0, 0.1);
}

/* Caja de búsqueda interna */
.search-box {
    display: flex;
    align-items: center;
    background: transparent;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 25px;
    color: #fff;
    font-size: 1.1rem;
}

.search-box input::placeholder {
    color: #888;
    font-style: italic;
}

/* Botón Estilo Premium */
#btn-buscar {
    background: #ffc107; /* Amarillo vibrante */
    color: #000;
    border: none;
    padding: 12px 35px;
    border-radius: 40px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

#btn-buscar:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

#btn-buscar:active {
    transform: scale(0.95);
}

.search-card {
    max-width: 800px; /* Ajusta el ancho máximo a tu gusto */
    margin: 0 auto;   /* ESTA LÍNEA centra el elemento horizontalmente */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 0, 0.2);
    padding: 8px 15px; /* Reduje el padding para que se vea más estilizado como en tu foto */
    border-radius: 50px;
    display: flex;     /* Asegura que el contenido interno sea flexible */
}

.search-box {
    display: flex;
    width: 100%;
    align-items: center;
}

.search-box input {
    flex: 1; /* Esto hace que el input ocupe todo el espacio y centre visualmente el buscador */
    border: none;
    background: transparent;
    color: white;
    padding-left: 20px;
}




/** MEDALLOM*/
/* Contenedor principal del medallón */
.seal-premium {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 85px;
    height: 85px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.6));
    transform: rotate(-5deg);
    transition: all 0.4s ease;
}

/* El efecto dentado (Zig-Zag) */
.seal-teeth {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #d4af37; /* Oro base */
    clip-path: polygon(50% 0%, 55% 10%, 65% 5%, 68% 15%, 78% 12%, 78% 23%, 88% 23%, 85% 33%, 94% 36%, 88% 45%, 96% 51%, 88% 57%, 94% 66%, 84% 68%, 87% 78%, 77% 78%, 77% 88%, 67% 84%, 63% 94%, 54% 87%, 46% 94%, 40% 85%, 31% 91%, 26% 81%, 16% 83%, 17% 73%, 7% 70%, 14% 62%, 5% 54%, 13% 47%, 7% 38%, 17% 36%, 15% 26%, 25% 26%, 26% 15%, 36% 18%, 41% 8%);
    background: linear-gradient(135deg, #f9e17d 0%, #d4af37 40%, #b58b10 100%);
}

/* Borde dorado circular */
.seal-gold-border {
    position: relative;
    width: 82%;
    height: 82%;
    background: linear-gradient(135deg, #f9e17d 0%, #d4af37 50%, #8a6d3b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

/* Centro rojo granate con brillo */
.seal-inner-red {
    width: 88%;
    height: 88%;
    background: radial-gradient(circle, #8b0000 0%, #4b0000 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #f9e17d;
    font-family: 'Arial Narrow', sans-serif;
}

.seal-top-text { font-size: 7px; letter-spacing: 1px; font-weight: bold; }
.seal-center-val { font-size: 18px; font-weight: 900; line-height: 1; color: #fff; text-shadow: 1px 1px 2px #000; }
.seal-bottom-text { font-size: 8px; font-weight: bold; margin-top: -2px; }

/* Animación al pasar el mouse */
.cardBlog:hover .seal-premium {
    transform: scale(1.15) rotate(0deg);
}
/** FIN MEDALLOM*/


/* Efecto al pasar el mouse por la tarjeta */
.cardBlog:hover .human-content-badge {
    background: #ffc107;
    color: #000;
    transition: all 0.3s ease;
}
