.newsletter {
    background: var(--bblue2);
    padding: 48px 20px;
    display: flex;
    justify-content: center;
}

.newsletter-container {
    max-width: 900px;
    width: 100%;
    background: #ffffff10;
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff20;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    color: #fff;
    text-align:left;
}

    .newsletter-text h2 {
        margin-bottom: 10px;
        color:white;
    }

    .newsletter-text p {
        font-size: 15px;
        opacity: 0.8;
        line-height: 1.4;
        margin-top: 15px;
    }


.newsletter-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 260px;
}

    .newsletter-form input {
       
      
        border: none;
        outline: none;
    }


    .newsletter-form .inputrequerido {
        border: 2px solid var(--rred) !important;
    }

.validations-newsletter p {
    color: var(--rred);
    text-align:left;
}
.lpnewsletter {
    height:600px;
    width: 100%;
    padding: 0px;
    margin: 0px;
    background-image: url(https://azure-cdn.macstoreonline.com.mx/macstoreonline/lp/acerca-de/ir-1.jpg);
    background-position: center;
    background-size: cover;
}
.lpnewsletter .newsletter-container {
    align-items: center;
}
    .lpnewsletter .newsletter {
        background: #1f2f45e3;
        padding: 48px 20px;
        display: flex;
        justify-content: center;
        min-height: 600px;
    }

.benefits-section
{
    padding: 60px 0px;
}



.benefits-section .container {
    max-width: 1220px;
    margin: 0 auto;
}

.benefits-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

    .benefits-section .section-title span {
        width: 80px;
        height: 2px;
        background: #d8dde7;
    }


.benefits-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.benefits-section .benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #edf1f7;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .3s ease;
}

    .benefits-section .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }
.benefit-icon svg path {
    stroke: var(--bblue5);
}

.benefits-section .benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--bblue7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.benefits-section .benefit-card h3 {
    color: #1e2d4b;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefits-section .benefit-card p {
    color: #6d778b;
    line-height: 1.6;
    margin: 0;
}

.trust-section {
    padding: 40px 15px;
}

.trust-container {
    max-width: 1220px;
    margin: 0 auto;
    background: linear-gradient( 180deg, #ffffff 0%, var(--bblue3) 100% );
    border: 1px solid #e8eef8;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    overflow: hidden;
}

.trust-main,
.trust-item {
    padding: 35px 30px;
}

.trust-item {
    border-left: 1px solid #e8eef8;
}

.trust-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bblue3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0b63e5;
    font-size: 2rem;
}

.trust-content h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
   
}

    .trust-content h3 span {
        color: #0b63e5;
    }

.trust-content p {
    margin: 0;
    color: #6d778b;
    font-size: 1rem;
    line-height: 1.6;
}

.trust-item {
    text-align: center;
}

.trust-item-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--bblue3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0b63e5;
    font-size: 1.8rem;
}

.trust-item h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.trust-item p {
    margin: 0;
    color: #6d778b;
    line-height: 1.6;
}
.modal-body section.trust-section.container.trust-sectio-seminuevos {
    padding: 15px 0;
}
.modal-body div#ipadseminuevo, .modal-body  div#iphoneseminuevo {

    padding: 0 !important;
}
.modal-body .benefits-section .benefit-card {
    padding: 25px 15px;
}
.modal-body .trust-main, .trust-item {
    padding: 25px 15px;
}
/* TABLET */
@media (max-width: 991px) {

    .trust-container {
        grid-template-columns: 1fr 1fr;
    }

    .trust-main {
        grid-column: 1 / -1;
        border-bottom: 1px solid #e8eef8;
    }

    .trust-item:nth-child(3) {
        border-left: 1px solid #e8eef8;
    }
    .benefits-section .benefits-grid {
        grid-template-columns: repeat(2,1fr);
    }
}



    @media (max-width: 768px) {
        .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }
        .trust-container {
            display: flex;
            flex-direction: column;
        }

        .trust-main {
            flex-direction: column;
            text-align: center;
        }

        .trust-content h2 {
            font-size: 1.8rem;
        }

        .trust-item {
            border-left: none;
            border-top: 1px solid #e8eef8;
        }

        .trust-main,
        .trust-item {
            padding: 30px 25px;
        }
        .newsletter-text {
            flex: 0;
        }

        .lpnewsletter {
            height: 550px;
        }

            .lpnewsletter .newsletter {
                min-height: 550px;
                padding: 48px 15px;
            }
      
   
}
@media (max-width: 576px) {

   

        .benefits-section .section-title {
            gap: 10px;
        }

            .benefits-section .section-title span {
                width: 40px;
            }

            .benefits-section .section-title h2 {
                font-size: 1.5rem;
                text-align: center;
            }

        .benefits-section .benefits-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .benefits-section .benefit-card {
            padding: 30px 20px;
        }
  
}
@media (max-width: 500px) {

    .newsletter-container {
        padding: 10px;
    }
    .newsletter-form {
        min-width: 100%;
    }
    .newsletter {
        padding: 28px 16px;
    }
}
