/* imagen cabecera */
.header-tempo-section {
    height: 50vh;
    background-image: url('../imagenes/tempo.jpg');
    background-size: cover;
    background-position: center;
}

.todo-tiempo {
    margin: 10px auto;
    max-width: 80%;
    font-size: 1.125rem;
    color: var(--color-principal);
    text-align: center;
    font-family: var(--tipo-regular);

}

.container-tiempo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tiempo-dia {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
    background-color: var(--color-texto);
    color: var(--color-fondo);
    border-radius: 12px;
    padding: 15px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: var(--tipo-regular);
}


.tiempo-dia-name {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(1, 35, 64, 0.1);
}


.tiempo-hoy {
    display: block;
    font-size: 0.75rem;
    min-height: 28px;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* Temperaturas */
.tiempo-dia-temperatures {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}


.temp-high {
    color: var(--color-error);
}

.temp-low {
    color: var(--color-success);
}

/* mareas*/
.tide-container {
    min-height: 300px;
    width: 100%;
}


.map-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}


@media (max-width: 900px) {
    .header-tempo-section {
        height: 35vh;
    }
}