.hero .container {
    justify-content: center;
}
.hero .container h1{
    margin: 0;
    text-align: center;
}
.hero .container h2{
    color: var(--white);
    text-align: start;
    line-height: 1.05;
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
}

.hero .container #patente_input{
    outline: none;
    border: none;
    border-radius: 9999px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
    padding: .75rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--webblackb);
    width: 100%;
}
.hero .container #patente_input::placeholder {
    text-transform: none;
    font-weight: 400;
}
.hero .container #explicacion-reporte{
    font-weight: 400;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.25;
    align-self: center;
    text-align: center;
    color: var(--white);
    width: fit-content;
    transition: all .3s ease-in-out;
    border-bottom: 1px solid transparent;
}

.hero .container #explicacion-reporte:hover{
    border-bottom: 1px solid var(--white);
}

.paraquesirve{
    background-color: var(--webgray-a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.paraquesirve .container-articles .article img{
    display: flex;
    width: 50%;
    transition: transform .3s ease;
}

#search-button{
    width: 100%;
    /* width: 0%; */
    height: 100%;
    overflow: hidden;
    transition: all .5s ease-in-out;
    text-wrap: nowrap;
}
#search-loading{
    width: 100%;
    width: 0%;
    overflow: hidden;
    transition: all 1s ease-in-out;
    text-wrap: nowrap;
    position: absolute;
}
.rDialog{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    /* display: none; */
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

.rMessage {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 700px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    position: relative;
    transform: translateY(20px);
    transition: all 0.2s ease-out;
}
.rMessage h4{
    color: var(--provialcyan);
    transition: all .2s ease-in-out;
}
.rMessage a,.rMessage a:visited{
    color: var(--provialcyan);
}
.rMessage a:hover{
    color: #1589c3;
    text-decoration: underline;
}
.linebottom { border-bottom: 1px solid var( --webgray-a);}

#rDialogMessageClose{
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    fill: var(--webgray-icon);
    top: 16px;
    right: 16px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

#rDialogMessageClose:hover{
    fill: var(--darkwebgray-icon);
}