/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Top Bar */
.topbar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

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

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info i {
    color: #3498db;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.social-search-group {
    display: flex;
    align-items: center;
    gap: 18px;
}

.search-form {
    display: flex;
    align-items: center;
    background: #474c54;
    border-radius: 2px;
    padding: 0 1em;
    height: 40px;
    margin-left: 8px;
}

.search-form input {
    border: none;
    background: transparent;
    color: #fff;
    padding: 0.7em 0.5em;
    outline: none;
    width: 140px;
    font-size: 1.1em;
}

.search-form input::placeholder {
    color: #fff;
    opacity: 0.8;
}

.search-form button {
    background: none;
    border: none;
    color: #4ec6cc;
    font-size: 1.3em;
    cursor: pointer;
    margin-left: 0.3em;
    transition: color 0.2s;
}

.search-form button:hover {
    color: #fff;
}

/* Main Header */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    display: flex;
    align-items: baseline;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
}

.logo-text span {
    display: flex;
    align-items: baseline;
    font-size: 12px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 0;
    height: 100%;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 80%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 9999;
    border-radius: 8px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    border: 1px solid #e0e0e0;
}

.dropdown:hover .dropdown-content {
    display: block !important;
}

.dropdown-content a {
    color: #2c3e50;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #e74c3c;
}

.dropdown-content a.active {
    background-color: #e74c3c;
    color: #fff;
}

/* Garantir que o dropdown funcione em diferentes navegadores */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        margin-top: 0;
        transform: none;
        left: auto;
    }
    
    .dropdown:hover .dropdown-content {
        display: block !important;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
}

/* Admin layout */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 20px;
}

.admin-sidebar {
    background: #fff;
    border: 1px solid #ecf0f1;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    padding: 16px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.admin-menu {
    display: flex;
    flex-direction: column;
}

.admin-menu a {
    display: block;
    padding: 12px 14px;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 6px;
    transition: background 0.2s, color 0.2s;
}

.admin-menu a:hover {
    background: #f4f6f7;
    color: #2980b9;
}

.admin-menu a.active {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
}

.admin-content {
    background: #fff;
    border: 1px solid #ecf0f1;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    padding: 24px;
    min-height: 60vh;
}

@media (max-width: 980px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        position: static;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: #fff !important;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: #2c3e50;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #fff;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .social-search-group {
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
    }
    .search-form {
        width: 100%;
        margin-left: 0;
    }
    .search-form input {
        width: 100px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
} 

/* Hero Section Slider */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    overflow: hidden;
}
.hero-slide {
    min-width: 100%;
    transition: opacity 0.5s, transform 0.5s;
    opacity: 0;
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide.active {
    opacity: 1;
    position: relative;
    z-index: 2;
    transform: none;
}
.hero-slider-controls {
    text-align: center;
    margin-top: 24px;
}
.hero-slider-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 6px;
    background: #e0e0e0;
    border-radius: 50%;
    opacity: 0.7;
    cursor: pointer;
    border: 2px solid #bbb;
    transition: background 0.2s, opacity 0.2s;
}
.hero-slider-dot.active,
.hero-slider-dot:hover {
    background: #229954;
    opacity: 1;
}
@media (max-width: 700px) {
    .hero-slider-wrapper {
        min-height: 220px;
    }
} 

/* Formulário de Contato - Visual Moderno */
.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 0 64px 0;
    text-align: center;
}
.contact-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.6rem;
    color: #2c3e50;
    font-weight: 400;
    margin-bottom: 0.2em;
}
/* Ajustes de cor para o formulário de contato */
.contact-highlight {
    color: #34495e;
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 1.5em;
}
.contact-form {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 22px 18px;
    border: none;
    border-radius: 4px;
    background: #f5f5f5;
    font-size: 1.2rem;
    color: #333;
    font-family: inherit;
    margin: 0 auto;
    box-sizing: border-box;
    resize: none;
}
.contact-form textarea {
    min-height: 140px;
    max-width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
    opacity: 1;
}
.contact-form button.btn-primary {
    margin: 0 auto;
    display: block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    border: none;
    cursor: pointer;
}

