/* === TARJETA PRINCIPAL === */
.form-container {
    max-width: 420px;
    width: 100%;
    margin: 0 auto 1rem auto;
    padding: 2.3rem 2rem;
    background: #f0f0f3;
    border-radius: 20px;
    box-shadow: 0px 8px 22px rgba(0,0,0,0.12);
    text-align: center;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Icono del carro */
.form-container i.fas.fa-car {
    font-size: 38px !important;
    color: #000;
    margin-bottom: 12px;
}

/* Título */
.form-title {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.form-title i {
    color: #000;
}

/* === INPUT === */
.inputNumPol {
    width: 80%;
    height: 44px;
    border: none;
    outline: none;
    border-radius: 50px;
    text-align: center;
    font-style: italic;
    color: #555;
    font-size: 14px;
    background: #ffffff;
    box-shadow: inset -4px -4px 8px #ffffff,
                inset 4px 4px 8px rgba(0,0,0,0.18);
    transition: 0.2s ease-in-out;
}

.inputNumPol:focus {
    box-shadow: inset -2px -2px 5px #ffffff,
                inset 3px 3px 6px rgba(0,0,0,0.22);
    background: #fff;
}

.divNumPol {
    margin: 18px 0;
}

/* === BOTÓN CONSULTAR === */
.btnConsultar {
    background: linear-gradient(90.6deg, rgba(149, 5, 132, 0.86) 15.41%, #5E2073 93.37%);
    color: #fff;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: .5rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 3px 6px 15px rgba(0,0,0,0.25);
    transition: 0.2s ease-in-out;
}

.btnConsultar:hover {
    transform: translateY(-2px);
    box-shadow: 2px 5px 10px rgba(0,0,0,0.2);
}

/* === TEXTO "consulte aquí" === */
.divConsultarAqui {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 35px;
}

.divConsultarAqui p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

/* Botón "consulte aquí" */
.btnConsulteAqui {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90.6deg, rgba(149, 5, 132, 0.86) 15.41%, #6b2682c7 93.37%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
    transition: all 0.2s ease-in-out;
}

.btnConsulteAqui i {
    margin-left: 4px;
    font-size: 14px;
}

.btnConsulteAqui:hover {
    transform: translateY(-1px);
    box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
}

/* === TÍTULO PRINCIPAL === */
.contenedor-titulo {
    display: flex;
    justify-content: center;
}

.titulo-ppa {
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;               /* Delgado */
    letter-spacing: 6px;            /* Separación entre letras */
    color: #6c7680;                 /* Gris suave */
    text-transform: uppercase;      /* Para matches exactos */
    text-align: center;
    font-size: clamp(1.2rem, 6vw, 2.7rem);
}


/* === CONTENEDOR FLEX === */
.contenedor-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* === MODALES (se mantienen iguales si ya funcionan) === */
.mi-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}

.mi-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mi-modal__box {
    position: relative;
    background: #fff;
    max-width: 420px;
    width: 90%;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}

.mi-modal__close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: 0;
    background: transparent;
    font-size: 22px;
    cursor: pointer
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .form-container {
        max-width: 90%;
        padding: 2rem 1.5rem;
    }

    .inputNumPol {
        width: 90%;
    }

    .btnConsultar {
        width: 90%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1.pt-3.pb-2.mb-4.px-2.pt-md-2 {
        font-size: 1.9rem;
    }

    .form-title {
        font-size: 15px;
    }
}
