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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3653 0%, #004499 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.brand-logo {
    max-width: 80px;
}
/* Logo Styles */
.logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e1a730;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-decoration: none;
}

.logo-text:hover {
    color: #e1a730;
    text-decoration: none;
}

/* Header Links */
.header-links {
    display: flex;
    gap: 25px;
}

.header-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.header-link:hover {
    color: #e1a730;
}

/* Bootstrap Navbar Overrides */
.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e1a730 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #e1a730 !important;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #e1a730 !important;
}

.navbar-nav .nav-link:focus {
    color: #e1a730 !important;
}

/* Botón Únete a Nosotros */
.navbar-nav .btn-unete {
    background-color: #e1a730;
    color: white !important;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    margin-left: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    height: auto;
}

.navbar-nav .btn-unete:hover {
    background-color: #d19a20;
    color: white !important;
    transform: translateY(-1px);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown-item {
    color: #333;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #1e3653;
}

.dropdown-divider {
    margin: 8px 0;
    border-color: #e9ecef;
}

/* Mobile Menu Styles */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Background */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(30, 54, 83, 0.95);
        margin-top: 15px;
        padding: 20px;
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 5px 0;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 10px;
    }
    
    .dropdown-item {
        color: white;
        text-align: center;
    }
    
    .dropdown-item:hover {
        background-color: rgba(225, 167, 48, 0.2);
        color: #e1a730;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3653 0%, #004499 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Carousel Styles */
.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item.active {
    display: flex;
    align-items: center;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #e1a730;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #e1a730;
    border-color: #e1a730;
    transform: scale(1.2);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(225, 167, 48, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #e1a730;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Hero Image Styles */
.hero-image img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    min-height: 500px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    background: #e1a730;
    color: #1e3653;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-link {
    background: #e1a730;
    color: #1e3653;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-link:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    min-width: 300px;
}

.hero-placeholder {
    font-size: 8rem;
    opacity: 0.8;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    max-width: 100%;
    overflow: hidden;
}

.news-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.news-card.featured {
    background: linear-gradient(135deg, #1e3653 0%, #004499 100%);
    color: white;
}

.news-badge {
    background: #e1a730;
    color: #1e3653;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.news-card.featured .news-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

.news-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #1e3653;
}

.news-card.featured .news-title {
    color: white;
}

.news-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-link {
    color: #1e3653;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.news-card.featured .news-link {
    color: #e1a730;
}

.news-link:hover {
    color: #004499;
}

/* Cuerpo Técnico Section */
.coaching-staff-section {
    padding: 80px 0;
    background: white;
}

.coaching-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.coaching-text {
    flex: 1;
    max-width: 500px;
}

.coaching-text .section-title {
    text-align: left;
    margin-bottom: 30px;
    color: #1e3653;
}

.coaching-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.coaching-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coach-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.coach-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e1a730;
}

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

.coach-image:hover img {
    transform: scale(1.1);
}

.coach-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coach-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3653;
    margin-bottom: 5px;
}

.coach-position {
    font-size: 1rem;
    font-weight: 600;
    color: #e1a730;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coach-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
  margin: 0;
}

/* Sponsor Section */
.sponsor-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.sponsor-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #e1a730;
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.sponsor-item:hover {
    transform: translateY(-5px);
}

.sponsor-logo {
    width: 100%;
    height: auto;
    max-height: 120px;
    min-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}



/* Team Section */
.team-section {
    padding: 40px 0;
    background: white;
}

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

.team-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-image:hover .team-photo {
    transform: scale(1.05);
}

.team-text {
    padding: 20px 0;
}

.team-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.team-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.info-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3653;
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Category cards (Sub 20 / Equipo TC) */
.category-section {
    padding: 60px 0 80px;
    background: white;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.category-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform .25s ease, box-shadow .25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.category-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Clase específica para imágenes de pruebas */
.prueba-image {
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: 280px;
    object-fit: contain;
    display: block;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.category-body {
    padding: 16px 18px 20px;
}

.category-title {
    margin: 0 0 6px;
    color: #1e3653;
    font-weight: 800;
    font-size: 1.25rem;
}

.category-text {
    margin: 0;
    color: #5b6776;
    line-height: 1.6;
}

/* Directiva cards */
.directive-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.directive-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.directive-body {
    padding: 16px 18px 20px;
}

.directive-name {
    margin: 0 0 4px;
    color: #1e3653;
    font-weight: 800;
    font-size: 1.2rem;
}

.directive-role {
    margin: 0 0 10px;
    color: #4b5563;
    font-weight: 600;
}

.directive-bio {
    margin: 0 0 10px;
    color: #5b6776;
}

.directive-mail {
    color: #1e3653;
    text-decoration: none;
}
.directive-mail:hover { color: #e1a730; }

/* App Section */
.app-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.app-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #1e3653;
    margin-bottom: 10px;
}

.app-text h3 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 20px;
}

.app-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.app-button {
    background: #1e3653;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.app-button:hover {
    background: #004499;
    transform: translateY(-2px);
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    font-size: 8rem;
    opacity: 0.8;
}

/* Channel Section */
.channel-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.channel-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #e1a730;
}

.channel-video {
    margin-bottom: 40px;
}

.video-placeholder {
    background: #333;
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #e1a730;
    position: relative;
    overflow: hidden;
}

.video-placeholder i {
    margin-bottom: 10px;
}

.video-placeholder span {
    font-size: 1.2rem;
    font-weight: 700;
}

.channel-button {
    background: #e1a730;
    color: #1a1a1a;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.channel-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Shop Section */
.shop-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3653;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    font-size: 4rem;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: #1e3653;
    margin-bottom: 15px;
}

.product-button {
    background: #1e3653;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.product-button:hover {
    background: #004499;
}

.shop-button {
    background: #e1a730;
    color: #1e3653;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    display: block;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.shop-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Latest News */
.latest-news {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-list {
    margin-bottom: 40px;
}

.news-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-category {
    background: #1e3653;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    white-space: nowrap;
}

.news-item h3 {
    flex: 1;
    font-weight: 700;
    color: #333;
}

.news-item-link {
    color: #1e3653;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.news-item-link:hover {
    color: #004499;
}

.news-button {
    background: #1e3653;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    display: block;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.news-button:hover {
    background: #004499;
    transform: translateY(-2px);
}

/* Matches Section */
.matches-section {
    padding: 80px 0;
    background: white;
}

.match-card {
    background: linear-gradient(135deg, #1e3653 0%, #004499 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,102,204,0.3);
}

.match-tournament {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e1a730;
    margin-bottom: 10px;
    display: block;
}

.match-teams {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vs {
    margin: 0 15px;
    color: #e1a730;
}

.match-date {
    color: #ccc;
}

.ticket-button {
    background: #e1a730;
    color: #1e3653;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticket-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #e1a730;
    margin-bottom: 10px;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    color: #e1a730;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e1a730;
}

/* Bootstrap Integration Enhancements */
.navbar-nav .dropdown-menu {
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mejoras en el header para móvil */
@media (max-width: 991.98px) {
    .header-links {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slide {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        max-width: 100%;
        min-width: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        height: 250px;
        margin-top: 20px;
        width: 100%;
        max-width: 400px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .news-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        width: 100%;
    }
    
    .news-section {
        padding: 40px 0;
        overflow-x: hidden;
    }
    
    .news-section .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .news-card {
        padding: 20px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex-shrink: 0;
    }
    
    .news-title {
        font-size: 1.2rem;
        line-height: 1.3;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .news-description {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .coaching-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .coaching-text {
        max-width: 100%;
        text-align: center;
    }
    
    .coaching-text .section-title {
        text-align: center;
    }
    
    .coach-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .coach-image {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .app-content {
        flex-direction: column;
        text-align: center;
    }
    
    .match-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .news-section {
        padding: 30px 0;
        overflow-x: hidden;
    }
    
    .news-section .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .news-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        width: 100%;
    }
    
    .news-card {
        padding: 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex-shrink: 0;
    }
    
    .news-title {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .news-description {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .sponsor-logos {
        gap: 20px;
        flex-direction: column;
    }
    
    .sponsor-item {
        padding: 15px;
        width: 100%;
        min-width: unset;
    }
    
    .sponsor-logo {
        max-height: 100px;
        min-height: 50px;
        width: 100%;
    }
    
    .sponsor-content h2 {
        font-size: 2rem;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-photo {
        height: 300px;
    }
    
    .team-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-cards {
        grid-template-columns: 1fr;
    }
    
    .prueba-image {
        min-height: 200px;
        max-height: 250px;
    }
}
