:root {
    /* Color Palette */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary: #0f172a;
    --background: #ffffff;
    --surface: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --black: #000000;
    --accent: #38bdf8;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout Sizes */
    --container-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    zoom: 0.8;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
}

.grid-4-cols {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) {
    .grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .grid-4-cols {
        grid-template-columns: repeat(4, 1fr);
    }
}

.page-header {
    background: linear-gradient(135deg, var(--secondary), #1e293b);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Topbar */
.topbar {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.6rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-links a {
    font-weight: 500;
    transition: var(--transition);
}

.topbar-links a:hover {
    font-weight: 700;
    color: white;
}

/* News Ticker */
.news-ticker {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-container {
    display: flex;
    align-items: center;
}

.ticker-label {
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-right: 1.5rem;
    border-radius: 4px;
    flex-shrink: 0;
    z-index: 10;
    position: relative;
    box-shadow: 4px 0 10px rgba(241, 245, 249, 1); /* Sombra para simular o corte do texto */
}

.ticker-wrapper {
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker 40s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.ticker-item {
    display: inline-block;
    margin-right: 3rem;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-main);
}

.ticker-item:hover {
    color: var(--primary);
}

.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info span {
    margin-right: 1.5rem;
}

.topbar-social a {
    margin-left: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.topbar-social a:hover {
    color: var(--primary);
}

/* Header Layout */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    gap: 1rem;
    width: 95%;
    max-width: 1800px;
    margin: 0 auto;
}

/* Slider Controls Styles */
.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 100;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-slide { left: 40px; }
.next-slide { right: 40px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 10px;
}

.header-search {
    flex: 0 1 450px;
    margin: 0 auto; /* Centering between logo and menu */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f5f9;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-end;
}

#nav-menu ul {
    display: flex;
    gap: 2.25rem;
}

.has-dropdown {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: -0.5rem;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 240px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block !important;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
    color: var(--text-main) !important;
    opacity: 1 !important;
    transition: var(--transition);
}

.dropdown li a:hover {
    background: #f8fafc;
    color: var(--primary) !important;
    padding-left: 1.8rem !important;
}

.header-search:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.85rem;
    width: 100%;
    transition: var(--transition);
}

/* Removed fixed width on focus to maintain icon position */
.header-search input:focus {
    width: 100%;
}

.header-search button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0.6;
}

.header-search button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.user-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

#nav-menu ul li a {
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
    transition: var(--transition);
}

#nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

#nav-menu ul li a:hover {
    color: var(--primary);
    opacity: 1;
}

#nav-menu ul li a:hover::after {
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: var(--secondary);
    overflow: hidden;
}

.slider-container, .slide {
    height: 100%;
    width: 100%;
}

.slide {
    display: none;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: flex;
    opacity: 1;
    z-index: 2;
    transform: scale(1.02);
}

.slide-content {
    max-width: 800px;
    margin-left: 10% !important;
    margin-right: auto !important;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-meta {
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.slide-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slide-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin: 1rem 0;
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.badge {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Grids */
.grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.artículos-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.trilhas-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

/* Category Explore Section */
.category-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.category-scroll::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.category-card {
    min-width: 160px;
    flex: 0 0 auto;
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.cat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cat-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.cat-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ebooks-grid, .videos-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* CTA Stats Section */
.cta-stats-section {
    background: linear-gradient(135deg, #004aad 0%, #002d6b 100%);
    padding: 6rem 0;
    color: var(--white);
    margin: 0;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 4rem;
}

/* --- Bento News Layout --- */
.news-bento-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr; /* Diminuição da largura da imagem principal */
    grid-template-rows: 550px; /* Aumento da altura em 10% */
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bento-main {
    grid-column: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.bento-side-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.bento-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    color: white;
}

.bento-main .bento-content h2 {
    font-size: 2.5rem;
    color: white;
    margin: 0.5rem 0;
    line-height: 1.1;
}

.bento-side-grid .bento-content h3 {
    font-size: 1rem;
    color: white;
    margin: 0.3rem 0;
    line-height: 1.2;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bento-item:hover img {
    transform: scale(1.05);
}

/* Category Sections */
.news-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.news-section-header h2 {
    font-size: 1.5rem;
    position: relative;
}

.news-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.65rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

/* Main Content with Sidebar */
.portal-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.news-sidebar-section {
    margin-bottom: 3rem;
}

.sidebar-heading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.most-read-list {
    counter-reset: news-counter;
}

.most-read-item {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.most-read-item::before {
    counter-increment: news-counter;
    content: counter(news-counter);
    font-size: 2rem;
    font-weight: 900;
    color: #e2e8f0;
    font-family: 'Outfit', sans-serif;
}

.most-read-item:hover::before {
    color: var(--primary);
}

.most-read-content h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

@media (max-width: 1024px) {
    .news-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bento-main {
        height: 400px;
    }
    .bento-side-grid {
        grid-template-columns: 1fr 1fr;
        height: 250px;
    }
    .portal-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bento-side-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .bento-item {
        height: 250px;
    }
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.stat-item-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.6;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-img .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.btn-text {
    background: #eff6ff;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(3px);
}

/* Mobile Adjustments */
#mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

#mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 10px;
    transition: var(--transition);
}

#mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
#mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
#mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-only {
    display: none !important;
}

@media (max-width: 1024px) {
    #mobile-menu-toggle {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

@media (max-width: 768px) {
    #nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: var(--transition);
        padding: 2rem;
        z-index: 999;
        overflow-y: auto;
    }

    #nav-menu.active {
        left: 0;
    }

    #nav-menu ul {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100%;
    }

    #nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding: 1rem 0;
    }

    #nav-menu ul li:last-child {
        border-bottom: none;
    }

    #nav-menu ul li a {
        display: flex !important;
        width: 100% !important;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 0 !important;
        position: relative;
    }

    #nav-menu ul li a::after {
        content: '' !important;
        display: block !important;
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        background: var(--primary);
        width: 0;
        transition: var(--transition);
    }

    #nav-menu ul li:hover > a,
    #nav-menu ul li:active > a {
        color: var(--primary) !important;
        opacity: 1 !important;
        background-color: rgba(37, 99, 235, 0.05); /* Leve fundo azul */
    }

    #nav-menu ul li:hover > a::after,
    #nav-menu ul li:active > a::after {
        width: 100% !important;
    }

    .dropdown li a {
        font-size: 0.75rem !important;
        padding-left: 1rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        color: var(--text-muted) !important;
    }

    .dropdown li a:hover,
    .dropdown li a:active {
        color: var(--primary) !important;
        padding-left: 1.5rem !important;
    }

    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        padding: 0;
    }
    
    .has-dropdown:hover .dropdown,
    .has-dropdown:active .dropdown {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

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

    .desktop-only { display: none; }
}

/* Footer Professional Styling */
.main-footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.about .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
