/* ================================
   Variables y Reset - Colores Premier League
   ================================ */
:root {
    /* Colores oficiales Premier League */
    --color-primary: #37003C;
    /* Morado Premier League */
    --color-primary-dark: #1F0024;
    --color-accent: #FF2882;
    /* Rosa/Magenta Premier League */
    --color-accent-green: #00FF87;
    /* Verde neón alternativo */
    --color-bg: #F9F9F9;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-text: #222222;
    --color-text-light: #555555;
    --color-text-lighter: #888888;
    --color-border: #E1E1E1;

    /* Tipografías similares a Premier League */
    --font-primary: 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', sans-serif;

    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(55, 0, 60, 0.2);
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ================================
   News Ticker - Estilo Premier League
   ================================ */
.news-ticker {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--color-accent);
}

.ticker-wrapper {
    display: flex;
    width: 200%;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: scroll-ticker 40s linear infinite;
    white-space: nowrap;
    align-items: center;
}

.ticker-item {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================================
   Navigation - Estilo Premier League
   ================================ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

#navbar {
    transition: all 0.3s ease;
}

#navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    color: var(--color-primary);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
    position: relative;
    font-family: var(--font-display);
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: none;
}

.btn-primary:hover {
    background-color: #E6136F;
    transform: translateY(-1px);
}

/* ================================
   Hero Section - Estilo Premier League
   ================================ */
.hero-section {
    position: relative;
    padding: 0;
    margin: 0;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(55, 0, 60, 0.92) 0%, rgba(31, 0, 36, 0.88) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 24px;
    color: var(--color-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background-color: rgba(255, 40, 130, 0.15);
    border: 2px solid var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    color: var(--color-accent);
}

.badge-text {
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-display);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 900px;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    border-color: var(--color-accent);
}

.feature-icon {
    flex-shrink: 0;
    color: var(--color-accent);
}

.feature-icon svg {
    display: block;
}

.feature-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--color-white);
    font-family: var(--font-display);
}

.feature-text p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* ================================
   Content Sections - Estilo Premier League
   ================================ */
.content-section {
    padding: 5rem 0;
}

.content-section.alt-bg {
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text);
    font-family: var(--font-display);
    letter-spacing: -0.5px;
}

.content-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
    border-left: 4px solid var(--color-accent);
}

.content-section.alt-bg .content-card {
    background-color: var(--color-bg);
}

.card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.card-icon svg {
    display: block;
}

.content-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* ================================
   Contact Form - Estilo Premier League
   ================================ */
.contact-intro {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--color-text);
    font-size: 0.9375rem;
    font-family: var(--font-display);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background-color: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(55, 0, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background-color: #E6136F;
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ================================
   Sponsors Section - Estilo Premier League
   ================================ */
.sponsors-section {
    background-color: #F4F4F4;
    padding: 4rem 0;
    border-top: 1px solid var(--color-border);
}

.sponsors-title {
    text-align: center;
    color: var(--color-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-display);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 1px solid var(--color-border);
}

.sponsor-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.sponsor-logo {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* ================================
   Footer - Estilo Premier League
   ================================ */
footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-icon {
    color: var(--color-accent);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    font-family: var(--font-display);
    letter-spacing: -0.5px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: color 0.2s ease;
    font-family: var(--font-display);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* ================================
   Menu Toggle (Mobile)
   ================================ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-text);
    position: relative;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: var(--color-text);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.hamburger::before {
    top: -9px;
}

.hamburger::after {
    top: 9px;
}

.menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .btn-primary {
        margin: 0.5rem 1rem;
        display: inline-block;
        width: calc(100% - 2rem);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .content-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .ticker-item {
        font-size: 0.8125rem;
    }
}

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

    .hero-content {
        padding: 4rem 24px;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

    .content-card {
        padding: 1.5rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
    }
}/* ==========================================
   SPONSORS SECTION - NEW DESIGN
   ========================================== */

.sponsors-section-new {
    background: #F8F8F8;
    padding: 3rem 0;
}

.sponsors-grid-new {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.sponsor-card-new {
    background: white;
    padding: 2rem 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sponsor-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sponsor-logo-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #37003C;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-label-new {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

/* ==========================================
   FOOTER - NEW DESIGN
   ========================================== */

.footer-new {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid #E0E0E0;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column-new {
    display: flex;
    flex-direction: column;
}

.footer-links-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-new li {
    margin-bottom: 0.75rem;
}

.footer-links-new a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links-new a:hover {
    color: #37003C;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .sponsors-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .sponsors-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