.contact-form button.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Estilos para a página de Diretoria */
.diretoria-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 0;
}

.diretor {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.diretor:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.diretor img {
    margin-bottom: 20px;
    border: 3px solid #3498db;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.diretor b {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
}

.diretor span {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 500;
}

@media (max-width: 700px) {
    .diretoria-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }
    
    .diretor {
        padding: 20px 15px;
    }
    
    .diretor b {
        font-size: 18px;
    }
    
    .diretor span {
        font-size: 14px;
    }
}

/* Estilos para seções gerais */
.contact-page section {
    margin: 40px 0;
}

.contact-page section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.contact-page section p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

/* Estilos para galeria */
.gallery-photos, .gallery-videos, .event-banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.gallery-photos img, .event-banners img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-photos img:hover, .event-banners img:hover {
    transform: scale(1.05);
}

/* Estilos para eventos */
.event-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px 0;
    border: 1px solid #ecf0f1;
}

.event-card-info h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.event-card-info h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #3498db;
    margin-bottom: 15px;
}

.event-card-info p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
    text-align: left;
}

.event-banner-deadline {
    color: #e74c3c !important;
    font-weight: 600 !important;
}

.slider-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    margin-top: 20px;
}

.slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

@media (max-width: 700px) {
    .gallery-photos, .gallery-videos, .event-banners {
        gap: 10px;
    }
    
    .event-card {
        padding: 20px;
    }
    
    .contact-page section h2 {
        font-size: 20px;
    }
}
@media (max-width: 700px) {
    .contact-page {
        padding: 24px 0 32px 0;
    }
    .contact-title, .contact-highlight {
        font-size: 1.5rem;
    }
    .contact-form {
        gap: 14px;
    }
    .contact-form input, .contact-form textarea {
        font-size: 1rem;
        padding: 14px 10px;
    }
    .contact-form button.btn-primary {
        font-size: 1rem;
        padding: 12px 24px;
    }
} 

/* Notícias */
.noticias-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.noticia-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 32px 24px;
    border: 1px solid #ecf0f1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s;
}
.noticia-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}
.noticia-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}
.noticia-data {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 16px;
}
.noticia-card p {
    font-size: 15px;
    color: #34495e;
    margin-bottom: 18px;
}
.noticia-card .btn-primary {
    align-self: flex-end;
    margin-top: auto;
}
@media (max-width: 700px) {
    .noticias-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .noticia-card {
        padding: 18px 10px;
    }
}

/* Ranking */
.ranking-table-section {
    margin-bottom: 40px;
}

.ranking-table-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
}

.ranking-table-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ranking-table th {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 15px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.ranking-table th:first-child {
    text-align: left;
}

.ranking-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #34495e;
}

.ranking-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #2c3e50;
}

.ranking-table tr:hover {
    background-color: #f8f9fa;
}

.total-geral {
    font-weight: bold;
    color: #e74c3c !important;
    background-color: #fff5f5;
}

.etapa {
    color: #27ae60;
}

.desempate {
    color: #f39c12;
}

.no-data {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 30px !important;
}

.ranking-info-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
}

.ranking-info-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.ranking-info-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.ranking-info-section li {
    margin-bottom: 8px;
    color: #34495e;
}

/* Atletas Federados */
.atletas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.atleta-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.atleta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.atleta-foto {
    flex-shrink: 0;
}

.atleta-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.atleta-info p {
    color: #34495e;
    margin-bottom: 5px;
    font-size: 14px;
}

.status-ativo {
    background: #27ae60;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-inativo {
    background: #e74c3c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.atletas-info-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
}

.atletas-info-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.atletas-info-section p {
    color: #34495e;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .ranking-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ranking-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .atletas-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .atleta-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .ranking-table-container {
        overflow-x: auto;
    }
    
    .ranking-table {
        min-width: 600px;
        font-size: 12px;
    }
    
    .ranking-table th,
    .ranking-table td {
        padding: 8px 6px;
    }
    
    .ranking-table-section h3 {
        font-size: 18px;
    }
}