/* Importación de fuentes y estilos base */
@font-face {
    font-family: 'MADE TOMMY';
    src: url('fonts/tommy/MADE\ TOMMY\ Black_PERSONAL\ USE.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'MADE TOMMY';
    src: url('fonts/tommy/MADE\ TOMMY\ Bold_PERSONAL\ USE.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'MADE TOMMY';
    src: url('fonts/tommy/MADE\ TOMMY\ ExtraBold_PERSONAL\ USE.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'MADE TOMMY';
    src: url('fonts/tommy/MADE\ TOMMY\ Light_PERSONAL\ USE.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'MADE TOMMY';
    src: url('fonts/tommy/MADE\ TOMMY\ Medium_PERSONAL\ USE.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MADE TOMMY';
    src: url('fonts/tommy/MADE\ TOMMY\ Regular_PERSONAL\ USE.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'MADE TOMMY';
    src: url('fonts/tommy/MADE\ TOMMY\ Thin_PERSONAL\ USE.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('fonts/Caviar/CaviarDreams.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Paleta de colores de marca */
:root {
    --color-verde: #034B3E;
    --color-cafe: #83572F;
    --color-blanco: #FFFEFC;
    --color-amarillo: #FFD72D;
    --color-gris: #3C3833;
    --bs-primary: #FFD72D;          /* Dorado */
    --bs-secondary: #3C3833;        /* Gris oscuro para el texto principal */
    --bs-accent: #034B3E;           /* Verde oscuro */
    --bs-light: #FFFEFC;            /* Blanco crema */
    --bs-info: #83572F;             /* Usado para texto secundario específico */
}

/* Estilos base */
body {
    font-family: 'Caviar Dreams', sans-serif;
    color: var(--color-gris);
    background: var(--color-blanco);
    font-weight: 400;
    font-style: normal;
}

/* Estilos para títulos y subtítulos */
h1, h2, h3, h4, h5, h6,
.card-title,
.display-4,
.fw-bold,
.blog-title,
.modal-title,
.nav-link,
.btn,
.blog-card .card-title,
.article-content h4 {
    font-family: 'MADE TOMMY', sans-serif;
}

/* Estilos específicos para diferentes pesos de MADE TOMMY */
h1, .display-4, .blog-title {
    font-weight: 800; /* ExtraBold */
}

h2, h3, .card-title, .modal-title {
    font-weight: 700; /* Bold */
}

h4, h5, .lead {
    font-weight: 500; /* Medium */
}

h6, .nav-link, .btn {
    font-weight: 400; /* Regular */
}

h6, .blog-card .card-title {
    font-weight: 400; /* Regular */
}

/* Estilos para textos normales */
p, 
.text-secondary,
.form-label,
.card-text,
.blog-description,
.blog-card .card-text,
.article-content p,
.blog-footer p,
small,
.text-muted {
    font-family: 'Caviar Dreams', sans-serif;
    font-weight: 400; /* Regular */
}

/* Estilos para textos en negrita */
strong, 
b,
.fw-bold {
    font-family: 'Caviar Dreams', sans-serif;
    font-weight: 700; /* Bold */
}

/* Estilos para el nombre de la compañía */
header h1,
footer .fs-4.fw-semibold {
    font-family: 'MADE TOMMY', sans-serif !important;
    font-weight: 700; /* Bold */
}

/* Custom button */
.custom-btn-primary {
    background-color: var(--bs-primary);
    color: var(--bs-secondary); /* color de texto para el botón */
    border-color: var(--bs-primary);
    font-weight: 600;
}

.custom-btn-primary:hover {
    background-color: var(--bs-secondary); /* color de hover para el botón */
    color: var(--bs-light) !important;
    border-color: var(--bs-accent);
}

/* Estilos para el navbar-toggler */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Estilos de navegación */
nav, footer {
    font-family: 'MADE TOMMY', sans-serif;
    font-weight: 400;
}

/* Estilos específicos para la barra de navegación */
.bg-secondary {
    background-color: var(--color-gris) !important;
}

.nav-link {
    color: var(--color-blanco) !important;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-family: 'MADE TOMMY', sans-serif !important;
    font-weight: 400 !important;
}

.nav-link.hover-accent:hover {
    background-color: var(--color-blanco);
    color: var(--color-gris) !important;
    border-radius: 0.25rem;
}

/* Regla específica para el enlace Inicio */
.nav-link[href="index1.html"] {
    font-family: 'MADE TOMMY', sans-serif !important;
    font-weight: 400 !important;
}

/* Estilos para el botón de cambio de idioma */
#btn-cambiar-idioma {
    color: var(--color-gris);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 50px;
}

#btn-cambiar-idioma:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

#btn-cambiar-idioma img {
    width: 24px;
    height: 18px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#btn-cambiar-idioma .mx-2 {
    color: #fff;
    font-weight: 500;
}

/* Estilos específicos para el blog */
.blog-header {
    background: var(--color-amarillo);
    color: var(--color-gris);
    padding: 4rem 0;
    text-align: center;
}

.blog-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.blog-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.search-container {
    margin: 2rem 0;
}

.search-container .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.search-container .form-control {
    border: 2px solid var(--color-gris);
    border-radius: 25px 0 0 25px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: var(--color-blanco);
}

.search-container .form-control:focus {
    border-color: var(--color-verde);
    box-shadow: 0 0 0 0.2rem rgba(3, 75, 62, 0.25);
}

.custom-search-btn {
    background: var(--color-gris);
    border: 2px solid var(--color-gris);
    border-left: none;
    border-radius: 0 25px 25px 0;
    color: var(--color-blanco);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.custom-search-btn:hover {
    background: var(--color-verde);
    border-color: var(--color-verde);
    transform: translateY(-2px);
}

.custom-search-btn .material-icons {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.custom-search-btn:hover .material-icons {
    transform: scale(1.1);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.blog-filters .btn {
    background: var(--color-blanco);
    border: 2px solid var(--color-gris);
    color: var(--color-gris);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.blog-filters .btn:hover {
    background: var(--color-gris);
    color: var(--color-blanco);
    transform: translateY(-2px);
}

.blog-filters .btn .material-icons {
    font-size: 1rem;
    margin-right: 0.5rem;
}

.blog-filters .btn:hover .material-icons {
    transform: scale(1.1);
}

.blog-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    transform: translateY(0);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: var(--color-blanco);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.blog-card .card-img-top {
    height: 224px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .card-img-top {
    transform: scale(1.05);
}

.blog-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.5rem;
}

.blog-card .card-text {
    flex-grow: 1;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--bs-secondary);
    line-height: 1.6;
}

.blog-card .card-title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--bs-secondary);
}

.blog-card .read-more {
    color: var(--bs-primary) !important;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.9rem;
}

.blog-card .read-more:hover {
    gap: 0.75rem;
    color: var(--bs-secondary) !important;
}

.blog-card small {
    color: var(--bs-secondary);
    font-size: 0.85rem;
}

.blog-card .badge {
    background: var(--color-amarillo);
    color: var(--color-gris);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    font-family: 'MADE TOMMY', sans-serif;
    font-weight: 500;
}

.blog-card .bg-secondary {
    background-color: var(--bs-secondary) !important;
    color: var(--bs-light) !important;
}

.blog-footer {
    background: var(--color-gris);
    color: var(--color-blanco);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.blog-footer a {
    color: var(--color-blanco);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-footer a:hover {
    color: var(--color-amarillo);
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.text-accent {
    color: var(--color-verde) !important;
}

.bg-accent {
    background-color: var(--color-amarillo) !important;
}

.badge {
    background-color: var(--color-amarillo);
    color: var(--color-gris);
    font-family: 'MADE TOMMY', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Clases adicionales para coincidir con index1.html */
.bg-primary { background-color: var(--bs-primary) !important; }
.bg-secondary { background-color: var(--bs-secondary) !important; }
.text-primary { color: var(--bs-primary) !important; }
.text-secondary { color: var(--bs-secondary) !important; }
.text-accent { color: var(--bs-secondary) !important; }
.bg-ligth { background-color: var(--bs-light) !important; }

/* Estilos para el buscador */
#searchInput {
    border-radius: 0.375rem 0 0 0.375rem;
    border: 2px solid var(--bs-secondary);
    transition: all 0.3s ease;
}

#searchInput:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 45, 0.25);
}

#searchInput::placeholder {
    color: var(--bs-secondary);
    opacity: 0.7;
}

/* Estilos para el mensaje de no resultados */
#postsContainer .btn-outline-secondary {
    border: 2px solid var(--bs-secondary);
    color: var(--bs-secondary);
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 20px;
}

#postsContainer .btn-outline-secondary:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-light);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(60, 56, 51, 0.2);
}

#clearSearch {
    border-radius: 0 0.375rem 0.375rem 0;
    border: 2px solid var(--bs-secondary);
    border-left: none;
    transition: all 0.3s ease;
}

#clearSearch:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-light);
}

#sortSelect {
    border: 2px solid var(--bs-secondary);
    transition: all 0.3s ease;
}

#sortSelect:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 45, 0.25);
}

#toggleOrder {
    border: 2px solid var(--bs-secondary);
    transition: all 0.3s ease;
    min-width: 45px;
}

#toggleOrder:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-light);
}

