@font-face {
    font-family: 'Regular';
    src: url(../../../recursos/fonts/Regular.woff2), url(../../../recursos/fonts/Regular.woff);
}

@font-face {
    font-family: 'Negrita';
    src: url(../../../recursos/fonts/Negrita.woff2), url(../../../recursos/fonts/Negrita.woff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 1. Large Screens (> 1367px) */

@media (min-width: 1367px) {

    /* Form & Slider Styles (Large Screens) */
    .form-control:focus,
    .domain-input:focus,
    .domain-select:focus,
    .btn-add-domain:focus,
    .range-input:focus {
        outline: none;
        box-shadow: none;
    }

    .range-input {
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
    }

    .range-input::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 20px;
        width: 20px;
        border-radius: 3px;
        background: #213242;
        cursor: pointer;
        margin-top: -6.5px;
    }

    .range-input::-webkit-slider-runnable-track {
        width: 100%;
        height: 7px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    .range-input::-moz-range-thumb {
        height: 20px;
        width: 20px;
        border: none;
        border-radius: 0;
        background: #213242;
        cursor: pointer;
    }

    .range-input::-moz-range-track {
        width: 100%;
        height: 4px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    /* Page Layout */
    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #f7f8f8;
    }

    /* Seccion 1: Hero */
    .seccion-1 {
        display: flex;
        width: 100%;
        height: 50vh;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        /* Blue Background */
        padding-bottom: 80px;
        /* Space for overlap */
    }

    .modulo-11 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bloque-111 {
        font-family: 'Negrita', sans-serif;
        color: #fff;
        /* White text */
        font-size: 56px;
        text-align: center;
        line-height: 1.1;
    }

    /* Seccion 2: Form with Overlap */
    .seccion-2 {
        display: flex;
        width: 100%;
        padding: 0 0 50px 0;
        justify-content: center;
        align-items: center;
        margin-top: -80px;
        /* Negative margin for overlap */
    }

    .modulo-21 {
        display: flex;
        flex-direction: column;
        width: 900px;
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        gap: 30px;
        z-index: 5;
    }

    .bloque-211 {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .bloque-211 h2 {
        font-family: 'Negrita', sans-serif;
        color: #213242;
        font-size: 24px;
    }

    .bloque-211 p {
        font-family: 'Regular', sans-serif;
        color: #213242;
        font-size: 14px;
    }

    .bloque-212 {
        display: flex;
        flex-direction: row;
        /* Horizontal layout */
        align-items: flex-start;
        /* Align top */
        gap: 20px;
        justify-content: center;
    }

    .contenido-2121 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: auto;
    }

    .contenido-2121 label {
        font-family: 'Negrita', sans-serif;
        color: #213242;
        font-size: 14px;
    }

    .contenido-2122 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: auto;
    }

    .contenido-2122 label {
        font-family: 'Negrita', sans-serif;
        color: #213242;
        font-size: 14px;
    }

    .contenido-2123 {
        display: flex;
        width: auto;
        margin-bottom: 2px;
        /* Visual alignment */
    }

    .bloque-212a {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 10px;
    }

    .custom-select-wrapper {
        width: 147px;
    }

    .form-control {
        width: 200px;
        height: 48px;
        padding: 0 16px;
        border: none;
        border-radius: 8px;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        background-color: #F3F4F6;
    }

    .domain-input {
        width: 294px;
    }

    .domain-select {
        display: none;
    }

    .domain-select option:checked {
        background-color: #213242;
        color: #fff;
    }

    .btn-add-domain {
        width: 120px;
        height: 48px;
        background-color: #F3F4F6;
        color: #213242;
        border: none;
        border-radius: 8px;
        font-family: 'Negrita';
        font-size: 14px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .btn-add-domain:hover {
        background-color: #e5e7eb;
    }

    /* Custom Select Styles (Large Screens) */
    .custom-select-wrapper {
        position: relative;
        width: 147px;
        user-select: none;
    }

    .custom-select-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 48px;
        padding: 0 16px;
        background-color: #F3F4F6;
        border-radius: 8px;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        cursor: pointer;
    }

    .custom-options {
        position: absolute;
        top: 110%;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 100;
        flex-direction: column;
        overflow: hidden;
    }

    .custom-options.open {
        display: flex;
    }

    .custom-option {
        padding: 12px 16px;
        cursor: pointer;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        transition: background 0.2s;
    }

    .custom-option:hover,
    .custom-option.selected {
        background-color: #213242;
        color: #fff;
    }

    /* Domain Tags Styles (Large Screens) */
    .domains-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        width: 100%;
    }

    .domain-tag {
        display: flex;
        align-items: center;
        background-color: #E1B783;
        color: #213242;
        padding: 5px 12px;
        border-radius: 20px;
        font-family: 'Regular';
        font-size: 14px;
        gap: 8px;
        text-transform: lowercase;
    }

    .domain-tag i {
        cursor: pointer;
        font-size: 16px;
        transition: color 0.2s;
    }

    .domain-tag i:hover {
        color: #fff;
    }

    .bloque-213 {
        display: flex;
        flex-direction: column;
        background: #F9FAFB;
        padding: 30px;
        border-radius: 12px;
        margin-top: 10px;
        gap: 20px;
    }

    .contenido-2131 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .label-capacity {
        font-family: 'Negrita', sans-serif;
        color: #213242;
        font-weight: 600;
    }

    .range-value {
        font-family: 'Negrita', sans-serif;
        color: #213242;
        /* Blue text */
        font-size: 24px;
    }

    .range-input {
        width: 100%;
        cursor: pointer;
    }

    .contenido-2132 {
        display: flex;
        justify-content: space-between;
        color: #213242;
        font-size: 12px;
        font-family: 'Regular', sans-serif;
    }


    .bloque-214 {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        align-items: center;
    }

    .bloque-214 .form-control {
        width: 500px;
    }

    .contenido-214-input {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-214-input label {
        font-family: 'Negrita', sans-serif;
        color: #213242;
        font-size: 14px;
    }

    .bloque-215 {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center button */
        margin-top: 30px;
        gap: 10px;
    }

    .btn-cta-large {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 300px;
        height: 52px;
        background-color: #e1b783;
        /* Mustard */
        color: #213242;
        border-radius: 7px;
        /* Pill shape */
        font-size: 18px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        font-family: 'Negrita', sans-serif;
        transition: background-color 0.3s;
        box-shadow: 0 4px 6px rgba(225, 183, 131, 0.4);
    }

    .btn-cta-large:hover {
        background-color: #213242;
        color: #fff;
    }

    .contenido-2151 {
        text-align: center;
    }

    /* Seccion 3: Benefits */
    .seccion-3 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 0;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .modulo-31 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .modulo-31 h2 {
        font-family: 'Negrita', sans-serif;
        color: #213242;
    }

    .modulo-31 p {
        font-family: 'Regular', sans-serif;
        color: #213242;
    }

    .modulo-32 {
        display: flex;
        justify-content: center;
        width: 1200px;
        gap: 30px;
        flex-wrap: wrap;
    }

    .bloque-321 {
        display: flex;
        flex-direction: column;
        width: 270px;
        background: #fff;
        border-radius: 16px;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        transition: transform 0.3s ease;
    }

    .bloque-321:hover {
        transform: translateY(-5px);
    }

    .contenido-icon {
        display: flex;
        width: 48px;
        height: 48px;
        background: #EEF2FF;
        border-radius: 12px;
        justify-content: center;
        align-items: center;
        color: #4F46E5;
        font-size: 24px;
    }

    .bloque-321 h3 {
        font-family: 'Negrita', sans-serif;
        color: #213242;
    }

    .bloque-321 p {
        font-family: 'Regular', sans-serif;
        color: #213242;
    }

    /* Seccion 4: FAQ */
    .seccion-4 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 0;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        width: 800px;
        gap: 40px;
    }

    .bloque-411 h2 {
        font-family: 'Negrita', sans-serif;
        color: #213242;
    }

    .bloque-412 {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .pregunta-412 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #F3F4F6;
        font-family: 'Negrita', sans-serif;
        font-size: 16px;
        color: #213242;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .pregunta-412.active {
        background: #F9FAFB;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }

    .pregunta-412 i {
        transition: transform 0.3s ease;
    }

    .pregunta-412.active i {
        transform: rotate(180deg);
    }

    .respuesta-412 {
        display: none;
        padding: 0 24px 20px 24px;
        background: #F9FAFB;
        border: 1px solid #F3F4F6;
        border-top: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        font-family: 'Regular', sans-serif;
        font-size: 15px;
        color: #4B5563;
        line-height: 1.6;
    }

    .respuesta-412.active {
        display: block;
    }

    /* Seccion 5: CTA Final */
    .seccion-5 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 0;
        justify-content: center;
        align-items: center;
        gap: 30px;
        background-color: #e1b783;
        color: #213242;
        text-align: center;
    }

    .modulo-51 {
        display: flex;
        align-items: center;
        gap: 5px;
        font-family: 'Regular', sans-serif;
    }

    .modulo-52 {
        font-family: 'Negrita', sans-serif;
        font-size: 48px;
        max-width: 800px;
        line-height: 1.2;
        color: #213242;
    }

    .btn-final {
        width: 250px;
        background-color: #4F46E5;
        color: white;
    }
}

