/* detalle.css */

.detalle-blog-container {
    background-color: #ffffff;
    padding-top: 40px; 
    padding-bottom: 80px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.blog-featured-img {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.blog-featured-img img {
    width: 100%;
    aspect-ratio: 21 / 9; 
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-featured-img img:hover {
    transform: scale(1.05);
}

.blog-title {
    color: #002d57;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 20px;
}

.blog-category-badge {
    display: inline-block;
    background: #eef2f7;
    color: #ea0202;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-body-text {
    color: #3f3f3f;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 20px;
}

.titulo-interno {
    display: block;        
    color: #002d57;        
    font-size: 1.25rem;    
    font-weight: 700;      
    margin-top: 25px;      
    margin-bottom: 10px;   
    line-height: 1.3;
}

.back-link {
    color: #002d57;
    font-weight: 600;
    transition: color 0.3s;
}

.back-link:hover {
    color: #002d57;
}

.footer-minimal {
    background-color: #002d57; 
    color: #ffffff;
    margin-top: 50px;
}

.social-links a {
    font-size: 1.3rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    color: #e0e0e0 !important; 
    transform: translateY(-3px);
}

.btn-volver-blog {
    background-color: #002d57;
    color: #ffffff;
    border: 2px solid #002d57;
    padding: 10px 24px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 70, 135, 0.15);
}

.btn-volver-blog:hover {
    background-color: #ffffff;
    border: 2px solid #be0303;
    color: #be0303;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(190, 3, 3, 0.15);
}

.btn-volver-blog i {
    transition: transform 0.3s ease;
}

.btn-volver-blog:hover i {
    transform: translateX(-4px);
}