#toggleOrder .material-icons {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

#toggleOrder:hover .material-icons {
    transform: scale(1.1);
}

/* Estilos para los filtros de etiquetas */
#tagsContainer {
    min-height: 40px;
    padding: 0.5rem;
    border-radius: 0.375rem;
    background-color: rgba(255, 255, 255, 0.8);
}

#tagsContainer .form-check-inline {
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
}

#tagsContainer .form-check-input {
    border: 2px solid var(--bs-secondary);
    transition: all 0.3s ease;
}

#tagsContainer .form-check-input:checked {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

#tagsContainer .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(60, 56, 51, 0.25);
}

#tagsContainer .form-check-label {
    color: var(--bs-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

#tagsContainer .form-check-input:checked + .form-check-label {
    color: var(--bs-secondary);
    font-weight: 600;
}

/* Estilos para el filtro de etiquetas simple */
.simple-tags-filter {
    border: 1px solid var(--color-gris);
    border-radius: 8px;
    background-color: var(--color-blanco);
    overflow: hidden;
    transition: all 0.3s ease;
}

.simple-tags-filter:hover {
    box-shadow: 0 2px 8px rgba(60, 56, 51, 0.1);
}

.tags-header {
    background-color: var(--color-amarillo);
    color: var(--color-gris);
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tags-header:hover {
    background-color: var(--color-amarillo);
    color: var(--color-gris);
}

.tags-header .material-icons {
    font-size: 18px;
    margin-right: 8px;
    color: var(--color-gris);
}

.tags-header .badge {
    background-color: var(--color-amarillo) !important;
    color: var(--color-gris);
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.tags-content {
    padding: 16px;
    background-color: var(--color-blanco);
    border-top: 1px solid rgba(60, 56, 51, 0.1);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-list .form-check {
    margin: 0;
    background: var(--color-blanco);
    border: 1px solid var(--color-amarillo);
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tags-list .form-check:hover {
    border-color: var(--color-verde);
    background: rgba(3, 75, 62, 0.05);
}

.tags-list .form-check-input {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-amarillo);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.tags-list .form-check-input:checked {
    background-color: var(--color-verde);
    border-color: var(--color-verde);
}

.tags-list .form-check-input:focus {
    box-shadow: 0 0 0 2px rgba(3, 75, 62, 0.2);
}

.tags-list .form-check-label {
    font-family: 'MADE TOMMY', sans-serif;
    font-weight: 500;
    color: var(--color-gris);
    cursor: pointer;
    user-select: none;
    font-size: 0.9rem;
}

.tags-list .form-check-input:checked + .form-check-label {
    color: var(--color-verde);
    font-weight: 600;
}

/* Estilos para el botón de limpiar etiquetas */
.btn-clear-tags {
    background-color: var(--color-verde);
    color: var(--color-blanco);
    border: 1px solid var(--color-verde);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'MADE TOMMY', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-clear-tags:hover {
    background-color: var(--color-gris);
    border-color: var(--color-gris);
    color: var(--color-blanco);
    transform: translateY(-1px);
}

.btn-clear-tags .material-icons {
    font-size: 16px;
}

/* Estilos para los iconos de redes sociales */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-blanco) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    background-color: var(--color-amarillo);
    color: var(--color-gris) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 215, 45, 0.3);
}

.social-link i {
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Responsive para redes sociales */
@media (max-width: 768px) {
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
}

/* Botón volver arriba */
#btn-volver-arriba {
    background-color: var(--bs-secondary);
    border: 3px solid var(--bs-primary);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    display: none;
}

#btn-volver-arriba:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-secondary);
    transform: translateY(-3px);
}

#btn-volver-arriba .material-icons {
    font-size: 24px;
    color: var(--bs-light);
    transition: all 0.3s ease;
}

