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

body {
    background: #ffffff;
    color: #111111;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #111111;
}

/* ========== FONTE LEAGUE SPARTAN BOLD ========== */
@font-face {
    font-family: 'League Spartan';
    src: url('../fonts/leaguespartan-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* ========== ANIMAÇÕES ========== */
@keyframes shineTitle {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========== HEADER TOPO ========== */
.header-top {
    width: 100%;
    background: #000000;
    border-bottom: 1px solid #1a1a1a;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== LOGO ===== */
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 60px;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
    text-transform: uppercase;
}

/* ===== TÍTULO PRINCIPAL ===== */
.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.title-area {
    text-align: center;
}

.main-title {
    font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 37px;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-weight: bold;
    background: linear-gradient(135deg, #009c3b, #ffdf00, #002776);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shineTitle 3s ease infinite;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.title-images img {
    width: 110px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.title-images img:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.empty-space {
    width: 110px;
    visibility: hidden;
}

/* ========== HEADER MENU ========== */
.header-menu {
    width: 100%;
    background: #ffffff;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #009c3b, #ffdf00, #002776) 1;
    padding: 6px 0;
    display: flex;
    justify-content: center;
}

.menu-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.menu a {
    color: #666;
    font-size: 12px;
    transition: all 0.4s ease;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 0;
    text-transform: uppercase;
}

.menu a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #009c3b, #ffdf00, #002776);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.menu a:hover::before {
    width: 100%;
}

.menu a:hover {
    color: #000;
    transform: translateY(-2px);
}

.menu a.active {
    color: #000;
    font-weight: 700;
    background: linear-gradient(135deg, #009c3b, #ffdf00, #002776);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.menu a.active::before {
    width: 100%;
}

/* ========== CONTAINER PRINCIPAL - CENTRALIZADO ========== */
.container-main {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 60vh;
    background: #ffffff;
}

.content-center {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* ========== BARRA DE PESQUISA ========== */
.search-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 40px;
    padding: 2px;
    transition: all 0.3s ease;
    width: 300px;
}

.search-box:focus-within {
    border-color: #009c3b;
    box-shadow: 0 0 0 3px rgba(0,156,59,0.1);
    width: 320px;
}

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

.search-box input::placeholder {
    color: #aaaaaa;
    font-size: 0.8rem;
}

.search-box button {
    background: linear-gradient(135deg, #009c3b, #ffdf00, #002776);
    background-size: 150% 150%;
    border: none;
    border-radius: 40px;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.search-icon {
    width: 14px;
    height: 14px;
    color: white;
}

/* ========== NEWS + SIDEBAR WRAPPER ========== */
.news-sidebar-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.news-column {
    flex: 2;
    min-width: 280px;
}

.sidebar-column {
    flex: 1;
    min-width: 240px;
    max-width: 260px;
}

/* ========== NOTÍCIAS ========== */
.news {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.news-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fafafa;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    border: 1px solid #eeeeee;
}

.news-card:hover {
    background: #f5f5f5;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-card img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.news-card:hover img {
    transform: scale(1.03);
}

.news-content {
    flex: 1;
}

.news-content h2 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #111;
    font-weight: 600;
}

.news-meta {
    color: #999;
    font-size: 0.7rem;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========== SIDEBAR - MINIMALISTA ========== */
.sidebar-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: inline-block;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #111;
    font-weight: 600;
}

.sidebar-card p {
    color: #777;
    font-size: 0.75rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.btn-donate {
    display: inline-block;
    background: #111;
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-donate:hover {
    background: #333;
    transform: scale(1.02);
}

/* ========== PAGINAÇÃO ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination button {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.pagination button:hover:not(:disabled) {
    background: #e8e8e8;
    color: #111;
}

.pagination button.active {
    background: #111;
    color: white;
    border-color: #111;
}

.pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ========== LINK DAS NOTÍCIAS ========== */
.news-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.news-card-link:hover .news-card {
    transform: translateX(5px);
    background: #f5f5f5;
}

/* ========== PÁGINA DE NOTÍCIA INDIVIDUAL ========== */
.news-article {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}

.news-article h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #111;
    line-height: 1.3;
}

.news-image-container {
    margin: 25px 0;
    text-align: center;
}

.news-image-container img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.news-content-full {
    line-height: 1.7;
    color: #333;
    font-size: 1.05rem;
}

.news-content-full h2 {
    margin: 30px 0 15px;
    font-size: 1.4rem;
    color: #111;
}

.news-content-full h3 {
    margin: 25px 0 12px;
    font-size: 1.2rem;
    color: #222;
}

.news-content-full p {
    margin-bottom: 18px;
}

.news-content-full ul, 
.news-content-full ol {
    margin: 15px 0 20px 25px;
}

.news-content-full li {
    margin-bottom: 8px;
}

/* Caixas de destaque */
.news-content-full .info-box {
    background: #e8f4fd;
    border-left: 4px solid #009c3b;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.news-content-full .warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 10px 24px;
    background: #f0f0f0;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.back-btn:hover {
    background: #e0e0e0;
    transform: translateX(-5px);
}

.error-message {
    text-align: center;
    padding: 60px 20px;
    background: #fafafa;
    border-radius: 20px;
}

.error-message h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.error-message p {
    color: #666;
    margin-bottom: 25px;
}

/* ========== FOOTER ========== */
.footer {
    background: #000000;
    margin-top: 60px;
    padding: 25px 20px 20px;
    text-align: center;
    width: 100%;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #009c3b, #ffdf00, #002776) 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-icon-large {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.footer-left-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-year {
    font-size: 12px;
    color: #009c3b;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-description {
    color: #aaa;
    line-height: 1.5;
    font-size: 0.75rem;
    max-width: 380px;
}

.footer-center {
    flex: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo-text {
    font-family: 'League Spartan', sans-serif;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #009c3b, #ffdf00, #002776);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shineTitle 3s ease infinite;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff;
}

.social-icon:hover {
    background: linear-gradient(135deg, #009c3b, #ffdf00, #002776);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-image-slideshow {
    width: 180px;
    height: 82px;
}

.footer-image-slideshow img {
    width: 180px;
    height: 82px;
    object-fit: cover;
    border-radius: 8px;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.copyright {
    color: #555;
    font-size: 10px;
}

/* ========== GATO ========== */
.cat-wrapper {
    position: relative;
    display: inline-block;
}

.cat-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #009c3b, #ffdf00, #002776);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.cat-wrapper:hover .cat-tooltip {
    opacity: 1;
    visibility: visible;
}

#catGif {
    filter: drop-shadow(0 0 3px #009c3b) drop-shadow(0 0 3px #ffdf00) drop-shadow(0 0 3px #002776);
}

/* ========== POPUP ========== */
.custom-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 10000;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.custom-popup.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 12px 25px;
    border-radius: 10px;
    text-align: center;
}

.popup-content p {
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
}

/* ========== ABOUT ME PAGE ========== */
.aboutme-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #009c3b, #ffdf00, #002776);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shineTitle 3s ease infinite;
}

.page-subtitle {
    color: #666;
    font-size: 0.9rem;
}

.aboutme-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    background: #fafafa;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #eee;
}

.aboutme-image {
    flex: 0 0 180px;
    text-align: center;
}

.aboutme-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid;
    border-image: linear-gradient(135deg, #009c3b, #ffdf00, #002776) 1;
}

.aboutme-text {
    flex: 1;
}

.aboutme-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111;
}

.aboutme-text .highlight {
    background: linear-gradient(135deg, #009c3b, #ffdf00, #002776);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.aboutme-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.aboutme-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #009c3b, #ffdf00, #002776);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
}

/* ========== CONTACT PAGE ========== */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 18px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(8px);
    background: #f5f5f5;
}

.contact-icon {
    font-size: 32px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #111;
}

.contact-info p {
    color: #666;
    font-size: 0.8rem;
}

.contact-arrow {
    font-size: 1.2rem;
    color: #999;
}

.contact-note {
    text-align: center;
    margin-top: 40px;
    padding: 12px;
    background: #f0f0f0;
    border-radius: 12px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.contact-note p {
    color: #555;
    font-size: 0.8rem;
}

/* ========== DONATION PAGE ========== */
.donation-header {
    text-align: center;
    margin-bottom: 40px;
}

.donation-card-simple {
    background: linear-gradient(135deg, #fafafa, #fff);
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.donation-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.donation-card-simple h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #111;
}

.donation-card-simple p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.donation-btn {
    background: linear-gradient(135deg, #009c3b, #ffdf00, #002776);
    background-size: 200% 200%;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.donation-btn:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.donation-note {
    font-size: 0.7rem;
    color: #999;
    margin-top: 15px;
}

/* ========== MODAL DE DOAÇÃO ========== */
.donation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}

.modal-header {
    background: #000;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.modal-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-logo img {
    width: 36px;
    height: 36px;
}

.modal-logo span {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.modal-title {
    text-align: center;
}

.modal-title h2 {
    font-size: 16px;
    background: linear-gradient(135deg, #009c3b, #ffdf00, #002776);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.modal-image img {
    width: 70px;
    height: 35px;
    object-fit: cover;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0 10px;
}

.modal-body {
    padding: 25px;
}

.payment-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.payment-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.pix-btn {
    background: #32bcad;
    color: white;
}

.picpay-btn {
    background: #1e1e1e;
    color: white;
}

.maintenance-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 20px;
}

.payment-btn:hover {
    transform: scale(1.03);
}

.qr-motivation {
    text-align: center;
    margin-bottom: 20px;
}

.motivation-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #009c3b;
    margin-bottom: 5px;
}

.motivation-sub {
    font-size: 0.8rem;
    color: #666;
}

.qr-code-display {
    text-align: center;
    margin-bottom: 20px;
}

.qr-code-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    border: 1px solid #eee;
}

.pix-info {
    margin-top: 15px;
}

.pix-warning {
    font-size: 0.7rem;
    color: #ff9800;
    margin-bottom: 5px;
}

.pix-thanks {
    font-size: 0.85rem;
    color: #32bcad;
    font-weight: bold;
}

.copy-pix-btn {
    width: 100%;
    padding: 12px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.copy-pix-btn:hover {
    background: #e0e0e0;
}

.maintenance-message {
    text-align: center;
    padding: 30px;
}

.maintenance-message span {
    font-size: 50px;
}

.maintenance-message h3 {
    margin: 15px 0;
}

.maintenance-message p {
    color: #666;
    margin-bottom: 20px;
}

.back-to-pix {
    background: #32bcad;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 950px) {
    .main-title {
        font-size: 32px;
    }
    
    .title-images img {
        width: 90px;
        height: 45px;
    }
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-left {
        text-align: center;
        align-items: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .news-sidebar-wrapper {
        flex-direction: column;
    }
    
    .sidebar-column {
        max-width: 100%;
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        justify-content: center;
    }
    
    .empty-space {
        display: none;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .title-images img {
        width: 80px;
        height: 40px;
    }
    
    .news-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .news-card img {
        width: 100%;
        max-width: 150px;
        height: auto;
    }
    
    .aboutme-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .aboutme-stats {
        justify-content: center;
    }
    
    .search-box {
        width: 260px;
    }
    
    .search-box:focus-within {
        width: 280px;
    }
    
    .footer-image-slideshow {
        width: 150px;
        height: 68px;
    }
    
    .footer-image-slideshow img {
        width: 150px;
        height: 68px;
    }
    
    .news-article {
        padding: 20px;
    }
    
    .news-article h1 {
        font-size: 1.4rem;
    }
    
    .news-content-full {
        font-size: 0.95rem;
    }
    
    .news-content-full h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 550px) {
    .main-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .title-images img {
        width: 70px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .logo-icon {
        width: 40px;
    }
    
    .payment-options {
        flex-direction: column;
        align-items: center;
    }
    
    .qr-code-img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 20px;
    }
    
    .title-images img {
        width: 60px;
        height: 30px;
    }
    
    .donation-card-simple {
        padding: 25px;
    }
    
    .donation-card-simple h3 {
        font-size: 1.2rem;
    }
    
    .donation-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    .footer-image-slideshow {
        width: 130px;
        height: 60px;
    }
    
    .footer-image-slideshow img {
        width: 130px;
        height: 60px;
    }
}