/* Importación de la fuente Orbitron */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

.header-title {
    font-size: 28px;
    font-weight: bold;
    color: #ff4500;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 10px;
}

.orbitron {
    font-family: 'Orbitron', sans-serif !important;
}

.calendar-container {
    width: 60%;
    max-width: 100%;
    background: transparent;
    padding: 0px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
    position: relative;
    overflow: hidden; /* Evita que los elementos internos sobresalgan */
    margin: 0 auto; /* Centra el contenedor horizontalmente */
}

#icon-location {
    filter: brightness(0) invert(1); /* Convierte el icono a blanco */
}


@media (max-width: 576px) {
    .calendar-container {
        width: 100%;
        padding: 0px;
        padding-right: 10px;

    }
    .day {
    padding: 15px !important;
    min-height: 20px !important;
    }
    .calendar {
        padding-bottom: 200px !important;
    }

    .header-title {
        padding-bottom: 20% !important;
    }
    #month-title {
        padding-bottom: 10%;
    }

    .calendar {
        gap: 25px 5px !important;
    }

    .ubicacion-btn {
        display: inline-block;
        background: #ff430f;
        color: white;
        padding: 10px 100px !important;
        border-radius: 25px;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        margin-top: 20px;
        border: none;
        cursor: pointer;
        transition: transform 0.2s ease-in-out;
        top: 700px !important;
    }

    .ubicacion-btn:hover {
        transform: scale(1.1) !important;
        background: #e63c00 !important;
    }
    #icon-location {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 768px) {
    .calendar-container {
        width: 100%;
        padding: 0px;
    }
    .day {
    padding: 15px !important;
    min-height: 20px !important;
    }
    .calendar {
        padding-bottom: 200px !important;
    }

    .header-title {
        padding-bottom: 20% !important;
    }
    #month-title {
        padding-bottom: 10%;
    }

    .calendar {
        gap: 25px 5px !important;
    }

    .ubicacion-btn {
        display: inline-block;
        background: #ff430f;
        color: white;
        padding: 10px 100px !important;
        border-radius: 25px;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        margin-top: 20px;
        border: none;
        cursor: pointer;
        transition: transform 0.2s ease-in-out;
        top: 700px !important;
    }

    .ubicacion-btn:hover {
        transform: scale(1.1) !important;
        background: #e63c00 !important;
    }
    #icon-location {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .calendar-container {
        width: 90%;
        padding: 0px;
    }
    .day {
    padding: 15px !important;
    min-height: 20px !important;
    }
    .calendar {
        padding-bottom: 200px !important;
    }

    .header-title {
        padding-bottom: 20% !important;
    }
    #month-title {
        padding-bottom: 10%;
    }

    .calendar {
        gap: 25px 5px !important;
    }

    .ubicacion-btn {
        display: inline-block;
        background: #ff430f;
        color: white;
        padding: 10px 100px !important;
        border-radius: 25px;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        margin-top: 20px;
        border: none;
        cursor: pointer;
        transition: transform 0.2s ease-in-out;
        top: 780px !important;
    }

    .ubicacion-btn:hover {
        transform: scale(1.1) !important;
        background: #e63c00 !important;
    }
    #icon-location {
        width: 10px;
        height: 10px;
    }
}

#icon-location {
    width: 35px;
    height: 25px;
    gap: 10px;
    padding-left: 10px;
}
/* Estilo del banner del mes */
.month-banner {
    background: #002f6c;
    color: white;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Días de la semana en naranja con fondo blanco y transparencia */
.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: bold;
    color: #ff4500;
    background: transparent;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.weekday {
    border-right: 1px solid #ff4500;
    padding: 5px;
}

.weekday:last-child {
    border-right: none;
}

/* Estilos de los días dentro de la franja azul */
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
    background: transparent;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}

.day {
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #002f6c;
    min-height: 40px;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    background: transparent;
    color: #002f6c;
    cursor: pointer; 
}

.day img {
    width: 130%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1); /* Convierte la imagen en blanco */
    margin: auto;
    align-items: center;
}

/* Días con envío resaltados en anaranjado */
.day.air, .day.sea {
    background: #ff4500;
}

.day:hover .video-container {
    display: flex;
}

.video-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("airplane-video.gif");
    /* background: rgba(0, 0, 0, 0.2); */
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botón Ubícanos */
.ubicacion-btn {
    display: inline-block;
    background: #ff430f;
    color: white;
    padding: 10px 40px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    position: absolute;
    right: 60px;
    top: 450px;
}

.ubicacion-btn:hover {
    transform: scale(1.1);
    background: #e63c00;
}