#btn-volver-arriba:hover .material-icons {
    color: var(--bs-secondary);
}

.tags-grid .form-check {
    margin: 0;
    background: var(--color-blanco);
    border: 2px solid rgba(60, 56, 51, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tags-grid .form-check:hover {
    border-color: var(--color-verde);
    background: rgba(3, 75, 62, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 75, 62, 0.15);
}

.tags-grid .form-check-input {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-gris);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tags-grid .form-check-input:checked {
    background-color: var(--color-verde);
    border-color: var(--color-verde);
    box-shadow: 0 0 0 2px rgba(3, 75, 62, 0.2);
}

.tags-grid .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(3, 75, 62, 0.3);
}

.tags-grid .form-check-label {
    font-family: 'MADE TOMMY', sans-serif;
    font-weight: 500;
    color: var(--color-gris);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.tags-grid .form-check-input:checked + .form-check-label {
    color: var(--color-verde);
    font-weight: 600;
}

#selectAllTags, #clearAllTags {
    border: 2px solid var(--bs-secondary);
    color: var(--bs-secondary);
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
}

#selectAllTags:hover, #clearAllTags:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-light);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(60, 56, 51, 0.2);
}

#selectAllTags .material-icons, #clearAllTags .material-icons {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

#selectAllTags:hover .material-icons, #clearAllTags:hover .material-icons {
    transform: scale(1.1);
}

