
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #fff;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Carousel */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
}

.cta-button:hover {
    background: transparent;
    color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #ff6b35;
    border-color: #fff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: scale(1.1);
}

/* Carousel Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Vision y Mision */
.vision-mision {
    padding: 100px 0;
    background: #111;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.vm-card {
    background: #222;
    padding: 3rem;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.vm-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vm-card p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Sections */
section {
    padding: 100px 0;
}

.boxeadores {
    background: #111;
}

.clubes {
    background: #000;
}

.ranking {
    background: #111;
}

.contacto {
    background: #000;
}

section h2 {
    color: #fff;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Search Filters */
.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.search-filters input,
.search-filters select {
    padding: 15px;
    background: #222;
    border: 2px solid #333;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-filters input:focus,
.search-filters select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* Boxeadores Grid */
.boxeadores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.boxer-card {
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.boxer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.boxer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.boxer-info {
    padding: 1.5rem;
}

.boxer-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.boxer-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.boxer-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

.stat-item .label {
    color: #999;
    font-size: 0.9rem;
}

.view-profile {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 1rem;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-profile:hover {
    background: #e55a2b;
}

/* Clubes Grid */
.clubes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.club-card {
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.club-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.club-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 1rem;
    font-weight: 700;
}

.club-card p {
    color: #ccc;
    margin: 0 1rem 1rem;
    line-height: 1.6;
}

.club-social {
    padding: 1rem;
    border-top: 1px solid #333;
}

.club-social a {
    display: flex;
    align-items: center;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.club-social a:hover {
    color: #ff6b35;
}

.club-social img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Ranking Table */
.ranking-table {
    background: #222;
    border-radius: 10px;
    overflow: hidden;
}

.ranking-header {
    display: grid;
    grid-template-columns: 80px 80px 1fr 150px 100px 100px 100px 100px;
    background: #ff6b35;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ranking-header span {
    padding: 1rem;
    text-align: center;
}

.ranking-row {
    display: grid;
    grid-template-columns: 80px 80px 1fr 150px 100px 100px 100px 100px;
    border-bottom: 1px solid #333;
    transition: background 0.3s ease;
}

.ranking-row:hover {
    background: #333;
}

.ranking-row span {
    padding: 1rem;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0.5rem auto;
}

/* Contacto */
.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contacto-info {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
}

.contacto-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contacto-info p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contacto-form {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
}

.contacto-form h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    background: #333;
    border: 2px solid #444;
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.contacto-form button {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contacto-form button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Boxer Profile Styles */
.boxer-profile {
    padding: 120px 0 80px;
    background: #111;
    min-height: 100vh;
}

.profile-header {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ff6b35;
}

.profile-info h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.club {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
    background: #222;
    padding: 1rem 2rem;
    border-radius: 10px;
}

.stat-number {
    display: block;
    color: #ff6b35;
    font-size: 2rem;
    font-weight: 900;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-content {
    display: grid;
    gap: 3rem;
}

.profile-section {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
}

.profile-section h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.fights-list {
    display: grid;
    gap: 1rem;
}

.fight-card {
    background: #333;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.fight-card:hover {
    background: #444;
    transform: translateX(5px);
}

.fight-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.fight-info p {
    color: #ccc;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.view-document {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-document:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.back-button {
    margin-top: 2rem;
    text-align: center;
}

.btn-back {
    display: inline-block;
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .carousel-nav {
        padding: 0 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .carousel-dots {
        bottom: 20px;
        gap: 10px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

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

    .search-filters {
        grid-template-columns: 1fr;
    }

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

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

    .ranking-header,
    .ranking-row {
        grid-template-columns: 60px 60px 1fr 80px 60px 60px 60px 60px;
        font-size: 0.8rem;
    }

    .ranking-header span,
    .ranking-row span {
        padding: 0.5rem;
    }

    .contacto-content {
        grid-template-columns: 1fr;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-photo {
        width: 200px;
        height: 200px;
    }

    .profile-info h1 {
        font-size: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .fight-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .ranking-header,
    .ranking-row {
        grid-template-columns: 40px 40px 1fr 60px 40px 40px 40px 40px;
        font-size: 0.7rem;
    }

    .ranking-photo {
        width: 30px;
        height: 30px;
    }
}


/* Noticias Styles */
.noticias-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('lpFjwGhfHMOV.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    text-align: center;
    color: #fff;
}

.noticias-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.noticias-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.noticias-content {
    padding: 80px 0;
    background: #111;
}

.noticias-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
}

.noticias-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.noticia-card {
    background: #222;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.noticia-card.featured {
    grid-template-columns: 400px 1fr;
    border: 2px solid #ff6b35;
}

.noticia-image {
    position: relative;
    overflow: hidden;
}

.noticia-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.noticia-card:hover .noticia-image img {
    transform: scale(1.05);
}

.noticia-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
}

.noticia-date .day {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.noticia-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.noticia-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.noticia-category {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.noticia-content h2,
.noticia-content h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.noticia-content h2 {
    font-size: 1.8rem;
}

.noticia-content h3 {
    font-size: 1.4rem;
}

.noticia-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.noticia-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detail-item strong {
    color: #ff6b35;
}

.noticia-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

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

/* Sidebar Styles */
.noticias-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #222;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.sidebar-widget h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eventos-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.evento-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.evento-item:hover {
    background: #444;
    transform: translateX(5px);
}

.evento-fecha {
    background: #ff6b35;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    min-width: 50px;
}

.evento-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.evento-info p {
    color: #ccc;
    font-size: 0.8rem;
    margin: 0;
}

.contacto-info p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contacto-info strong {
    color: #ff6b35;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    color: #ccc;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.social-link img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Active navigation link */
.nav-link.active {
    color: #ff6b35;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design for Noticias */
@media (max-width: 1024px) {
    .noticias-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .noticia-card {
        grid-template-columns: 1fr;
    }
    
    .noticia-card.featured {
        grid-template-columns: 1fr;
    }
    
    .noticia-image img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .noticias-header h1 {
        font-size: 2rem;
    }
    
    .noticias-header p {
        font-size: 1rem;
    }
    
    .noticia-content {
        padding: 1.5rem;
    }
    
    .noticia-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .evento-item {
        flex-direction: column;
        text-align: center;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}


/* Boxeadores Page Styles */
.boxeadores-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('8o2Cm1sQIrjT.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    text-align: center;
    color: #fff;
}

.boxeadores-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.boxeadores-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.boxeadores-page {
    padding: 80px 0;
    background: #111;
}

.results-info {
    margin-bottom: 2rem;
    text-align: center;
}

.results-info p {
    color: #ccc;
    font-size: 1rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.pagination-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
}

.pagination-info {
    color: #ccc;
    font-weight: 500;
}

.boxeadores-stats {
    padding: 80px 0;
    background: #222;
}

.boxeadores-stats h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: #333;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Clubes Page Styles */
.clubes-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('5lvR8ooRwAi8.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    text-align: center;
    color: #fff;
}

.clubes-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clubes-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.clubes-page {
    padding: 80px 0;
    background: #111;
}

.club-card {
    background: #222;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.club-image {
    height: 200px;
    overflow: hidden;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.club-card:hover .club-image img {
    transform: scale(1.05);
}

.club-content {
    padding: 2rem;
}

.club-content h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.club-location {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.club-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.club-stats {
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.stat-item {
    color: #ccc;
    font-size: 0.9rem;
}

.stat-item strong {
    color: #ff6b35;
}

.club-social {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    color: #ccc;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.social-icon img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.clubes-map {
    margin-top: 4rem;
    text-align: center;
}

.clubes-map h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.map-placeholder {
    position: relative;
    background: #333;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.map-overlay p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.afiliacion-section {
    padding: 80px 0;
    background: #222;
    text-align: center;
}

.afiliacion-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.afiliacion-section > p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.afiliacion-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: #333;
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #ff6b35;
}

.benefit-item h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .boxeadores-header h1,
    .clubes-header h1 {
        font-size: 2rem;
    }
    
    .boxeadores-header p,
    .clubes-header p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .club-stats {
        grid-template-columns: 1fr;
    }
    
    .club-social {
        grid-template-columns: 1fr;
    }
    
    .afiliacion-benefits {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Documentos Page Styles */
.documentos-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('nwHT9bqxiQEI.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    text-align: center;
    color: #fff;
}

.documentos-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.documentos-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.documentos-content {
    padding: 80px 0;
    background: #111;
}

.documento-section {
    margin-bottom: 4rem;
    background: #222;
    border-radius: 15px;
    overflow: hidden;
    border-left: 4px solid #ff6b35;
}

.documento-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #333;
}

.documento-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.documento-info h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.documento-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.documento-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-item {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 500;
}

.documento-content {
    padding: 2rem;
}

/* Tabs Styles */
.content-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #444;
}

.tab-btn {
    background: transparent;
    color: #ccc;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.tab-btn:hover {
    color: #ff6b35;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.documento-list {
    list-style: none;
    padding: 0;
}

.documento-list li {
    color: #ccc;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #333;
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
    line-height: 1.6;
}

.documento-list li strong {
    color: #ff6b35;
}

.download-section {
    margin-top: 2rem;
    text-align: center;
}

.btn-download {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-download:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Categorías Grid */
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.categoria-card {
    background: #333;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #ff6b35;
    transition: all 0.3s ease;
}

.categoria-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.categoria-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.categoria-card p {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1rem;
}

/* Equipamiento List */
.equipamiento-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.equipo-item {
    background: #333;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.equipo-item h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.equipo-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Manuales Grid */
.manuales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.manual-card {
    background: #333;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #ff6b35;
}

.manual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.manual-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.manual-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.manual-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.manual-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.manual-card ul li {
    color: #ccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid #444;
    position: relative;
    padding-left: 1.5rem;
}

.manual-card ul li:before {
    content: "✓";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Recomendaciones Content */
.recomendaciones-content {
    padding: 2rem;
}

.recomendacion-category {
    margin-bottom: 3rem;
}

.recomendacion-category h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    background: #333;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.recomendacion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.recomendacion-item {
    background: #333;
    padding: 2rem;
    border-radius: 15px;
    border-top: 3px solid #ff6b35;
}

.recomendacion-item h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.recomendacion-item ul {
    list-style: none;
    padding: 0;
}

.recomendacion-item ul li {
    color: #ccc;
    padding: 0.8rem 0;
    border-bottom: 1px solid #444;
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.recomendacion-item ul li:before {
    content: "→";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.recomendacion-item ul li:last-child {
    border-bottom: none;
}

/* Responsive Design for Documentos */
@media (max-width: 1024px) {
    .documento-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .documento-header img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .manuales-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .recomendacion-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .documentos-header h1 {
        font-size: 2rem;
    }
    
    .documentos-header p {
        font-size: 1rem;
    }
    
    .content-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .categorias-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .equipamiento-list {
        grid-template-columns: 1fr;
    }
    
    .manuales-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .documento-content {
        padding: 1rem;
    }
}

/* Árbitros Styles - Reutiliza los estilos de boxeadores */
.arbitro-card {
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.arbitro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.arbitro-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.arbitro-info {
    padding: 1.5rem;
}

.arbitro-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.arbitro-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.arbitro-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.view-arbitro-profile {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 1rem;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-arbitro-profile:hover {
    background: #e55a2b;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .producto-card,
    .arbitro-card {
        margin-bottom: 1rem;
    }
}

