/* seccion de paises */
.paises-tiempo--container {
    padding: 88px 168px;
}

.paises-tiempo--container h2 {
    padding: 0;
    margin: 0;
    font-weight: 700;
    font-size: 48px;
    line-height: 63px;
    color: black;
    margin-bottom: 25px;
}

.tarjetas-paises--container {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.paises-item {
    width: 48%;
    background-color: #F4F7FB;
    padding: 32px;
}

.paises-item--pais,
.paises-item--aereo,
.paises-item--mar {
    display: flex;
    align-items: center;
}

.paises-item--pais h3,
.paises-item--aereo p,
.paises-item--mar p {
    margin: 0;
    padding: 0;
}

.paises-item--pais {
    gap: 24px;
    margin-bottom: 20px;
}

.paises-item--pais h3 {
    color: black;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.paises-item--aereo,
.paises-item--mar {
    gap: 24px;
}

.paises-item--aereo p,
.paises-item--mar p {
    color: #474747;
}

.paises-item--aereo {
    margin-bottom: 16px;
}

/* seccion de tabla */
.tabla-tiempo--container {
    padding: 0 168px 48px 168px;
}

.tabla-tiempo--container h2 {
    font-weight: 700;
    color: black;
    text-align: center;
    font-size: 48px;
    line-height: 63px;
}

table {
    width: 100%;
    border-collapse: separate;
    text-align: left;
    border-spacing: 0;
    border: 1px solid white;
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: #006AAF;
    color: white;
}

thead th {
    padding: 14px 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

tbody td {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}

tbody .section-header {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #004c97;
    text-align: center;
}

tbody .section-header td {
    padding: 15px;
    font-size: 16px;
    background-color: #474747;
    color: white;
    text-align: left;
}

tbody .section-header-blue td {
    padding: 15px;
    font-size: 16px;
    background-color: #1B406E;
    color: white;
    text-align: left;
}

tbody tr:hover {
    background-color: #f1f8ff;
}

td:last-child,
th:last-child {
    text-align: center;
}

table th:nth-child(1),
table td:nth-child(1) {
    width: 5%;
    /* Ajusta el porcentaje al tamaño deseado */
    word-wrap: break-word;
    /* Asegura que el contenido se ajuste */
}


table th:nth-child(2),
table td:nth-child(2) {
    width: 4%;
    /* Ajusta el porcentaje al tamaño deseado */
    word-wrap: break-word;
    /* Asegura que el contenido se ajuste */
}

table th:nth-child(3),
table td:nth-child(3) {
    width: 5%;
    /* Ajusta el porcentaje al tamaño deseado */
    word-wrap: break-word;
    /* Asegura que el contenido se ajuste */
}

table th:nth-child(4),
table td:nth-child(4) {
    width: 5%;
    /* Ajusta el porcentaje al tamaño deseado */
    word-wrap: break-word;
    /* Asegura que el contenido se ajuste */
}

table th:nth-child(5),
table td:nth-child(5) {
    width: 5%;
    /* Ajusta el porcentaje al tamaño deseado */
    word-wrap: break-word;
    /* Asegura que el contenido se ajuste */
}

.table-mobile {
    display: none;
}

.tiempos-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 850px) {
    .paises-tiempo--container {
        padding: 40px 32px;
    }

    .paises-tiempo--container h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .tarjetas-paises--container {
        gap: 24px;
    }

    .paises-item {
        width: 100%;
    }

    .tabla-tiempo--container {
        padding: 48px 32px;
    }

    .tabla-tiempo--container h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .table-desktop {
        display: none;
    }

    .table-mobile {
        display: block;
        font-size: 12px;
    }

    .table-mobile {
        border-radius: 8px;
        overflow: hidden;
        width: 100%;
    }

    .header {
        display: flex;
        background-color: #006AAF;
        color: #fff;
        font-weight: bold;
        text-align: center;
    }

    .fila,
    .detalles {
        border-bottom: 1px solid #ccc;
    }

    .detalles {
        align-items: center;
    }

    .detalle-cabecera {
        background-color: #006AAF;
        color: white;
    }

    .col {
        padding: 10px;
        flex: 1;
    }

    .fila {
        display: flex;
        align-items: center;
    }

    .fila-tipo {
        background-color: #474747;
        color: white;
        font-weight: bold;
    }

    .fila-modo {
        background-color: #1B406E;
        font-weight: bold;
        color: white;
    }

    .campo {
        font-weight: bold;
        color: white;
        padding: 16px;
    }

    .valor {
        text-align: left;
        padding: 16px;
    }

    button.toggle-detalles {
        background-color: #0066cc;
        color: #fff;
        border: none;
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
    }

    button.toggle-detalles:hover {
        background-color: #004999;
    }

    .icono {
        font-size: 1.5em;
        display: block;
        margin-bottom: 5px;
    }

    .col-icon {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .toggle-detalles {
        text-wrap: nowrap;
    }
}

@media (max-width: 300px) {
    .table-mobile{
        font-size: 8px;
    }
}
