@media (max-width: 600px) {
    #news-form-card, .admin-form, .form-actions {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100vw !important;
        box-sizing: border-box;
    }
    .form-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        min-height: 48px;
        font-size: 1.1rem;
    }
    .form-group input, .form-group textarea {
        font-size: 1.1rem;
    }
}
/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores originais (clay court) */
    --primary-color: #D2691E;
    --secondary-color: #FF6B35;
    --accent-color: #FFD700;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #D2691E 0%, #F4A460 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    --gradient-hero: linear-gradient(135deg, rgba(210, 105, 30, 0.9) 0%, rgba(244, 164, 96, 0.9) 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;

    /* Australian Open - Azul da quadra dura */
    --ao-primary: #0066CC;
    --ao-secondary: #87CEEB;
    --ao-light: #E6F3FF;
    --ao-accent: #4A90E2;
    --ao-gradient: linear-gradient(135deg, #0066CC 0%, #87CEEB 100%);

    /* Roland Garros - Saibro francês */
    --rg-primary: #8B4513;
    --rg-secondary: #D2691E;
    --rg-light: #FFF8DC;
    --rg-accent: #CD853F;
    --rg-gradient: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);

    /* Wimbledon - Verde da grama */
    --wim-primary: #2E7D32;
    --wim-secondary: #66BB6A;
    --wim-light: #E8F5E8;
    --wim-accent: #4CAF50;
    --wim-gradient: linear-gradient(135deg, #2E7D32 0%, #66BB6A 100%);

    /* US Open - Azul e verde */
    --us-primary: #1565C0;
    --us-secondary: #26A69A;
    --us-light: #E3F2FD;
    --us-accent: #42A5F5;
    --us-gradient: linear-gradient(135deg, #1565C0 0%, #26A69A 100%);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.main-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.logo .highlight {
    color: var(--accent-color);
}

.logo .tagline {
    font-size: 0.75rem;
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-link.admin-link {
    background: var(--gradient-secondary);
    padding: 0.5rem 1rem;
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23D2691E;stop-opacity:1"/><stop offset="100%" style="stop-color:%23F4A460;stop-opacity:1"/></linearGradient></defs><rect fill="url(%23grad)" width="1200" height="600"/><circle cx="200" cy="150" r="100" fill="white" opacity="0.1"/><circle cx="800" cy="400" r="150" fill="white" opacity="0.1"/><circle cx="1000" cy="100" r="80" fill="white" opacity="0.1"/></svg>') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.welcome-overlay {
    width: 100%;
    padding: 4rem 0;
}

.welcome-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.welcome-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.welcome-content .subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.welcome-content .description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gray-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #5a6268;
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

/* ===== NEWS SECTION (AUSTRALIAN OPEN) ===== */
.news-section {
    padding: 3rem 0;
    background: var(--ao-light);
    position: relative;
    background-image: url('./assets/ao-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 101, 192, 0.85);
    z-index: 1;
}

.news-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ao-gradient);
    opacity: 0.8;
    z-index: 2;
}

.news-section .section-title {
    color: white !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    position: relative;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.news-section .section-subtitle {
    color: #ffffff !important;
    position: relative;
    z-index: 3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.news-section .news-card {
    border-left: 4px solid var(--ao-primary);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.news-section .news-card:hover {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    transform: translateY(-2px);
}

.news-section .news-card-header h3 {
    color: var(--ao-primary);
}

.news-section .news-item a {
    color: var(--ao-accent);
}

.news-section * {
    position: relative;
    z-index: 3;
}

.news-section .container {
    position: relative;
    z-index: 3;
}

.news-section .news-item a:hover {
    color: var(--ao-primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.25rem;
}

.news-card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.news-card-body {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.news-card-body::-webkit-scrollbar {
    width: 6px;
}

.news-card-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.news-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.news-item p {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.news-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.news-item a:hover {
    color: var(--secondary-color);
}

.news-item .meta {
    font-size: 0.85rem;
    color: var(--gray-color);
    font-style: italic;
}

/* ===== ESTILOS PARA IMAGENS DOS FEEDS RSS ===== */
.news-item-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
}

.news-item-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.news-item-image img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.news-item-image img[style*="display: none"] {
    display: none !important;
}

/* ===== SEPARADORES SUAVES ENTRE NOTÍCIAS ===== */
.news-separator {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 1.5rem 0;
    opacity: 0.3;
}

.news-item.new-news {
    animation: slideInFromTop 0.5s ease-out;
    border-left-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NOTIFICAÇÕES ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--primary-color);
    animation: slideInFromTop 0.3s ease-out;
    max-width: 400px;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.75rem;
}

.notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    color: var(--dark-color);
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-color);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: var(--dark-color);
}

/* ===== SEÇÃO DE OUTRAS NOTÍCIAS ===== */
.other-news-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent-color);
}

.other-news-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.other-news-list {
    display: grid;
    gap: 1.5rem;
}

.other-news-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.other-news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.1);
    border-color: var(--accent-color);
}