/* 2. Desktop (1281px - 1366px) */
@media (min-width: 1281px) and (max-width: 1366px) {

    /* Form & Slider Styles (Desktop) */
    .form-control:focus,
    .domain-input:focus,
    .domain-select:focus,
    .btn-add-domain:focus,
    .range-input:focus {
        outline: none;
        box-shadow: none;
    }

    .range-input {
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
    }

    .range-input::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 20px;
        width: 20px;
        border-radius: 3px;
        background: #213242;
        cursor: pointer;
        margin-top: -6.5px;
    }

    .range-input::-webkit-slider-runnable-track {
        width: 100%;
        height: 7px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    .range-input::-moz-range-thumb {
        height: 20px;
        width: 20px;
        border: none;
        border-radius: 0;
        background: #213242;
        cursor: pointer;
    }

    .range-input::-moz-range-track {
        width: 100%;
        height: 4px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        background-color: #f7f8f8;
    }

    .seccion-1 {
        display: flex;
        width: 100%;
        height: 45vh;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding-bottom: 60px;
    }

    .modulo-11 {
        display: flex;
    }

    .bloque-111 {
        font-family: 'Negrita', sans-serif;
        color: #fff;
        font-size: 48px;
        text-align: center;
    }

    .seccion-2 {
        display: flex;
        width: 100%;
        padding: 0 0 40px 0;
        justify-content: center;
        margin-top: -60px;
    }

    .modulo-21 {
        display: flex;
        flex-direction: column;
        width: 800px;
        background: #fff;
        padding: 35px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        gap: 25px;
        z-index: 5;
    }

    .bloque-211 {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .bloque-211 h2 {
        font-family: 'Negrita', sans-serif;
        font-size: 24px;
        color: #213242;
    }

    .bloque-211 p {
        font-family: 'Regular', sans-serif;
        font-size: 14px;
        color: #213242;
    }

    .bloque-212 {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        justify-content: center;
    }

    .contenido-2121 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: auto;
    }

    .contenido-2121 label {
        font-family: 'Negrita';
        color: #213242;
    }

    .contenido-2122 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: auto;
    }

    .contenido-2122 label {
        font-family: 'Negrita';
        color: #213242;
    }

    .contenido-2123 {
        display: flex;
        width: auto;
        margin-bottom: 2px;
    }

    .bloque-212a {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .custom-select-wrapper {
        width: 130px;
    }

    .form-control {
        width: 180px;
        height: 48px;
        padding: 0 16px;
        border: none;
        border-radius: 8px;
        background: #F3F4F6;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
    }

    .domain-input {
        width: 261px;
    }

    .domain-select {
        display: none;
    }

    .btn-add-domain {
        width: 120px;
        height: 48px;
        background: #F3F4F6;
        color: #213242;
        border: none;
        border-radius: 8px;
        font-family: 'Negrita';
        cursor: pointer;
    }

    /* Custom Select Styles (Desktop) */
    .custom-select-wrapper {
        position: relative;
        width: 130px;
        user-select: none;
    }

    .custom-select-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 48px;
        padding: 0 16px;
        background-color: #F3F4F6;
        border-radius: 8px;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        cursor: pointer;
    }

    .custom-options {
        position: absolute;
        top: 110%;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 100;
        flex-direction: column;
        overflow: hidden;
    }

    .custom-options.open {
        display: flex;
    }

    .custom-option {
        padding: 12px 16px;
        cursor: pointer;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        transition: background 0.2s;
    }

    .custom-option:hover,
    .custom-option.selected {
        background-color: #213242;
        color: #fff;
    }

    /* Domain Tags Styles (Desktop) */
    .domains-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        width: 100%;
    }

    .domain-tag {
        display: flex;
        align-items: center;
        background-color: #E1B783;
        color: #213242;
        padding: 5px 12px;
        border-radius: 20px;
        font-family: 'Regular';
        font-size: 14px;
        gap: 8px;
        text-transform: lowercase;
    }

    .domain-tag i {
        cursor: pointer;
        font-size: 16px;
        transition: color 0.2s;
    }

    .domain-tag i:hover {
        color: #fff;
    }

    .bloque-213 {
        display: flex;
        flex-direction: column;
        background: #F9FAFB;
        padding: 20px;
        border-radius: 12px;
        gap: 10px;
        margin-top: 10px;
    }

    .contenido-2131 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .label-capacity {
        font-family: 'Negrita';
        color: #213242;
        font-weight: 600;
    }

    .range-value {
        font-family: 'Negrita';
        color: #213242;
        font-size: 24px;
    }

    .range-input {
        width: 100%;
        cursor: pointer;
    }

    .contenido-2132 {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #213242;
        font-family: 'Regular';
    }

    .bloque-214 {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        align-items: center;
    }

    .bloque-214 .form-control {
        width: 400px;
    }

    .contenido-214-input {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-214-input label {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-215 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
        align-items: center;
    }

    .btn-cta-large {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 250px;
        height: 52px;
        background: #e1b783;
        color: #213242;
        border-radius: 7px;
        font-family: 'Negrita';
        font-size: 18px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(225, 183, 131, 0.4);
    }

    .btn-cta-large:hover {
        background: #213242;
        color: #fff;
    }

    .contenido-2151 {
        text-align: center;
    }

    .seccion-3 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 40px 0;
        align-items: center;
        gap: 40px;
    }

    .modulo-31 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .modulo-31 h2 {
        font-family: 'Negrita';
        color: #213242;
    }

    .modulo-31 p {
        font-family: 'Regular';
        color: #213242;
    }

    .modulo-32 {
        display: flex;
        width: 1100px;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .bloque-321 {
        display: flex;
        flex-direction: column;
        width: 240px;
        padding: 25px;
        background: #fff;
        border-radius: 16px;
        gap: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .contenido-icon {
        display: flex;
        width: 48px;
        height: 48px;
        background: #EEF2FF;
        border-radius: 12px;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        color: #4F46E5;
    }

    .bloque-321 h3 {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-321 p {
        font-family: 'Regular';
        color: #213242;
    }

    .seccion-4 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 0;
        align-items: center;
        gap: 40px;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        width: 700px;
        gap: 30px;
    }

    .bloque-411 h2 {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-412 {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .pregunta-412 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #F3F4F6;
        font-family: 'Negrita', sans-serif;
        font-size: 16px;
        color: #213242;
        cursor: pointer;
    }

    .pregunta-412.active {
        background: #F9FAFB;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }

    .pregunta-412 i {
        transition: transform 0.3s ease;
    }

    .pregunta-412.active i {
        transform: rotate(180deg);
    }

    .respuesta-412 {
        display: none;
        padding: 0 24px 20px 24px;
        background: #F9FAFB;
        border: 1px solid #F3F4F6;
        border-top: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        font-family: 'Regular', sans-serif;
        font-size: 15px;
        color: #4B5563;
        line-height: 1.6;
    }

    .respuesta-412.active {
        display: block;
    }

    .seccion-5 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 50px 0;
        justify-content: center;
        align-items: center;
        gap: 25px;
        background-color: #e1b783;
        color: #213242;
        text-align: center;
    }

    .modulo-51 {
        display: flex;
        align-items: center;
        gap: 5px;
        font-family: 'Regular', sans-serif;
    }

    .modulo-52 {
        font-family: 'Negrita', sans-serif;
        font-size: 40px;
        max-width: 700px;
        line-height: 1.2;
        color: #213242;
    }

    .btn-final {
        width: 250px;
        background-color: #4F46E5;
        color: white;
    }
}

/* 3. Laptop (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {

    /* Form & Slider Styles (Laptop) */
    .form-control:focus,
    .domain-input:focus,
    .domain-select:focus,
    .btn-add-domain:focus,
    .range-input:focus {
        outline: none;
        box-shadow: none;
    }

    .range-input {
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
    }

    .range-input::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 20px;
        width: 20px;
        border-radius: 3px;
        background: #213242;
        cursor: pointer;
        margin-top: -6.5px;
    }

    .range-input::-webkit-slider-runnable-track {
        width: 100%;
        height: 7px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    .range-input::-moz-range-thumb {
        height: 20px;
        width: 20px;
        border: none;
        border-radius: 0;
        background: #213242;
        cursor: pointer;
    }

    .range-input::-moz-range-track {
        width: 100%;
        height: 4px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        background: #f7f8f8;
    }

    .seccion-1 {
        display: flex;
        width: 100%;
        height: 45vh;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding-bottom: 60px;
    }

    .modulo-11 {
        display: flex;
    }

    .bloque-111 {
        font-family: 'Negrita';
        color: #fff;
        font-size: 42px;
        text-align: center;
    }

    .seccion-2 {
        display: flex;
        width: 100%;
        padding: 0 0 40px 0;
        justify-content: center;
        margin-top: -60px;
    }

    .modulo-21 {
        display: flex;
        flex-direction: column;
        width: 700px;
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        gap: 20px;
        z-index: 5;
    }

    .bloque-211 {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .bloque-211 h2 {
        font-family: 'Negrita';
        font-size: 24px;
        color: #213242;
    }

    .bloque-211 p {
        font-family: 'Regular';
        font-size: 14px;
        color: #213242;
    }

    .bloque-212 {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        /* Align top */
        gap: 15px;
        justify-content: center;
    }

    .contenido-2121 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: auto;
    }

    .contenido-2121 label {
        font-family: 'Negrita';
        color: #213242;
    }

    .contenido-2122 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: auto;
    }

    .contenido-2122 label {
        font-family: 'Negrita';
        color: #213242;
    }

    .contenido-2123 {
        display: flex;
        width: auto;
        margin-bottom: 2px;
    }

    .bloque-212a {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .custom-select-wrapper {
        width: 114px;
    }

    .form-control {
        width: 160px;
        height: 48px;
        padding: 0 16px;
        border: none;
        border-radius: 8px;
        background: #F3F4F6;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
    }

    .domain-input {
        width: 228px;
    }

    .domain-select {
        display: none;
    }

    .btn-add-domain {
        width: 100px;
        height: 48px;
        background: #F3F4F6;
        color: #213242;
        border: none;
        border-radius: 8px;
        font-family: 'Negrita';
        cursor: pointer;
    }

    /* Custom Select Styles (Laptop) */
    .custom-select-wrapper {
        position: relative;
        width: 114px;
        user-select: none;
    }

    .custom-select-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 48px;
        padding: 0 16px;
        background-color: #F3F4F6;
        border-radius: 8px;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        cursor: pointer;
    }

    .custom-options {
        position: absolute;
        top: 110%;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 100;
        flex-direction: column;
        overflow: hidden;
    }

    .custom-options.open {
        display: flex;
    }

    .custom-option {
        padding: 12px 16px;
        cursor: pointer;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        transition: background 0.2s;
    }

    .custom-option:hover,
    .custom-option.selected {
        background-color: #213242;
        color: #fff;
    }

    /* Domain Tags Styles (Laptop) */
    .domains-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        width: 100%;
    }

    .domain-tag {
        display: flex;
        align-items: center;
        background-color: #E1B783;
        color: #213242;
        padding: 5px 12px;
        border-radius: 20px;
        font-family: 'Regular';
        font-size: 14px;
        gap: 8px;
        text-transform: lowercase;
    }

    .domain-tag i {
        cursor: pointer;
        font-size: 16px;
        transition: color 0.2s;
    }

    .domain-tag i:hover {
        color: #fff;
    }

    .bloque-213 {
        display: flex;
        flex-direction: column;
        background: #F9FAFB;
        padding: 20px;
        border-radius: 12px;
        gap: 10px;
        margin-top: 10px;
    }

    .contenido-2131 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .label-capacity {
        font-family: 'Negrita';
        color: #213242;
        font-weight: 600;
    }

    .range-value {
        font-family: 'Negrita';
        color: #213242;
        font-size: 24px;
    }

    .range-input {
        width: 100%;
        cursor: pointer;
    }

    .contenido-2132 {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #213242;
        font-family: 'Regular';
    }

    .bloque-214 {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        align-items: center;
    }

    .bloque-214 .form-control {
        width: 350px;
    }

    .contenido-214-input {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-214-input label {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-215 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
        align-items: center;
    }

    .btn-cta-large {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 250px;
        height: 52px;
        background: #e1b783;
        color: #213242;
        border-radius: 7px;
        font-family: 'Negrita';
        font-size: 18px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(225, 183, 131, 0.4);
    }

    .btn-cta-large:hover {
        background: #213242;
        color: #fff;
    }

    .contenido-2151 {
        text-align: center;
    }

    .seccion-3 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 40px 0;
        align-items: center;
        gap: 40px;
    }

    .modulo-31 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .modulo-31 h2 {
        font-family: 'Negrita';
        color: #213242;
    }

    .modulo-31 p {
        font-family: 'Regular';
        color: #213242;
    }

    .modulo-32 {
        display: flex;
        width: 950px;
        justify-content: center;
        gap: 20px;
    }

    .bloque-321 {
        display: flex;
        flex-direction: column;
        width: 210px;
        padding: 20px;
        background: #fff;
        border-radius: 16px;
        gap: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .contenido-icon {
        display: flex;
        width: 48px;
        height: 48px;
        background: #EEF2FF;
        border-radius: 12px;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        color: #4F46E5;
    }

    .bloque-321 h3 {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-321 p {
        font-family: 'Regular';
        color: #213242;
    }

    .seccion-4 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 0;
        align-items: center;
        gap: 40px;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        width: 600px;
        gap: 20px;
    }

    .bloque-411 h2 {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-412 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .pregunta-412 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #F3F4F6;
        font-family: 'Negrita', sans-serif;
        font-size: 16px;
        color: #213242;
        cursor: pointer;
    }

    .pregunta-412.active {
        background: #F9FAFB;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }

    .pregunta-412 i {
        transition: transform 0.3s ease;
    }

    .pregunta-412.active i {
        transform: rotate(180deg);
    }

    .respuesta-412 {
        display: none;
        padding: 0 24px 20px 24px;
        background: #F9FAFB;
        border: 1px solid #F3F4F6;
        border-top: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        font-family: 'Regular', sans-serif;
        font-size: 15px;
        color: #4B5563;
        line-height: 1.6;
    }

    .respuesta-412.active {
        display: block;
    }

    .seccion-5 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 50px 0;
        justify-content: center;
        align-items: center;
        gap: 25px;
        background-color: #e1b783;
        color: #213242;
        text-align: center;
    }

    .modulo-51 {
        display: flex;
        align-items: center;
        gap: 5px;
        font-family: 'Regular', sans-serif;
    }

    .modulo-52 {
        font-family: 'Negrita', sans-serif;
        font-size: 36px;
        max-width: 600px;
        line-height: 1.2;
        color: #213242;
    }

    .btn-final {
        width: 250px;
        background-color: #4F46E5;
        color: white;
    }
}

