* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', sans-serif;
    overflow-y: scroll;
    overflow-x: hidden;
    background: white;
}

h1 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

/* Navbar */
.navbar {
    background: #002752;
    position: static;
}

button.navbar-toggler.collapsed {
    background: cornsilk;
}

button.navbar-toggler {
    background: aliceblue;
}

.navbar-brand img {
    margin-right: 20px;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    color: #ffffff;
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }
}

.brand-text {
    color: #ffffff;
}



.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card img {
    height: 200px;
    object-fit: cover;
}

.card-body {
    text-align: center;
    padding: 20px;
}

.icon-box {
    font-size: 3rem;
    color: #002147;
    margin-bottom: 15px;
}

/* Timeline */
.timeline {
    list-style: none;
    padding: 0;
}

.timeline li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.timeline li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 24px;
    color: #0056b3;
}

/* Cards */
.card {
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}


/* Botón de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    /* Color verde de WhatsApp */
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 9999;
}

.whatsapp-btn i {
    font-size: 20px;
    /* Tamaño del icono */
    margin-right: 10px;
}

footer.custom-footer {
    background: #002752;
    color: #ffffff;
}

.custom-footer {
    padding: 20px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .custom-footer .row {
        flex-direction: column;
        text-align: center;
    }

    .custom-footer .col-md-2,
    .custom-footer .col-md-4 {
        margin-bottom: 20px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
    height: 85vh;
    background: url('../img/hero.png') center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    color: #ffffff;
    font-size: 2.5rem;
}

.hero p {
    color: #dcdcdc;
    font-size: 15px;
    line-height: 22px;
}

.hero .btn-primary {
    background-color: #03a4f8;
    border: none;
}

.hero .btn-outline-primary {
    color: #03a4f8;
    border: 2px solid #03a4f8;

}

.hero .btn-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    /* Espaciado entre los botones */
}



/* Responsiveness */
@media (max-width: 768px) {
    .hero {
        height: auto;
        text-align: center;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero img {
        display: none;
    }

    .hero h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 0 15px;
        /* Espaciado en los costados para mayor legibilidad */
    }

    .hero .btn-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        /* Espaciado entre los botones */
    }

    .hero .btn-primary,
    .hero .btn-outline-primary {
        font-size: 0.9rem;
        padding: 10px 20px;
        width: 100%;
        max-width: 300px;
        /* Limita el ancho máximo de los botones */
    }
}

/* Ajustes para pantallas más pequeñas (450px o menos) */
@media (max-width: 500px) {
    .hero h2 {
        font-size: 2.2rem;
        /* Aumenta el tamaño del encabezado */
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1rem;
        /* Aumenta el tamaño del texto */
        line-height: 25px;
        /* Mejora la separación entre líneas */
        padding: 0 20px;
        /* Más espacio en los costados */
    }

    .hero .btn-primary,
    .hero .btn-outline-primary {
        font-size: 1rem;
        /* Aumenta el tamaño del texto en los botones */
        padding: 12px 25px;
        /* Botones más grandes */
    }
}

.footer p {
    color: #ffffff;
    font-weight: 00;
}


.footer {
    background-color: #0b1d3a;
    padding: 60px 30px 30px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #293c5a;
}

.footer .footer-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: #00a3f4;
}

.footer i {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #ffffff;
}

.footer .social-icons i {
    font-size: 1.5rem;
    margin: 10px 8px;
    color: #ffffff;
    transition: color 0.3s;
}

.footer .social-icons i:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1 1 250px;
    margin: 1px;
}

.footer img {
    max-width: 150px;
    margin-bottom: 15px;
}


/* Tarifas */

h1,
h2,
h3 {
    color: #002752;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Tarifas Section */
.tarifas-header {
    background-color: #002752;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

.tarifas-header h1 {
    font-size: 2.5rem;
    margin: 0;
}

.tarifas-header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Modern Table Styles */
.tabla-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th,
td {
    padding: 15px;
    text-align: left;
    font-size: 16px;
    color: #333333;
}

th {
    background: #002752;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}

tr:nth-child(even) {
    background: #f9f9f9;
}

tr:hover {
    background: #f1f1f1;
}

td {
    border-bottom: 1px solid #dddddd;
}

caption {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    color: #002752;
}

/* Buttons */
.button-container {
    text-align: center;
    margin: 30px 0;
}

.button-container a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #002752;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button-container a:hover {
    background-color: #0056b3;
}

/* Responsiveness */
@media (max-width: 768px) {

    h1,
    h2,
    h3 {
        font-size: 1.8rem;
    }

    th,
    td {
        font-size: 14px;
    }

    .tarifas-header h1 {
        font-size: 2rem;
    }

    .tarifas-header p {
        font-size: 1rem;
    }
}

/* Arbitros_nacionales */

.arbitros-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.arbitro-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arbitro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.arbitro-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.arbitro-card h5 {
    font-weight: bold;
    color: #343a40;
}

.arbitro-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.arbitro-card .btn {
    border-radius: 20px;
    padding: 8px 15px;
    font-weight: bold;
    background-color: #002752;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

@media (max-width: 991.98px) {
    .dropdown-submenu .dropdown-menu {
        position: relative;
        left: 0;
        top: 0;
        margin: 0;
    }

    .dropdown-submenu>.dropdown-menu {
        display: none;
    }

    .dropdown-submenu.show>.dropdown-menu {
        display: block;
    }
}