/* Contenedor general del formulario */
.qofe-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Secciones a dos columnas */
.form-section {
    width: 48%;
    margin-bottom: 20px;
    background-color: #fff;
    border-top: solid 6px #CCFF00;
    padding: 20px;
}

/* Filas dentro de cada sección */
.form-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.form-row div {
    width: 48%;
    padding: 5px 0;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
}

.small-text {
    font-size: 12px;
    color: #666;
    font-weight: 400;
    text-transform: none;
    display: block;
}

.block {
    display: block !important;
    margin-top: 20px;
}

input,
select {
    border-radius: 3px !important;
    border: 1px solid #1D4C3D !important;
    min-height: 40px !important;
    width: 100% !important;
    margin-top: 0px !important;
    padding: 10px !important;
    font-size: 14px;
    font-family: 'Proxima Nova', sans-serif;
}

/* Alineación específica para números a la derecha */
input[type="number"] {
    text-align: right !important;
}

/* Los demás textos, a la izquierda */
input[type="text"],
input[type="email"] {
    text-align: left !important;
}

input[type="radio"],
input[type="checkbox"] {
    margin-right: 5px;
    width: auto !important;
}

input[type="text"].currency-input{
    text-align: right !important;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    padding: 0px !important;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    font-family: 'Proxima Nova', sans-serif;
    text-transform: none;
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
}

/* Grupo de checkboxes (servicios fraccionales) */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Espacio horizontal entre cada checkbox */
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    font-family: 'Proxima Nova', sans-serif;
    text-transform: none;
    font-size: 14px;
    line-height: 24px;
}

button {
    background: #CCFF00;
    color: #000;
    padding: 10px 15px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

button:hover {
    background: #1D4033;
    color: #fff;
}

.send-button {
    justify-content: center;
}

.flex {
    display: flex !important;
}

.flex .small-text {
    margin-left: 10px !important;
}

/* Contenedor general: fondo gris claro, borde redondeado, etc. */
.fractional-services-block {
    background-color: #F9FAFB;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    color: #333;
    font-family: 'Proxima Nova', sans-serif; /* Ajusta según tu tipografía */
  }
  
  /* Título principal */
  .fractional-services-block h2 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3rem;
  }

  /* Asegúrate de quitar las viñetas de la lista */
  .fractional-services-block ul {
    list-style: none !important;
    margin: 0;
    padding: 0 !important;
  }
  
  /* Evita que aparezcan bullets en algunos temas que usan ::before o ::marker */
  .fractional-services-block li::before,
  .fractional-services-block li::marker {
    content: none !important;
  }
  
  /* Espaciado entre elementos de la lista */
  .fractional-services-block li {
    margin-bottom: 15px;
  }
  
  /* Estructura del label: checkbox a la izquierda, texto a la derecha */
  .service-label {
    display: flex;
    align-items: flex-start; /* Checkbox y título a la misma altura */
    gap: 10px;              /* Separación horizontal */
    cursor: pointer;
    text-transform: none !important;
  }
  
  /* Contenedor en columna: título arriba, subtítulo debajo */
  .service-content {
    display: flex;
    flex-direction: column;
  }
  
  /* Título en negrita, en mayúsculas si deseas */
  .service-title {
    font-weight: 700;
    font-size: 14px;
}
  
  /* Subtítulo debajo, sin negrita */
  .service-subtitle {
    font-weight: 400;
    font-size: 14px;
    margin-top: 3px;
  }
  
  /* Ajuste del checkbox */
  .service-label input[type="checkbox"] {
    margin-top: -8px !important; /* Ajusta según tu preferencia de alineación vertical */
  }
  
  
  .qofe-result-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.qofe-result-left {
    background-color: #1D4033; /* dark green example */
    color: #fff;
    flex: 1 1 50%;
    padding: 30px;
}
.qofe-result-left h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.qofe-message {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.qofe-submessage {
    font-size: 14px;
    line-height: 1.4em;
    max-width: 80%;
}
.qofe-result-right {
    background-color: #E6F2ED; /* light green example */
    color: #333;
    flex: 1 1 50%;
    padding: 30px;
}
.qofe-result-right h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}
.qofe-price {
    font-size: 48px;
    font-weight: 700;
    color: #1D4033;
    margin-bottom: 20px;
}
.qofe-summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.qofe-summary-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4em;
}
.qofe-summary-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background-color: #1D4033;
    border-radius: 50%;
}

/* Make the list display in two columns */
.two-column-list {
    columns: 2;               /* Modern browsers: 2 columns */
    -webkit-columns: 2;       /* Safari/older WebKit */
    -moz-columns: 2;          /* Firefox older prefix */
    column-gap: 30px;         /* Space between columns */
    list-style: none;         /* Remove default bullets */
    padding: 0;               /* Remove default padding */
    margin: 0;                /* Remove default margin */
  }
  
  /* Each <li> will have a check icon */
  .two-column-list li {
    margin-bottom: 10px;      /* Spacing between items */
    position: relative;       /* Needed for the pseudo-element icon */
    padding-left: 24px;       /* Room for the icon */
    list-style: none;         /* Remove default bullets */
  }
  
  /* The check icon in front of each item */
  .two-column-list li::before {
    content: "✔";             /* Or use an SVG, image, or a different symbol */
    color: #1D4033;           /* Adjust color as desired */
    position: absolute;
    left: 0;                  /* Align to the left edge */
    top: 0;                   /* Tweak to center vertically if needed */
    font-weight: bold;
  }
  


/* Media Query para mobile */
@media (max-width: 768px) {
    .qofe-form {
        flex-direction: column;
        padding: 10px;
    }

    .form-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-row div {
        width: 100%;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
    .two-column-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
      }
}