.other-news-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}

.other-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.other-news-item:hover .other-news-image img {
    transform: scale(1.05);
}

.other-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.other-news-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.other-news-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.other-news-title a:hover {
    color: var(--primary-color);
}

.other-news-meta {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin: 0 0 0.75rem 0;
    display: flex;
    gap: 1rem;
}

.other-news-summary {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    flex: 1;
}

.other-news-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.other-news-link:hover {
    color: var(--primary-color);
}

.no-other-news, .loading-text {
    text-align: center;
    color: var(--gray-color);
    font-style: italic;
    padding: 2rem;
}

/* ===== RESPONSIVIDADE PARA OUTRAS NOTÍCIAS ===== */
@media (max-width: 768px) {
    .other-news-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .other-news-image {
        width: 100%;
        height: 150px;
    }
    
    .other-news-meta {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* ===== SISTEMA DE CURTIDAS ===== */
.like-section {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

/* Botão padrão */
.like-button {
    background: none;
    border: 2px solid #ddd;
    border-radius: 50px;
    padding: 12px 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #666;
    position: relative;
    overflow: hidden;
}

/* HOVER */
.like-button:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

/* Estado SEM curtidas → coração branco */
.like-button:not(.liked) .heart-icon {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

/* Estado COM curtidas → coração vermelho */
.like-button.liked {
    border-color: #ff4757;
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}

.like-button.liked .heart-icon {
    color: #ff4757;
    animation: heartPulse 0.6s ease-in-out;
}

/* Ícone e contadores */
.heart-icon {
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.like-count {
    font-weight: 600;
    margin: 0 4px;
    min-width: 20px;
    text-align: center;
}

.like-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animações */
@keyframes heartPulse {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1.4); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Estado de carregamento */
.like-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.like-button.loading .heart-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Efeito de clique (ripple) */
.like-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.like-button.ripple::before {
    width: 100px;
    height: 100px;
}

/* Status */
.like-status {
    text-align: center;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
    transition: opacity 0.3s ease;
}


/* ===== SEPARADORES DE SEÇÃO (REMOVIDOS) ===== */
/* 
.section-separator {
    position: relative;
    margin: 4rem 0;
    height: 60px;
    overflow: hidden;
}
*/

/* Títulos de seção com decoração dos Grand Slams */
.section-title-decorated {
    position: relative;
    text-align: center;
    margin: 3rem 0 2rem 0;
    padding: 1rem 0;
}

.section-title-decorated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title-decorated::after {
    content: '🎾';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    background: var(--light-color);
    padding: 0 8px;
}

/* Ícones específicos por Grand Slam */
.news-section .section-title-decorated::after {
    content: '🇦🇺'; /* Australian Open */
    background: var(--ao-light);
}

.about-section .section-title-decorated::after {
    content: '🇫🇷'; /* Roland Garros */
    background: var(--rg-light);
}

.clubs-section .section-title-decorated::after {
    content: '🇬🇧'; /* Wimbledon */
    background: var(--wim-light);
}

.contact-section .section-title-decorated::after {
    content: '🇺🇸'; /* US Open */
    background: var(--us-light);
}

.loading {
    text-align: center;
    color: var(--gray-color);
    padding: 2rem;
}

/* ===== ABOUT SECTION ===== */
/* ===== ABOUT SECTION (ROLAND GARROS) ===== */
.about-section {
    padding: 3rem 0;
    background: var(--rg-light);
    position: relative;
    background-image: url('./assets/rolandgarros-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.85);
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--rg-gradient);
    opacity: 0.8;
    z-index: 2;
}

.about-section .section-title {
    color: white !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    position: relative;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.about-section .section-subtitle {
    color: #ffffff !important;
    position: relative;
    z-index: 3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.about-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.1);
    line-height: 1.8;
    border-left: 4px solid var(--rg-primary);
    position: relative;
    z-index: 3;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.about-text:hover {
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.about-list li {
    color: var(--rg-primary);
    margin-bottom: 0.5rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section * {
    position: relative;
    z-index: 3;
}

.about-section .container {
    position: relative;
    z-index: 3;
}

.about-text {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-list {
    list-style: none;
    margin: 2rem 0;
}

.about-list li {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    color: var(--dark-color);
}

/* ===== CLUBS SECTION ===== */
/* ===== CLUBS SECTION (WIMBLEDON) ===== */
.clubs-section {
    padding: 3rem 0;
    background: var(--wim-light);
    position: relative;
    background-image: url('./assets/wimbledon-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.clubs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 139, 34, 0.85);
    z-index: 1;
}

.clubs-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--wim-gradient);
    opacity: 0.8;
    z-index: 2;
}

.clubs-section .section-title {
    color: white !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    position: relative;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.clubs-section .section-subtitle {
    color: #ffffff !important;
    position: relative;
    z-index: 3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.club-card {
    border-left: 4px solid var(--wim-primary);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.club-card:hover {
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.15);
    transform: translateY(-2px);
}

.club-card h3 {
    color: var(--wim-primary);
}

.club-card a {
    color: var(--wim-accent);
}

.club-card a:hover {
    color: var(--wim-primary);
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.club-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.club-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.club-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.club-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.club-card .btn-primary {
    width: 100%;
    padding: 0.75rem 1.5rem;
}

.clubs-section * {
    position: relative;
    z-index: 3;
}

.clubs-section .container {
    position: relative;
    z-index: 3;
}

/* ===== CONTACT SECTION ===== */
/* ===== CONTACT SECTION (US OPEN) ===== */
.contact-section {
    padding: 3rem 0;
    background: var(--us-light);
    position: relative;
    background-image: url('./assets/usopen-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(70, 130, 180, 0.85);
    z-index: 1;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--us-gradient);
    opacity: 0.8;
    z-index: 2;
}

.contact-section .section-title {
    color: white !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    position: relative;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.contact-section .section-subtitle {
    color: #ffffff !important;
    position: relative;
    z-index: 3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.1);
    border-left: 4px solid var(--us-primary);
    position: relative;
    z-index: 3;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-section * {
    position: relative;
    z-index: 3;
}

.contact-section .container {
    position: relative;
    z-index: 3;
}

.form-group label {
    color: var(--us-primary);
    font-weight: 600;
}

.form-control {
    border: 2px solid var(--us-light);
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--us-primary);
    box-shadow: 0 0 0 0.2rem rgba(21, 101, 192, 0.25);
    outline: none;
}

.btn-primary {
    background: var(--us-gradient);
    border: 2px solid var(--us-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--us-secondary), var(--us-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.3);
}

.btn-primary {
    background: var(--us-gradient);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--us-primary) 0%, var(--us-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== ADMIN STYLES ===== */
.admin-login-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.login-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.login-card h2 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.login-card p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.login-form {
    text-align: left;
}

.login-hint {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-top: 1rem;
    text-align: center;
}

#admin-panel {
    display: none;
}

#logout-btn {
    display: none;
}

.admin-panel-section {
    padding: 3rem 0;
    min-height: 80vh;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.admin-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.admin-card h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.admin-form {
    max-width: 100%;
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.admin-list {
    max-height: 600px;
    overflow-y: auto;
}

.admin-list-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.admin-list-item:hover {
    background: #e9ecef;
}

.admin-list-item-content {
    flex: 1;
}

.admin-list-item-content h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.admin-list-item-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.admin-list-item-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit,
.btn-delete {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-edit {
    background: #ffc107;
    color: var(--dark-color);
}

.btn-edit:hover {
    background: #e0a800;
}

.btn-delete {
    background: #dc3545;
    color: var(--white);
}

.btn-delete:hover {
    background: #c82333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
    }

    .welcome-content h2 {
        font-size: 2.5rem;
    }

    .welcome-content .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .news-grid,
    .clubs-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .admin-tabs {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }

    .admin-list-item {
        flex-direction: column;
        gap: 1rem;
    }

    .admin-list-item-actions {
        width: 100%;
    }

    .btn-edit,
    .btn-delete {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .welcome-content h2 {
        font-size: 2rem;
    }

    .contact-form,
    .about-text,
    .login-card {
        padding: 1.5rem;
    }
}

/* ===== ESTILOS PARA NOVA INTERFACE DE ADMINISTRAÇÃO ===== */
.news-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hidden {
    display: none !important;
}

.image-preview {
    margin-top: 1rem;
    position: relative;
    display: inline-block;
}

.image-preview img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.btn-remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-image:hover {
    background: #c82333;
}

.selectable-news-item {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.selectable-news-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.selectable-news-item.selected {
    border-color: var(--primary-color);
    background: rgba(210, 105, 30, 0.05);
}

.selectable-news-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.selectable-news-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.selectable-news-item .meta {
    font-size: 0.8rem;
    color: #adb5bd;
}

.delete-item {
    border-color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.05) !important;
}

.delete-item h4 {
    color: #dc3545 !important;
}

@media (max-width: 768px) {
    .news-actions {
        flex-direction: column;
    }
    
    .news-actions button {
        width: 100%;
    }
}

/* ===== ESTILOS PARA PÁGINA DE NOTÍCIA DETALHADA ===== */
.news-detail-section {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.news-article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.news-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.news-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 0;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin: 2rem 2rem 1rem 2rem;
}

.article-meta {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
}

.article-meta p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin: 0;
}

.article-summary {
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.article-summary p {
    font-size: 1.1rem;
    color: var(--gray-color);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    padding: 1rem;
    background: rgba(210, 105, 30, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.article-content {
    padding: 0 2rem 2rem 2rem;
    line-height: 1.8;
}

.article-content p {
    font-size: 1.05rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.article-actions {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 1.8rem;
        margin: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .article-meta,
    .article-summary,
    .article-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .article-actions {
        padding: 1.5rem;
    }
    
    .news-image {
        max-height: 250px;
    }
    
    .news-image img {
        max-height: 250px;
    }
}

/* ===== ESTILOS PARA CARDS DE NOTÍCIAS MANUAIS ===== */
.manual-news-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 2rem;
}

.manual-news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.manual-news-card .news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.manual-news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.manual-news-card:hover .news-image img {
    transform: scale(1.05);
}

.manual-news-card .news-content {
    padding: 1.5rem;
}

.manual-news-card .news-content h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.manual-news-card .publish-info {
    color: var(--gray-color);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.manual-news-card .news-summary {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.manual-news-card .read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.manual-news-card .read-more-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .manual-news-card .news-image {
        height: 150px;
    }
    
    .manual-news-card .news-content {
        padding: 1rem;
    }
    
    .manual-news-card .news-content h4 {
        font-size: 1.1rem;
    }
}

/* ===== CORREÇÃO DEFINITIVA DAS BANDEIRAS (DESKTOP + MOBILE) ===== */
.section-title-decorated {
  position: relative;
  text-align: center;
  isolation: isolate;
}

/* Bandeira genérica centralizada */
.section-title-decorated::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Bandeiras por seção (usar emojis falhava no desktop) */
.news-section .section-title-decorated::after {
  background-image: url('https://flagcdn.com/w40/au.png'); /* Austrália */
}

.about-section .section-title-decorated::after {
  background-image: url('https://flagcdn.com/w40/fr.png'); /* França */
}

.clubs-section .section-title-decorated::after {
  background-image: url('https://flagcdn.com/w40/gb.png'); /* Reino Unido */
}

.contact-section .section-title-decorated::after {
  background-image: url('https://flagcdn.com/w40/us.png'); /* EUA */
}