/* 4. Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Form & Slider Styles (Tablet) */
    .form-control:focus,
    .domain-input:focus,
    .domain-select:focus,
    .btn-add-domain:focus,
    .range-input:focus {
        outline: none;
        box-shadow: none;
    }

    .range-input {
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
    }

    .range-input::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 20px;
        width: 20px;
        border-radius: 3px;
        background: #213242;
        cursor: pointer;
        margin-top: -6.5px;
    }

    .range-input::-webkit-slider-runnable-track {
        width: 100%;
        height: 7px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    .range-input::-moz-range-thumb {
        height: 20px;
        width: 20px;
        border: none;
        border-radius: 0;
        background: #213242;
        cursor: pointer;
    }

    .range-input::-moz-range-track {
        width: 100%;
        height: 4px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        background: #f7f8f8;
    }

    .seccion-1 {
        display: flex;
        width: 100%;
        padding: 60px 20px;
        justify-content: center;
        align-items: center;
        background: #213242;
        /* Blue */
    }

    .bloque-111 {
        font-family: 'Negrita';
        color: #fff;
        font-size: 36px;
        text-align: center;
    }

    .seccion-2 {
        display: flex;
        width: 100%;
        padding: 0 20px 40px 20px;
        justify-content: center;
        margin-top: -30px;
        /* Slight overlap */
    }

    .modulo-21 {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 600px;
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        gap: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        z-index: 5;
    }

    .bloque-211 {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .bloque-211 h2 {
        font-family: 'Negrita';
        font-size: 24px;
        color: #213242;
    }

    .bloque-211 p {
        font-family: 'Regular';
        font-size: 14px;
        color: #213242;
    }

    .bloque-212 {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 15px;
    }

    .contenido-2121 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .contenido-2121 label {
        font-family: 'Negrita';
        color: #213242;
    }

    .contenido-2122 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .contenido-2122 label {
        font-family: 'Negrita';
        color: #213242;
    }

    .contenido-2123 {
        display: flex;
        width: 100%;
        margin-bottom: 2px;
    }

    .bloque-212a {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 10px;
    }

    .custom-select-wrapper {
        width: 176px;
    }

    .form-control {
        width: 100%;
        height: 48px;
        padding: 0 16px;
        border: none;
        border-radius: 8px;
        background: #F3F4F6;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
    }

    .domain-input {
        width: 354px;
    }

    .domain-select {
        display: none;
    }

    .btn-add-domain {
        width: 100%;
        height: 48px;
        background: #F3F4F6;
        color: #213242;
        border: none;
        border-radius: 8px;
        font-family: 'Negrita';
        cursor: pointer;
        margin-top: 0;
    }

    /* Custom Select Styles (Tablet) */
    .custom-select-wrapper {
        position: relative;
        width: 176px;
        user-select: none;
    }

    .custom-select-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 48px;
        padding: 0 16px;
        background-color: #F3F4F6;
        border-radius: 8px;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        cursor: pointer;
    }

    .custom-options {
        position: absolute;
        top: 110%;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 100;
        flex-direction: column;
        overflow: hidden;
    }

    .custom-options.open {
        display: flex;
    }

    .custom-option {
        padding: 12px 16px;
        cursor: pointer;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        transition: background 0.2s;
    }

    .custom-option:hover,
    .custom-option.selected {
        background-color: #213242;
        color: #fff;
    }

    /* Domain Tags Styles (Tablet) */
    .domains-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        width: 100%;
    }

    .domain-tag {
        display: flex;
        align-items: center;
        background-color: #E1B783;
        color: #213242;
        padding: 5px 12px;
        border-radius: 20px;
        font-family: 'Regular';
        font-size: 14px;
        gap: 8px;
        text-transform: lowercase;
    }

    .domain-tag i {
        cursor: pointer;
        font-size: 16px;
        transition: color 0.2s;
    }

    .domain-tag i:hover {
        color: #fff;
    }

    .bloque-213 {
        display: flex;
        flex-direction: column;
        background: #F9FAFB;
        padding: 20px;
        border-radius: 12px;
        gap: 10px;
        margin-top: 10px;
    }

    .contenido-2131 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .label-capacity {
        font-family: 'Negrita';
        color: #213242;
        font-weight: 600;
    }

    .range-value {
        font-family: 'Negrita';
        color: #213242;
        font-size: 24px;
    }

    .range-input {
        width: 100%;
        cursor: pointer;
    }

    .contenido-2132 {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #213242;
        font-family: 'Regular';
    }

    .bloque-214 {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .contenido-214-input {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-214-input label {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-215 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
        align-items: center;
    }

    .btn-cta-large {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 52px;
        background: #e1b783;
        color: #213242;
        border-radius: 7px;
        font-family: 'Negrita';
        font-size: 18px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(225, 183, 131, 0.4);
    }

    .btn-cta-large:hover {
        background: #213242;
        color: #fff;
    }

    .contenido-2151 {
        text-align: center;
    }

    .seccion-3 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 0;
        align-items: center;
        gap: 40px;
    }

    .modulo-31 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .modulo-31 h2 {
        font-family: 'Negrita';
        color: #213242;
    }

    .modulo-31 p {
        font-family: 'Regular';
        color: #213242;
    }

    .modulo-32 {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .bloque-321 {
        display: flex;
        flex-direction: column;
        width: 45%;
        padding: 20px;
        background: #fff;
        border-radius: 16px;
        gap: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .contenido-icon {
        display: flex;
        width: 48px;
        height: 48px;
        background: #EEF2FF;
        border-radius: 12px;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        color: #4F46E5;
    }

    .bloque-321 h3 {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-321 p {
        font-family: 'Regular';
        color: #213242;
    }

    .seccion-4 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 0;
        align-items: center;
        gap: 40px;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 700px;
        gap: 20px;
    }

    .bloque-411 h2 {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-412 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .pregunta-412 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #F3F4F6;
        font-family: 'Negrita', sans-serif;
        font-size: 16px;
        color: #213242;
        cursor: pointer;
    }

    .pregunta-412.active {
        background: #F9FAFB;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }

    .pregunta-412 i {
        transition: transform 0.3s ease;
    }

    .pregunta-412.active i {
        transform: rotate(180deg);
    }

    .respuesta-412 {
        display: none;
        padding: 0 24px 20px 24px;
        background: #F9FAFB;
        border: 1px solid #F3F4F6;
        border-top: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        font-family: 'Regular', sans-serif;
        font-size: 15px;
        color: #4B5563;
        line-height: 1.6;
    }

    .respuesta-412.active {
        display: block;
    }

    .seccion-5 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 50px 0;
        justify-content: center;
        align-items: center;
        gap: 25px;
        background-color: #e1b783;
        color: #213242;
        text-align: center;
    }

    .modulo-51 {
        display: flex;
        align-items: center;
        gap: 5px;
        font-family: 'Regular', sans-serif;
        font-size: 14px;
    }

    .modulo-52 {
        font-family: 'Negrita', sans-serif;
        font-size: 32px;
        max-width: 500px;
        line-height: 1.2;
        color: #213242;
    }

    .btn-final {
        width: 220px;
        background-color: #4F46E5;
        color: white;
    }
}

/* 5. Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {

    /* Form & Slider Styles (Mobile) */
    .form-control:focus,
    .domain-input:focus,
    .domain-select:focus,
    .btn-add-domain:focus,
    .range-input:focus {
        outline: none;
        box-shadow: none;
    }

    .range-input {
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
    }

    .range-input::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 20px;
        width: 20px;
        border-radius: 3px;
        background: #213242;
        cursor: pointer;
        margin-top: -6.5px;
    }

    .range-input::-webkit-slider-runnable-track {
        width: 100%;
        height: 7px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    .range-input::-moz-range-thumb {
        height: 20px;
        width: 20px;
        border: none;
        border-radius: 0;
        background: #213242;
        cursor: pointer;
    }

    .range-input::-moz-range-track {
        width: 100%;
        height: 4px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        background: #f7f8f8;
    }

    .seccion-1 {
        display: flex;
        width: 100%;
        padding: 60px 20px;
        justify-content: center;
        align-items: center;
        background: #213242;
        /* Blue */
    }

    .modulo-11 {
        display: flex;
    }

    .bloque-111 {
        font-family: 'Negrita';
        color: #213242;
        font-size: 32px;
        text-align: center;
    }

    .seccion-2 {
        display: flex;
        width: 100%;
        padding: 0 20px 40px 20px;
        justify-content: center;
        margin-top: -30px;
        /* Overlap */
    }

    .modulo-21 {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 25px;
        border-radius: 20px;
        gap: 20px;
    }

    .bloque-211 {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .bloque-211 h2 {
        font-family: 'Negrita';
        font-size: 24px;
        color: #213242;
    }

    .bloque-211 p {
        font-family: 'Regular';
        font-size: 14px;
        color: #213242;
    }

    .bloque-212 {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-2121 {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-2121 label {
        font-family: 'Negrita';
        color: #213242;
    }

    .contenido-2122 {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-2122 label {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-212a {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .custom-select-wrapper {
        width: 100%;
    }

    .form-control {
        width: 100%;
        height: 48px;
        padding: 0 16px;
        border: none;
        border-radius: 8px;
        background: #F3F4F6;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
    }

    .domain-input {
        width: 100%;
        border-radius: 8px;
        border: none;
        background: #F3F4F6;
    }

    .domain-select {
        display: none;
    }

    .btn-add-domain {
        width: 100%;
        height: 48px;
        background: #F3F4F6;
        color: #213242;
        border: none;
        border-radius: 8px;
        font-family: 'Negrita';
        cursor: pointer;
        margin-top: 0;
    }

    /* Custom Select Styles (Mobile) */
    .custom-select-wrapper {
        position: relative;
        width: 100%;
        user-select: none;
    }

    .custom-select-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 48px;
        padding: 0 16px;
        background-color: #F3F4F6;
        border-radius: 8px;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        cursor: pointer;
    }

    .custom-options {
        position: absolute;
        top: 110%;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 100;
        flex-direction: column;
        overflow: hidden;
    }

    .custom-options.open {
        display: flex;
    }

    .custom-option {
        padding: 12px 16px;
        cursor: pointer;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        transition: background 0.2s;
    }

    .custom-option:hover,
    .custom-option.selected {
        background-color: #213242;
        color: #fff;
    }

    /* Domain Tags Styles (Mobile) */
    .domains-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        width: 100%;
    }

    .domain-tag {
        display: flex;
        align-items: center;
        background-color: #E1B783;
        color: #213242;
        padding: 5px 12px;
        border-radius: 20px;
        font-family: 'Regular';
        font-size: 14px;
        gap: 8px;
        text-transform: lowercase;
    }

    .domain-tag i {
        cursor: pointer;
        font-size: 16px;
        transition: color 0.2s;
    }

    .domain-tag i:hover {
        color: #fff;
    }

    .bloque-213 {
        display: flex;
        flex-direction: column;
        background: #F9FAFB;
        padding: 20px;
        border-radius: 12px;
        gap: 10px;
        margin-top: 10px;
    }

    .contenido-2131 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .label-capacity {
        font-family: 'Negrita';
        color: #213242;
        font-weight: 600;
    }

    .range-value {
        font-family: 'Negrita';
        color: #213242;
        font-size: 24px;
    }

    .range-input {
        width: 100%;
        cursor: pointer;
    }

    .contenido-2132 {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #213242;
        font-family: 'Regular';
    }

    .bloque-214 {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .contenido-214-input {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-214-input label {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-215 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

    .btn-cta-large {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 52px;
        background: #e1b783;
        color: #213242;
        border-radius: 7px;
        font-family: 'Negrita';
        font-size: 18px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(225, 183, 131, 0.4);
    }

    .btn-cta-large:hover {
        background: #213242;
        color: #fff;
    }

    .contenido-2151 {
        text-align: center;
    }

    .seccion-3 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 0;
        align-items: center;
        gap: 40px;
    }

    .modulo-31 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .modulo-31 h2 {
        font-family: 'Negrita';
        color: #213242;
    }

    .modulo-31 p {
        font-family: 'Regular';
        color: #213242;
    }

    .modulo-32 {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .bloque-321 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 20px;
        background: #fff;
        border-radius: 16px;
        gap: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .contenido-icon {
        display: flex;
        width: 48px;
        height: 48px;
        background: #EEF2FF;
        border-radius: 12px;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        color: #4F46E5;
    }

    .bloque-321 h3 {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-321 p {
        font-family: 'Regular';
        color: #213242;
    }

    .seccion-4 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 0;
        align-items: center;
        gap: 40px;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .bloque-411 h2 {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-412 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .pregunta-412 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #F3F4F6;
        font-family: 'Negrita', sans-serif;
        font-size: 16px;
        color: #213242;
        cursor: pointer;
    }

    .pregunta-412.active {
        background: #F9FAFB;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }

    .pregunta-412 i {
        transition: transform 0.3s ease;
    }

    .pregunta-412.active i {
        transform: rotate(180deg);
    }

    .respuesta-412 {
        display: none;
        padding: 0 24px 20px 24px;
        background: #F9FAFB;
        border: 1px solid #F3F4F6;
        border-top: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        font-family: 'Regular', sans-serif;
        font-size: 15px;
        color: #4B5563;
        line-height: 1.6;
    }

    .respuesta-412.active {
        display: block;
    }

    .seccion-5 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 50px 0;
        justify-content: center;
        align-items: center;
        gap: 25px;
        background-color: #e1b783;
        color: #213242;
        text-align: center;
    }

    .modulo-51 {
        display: flex;
        align-items: center;
        gap: 5px;
        font-family: 'Regular', sans-serif;
        font-size: 14px;
    }

    .modulo-52 {
        font-family: 'Negrita', sans-serif;
        font-size: 28px;
        max-width: 400px;
        line-height: 1.2;
        color: #213242;
    }

    .btn-final {
        width: 200px;
        background-color: #4F46E5;
        color: white;
    }
}

/* 6. Mobile Small (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {

    /* Form & Slider Styles (Mobile Small) */
    .form-control:focus,
    .domain-input:focus,
    .domain-select:focus,
    .btn-add-domain:focus,
    .range-input:focus {
        outline: none;
        box-shadow: none;
    }

    .range-input {
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
    }

    .range-input::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 20px;
        width: 20px;
        border-radius: 3px;
        background: #213242;
        cursor: pointer;
        margin-top: -6.5px;
    }

    .range-input::-webkit-slider-runnable-track {
        width: 100%;
        height: 7px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    .range-input::-moz-range-thumb {
        height: 20px;
        width: 20px;
        border: none;
        border-radius: 0;
        background: #213242;
        cursor: pointer;
    }

    .range-input::-moz-range-track {
        width: 100%;
        height: 4px;
        cursor: pointer;
        background: #E5E7EB;
        border-radius: 0;
        border: none;
    }

    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        background: #f7f8f8;
    }

    .seccion-1 {
        display: flex;
        width: 100%;
        padding: 30px 15px;
        justify-content: center;
        align-items: center;
        background: #fff;
    }

    .modulo-11 {
        display: flex;
    }

    .bloque-111 {
        font-family: 'Negrita';
        color: #213242;
        font-size: 28px;
        text-align: center;
    }

    .seccion-2 {
        display: flex;
        width: 100%;
        padding: 20px 15px;
        justify-content: center;
    }

    .modulo-21 {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 20px;
        border-radius: 16px;
        gap: 15px;
    }

    .bloque-211 {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .bloque-211 h2 {
        font-family: 'Negrita';
        font-size: 24px;
        color: #213242;
    }

    .bloque-211 p {
        font-family: 'Regular';
        font-size: 14px;
        color: #213242;
    }

    .bloque-212 {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-2121 {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-2121 label {
        font-family: 'Negrita';
        color: #213242;
    }

    .contenido-2122 {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-2122 label {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-212a {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .custom-select-wrapper {
        width: 100%;
    }

    .form-control {
        width: 100%;
        height: 48px;
        padding: 0 16px;
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        background: #fff;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
    }

    .domain-input {
        width: 100%;
        border-radius: 8px;
        border: 1px solid #E5E7EB;
    }

    .domain-select {
        display: none;
    }

    .btn-add-domain {
        width: 100%;
        height: 48px;
        background: #F3F4F6;
        color: #213242;
        border: none;
        border-radius: 8px;
        font-family: 'Negrita';
        cursor: pointer;
        margin-top: 0;
    }

    /* Custom Select Styles (Mobile Small) */
    .custom-select-wrapper {
        position: relative;
        width: 100%;
        user-select: none;
    }

    .custom-select-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 48px;
        padding: 0 16px;
        background-color: #F3F4F6;
        border-radius: 8px;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        cursor: pointer;
    }

    .custom-options {
        position: absolute;
        top: 110%;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 100;
        flex-direction: column;
        overflow: hidden;
    }

    .custom-options.open {
        display: flex;
    }

    .custom-option {
        padding: 12px 16px;
        cursor: pointer;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
        transition: background 0.2s;
    }

    .custom-option:hover,
    .custom-option.selected {
        background-color: #213242;
        color: #fff;
    }

    /* Domain Tags Styles (Mobile Small) */
    .domains-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        width: 100%;
    }

    .domain-tag {
        display: flex;
        align-items: center;
        background-color: #E1B783;
        color: #213242;
        padding: 5px 12px;
        border-radius: 20px;
        font-family: 'Regular';
        font-size: 14px;
        gap: 8px;
        text-transform: lowercase;
    }

    .domain-tag i {
        cursor: pointer;
        font-size: 16px;
        transition: color 0.2s;
    }

    .domain-tag i:hover {
        color: #fff;
    }

    .bloque-213 {
        display: flex;
        flex-direction: column;
        background: #F9FAFB;
        padding: 20px;
        border-radius: 12px;
        gap: 10px;
        margin-top: 10px;
    }

    .contenido-2131 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .label-capacity {
        font-family: 'Negrita';
        color: #213242;
        font-weight: 600;
    }

    .range-value {
        font-family: 'Regular';
        color: #213242;
    }

    .range-input {
        width: 100%;
        cursor: pointer;
    }

    .contenido-2132 {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #213242;
        font-family: 'Regular';
    }

    .bloque-214 {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .contenido-214-input {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-214-input label {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-215 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .btn-cta-large {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 52px;
        background: #e1b783;
        color: #213242;
        border-radius: 10px;
        font-family: 'Negrita';
        font-size: 18px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(225, 183, 131, 0.4);
    }

    .btn-cta-large:hover {
        background: #213242;
        color: #fff;
    }

    .contenido-2151 {
        text-align: center;
    }

    .seccion-3 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 0;
        align-items: center;
        gap: 40px;
    }

    .modulo-31 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .modulo-31 h2 {
        font-family: 'Negrita';
        color: #213242;
    }

    .modulo-31 p {
        font-family: 'Regular';
        color: #213242;
    }

    .modulo-32 {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bloque-321 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 20px;
        background: #fff;
        border-radius: 16px;
        gap: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .contenido-icon {
        display: flex;
        width: 48px;
        height: 48px;
        background: #EEF2FF;
        border-radius: 12px;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        color: #4F46E5;
    }

    .bloque-321 h3 {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-321 p {
        font-family: 'Regular';
        color: #213242;
    }

    .seccion-4 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 0;
        align-items: center;
        gap: 40px;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .bloque-411 h2 {
        font-family: 'Negrita';
        color: #213242;
    }

    .bloque-412 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .pregunta-412 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #F3F4F6;
        font-family: 'Negrita', sans-serif;
        font-size: 16px;
        color: #213242;
        cursor: pointer;
    }

    .pregunta-412.active {
        background: #F9FAFB;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }

    .pregunta-412 i {
        transition: transform 0.3s ease;
    }

    .pregunta-412.active i {
        transform: rotate(180deg);
    }

    .respuesta-412 {
        display: none;
        padding: 0 24px 20px 24px;
        background: #F9FAFB;
        border: 1px solid #F3F4F6;
        border-top: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        font-family: 'Regular', sans-serif;
        font-size: 15px;
        color: #4B5563;
        line-height: 1.6;
    }

    .respuesta-412.active {
        display: block;
    }

    .seccion-5 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 50px 0;
        justify-content: center;
        align-items: center;
        gap: 25px;
        background-color: #e1b783;
        color: #213242;
        text-align: center;
    }

    .modulo-51 {
        display: flex;
        align-items: center;
        gap: 5px;
        font-family: 'Regular', sans-serif;
        font-size: 14px;
    }

    .modulo-52 {
        font-family: 'Negrita', sans-serif;
        font-size: 24px;
        max-width: 300px;
        line-height: 1.2;
        color: #213242;
    }

    .btn-final {
        width: 200px;
        background-color: #4F46E5;
        color: white;
    }
}