/* ============================================
   DDATA Blog — Main Stylesheet
   Replicates design system from ddata.com.ar
   ============================================ */

/* --- Design Tokens (from Brand Manual) --- */
:root {
    --bg-dark: #0D1B14;
    --bg-dark-2: #0A1410;
    --accent-green: #1FE9B6;
    --accent-blue: #5856FF;
    --accent-cyan: #00D9FF;
    --text-main: #ffffff;
    --text-muted: #B3B3B3;
    --danger: #FF5555;
    --warning: #FF9500;
    --glass-bg: rgba(15, 25, 20, 0.3);
    --glass-border: rgba(31, 233, 182, 0.2);
    --card-bg: rgba(13, 24, 20, 0.5);
    --btn-bg: #0D4C3A;
    --site-footer-gap: clamp(18px, 3vh, 34px);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
}

a:hover {
    opacity: 0.85;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-green { color: var(--accent-green); }
.text-muted { color: var(--text-muted); }
.text-white { color: #fff; }
.text-sm { font-size: 0.9rem; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-15 { margin-bottom: 15px; }
.mb-25 { margin-bottom: 25px; }
.mt-20 { margin-top: 20px; }
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Navbar (replica from main site) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(13, 27, 20, 0.95), transparent);
    backdrop-filter: blur(2px);
}

.logo img {
    height: 50px;
    width: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(31, 233, 182, 0.3));
}

.logo {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 20px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid transparent;
    background: linear-gradient(rgba(13, 27, 20, 0.8), rgba(13, 27, 20, 0.8)) padding-box,
                linear-gradient(135deg, #bddd81, #3ab9a1) border-box;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
    color: var(--accent-green);
    opacity: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-register-nav {
    padding: 8px 18px;
    border: 2px solid transparent;
    background: var(--btn-bg);
    background-image: linear-gradient(var(--btn-bg), var(--btn-bg)), linear-gradient(135deg, #bddd81, #3ab9a1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-register-nav:hover {
    box-shadow: 0 0 15px rgba(31, 233, 182, 0.4);
    transform: translateY(-1px);
}

.btn-portal {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(13, 27, 20, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-portal:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-2px);
    background: rgba(31, 233, 182, 0.05);
}

/* Language toggle */
.lang-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(13, 27, 20, 0.8);
    border: 1px solid rgba(31, 233, 182, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #fff;
}

.lang-toggle-btn:hover {
    border-color: var(--accent-green);
    box-shadow: 0 0 15px rgba(31, 233, 182, 0.3);
    transform: scale(1.05);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(13, 27, 20, 0.98);
    border: 1px solid rgba(31, 233, 182, 0.3);
    border-radius: 12px;
    overflow: hidden;
    min-width: 140px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.lang-dropdown.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.lang-option:hover {
    background: rgba(31, 233, 182, 0.1);
}

.lang-option.active {
    background: rgba(31, 233, 182, 0.2);
    color: var(--accent-green);
}

/* --- Hero Slider --- */
.blog-hero-section {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-top: 80px;
}

.blog-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 27, 20, 0.3) 0%, rgba(13, 27, 20, 0.7) 70%, var(--bg-dark) 100%);
    z-index: 1;
    pointer-events: none;
}

.blog-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.blog-slide.active {
    opacity: 1;
    z-index: 1;
}

.blog-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 8s ease-out;
}

.blog-slide.active .blog-slide-bg {
    transform: scale(1);
}

.blog-slide-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.blog-hero-role {
    display: inline-block;
    padding: 6px 16px;
    position: relative;
    background: linear-gradient(135deg, #bddd81, #3ab9a1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-hero-role::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #bddd81, #3ab9a1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.blog-slide-content h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.blog-slide-content h1 .text-green {
    color: var(--accent-green) !important;
    -webkit-text-fill-color: var(--accent-green) !important;
}

.blog-slide-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 650px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Slide animations */
.blog-slide .blog-hero-role,
.blog-slide .blog-slide-content h1,
.blog-slide .blog-slide-content p {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.blog-slide.active .blog-hero-role {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.blog-slide.active .blog-slide-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.blog-slide.active .blog-slide-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.blog-slide:not(.active) .blog-hero-role,
.blog-slide:not(.active) .blog-slide-content h1,
.blog-slide:not(.active) .blog-slide-content p {
    transition: all 0.3s ease-in;
    transform: translateY(-15px);
}

/* Slider Dots */
.blog-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.blog-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.blog-slider-dot:hover {
    border-color: var(--accent-green);
    background: rgba(31, 233, 182, 0.3);
}

.blog-slider-dot.active {
    background: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 8px rgba(31, 233, 182, 0.5);
    transform: scale(1.2);
}

/* --- Blog Layout --- */
.blog-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 60px;
    flex: 1;
}

.blog-hero-text {
    text-align: center;
    padding: 20px 0 40px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 40px;
}

.blog-main-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-main-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 25px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* (Blog hero section moved above blog-wrapper) */

/* --- Search Bar --- */
.blog-search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.blog-search input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.blog-search input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(31, 233, 182, 0.1);
}

.blog-search input::placeholder {
    color: var(--text-muted);
}

.blog-search i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-green);
    font-size: 1rem;
    z-index: 1;
}

