* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f1f1f1;
}

#logo {
    margin-left: 45%;
}

/* Reemplaza las rutas con tus imágenes reales */
.banner {
    position: relative;
    width: 100%;
}

/* Rastreo flotando encima del banner */
.rastreo {
    position: absolute;
    left: 50%;
    margin-top: -60px;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    padding: 2rem 3rem;
    text-align: center;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Espacio para que el contenido debajo no se tape */
.main {
    padding-bottom: 80px;
    /* ajusta según el tamaño del cuadro */
}

#banner {
    content: url('/assets/img/banner_pc.webp');
    width: 80%;
}

.franja {
    width: 100%;
    height: 40px;
    background-color: #1063ac;
}

#texto_rastreo {
    color: #0d5391;
}

#texto_numeros {
    margin-top: 2%;
    font-weight: 200;
    font-size: 20px;
    color: rgb(109, 108, 108);
}

#guia {
    width: 40%;
    height: 50px;
    border-radius: 100px;
    border: 1px solid #dcdcdd;
    text-align: center;
    font-size: 20px;
}
.dGuia {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border: 1px solid #dcdcdd;
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 4px;
    background: white;
}

#guia {
    width: 300px;
    height: 44px;
    border: none;          /* quita el borde individual */
    border-radius: 100px;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
    color: #aaa;
}

#btnRastrear {
    height: 44px;
    padding: 0 24px;
    border: none;
    border-radius: 100px;
    background-color: #e8e8e8;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

#btnRastrear:hover {
    background-color: #1063ac;
    color: white;
}
/* Overlay */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#overlay.activo {
    display: flex;
}

/* Spinner estilo Coordinadora */
#spinner {
    width: 52px;
    height: 52px;
    border: 5px solid #dcdcdd;
    border-top: 5px solid #f05a28;
    border-radius: 50%;
    animation: girar 0.8s linear infinite;
}

@keyframes girar {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#spinnerTexto {
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #0d5391;
    font-weight: 600;
}
@media (max-width: 768px) {
    #banner {
        content: url('/assets/img/banner.webp');
        width: 100%;
        position: relative;

    }

    .rastreo {
        position: absolute;
        width: 90%;
    }

    #texto_rastreo {
        font-size: 25px;
    }

    #texto_numeros {
        font-size: 15px;
        margin-top: 25px;
    }

   

    .franja {
        width: 100%;
        height: 30px;
        background-color: #1063ac;
    }

    #logo {
        width: 50%;
        margin-left: 25%;
    }
     .dGuia {
        width: 95%;
    }

    #guia {
        width: 100%;
        font-size: 10px;
    }

    #btnRastrear {
        font-size: 14px;
        padding: 0 16px;
    }
}