.c-prin-sec {
    background-color: var(--black);
    background-image: url(https://aprodmovistarcomsa.z13.web.core.windows.net/persons/iphone-18/bg-iphone-v2.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 0 0;
}

.c-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        'logo'
        'titles'
        'call'
        'img';
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.c-contDefault {
    padding: 0 1rem;
}

.c-box__header {
    grid-area: logo;
    font-size: 3rem;
    text-align: center;
}

.c-box-headtitle {
    font-size: clamp(1.6rem, 4vw, 2.7rem);
    line-height: 1.2;
    font-weight: 100;
    margin-bottom: .5rem;
    padding: 0 1rem;
}

.c-box-headtext {
    font-size: clamp(1.1rem, 4vw, 1.2rem);
    line-height: 1.3;
}

.c-box__1 {
    grid-area: titles;
    align-self: center;
}

.c-box__2 {
    grid-area: call;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-box__3 {
    grid-area: img;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.c-box__img {
    max-width: 550px;
}

@media screen and (min-width:768px) {
    .c-box {
        grid-template-columns: 1fr 420px;
        grid-template-areas:
            'logo logo'
            'titles call'
            'img call';
        row-gap: 0;
    }
}

@media screen and (min-width:1200px) {
    .c-box__header {
        text-align: right;
    }
}


/* ==========================
   BLOQUE LEAD FORM
========================== */

.lead-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    max-width: 450px;
}

.lead-form__title {
    font-size: 1.3rem;
    line-height: 1.2;
}

.lead-form__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.lead-form__group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.lead-form__field {
    position: relative;
    width: 100%;
}

.lead-form__field-icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #86888c;
}

.lead-form__input {
    width: 100%;
    height: 48px;
    padding: 0 40px 0 16px;
    border: 1px solid #86888c;
    border-radius: 4px;
    font-size: 1rem;
    background: #fff;
    transition: border-color .3s ease;
}

.lead-form__input:focus {
    outline: none;
    border-color: var(--blue);
}

.lead-form__customer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lead-form__customer-label {
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.lead-form__radios {
    display: flex;
    gap: 1.5rem;
}

.lead-form__radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.lead-form__radio-input {
    display: none;
}

.lead-form__radio-circle {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: .5rem;
    border: 2px solid #86888c;
    border-radius: 50%;
    transition: .3s ease;
}

.lead-form__radio-input:checked+.lead-form__radio-circle {
    border-color: var(--blue);
}

.lead-form__radio-input:checked+.lead-form__radio-circle::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--blue);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.lead-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
    text-align: left;
}

.lead-form__checkbox-input {
    display: none;
}

.lead-form__checkbox-icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--blue);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    margin-top: .4rem;
}

.lead-form__checkbox-input:checked+.lead-form__checkbox-icon {
    background: var(--blue);
}

.lead-form__checkbox-input:checked+.lead-form__checkbox-icon::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.lead-form__checkbox-text {
    font-size: .875rem;
    line-height: 1.4;
}

.lead-form__submit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    width: 190px;
    height: 40px;
    margin: 1rem auto 0;
    border: none;
    border-radius: 30px;
    background: #019df4;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.lead-form__submit--error {
    background: #e63780;
}

.lead-form__submit-icon {
    font-size: 1.3rem;
}

.lead-form__submit-icon--spinner {
    animation: spin 1.5s linear infinite;
}


/* MODALES  */

.m-offert {
    max-width: 540px !important;
}