/* --- Featured Post Card --- */
.featured-post {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.featured-post__image {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.featured-post__content {
    padding: 30px;
}

.featured-post__badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(31, 233, 182, 0.15);
    color: var(--accent-green);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.featured-post__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-post__title a {
    color: var(--text-main);
}

.featured-post__title a:hover {
    color: var(--accent-green);
}

.featured-post__excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.featured-post__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.featured-post__meta img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- Category Pills --- */
.category-pill {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.category-pill:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    background: rgba(31, 233, 182, 0.05);
}

.category-pill.active {
    background: var(--accent-green);
    color: var(--bg-dark);
    border-color: var(--accent-green);
    font-weight: 700;
}

/* --- Post Card Grid --- */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.post-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card__category {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(88, 86, 255, 0.15);
    color: var(--accent-blue);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    width: fit-content;
}

.post-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.post-card__title a {
    color: var(--text-main);
}

.post-card__title a:hover {
    color: var(--accent-green);
}

.post-card__excerpt {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}

.post-card__meta-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-card__meta-left img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
}

.pagination__btn {
    padding: 10px 18px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--glass-bg);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.pagination__btn:hover:not(:disabled) {
    border-color: var(--accent-green);
    color: var(--accent-green);
    background: rgba(31, 233, 182, 0.05);
}

.pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination__btn.active {
    background: var(--accent-green);
    color: var(--bg-dark);
    border-color: var(--accent-green);
    font-weight: 700;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--accent-green);
}

.breadcrumbs .separator {
    color: var(--glass-border);
}

/* --- Category / Tag Badges --- */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--category {
    background: rgba(88, 86, 255, 0.15);
    color: var(--accent-blue);
}

.badge--tag {
    background: rgba(31, 233, 182, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(31, 233, 182, 0.2);
}

/* --- Loading States --- */
.skeleton {
    background: linear-gradient(90deg, var(--card-bg) 25%, rgba(31, 233, 182, 0.05) 50%, var(--card-bg) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    border-top-color: var(--accent-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* --- Empty State --- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

/* --- Buttons --- */
.cta-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(31, 233, 182, 0.3);
}

.btn-primary {
    background: var(--accent-green);
    color: var(--bg-dark);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
}

.btn-secondary:hover {
    background: rgba(31, 233, 182, 0.1);
    color: var(--accent-green);
}

.btn-danger {
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
}

/* --- Footer (replica from main site) --- */
footer {
    text-align: center;
    margin-top: auto;
    color: #8a9a94;
    font-size: 0.8rem;
    padding-top: 30px;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 5%;
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    margin-bottom: 4px;
}

.footer-nav-col a {
    color: #8a9a94;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-nav-col a:hover {
    color: var(--accent-green);
    opacity: 1;
}

.footer-legal-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.85rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
}

.footer-legal-top a {
    color: var(--accent-green);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 30px;
}

.footer-left {
    text-align: left;
}

.footer-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 30px;
}

.footer-right-afip {
    text-align: right;
}

.footer-right-afip img {
    width: 48px;
    height: 68px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-right-afip img:hover {
    opacity: 1;
}

/* --- Responsive: Tablet (1024px) --- */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-hero-section {
        height: 360px;
    }

    .blog-slide-content h1 {
        font-size: 2rem;
    }
}

/* --- Responsive: Mobile (768px) --- */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 15px;
        background: rgba(13, 27, 20, 0.95);
    }

    .nav-right {
        gap: 10px;
    }

    .logo img {
        height: 35px;
    }

    .btn-register-nav {
        display: none;
    }

    .btn-portal {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .lang-toggle-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .lang-dropdown {
        position: fixed;
        top: 0;
        left: 12px;
        right: 12px;
        min-width: unset;
        width: auto;
        border-radius: 0 0 12px 12px;
        transform: translateY(-100%);
    }

    .lang-dropdown.show {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-100%); }
        to { opacity: 1; transform: translateY(0); }
    }

    .lang-dropdown .lang-option {
        justify-content: center;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .blog-wrapper {
        padding: 30px 16px 40px;
    }

    .blog-hero-section {
        height: 320px;
        margin-top: 60px;
    }

    .blog-slide-content h1 {
        font-size: 1.6rem;
    }

    .blog-slide-content p {
        font-size: 0.95rem;
    }

    .blog-hero-role {
        font-size: 0.75rem;
    }

    .blog-main-title {
        font-size: 1.5rem;
    }

    .blog-main-subtitle {
        font-size: 0.9rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .featured-post__image {
        height: 220px;
    }

    .featured-post__title {
        font-size: 1.3rem;
    }

    .featured-post__content {
        padding: 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-nav-col {
        min-width: 120px;
        align-items: center;
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .footer-left {
        text-align: center;
    }

    .footer-divider {
        display: none;
    }

    .footer-right-afip {
        text-align: center;
    }
}

/* --- Responsive: Small Mobile (480px) --- */
@media (max-width: 480px) {
    .blog-hero-section {
        height: 280px;
    }

    .blog-slide-content h1 {
        font-size: 1.3rem;
    }

    .blog-slide-content p {
        font-size: 0.85rem;
    }

    .blog-slider-dots {
        bottom: 16px;
    }

    .post-card__body {
        padding: 16px;
    }

    .post-card__title {
        font-size: 1rem;
    }
}
