* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* ==========================
   SECCIÓN GENERAL
========================== */

.quote-builder {
    position: relative;
    padding: 80px 20px;
    background-image: url("../../images/bg-solicitud.jpg");
    background-size: contain;
    background-position: center;
}

.quote-builder__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}

.quote-builder__container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
}

/* ==========================
   HEADER
========================== */

.quote-builder__header {
    text-align: center;
    margin-bottom: 40px;
}

.quote-builder__header h1 {
    color: white;
    font-size: clamp(20px, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
}

.quote-builder__header span {
    display: block;
    color: #0084DD;
}

.quote-builder__header p {
    color: white;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 300;
}

/* ==========================
   TARJETA INFO
========================== */

.quote-builder__info-card {
    background: #F7F7F7;
    border-radius: 40px;
    padding: 30px;
    margin-bottom: 30px;
}

.quote-builder__info-card h2 {
    color: #0084DD;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
    margin-top: 0;
}

.quote-builder__info-card p {
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 18px;
    text-align: justify;
}

.quote-builder__steps {
    list-style: none;
}

.quote-builder__steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.quote-builder__steps span {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #0084DD;
    color: white;
    font-size: 12px;
}

/* ==========================
   FORMULARIO
========================== */

.quote-builder__form-card {
    background: white;
    border-radius: 28px;
    padding: 35px;
}

.quote-builder__form-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quote-builder__form-title img {
    width: 40px;
}

.quote-builder__form-title h3 {
    font-size: 1.3rem;
}

.quote-builder__form-title span {
    color: #0084DD;
}

/* ==========================
   INPUT
========================== */

.quote-builder__field {
    margin-bottom: 30px;
}

.quote-builder__field label {
    display: flex;
    font-weight: 700;
    margin-bottom: 5px;
    gap: 10px;
}
.badge__number{
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0084DD;
    color: white;
    font-size: 12px;
}

.quote-builder__field small {
    display: block;
    font-size: 12px;
    margin-bottom: 12px;
    color: #666;
}

.quote-builder__field input {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 0 20px;
    font-size: 15px;
    background: #F7F7F7;
}
.quote-builder__field_code input {
    width: 50%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 0 20px;
    font-size: 15px;
}

.quote-builder__field_code label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.quote-builder__field_code-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .quote-builder__field_code input {
    flex: 1;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 15px;
  }

  .quote-builder__location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #1a8fd1;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .quote-builder__location-btn i {
    color: #ffffff;
    font-size: 20px;
  }
.quote-builder__field__short input{
    width: 40%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 0 20px;
    font-size: 15px;
    background: #F7F7F7;
}
.quote-builder__field__short {
    margin-bottom: 30px;
    padding-top: 20px;
}

.quote-builder__field__short label {
    display: flex;
    font-weight: 700;
    margin-bottom: 5px;
    gap: 10px;
}
/* ==========================
   SERVICIOS
========================== */

.quote-builder__services {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 25px;
    background: #F7F7F7;
}

.quote-builder__services h4 {
    margin-bottom: 20px;
    display: flex;
    font-size: 17px;
    gap: 5px;
}

.quote-builder__services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px 40px;
}

.quote-builder__services-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

/* ==========================
   BLOQUES DE OPCIONES
========================== */

.quote-builder__double-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.quote-builder__option-box {
    background: #f7f7f7;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
}

.quote-builder__option-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 700;
}

.quote-builder__option-box label {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    cursor: pointer;
    font-size: 16px;
}

.quote-builder__option-box--full {
    width: 100%;
}

.quote-builder__two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ====================================
   TARJETAS INFERIORES
==================================== */

.quote-builder__extra-info,
.quote-builder__contact-info {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    margin-top: 25px;
}

/* ====================================
   TITULO
==================================== */

.quote-builder__section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.quote-builder__section-title h3 {
    font-size: 18px;
    font-weight: 700;
}

.quote-builder__section-title h3 span {
    color: #0084DD;
}

.quote-builder__section-icon {
    color: #0084DD;
    width: 30px;
    height: 30px;
    text-align: center;
    border: 2px solid #0084DD;
    border-radius: 50%;
}

/* ====================================
   CAMPOS
==================================== */

.quote-builder__field {
    margin-bottom: 20px;
}

.quote-builder__field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.quote-builder__field label span {
    color: red;
}

.quote-builder__field input,
.quote-builder__field select,
.quote-builder__field textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 15px;
    padding: 14px 16px;
    font-size: 14px;
    font-family: 'Poppins';
}

.quote-builder__field textarea {
    background: #f7f7f7;
    resize: vertical;
}

/* ====================================
   GRIDS
==================================== */

.quote-builder__grid-two {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.quote-builder__grid-address {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* ====================================
   PRESUPUESTO
==================================== */

.quote-builder__budget {
    display: flex;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    overflow: hidden;
}

.quote-builder__budget span {
    background: #f7f7f7;
    padding: 14px 16px;
    color: #C1C1C1;
    border-right: 1px solid #d8d8d8;
}

.quote-builder__budget input {
    border: none;
}

/* ====================================
   UBICACION
==================================== */

.quote-builder__location-btn {
    align-self: end;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: #0084DD;
    color: white;
    cursor: pointer;
}

/* ====================================
   CHECKBOX
==================================== */

.quote-builder__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

/* ====================================
   ARCHIVO
==================================== */
.quote-builder__upload{
    padding-bottom: 25px;
    border-bottom: 1px solid #d2d2d2;
}
.quote-builder__upload button {
    width: 100%;
    height: 50px;
    border: none;
    background: #0084DD;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
}
.quote-builder__upload i{
    font-size: 20px;
    padding-left: 20px;
}
/* ====================================
   LEGAL
==================================== */

.quote-builder__legal {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 20px 0;
    font-weight: 500;
}

/* ====================================
   BOTON
==================================== */

.quote-builder__submit {
    text-align: center;
    margin-top: 25px;
}

.quote-builder__submit button {
    background: #0084DD;
    color: white;
    border: none;
    padding: 15px 45px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {

    .quote-builder {
        padding: 60px 15px;
    }

    .quote-builder__info-card,
    .quote-builder__form-card {
        padding: 25px;
    }

    .quote-builder__services-grid {
        grid-template-columns: 1fr;
    }

    .quote-builder__form-title {
        flex-direction: column;
        text-align: center;
    }

    .quote-builder__double-grid {
        grid-template-columns: 1fr;
    }

    .quote-builder__two-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-builder__option-box {
        padding: 20px;
    }

    .quote-builder__option-box h4 {
        font-size: 18px;
    }

    .quote-builder__grid-two,
    .quote-builder__grid-address {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 470px){
    .quote-builder__steps li{
        font-size: 12px;
    }
    .quote-builder__steps span{
        width: 20px;
        height: 20px;
    }
}
