.section1{
    height: auto;
    background-color: var(--color2);
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: space-around;
    align-items: center;
    margin: 5vh auto;
}

.section1_card{
    width: 90%;
    margin-top: 20px;
    height: auto;
}

#section1_card--img1{
    background-image: url(../Img/section1_img1.png);
}
#section1_card--img2{
    background-image: url(../Img/Icons/section1_card--img2@2.png);
}
#section1_card--img3{
    background-image: url(../Img/Icons/section1_card--img3@2.png);
}

.section1_card__img{
    width: 30%;
    margin: 0 auto;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
}
.section1_card__text{
    text-align: center;
    padding: 10px;
    font-family: raleway-regular;
    font-size: 1.5rem;
}

.section2{
    height: 40vh;
    max-height: auto;
    width: 100%;
    background-image: url(../Img/Section2_Banner.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.section2_text{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    margin: 0px auto;
}

.section2_text--primary{
    font-family: raleway-extrabold;
    text-align: center;
    color: var(--color4);
    font-size: 30px;
}
.section2_text--secondary{
    font-family: raleway-bold;
    text-align: center;
    font-size: 20px;
    color: var(--color2);
}
.section2--button{
    font-family: raleway-bold;
    background-color: var(--color1);
    padding: 10px;
    color: var(--color4);
    margin: 10px auto;
    text-align: center;
    border-radius: 10px;
    width: 80%;
    border: none;
    cursor: pointer;
    font-size: 2rem;
}
.section2--button p{
    width: 50%;
}



/* form sobrepesto  */
#form_principal{
   
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    z-index: 1000;
    background-color: #000000b0;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    display: none;
}
.form_principal__main{
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
    border-radius: 35px;
    width: 50%;
    height: 100%;
    min-width: 310px;
    background-color: var(--color1);
}


.form_principal__main h5{
    font-size: 2.2rem;
    padding: 13px;
    color: var(--color4);
}

.form_principal__main div form{
    width: 80%;
    margin: 0 auto;
}


input[type="text"],
input[type='email'],
input[type='number'],
input[type='tel'],
textarea
{
    padding: 10px;
    width: 100%;
    margin: 10px auto;
    border-radius: 8px;
}

label{
    color: var(--color2);
    display: block;
    padding-bottom: 0%;
}
button{
    padding: 10px;
    background-color: var(--color3);
    color: var(--color1);
    font-family: raleway-bold;
    border: none;
    border-radius: 10px;
    width: 100%;
}
textarea{
    width: 100%;
}

/* ================================================
   QUICK ACCESS SECTION - PSE & DATACREDITO
   ================================================ */
.section-quick-access {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    width: 100%;
}

.quick-access__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.quick-access__title {
    font-family: raleway-bold;
    font-size: clamp(24px, 4vw, 32px);
    color: var(--color1);
    margin-bottom: 10px;
}

.quick-access__subtitle {
    font-family: raleway-regular;
    font-size: clamp(14px, 2vw, 16px);
    color: var(--color5);
    margin-bottom: 40px;
}

.quick-access__buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.quick-access__card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    background: var(--color2);
    border-radius: 16px;
    padding: 24px 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-access__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--color3);
}

.quick-access__card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--color1) 0%, #002855 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-access__card:hover .quick-access__card-icon {
    background: linear-gradient(135deg, var(--color3) 0%, #2ba8d4 100%);
}

.quick-access__card-icon .material-icons {
    font-size: 28px;
    color: var(--color2);
}

.quick-access__card-content {
    flex: 1;
    text-align: left;
}

.quick-access__card-content h3 {
    font-family: raleway-bold;
    font-size: 18px;
    color: var(--color1);
    margin-bottom: 6px;
}

.quick-access__card-content p {
    font-family: raleway-regular;
    font-size: 14px;
    color: var(--color5);
    line-height: 1.4;
}

.quick-access__card-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-access__card:hover .quick-access__card-arrow {
    background: var(--color3);
}

.quick-access__card-arrow .material-icons {
    font-size: 20px;
    color: var(--color5);
    transition: all 0.3s ease;
}

.quick-access__card:hover .quick-access__card-arrow .material-icons {
    color: var(--color2);
    transform: translateX(3px);
}

/* Responsive - Tablet and Desktop */
@media (min-width: 768px) {
    .quick-access__buttons {
        flex-direction: row;
        justify-content: center;
    }

    .quick-access__card {
        flex: 1;
        max-width: 450px;
    }

    .section-quick-access {
        padding: 80px 40px;
    }
}

@media (min-width: 1200px) {
    .quick-access__card {
        padding: 28px 32px;
    }

    .quick-access__card-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .quick-access__card-icon .material-icons {
        font-size: 32px;
    }

    .quick-access__card-content h3 {
        font-size: 20px;
    }

    .quick-access__card-content p {
        font-size: 15px;
    }
}