    :root {
        --primary-color: #0b1e3b;
        --accent-color: #75aadb;
        --accent-hover: #4b8bc0;
        --text-dark: #333333;
        --text-light: #f4f4f4;
        --bg-light: #ffffff;
        --bg-off-white: #f9f9f9;
        --header-height: 80px;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
    }

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

    body {
        font-family: 'Open Sans', sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        background-color: var(--bg-light);
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    section {
        padding: 80px 20px;
        scroll-margin-top: var(--header-height);
    }

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

    .section-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: var(--accent-color);
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .btn {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--accent-color);
        color: white;
        font-weight: 600;
        border-radius: 5px;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: var(--transition);
    }

    .btn:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(117, 170, 219, 0.4);
    }

    .btn-outline {
        background-color: transparent;
        border: 2px solid white;
    }

    .btn-outline:hover {
        background-color: white;
        color: var(--primary-color);
    }


    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--header-height);
        z-index: 1000;
        transition: var(--transition);
        background-color: transparent;
    }

    header.scrolled {
        background-color: var(--primary-color);
        box-shadow: var(--shadow);
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

    .logo {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
    }

    nav ul {
        display: flex;
        gap: 20px;
    }

    nav a {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
        font-size: 0.9rem;
    }

    nav a:hover {
        color: var(--accent-color);
    }

    .header-socials {
        display: flex;
        gap: 15px;
    }

    .header-socials a {
        color: white;
        font-size: 1.1rem;
    }


    .menu-toggle {
        display: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }


    #inicio {
        height: 100vh;
        background: linear-gradient(rgba(11, 30, 59, 0.7), rgba(11, 30, 59, 0.7)), url('../img/hero.png');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding-top: var(--header-height);
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

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


    #sobre {
        background-color: var(--bg-light);
    }

    .sobre-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .sobre-img img {
        border-radius: 10px;
        box-shadow: var(--shadow);
    }

    .sobre-list li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sobre-list i {
        color: var(--accent-color);
    }


    #como-funciona {
        background-color: var(--bg-off-white);
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .step-card {
        background: white;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

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

    .step-icon {
        font-size: 2.5rem;
        color: var(--accent-color);
        margin-bottom: 20px;
    }


    #packs {
        background-color: var(--bg-light);
    }

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

    .pack-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        border: 1px solid #eee;
        transition: var(--transition);
    }

    .pack-card:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .pack-img {
        height: 180px;
        background-color: #ddd;
        background-size: cover;
        background-position: center;
    }

    .pack-content {
        padding: 20px;
    }

    .pack-content ul {
        margin-top: 15px;
        font-size: 0.9rem;
        color: #555;
    }

    .pack-content li {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pack-content i {
        font-size: 0.8rem;
        color: var(--primary-color);
    }


    #ligas {
        background-color: var(--primary-color);
        color: white;
    }

    #ligas h2 {
        color: white;
    }

    .leagues-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .league-item {
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 10px;
    }

    .league-icon {
        font-size: 2rem;
        margin-bottom: 15px;
        color: var(--accent-color);
    }


    #noticias {
        background-color: var(--bg-light);
    }

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

    .news-card {
        background: white;
        border-radius: 8px;
        box-shadow: var(--shadow);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .news-img {
        height: 200px;
        background-color: #ccc;
        background-size: cover;
        background-position: center;
    }

    .news-body {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .news-date {
        font-size: 0.8rem;
        color: #888;
        margin-bottom: 10px;
    }

    .news-body h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .read-more {
        margin-top: auto;
        color: var(--accent-color);
        font-weight: 600;
        font-size: 0.9rem;
    }


    #guias {
        background-color: var(--bg-off-white);
    }

    .guide-block {
        background: white;
        padding: 30px;
        margin-bottom: 20px;
        border-radius: 8px;
        border-left: 5px solid var(--accent-color);
        box-shadow: var(--shadow);
    }

    .guide-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .guide-header i {
        font-size: 1.5rem;
        color: var(--primary-color);
    }


    #comunidad {
        background-color: var(--bg-light);
        text-align: center;
    }

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

    .testimonial-card {
        background: var(--bg-off-white);
        padding: 25px;
        border-radius: 10px;
        font-style: italic;
    }

    .user-info {
        margin-top: 15px;
        font-weight: 600;
        font-style: normal;
        color: var(--primary-color);
    }

    .user-city {
        font-size: 0.85rem;
        color: #666;
    }


    #faq {
        background-color: var(--bg-off-white);
    }

    .accordion {
        max-width: 800px;
        margin: 30px auto 0;
    }

    .accordion-item {
        background: white;
        border-bottom: 1px solid #eee;
    }

    .accordion-header {
        width: 100%;
        padding: 20px;
        text-align: left;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--primary-color);
    }

    .accordion-header:hover {
        background-color: #f1f1f1;
    }

    .accordion-header i {
        transition: transform 0.3s;
    }

    .accordion-header.active i {
        transform: rotate(180deg);
    }

    .accordion-body {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background-color: white;
        color: #555;
    }

    .accordion-body p {
        padding-bottom: 20px;
    }


    #newsletter {
        background-color: var(--accent-color);
        color: white;
        text-align: center;
    }

    #newsletter h2 {
        color: white;
    }

    #newsletter .section-title::after {
        background: white;
    }

    .newsletter-form {
        max-width: 600px;
        margin: 30px auto 0;
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
    }

    .form-group {
        margin-bottom: 15px;
        text-align: left;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: inherit;
    }

    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .checkbox-group input {
        margin-top: 5px;
    }


    #contacto {
        background-color: var(--bg-light);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        margin-top: 30px;
    }

    .contact-info-card {
        background: var(--bg-off-white);
        padding: 30px;
        border-radius: 10px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .info-item i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .form-feedback {
        display: none;
        padding: 10px;
        border-radius: 5px;
        margin-top: 10px;
        font-size: 0.9rem;
    }

    .form-feedback.success {
        display: block;
        background-color: #d4edda;
        color: #155724;
    }

    .form-feedback.error {
        display: block;
        background-color: #f8d7da;
        color: #721c24;
    }


    footer {
        background-color: #08162b;
        color: #aaa;
        padding: 50px 0 20px;
        font-size: 0.9rem;
    }

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

    .footer-col h4 {
        color: white;
        margin-bottom: 20px;
    }

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

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

    .footer-bottom {
        border-top: 1px solid #1c2e4a;
        padding-top: 20px;
        text-align: center;
        font-size: 0.8rem;
    }

    .disclaimer-box {
        background: #10223a;
        padding: 15px;
        border-radius: 5px;
        margin-top: 20px;
        border-left: 3px solid #888;
    }


    @media (max-width: 992px) {
        .contact-wrapper {
            grid-template-columns: 1fr;
        }

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

        .sobre-img {
            order: -1;
        }
    }

    @media (max-width: 768px) {
        header {
            background-color: var(--primary-color);
        }

        .menu-toggle {
            display: block;
        }

        nav {
            position: absolute;
            top: var(--header-height);
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            padding: 20px;
            display: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        nav.active {
            display: block;
        }

        nav ul {
            flex-direction: column;
            text-align: center;
        }

        .header-socials {
            display: none;
        }

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

    .legal-container h1,
    .legal-container h2,
    .legal-container h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .legal-container h1 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 3px solid var(--accent-color);
    }

    .legal-container h2 {
        font-size: 1.5rem;
        margin-top: 30px;
        border-left: 5px solid var(--accent-color);
        padding-left: 15px;
    }

    .legal-container p {
        margin-bottom: 15px;
        text-align: justify;
    }

    .legal-container ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .legal-container li {
        margin-bottom: 10px;
    }

    .legal-container a {
        color: var(--accent-color);
        text-decoration: none;
    }

    .legal-container a:hover {
        text-decoration: underline;
    }


    .legal-container {
        max-width: 900px;
        margin: 50px auto;
        background: white;
        padding: 50px;
        border-radius: 10px;
        box-shadow: var(--shadow);
    }

    .last-updated {
        text-align: center;
        color: #777;
        font-size: 0.9rem;
        margin-bottom: 30px;
        font-style: italic;
    }




    @media (max-width: 768px) {
        .legal-container {
            padding: 20px;
            margin: 20px;
        }

        .legal-container h1 {
            font-size: 1.8rem;
        }
    }

    .cookie-icon-box {
        text-align: center;
        margin-bottom: 20px;
        font-size: 3rem;
        color: var(--accent-color);
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    th,
    td {
        padding: 12px;
        border: 1px solid #eee;
        text-align: left;
        font-size: 0.9rem;
    }

    th {
        background-color: var(--primary-color);
        color: white;
    }