/* Estilos para los botones de mostrar más/menos */
#loadMoreBtn, #showLessBtn {
    border: 2px solid var(--bs-secondary);
    color: var(--bs-secondary);
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
}

#loadMoreBtn:hover, #showLessBtn:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(60, 56, 51, 0.3);
}

#loadMoreBtn .material-icons, #showLessBtn .material-icons {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

#loadMoreBtn:hover .material-icons, #showLessBtn:hover .material-icons {
    transform: scale(1.1);
}

.pagination {
    justify-content: center;
    margin-top: 2rem;
}

.pagination .page-link {
    color: var(--color-gris);
    border: 1px solid var(--color-amarillo);
    margin: 0 0.25rem;
}

.pagination .page-item.active .page-link {
    background-color: var(--color-gris);
    border-color: var(--color-gris);
    color: var(--color-blanco);
}

#btn-volver-arriba {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--bs-secondary);
    color: var(--bs-light);
    border: 3px solid var(--bs-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

#btn-volver-arriba:hover {
    background: var(--bs-primary);
    color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

#btn-volver-arriba:hover .material-icons {
    transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Breakpoint para móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
    .blog-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .blog-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .search-container {
        margin: 1.5rem 0;
        padding: 0 1rem;
    }
    
    .search-container .form-control {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .blog-filters {
        gap: 0.5rem;
        margin: 1.5rem 0;
        padding: 0 1rem;
    }
    
    .blog-filters .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .blog-card .card-body {
        padding: 1rem;
    }
    
    .blog-card .card-title {
        font-size: 1rem;
        color: var(--color-verde);
    }
    
    .blog-card .card-text {
        font-size: 0.85rem;
    }

    #btn-volver-arriba {
        width: 3rem;
        height: 3rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
    
    .blog-card {
        margin-bottom: 1rem;
    }
    
    /* Estilos para el footer en móviles */
    .blog-footer .mb-4.fs-5 {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .blog-footer .mb-4.fs-5 .mx-3 {
        display: none;
    }
    
    .blog-footer .mb-4.fs-5 a {
        display: block;
        text-align: center;
        word-break: break-all;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .btn-sm {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .material-icons {
        font-size: 1.1rem;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .blog-header {
        padding: 2rem 0;
    }
    
    .search-container .form-control {
        border-radius: 20px 0 0 20px;
    }
    
    .custom-search-btn {
        border-radius: 0 20px 20px 0;
        padding: 0.6rem 1rem;
    }
    
    .blog-filters .btn {
        border-radius: 20px;
    }
    
    .post-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .post-content h1 { font-size: 1.5rem; }
    .post-content h2 { font-size: 1.3rem; }
    .post-content h3 { font-size: 1.1rem; }
    .post-content h4 { font-size: 1rem; }
    .post-content h5 { font-size: 0.95rem; }
    .post-content h6 { font-size: 0.9rem; }
    
    .post-content img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        margin: 1rem auto !important;
        display: block !important;
    }
    
    .post-content .video-embed iframe {
        width: 100%;
        height: 200px;
        border-radius: 8px;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 0.75rem 1rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-control,
    .form-select {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Breakpoint para móviles medianos (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .blog-title {
        font-size: 2.25rem;
    }
    
    .blog-description {
        font-size: 1.1rem;
    }
    
    .search-container {
        margin: 2rem 0;
    }
    
    .blog-filters {
        gap: 0.75rem;
        margin: 2rem 0;
    }
    
    .blog-filters .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .blog-card .card-body {
        padding: 1.25rem;
    }
    
    .blog-card .card-title {
        font-size: 1.15rem;
        color: var(--color-verde);
    }
    
    .blog-card .card-text {
        font-size: 0.9rem;
    }
    
    #btn-volver-arriba {
        width: 3.25rem;
        height: 3.25rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .navbar-toggler {
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        width: 1.25em;
        height: 1.25em;
    }
    
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    /* Estilos para el footer en tablets */
    .blog-footer .mb-4.fs-5 {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .blog-footer .mb-4.fs-5 .mx-3 {
        display: none;
    }
    
    .blog-footer .mb-4.fs-5 a {
        display: block;
        text-align: center;
        word-break: break-all;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-sm {
        font-size: 0.85rem;
        padding: 0.375rem 0.75rem;
    }
    
    .material-icons {
        font-size: 1.2rem;
    }
    
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.75rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2.5rem !important;
    }
    
    .blog-header {
        padding: 2.5rem 0;
    }
    
    .search-container .form-control {
        border-radius: 22px 0 0 22px;
        padding: 0.7rem 1.25rem;
    }
    
    .custom-search-btn {
        border-radius: 0 22px 22px 0;
        padding: 0.7rem 1.25rem;
    }
    
    .blog-filters .btn {
        border-radius: 22px;
    }
    
    .post-content {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    
    .post-content h1 { font-size: 1.75rem; }
    .post-content h2 { font-size: 1.5rem; }
    .post-content h3 { font-size: 1.25rem; }
    .post-content h4 { font-size: 1.1rem; }
    .post-content h5 { font-size: 1rem; }
    .post-content h6 { font-size: 0.95rem; }
    
    .post-content img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 10px !important;
        box-shadow: 0 3px 12px rgba(0,0,0,0.1) !important;
        margin: 1.25rem auto !important;
        display: block !important;
    }
    
    .post-content .video-embed iframe {
        width: 100%;
        height: 250px;
        border-radius: 10px;
    }
    
    .modal-body {
        padding: 1.25rem;
    }
    
    .modal-footer {
        padding: 1rem 1.25rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .form-control,
    .form-select {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
}

/* Breakpoint para tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .blog-title {
        font-size: 2.75rem;
    }
    
    .blog-description {
        font-size: 1.2rem;
    }
    
    .search-container {
        margin: 2.5rem 0;
    }
    
    .blog-filters {
        gap: 1rem;
        margin: 2.5rem 0;
    }
    
    .blog-filters .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }
    
    .blog-card .card-body {
        padding: 1.5rem;
    }
    
    .blog-card .card-title {
        font-size: 1.25rem;
        color: var(--color-verde);
    }
    
    .blog-card .card-text {
        font-size: 0.95rem;
    }
    
    #btn-volver-arriba {
        width: 3.5rem;
        height: 3.5rem;
        bottom: 2rem;
        right: 2rem;
    }
    
    .navbar-toggler {
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        width: 1.3em;
        height: 1.3em;
    }
    
    .blog-card {
        margin-bottom: 2rem;
    }
    
    /* Estilos para el footer en tablets grandes */
    .blog-footer .mb-4.fs-5 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .blog-footer .mb-4.fs-5 .mx-3 {
        display: inline;
    }
    
    .blog-footer .mb-4.fs-5 a {
        display: inline;
        word-break: break-word;
    }
    
    .btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.25rem;
    }
    
    .btn-sm {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .material-icons {
        font-size: 1.3rem;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .mb-4 {
        margin-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 3rem !important;
    }
    
    .blog-header {
        padding: 3rem 0;
    }
    
    .search-container .form-control {
        border-radius: 25px 0 0 25px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .custom-search-btn {
        border-radius: 0 25px 25px 0;
        padding: 0.8rem 1.5rem;
    }
    
    .blog-filters .btn {
        border-radius: 25px;
    }
    
    .post-content {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .post-content h1 { font-size: 2rem; }
    .post-content h2 { font-size: 1.75rem; }
    .post-content h3 { font-size: 1.5rem; }
    .post-content h4 { font-size: 1.25rem; }
    .post-content h5 { font-size: 1.1rem; }
    .post-content h6 { font-size: 1rem; }
    
    .post-content img {
        max-width: 90% !important;
        height: auto !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        margin: 1.5rem auto !important;
        display: block !important;
    }
    
    .post-content .video-embed iframe {
        width: 100%;
        height: 300px;
        border-radius: 12px;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 1.25rem 1.5rem;
    }
    
    .form-label {
        font-size: 1rem;
    }
    
    .form-control,
    .form-select {
        font-size: 1rem;
        padding: 0.7rem 1.25rem;
    }
}

/* Breakpoint para desktop (1025px y superior) */
@media (min-width: 1025px) {
    .blog-title {
        font-size: 3.5rem;
    }
    
    .blog-description {
        font-size: 1.25rem;
    }
    
    .search-container {
        margin: 3rem 0;
    }
    
    .blog-filters {
        gap: 1.25rem;
        margin: 3rem 0;
    }
    
    .blog-filters .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .blog-card .card-body {
        padding: 1.75rem;
    }
    
    .blog-card .card-title {
        font-size: 1.3rem;
        color: var(--color-verde);
    }
    
    .blog-card .card-text {
        font-size: 1rem;
    }
    
    #btn-volver-arriba {
        width: 4rem;
        height: 4rem;
        bottom: 2.5rem;
        right: 2.5rem;
    }
    
    .navbar-toggler {
        padding: 0.6rem 1.25rem;
        font-size: 1.2rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        width: 1.4em;
        height: 1.4em;
    }
    
    .blog-card {
        margin-bottom: 2.5rem;
    }
    
    /* Estilos para el footer en desktop */
    .blog-footer .mb-4.fs-5 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    
    .blog-footer .mb-4.fs-5 .mx-3 {
        display: inline;
    }
    
    .blog-footer .mb-4.fs-5 a {
        display: inline;
        word-break: break-word;
    }
    
    .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .btn-sm {
        font-size: 0.95rem;
        padding: 0.6rem 1.25rem;
    }
    
    .material-icons {
        font-size: 1.4rem;
    }
    
    .py-5 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .mb-4 {
        margin-bottom: 2.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 4rem !important;
    }
    
    .blog-header {
        padding: 4rem 0;
    }
    
    .search-container .form-control {
        border-radius: 30px 0 0 30px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .custom-search-btn {
        border-radius: 0 30px 30px 0;
        padding: 1rem 2rem;
    }
    
    .blog-filters .btn {
        border-radius: 30px;
    }
    
    .post-content {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .post-content h1 { font-size: 2.5rem; }
    .post-content h2 { font-size: 2rem; }
    .post-content h3 { font-size: 1.75rem; }
    .post-content h4 { font-size: 1.5rem; }
    .post-content h5 { font-size: 1.25rem; }
    .post-content h6 { font-size: 1.1rem; }
    
    .post-content img {
        max-width: 80% !important;
        height: auto !important;
        border-radius: 15px !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
        margin: 2rem auto !important;
        display: block !important;
    }
    
    .post-content .video-embed iframe {
        width: 100%;
        height: 400px;
        border-radius: 15px;
    }
    
    .modal-body {
        padding: 2rem;
    }
    
    .modal-footer {
        padding: 1.5rem 2rem;
    }
    
    .form-label {
        font-size: 1.1rem;
    }
    
    .form-control,
    .form-select {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* ===== ANIMACIONES Y EFECTOS ===== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeIn 0.6s ease-out;
}

/* ===== MODALES RESPONSIVOS ===== */

.modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(60,56,51,0.15);
}

.modal-header {
    border-bottom: 2px solid var(--bs-primary);
    background-color: var(--bs-accent);
    color: var(--bs-light);
    border-radius: 1rem 1rem 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-title {
    font-family: 'MADE TOMMY', sans-serif;
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 2px solid var(--bs-primary);
    padding: 1rem 2rem;
}

.modal-footer .btn-secondary {
    background-color: var(--bs-secondary);
    border: none;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.modal-footer .btn-secondary:hover {
    background-color: var(--bs-accent);
    transform: translateY(-2px);
}

/* Estilos para botones dentro del modal body */
.modal-body .btn-secondary {
    background-color: var(--bs-secondary);
    border: none;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.modal-body .btn-secondary:hover {
    background-color: var(--bs-accent);
    transform: translateY(-2px);
}

/* Estilos para enlaces dentro del modal */
.modal-body a {
    color: var(--bs-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-body a:hover {
    color: var(--bs-accent);
}

/* ===== CONTENIDO DE ARTÍCULOS RESPONSIVO ===== */

.article-content h4 {
    color: var(--color-verde);
    font-family: 'MADE TOMMY', sans-serif;
    font-weight: 700;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.article-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content ul li:before {
    content: "🐝";
    margin-right: 0.5rem;
    color: var(--color-amarillo);
}

/* ===== ANIMACIONES DE MODALES ===== */

.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* ===== BOTÓN CARGAR MÁS ===== */

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    background: var(--color-gris);
    color: var(--color-blanco);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-load-more:hover {
    background: var(--color-verde);
    color: var(--color-blanco);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-load-more:hover .material-icons {
    transform: rotate(180deg);
}

.btn-load-more .material-icons {
    transition: transform 0.3s ease;
}

/* ===== ICONOS MATERIAL ===== */

.material-icons {
    font-size: 1.25rem;
    vertical-align: middle;
}

/* ===== CONTENIDO DE POSTS RESPONSIVO ===== */

/* Estilos estandarizados para imágenes de posts */
.post-image-standard {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.post-image-standard:hover {
    transform: scale(1.02);
}

/* Tamaños estandarizados por dispositivo */
@media (max-width: 480px) {
    .post-image-standard {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .post-image-standard {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .post-image-standard {
        max-width: 90%;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
}

@media (min-width: 1025px) {
    .post-image-standard {
        max-width: 80%;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
}

/* ===== ESTILOS DE IMÁGENES RESPONSIVOS ===== */

/* Definición global para todas las imágenes del contenido */
.post-content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.post-content img:hover {
    transform: scale(1.02);
}

.post-content .ratio {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.post-content .ratio:hover {
    transform: scale(1.02);
}

.post-content .ratio iframe {
    border-radius: 12px;
}

/* Mobile */
@media (max-width: 480px) {
    .post-content img {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .post-content .ratio {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        margin-top: 1rem;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .post-content .ratio iframe {
        border-radius: 8px;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 1024px) {
    .post-content img {
        max-width: 95%;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .post-content .ratio {
        max-width: 95%;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .post-content .ratio iframe {
        border-radius: 12px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .post-content img {
        max-width: 90%;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .post-content .ratio {
        max-width: 90%;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        margin-top: 2rem;
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .post-content .ratio iframe {
        border-radius: 15px;
    }
}

.post-content .image-style-alignLeft {
    float: left;
    margin: 0 1.5rem 1rem 0;
    max-width: 40%;
}

.post-content .image-style-alignRight {
    float: right;
    margin: 0 0 1rem 1.5rem;
    max-width: 40%;
}

.post-content .image-style-alignCenter {
    display: block;
    margin: 1.5rem auto;
    text-align: center;
}

.post-content .image-style-side {
    float: left;
    margin: 0 1.5rem 1rem 0;
    max-width: 30%;
}

.post-content::after {
    content: "";
    display: table;
    clear: both;
}

/* ===== CONTENIDO DE ARTÍCULOS MEJORADO ===== */

.post-content {
    line-height: 1.8;
    color: var(--color-gris);
    font-size: 1.1rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: var(--color-verde);
    font-family: 'MADE TOMMY', sans-serif;
    margin: 2rem 0 1rem;
    line-height: 1.3;
    text-align: center;
}

.post-content h1 { font-size: 2.5rem; }
.post-content h2 { font-size: 2rem; }
.post-content h3 { font-size: 1.75rem; }
.post-content h4 { font-size: 1.5rem; }
.post-content h5 { font-size: 1.25rem; }
.post-content h6 { font-size: 1.1rem; }

.post-content p {
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.8;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem auto;
    padding-left: 2rem;
    max-width: 900px;
    text-align: left;
}

.post-content li {
    margin-bottom: 0.75rem;
}

.post-content blockquote {
    border-left: 4px solid var(--color-amarillo);
    padding: 1rem 1.5rem;
    margin: 2rem auto;
    background: rgba(255, 215, 45, 0.1);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--color-gris);
    max-width: 900px;
    text-align: left;
}

.post-content a {
    color: var(--color-verde);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: var(--color-gris);
    border-bottom-color: var(--color-gris);
}

.post-content strong {
    font-weight: 700;
    color: var(--color-gris);
}

.post-content em {
    font-style: italic;
    color: var(--color-cafe);
}

.post-content code {
    background: var(--color-gris);
    color: var(--color-blanco);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.post-content pre {
    background: var(--color-gris);
    color: var(--color-blanco);
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.post-content .horizontal-line {
    border: none;
    height: 2px;
    background: linear-gradient(to right, var(--color-amarillo), var(--color-verde));
    margin: 2rem 0;
    border-radius: 1px;
}

/* ===== RESPONSIVE PARA CONTENIDO DE POSTS ===== */

@media (max-width: 768px) {
    .post-content {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 15px;
        max-width: 95%;
    }
    
    .post-content h1 { font-size: 1.75rem; }
    .post-content h2 { font-size: 1.5rem; }
    .post-content h3 { font-size: 1.25rem; }
    .post-content h4 { font-size: 1.1rem; }
    .post-content h5 { font-size: 1rem; }
    .post-content h6 { font-size: 0.95rem; }
    
    .post-content .image-style-side {
        float: none;
        max-width: 100%;
        margin: 1rem 0;
    }
    
    .post-content ul,
    .post-content ol {
        padding-left: 1.5rem;
        max-width: 100%;
    }
    
    .post-content blockquote {
        padding: 0.75rem 1rem;
        margin: 1.5rem auto;
        max-width: 100%;
    }
    
    .post-content pre {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .post-content {
        font-size: 1.05rem;
        line-height: 1.7;
        max-width: 1100px;
    }
    
    .post-content h1 { font-size: 2rem; }
    .post-content h2 { font-size: 1.75rem; }
    .post-content h3 { font-size: 1.5rem; }
    .post-content h4 { font-size: 1.25rem; }
    .post-content h5 { font-size: 1.1rem; }
    .post-content h6 { font-size: 1rem; }
    
    .post-content .image-style-side {
        max-width: 35%;
    }
}

@media (min-width: 1025px) {
    .post-content {
        font-size: 1.1rem;
        line-height: 1.8;
        max-width: 1200px;
    }
    
    .post-content h1 { font-size: 2.5rem; }
    .post-content h2 { font-size: 2rem; }
    .post-content h3 { font-size: 1.75rem; }
    .post-content h4 { font-size: 1.5rem; }
    .post-content h5 { font-size: 1.25rem; }
    .post-content h6 { font-size: 1.1rem; }
    
    .post-content .image-style-side {
        max-width: 30%;
    }
} 
