/* ============================================================================
   TEST — REDISEÑO INTERNO
   ----------------------------------------------------------------------------
   Reglas:
   - No usar rem.
   - No usar clamp().
   - Todo en px.
   - No se altera la funcionalidad del formulario.
   ============================================================================ */


/* ============================================================================
   01. BANNER INTERNO
   ============================================================================ */

.gar-test-hero {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gar-primary-deep);
    font-family: var(--gar-font-body);
}

.gar-test-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.34;
    transform: scale(1.06);
}

.gar-test-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(0, 50, 71, 0.96) 0%,
            rgba(0, 90, 127, 0.86) 52%,
            rgba(0, 50, 71, 0.82) 100%
        );
}

.gar-test-hero__decor {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.gar-test-hero__shape {
    position: absolute;
    display: block;
    border: 1px solid rgba(216, 184, 109, 0.18);
    background: rgba(216, 184, 109, 0.08);
}

.gar-test-hero__shape--one {
    top: 52px;
    right: 8%;
    width: 118px;
    height: 118px;
    border-radius: 30px;
    transform: rotate(18deg);
}

.gar-test-hero__shape--two {
    left: 9%;
    bottom: -52px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

.gar-test-hero .container {
    position: relative;
    z-index: 5;
}

.gar-test-hero__content {
    max-width: 820px;
    margin: 0 auto;
    padding: 74px 0;
    text-align: center;
}

.gar-test-hero__content h1 {
    margin: 0;
    color: var(--gar-secondary);
    font-family: var(--gar-font-hero);
    font-size: 58px;
    font-weight: 800;
    line-height: 64px;
}

.gar-test-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.80);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.gar-test-hero__breadcrumb a {
    color: var(--gar-white);
    text-decoration: none;
    transition: color var(--gar-transition-fast);
}

.gar-test-hero__breadcrumb a:hover {
    color: var(--gar-secondary-light);
    text-decoration: none;
}

.gar-test-hero__breadcrumb span {
    color: var(--gar-secondary-light);
}

.gar-test-hero__breadcrumb strong {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 600;
}


/* ============================================================================
   02. SECCIÓN GENERAL
   ============================================================================ */

.gar-test {
    position: relative;
    overflow: hidden;
    padding: var(--gar-section-padding);
    background:
        radial-gradient(circle at 8% 18%, rgba(216, 184, 109, 0.10), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(0, 90, 127, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--gar-cream) 48%, #ffffff 100%);
    color: var(--gar-text);
    font-family: var(--gar-font-body);
}

.gar-test .container {
    position: relative;
    z-index: 3;
    max-width: 1220px;
}

.gar-test__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gar-test__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0, 90, 127, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(216, 184, 109, 0.08) 1px, transparent 1px);
    background-size: 24px 24px, 24px 24px;
    background-position: 0 0, 12px 12px;
    opacity: 0.20;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 82%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 82%, transparent);
}

.gar-test__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.44;
}

.gar-test__glow--one {
    top: -220px;
    right: -170px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(216, 184, 109, 0.20), transparent 70%);
}

.gar-test__glow--two {
    left: -210px;
    bottom: -250px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0, 90, 127, 0.14), transparent 70%);
}

.gar-test__shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.gar-test__shape--one {
    top: 12%;
    right: 4%;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(216, 184, 109, 0.18);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.38);
    box-shadow: 0 24px 70px rgba(0, 90, 127, 0.08);
    transform: rotate(16deg);
}

.gar-test__shape--two {
    left: 5%;
    bottom: 12%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(216, 184, 109, 0.10);
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.08);
}


/* ============================================================================
   03. LAYOUT
   ============================================================================ */

.gar-test__layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 38px;
}

.gar-test__aside {
    position: sticky;
    top: 110px;
}

.gar-test__intro-card {
    position: relative;
    overflow: hidden;
    padding: 34px 28px;
    border: 1px solid rgba(0, 90, 127, 0.10);
    border-radius: 30px;
    background:
        radial-gradient(circle at 95% 0%, rgba(216, 184, 109, 0.18), transparent 34%),
        linear-gradient(145deg, var(--gar-primary), var(--gar-primary-deep));
    color: var(--gar-white);
    box-shadow: 0 26px 70px rgba(0, 90, 127, 0.20);
}

.gar-test__intro-card::before {
    content: "";
    position: absolute;
    top: -95px;
    right: -72px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(216, 184, 109, 0.13);
}

.gar-test__intro-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: inherit;
    pointer-events: none;
}

.gar-test__intro-icon,
.gar-test__eyebrow,
.gar-test__intro-card h2,
.gar-test__intro-card p {
    position: relative;
    z-index: 2;
}

.gar-test__intro-icon {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    box-shadow: 0 14px 30px rgba(216, 184, 109, 0.24);
}

.gar-test__intro-icon i {
    font-size: 29px;
    line-height: 1;
}

.gar-test__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--gar-secondary-light);
    font-family: var(--gar-font-display);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gar-test__intro-card h2 {
    margin: 0;
    color: var(--gar-white);
    font-family: var(--gar-font-hero);
    font-size: 34px;
    font-weight: 800;
    line-height: 40px;
}

.gar-test__intro-card p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 25px;
}

.gar-test__mini-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 15px;
    margin-top: 18px;
    padding: 20px;
    border: 1px solid rgba(216, 184, 109, 0.25);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 38px rgba(0, 90, 127, 0.08);
}

.gar-test__mini-card > span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(216, 184, 109, 0.18);
    color: var(--gar-primary);
}

.gar-test__mini-card > span i {
    font-size: 21px;
    line-height: 1;
}

.gar-test__mini-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 20px;
}

.gar-test__mini-card p {
    margin: 0;
    color: var(--gar-text-soft);
    font-size: 13px;
    line-height: 21px;
}


/* ============================================================================
   04. FORM CARD
   ============================================================================ */

.gar-test__form-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border: 1px solid rgba(0, 90, 127, 0.10);
    border-radius: 34px;
    background:
        radial-gradient(circle at 100% 0%, rgba(216, 184, 109, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.90));
    box-shadow:
        0 28px 72px rgba(0, 90, 127, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.gar-test__form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    width: 190px;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--gar-secondary), transparent);
}

.gar-test-form {
    position: relative;
    z-index: 2;
}


/* ============================================================================
   05. PREGUNTAS
   ============================================================================ */

.gar-test-form__question {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    padding: 22px;
    border: 1px solid rgba(0, 90, 127, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 12px 30px rgba(0, 90, 127, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
    transition:
        border-color var(--gar-transition-smooth),
        box-shadow var(--gar-transition-smooth),
        transform var(--gar-transition-smooth),
        background var(--gar-transition-smooth);
}

.gar-test-form__question::after {
    content: "";
    position: absolute;
    right: -58px;
    bottom: -70px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: rgba(0, 90, 127, 0.04);
    pointer-events: none;
}

.gar-test-form__question:hover {
    border-color: rgba(216, 184, 109, 0.46);
    background: var(--gar-white);
    box-shadow: 0 22px 48px rgba(0, 90, 127, 0.10);
    transform: translateY(-2px);
}

.gar-test-form__question-header {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.gar-test-form__question-header > span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--gar-primary), var(--gar-primary-deep));
    color: var(--gar-secondary-light);
    font-family: var(--gar-font-hero);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(0, 90, 127, 0.16);
}

.gar-test-form__question-header label {
    margin: 0;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-display);
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

.gar-test-form__options {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-left: 56px;
}

.gar-test-form__radio {
    position: relative;
    min-width: 105px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
}

.gar-test-form__radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gar-test-form__radio span {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid rgba(0, 90, 127, 0.12);
    border-radius: var(--gar-radius-pill);
    background: rgba(0, 90, 127, 0.04);
    color: var(--gar-primary);
    font-family: var(--gar-font-display);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    transition:
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        border-color var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast),
        transform var(--gar-transition-fast);
}

.gar-test-form__radio span::before {
    content: "";
    width: 13px;
    height: 13px;
    margin-right: 8px;
    border: 2px solid rgba(0, 90, 127, 0.40);
    border-radius: 50%;
    background: var(--gar-white);
    transition:
        border-color var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast),
        background var(--gar-transition-fast);
}

.gar-test-form__radio input:checked + span {
    border-color: rgba(216, 184, 109, 0.62);
    background: linear-gradient(135deg, var(--gar-primary), var(--gar-primary-deep));
    color: var(--gar-white);
    box-shadow: 0 14px 28px rgba(0, 90, 127, 0.18);
    transform: translateY(-1px);
}

.gar-test-form__radio input:checked + span::before {
    border-color: var(--gar-secondary);
    background: var(--gar-secondary);
    box-shadow: inset 0 0 0 3px var(--gar-primary-deep);
}


/* ============================================================================
   06. CAMPOS
   ============================================================================ */

.gar-test-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gar-test-form__field {
    margin-bottom: 18px;
}

.gar-test-form__field label {
    display: block;
    margin: 0 0 9px;
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-display);
    font-size: 14px;
    font-weight: 900;
    line-height: 20px;
}

.gar-test-form__control {
    position: relative;
}

.gar-test-form__control input {
    width: 100%;
    min-height: 60px;
    display: block;
    padding: 17px 54px 17px 18px;
    border: 1px solid rgba(0, 90, 127, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-body);
    font-size: 15px;
    font-weight: 500;
    outline: none;
    box-shadow:
        0 10px 24px rgba(0, 90, 127, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition:
        border-color var(--gar-transition-fast),
        background var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast);
}

.gar-test-form__control input::placeholder {
    color: rgba(65, 87, 99, 0.52);
}

.gar-test-form__control i {
    position: absolute;
    top: 21px;
    right: 19px;
    color: var(--gar-primary);
    font-size: 17px;
    line-height: 1;
    opacity: 0.55;
    pointer-events: none;
    transition:
        color var(--gar-transition-fast),
        opacity var(--gar-transition-fast),
        transform var(--gar-transition-fast);
}

.gar-test-form__field:focus-within .gar-test-form__control input {
    border-color: rgba(216, 184, 109, 0.72);
    background: var(--gar-white);
    box-shadow:
        0 18px 38px rgba(0, 90, 127, 0.10),
        0 0 0 4px rgba(216, 184, 109, 0.13);
}

.gar-test-form__field:focus-within .gar-test-form__control i {
    color: var(--gar-secondary-dark);
    opacity: 1;
    transform: translateY(-1px);
}


/* ============================================================================
   07. RECAPTCHA Y SUBMIT
   ============================================================================ */

.gar-test-form__recaptcha {
    margin: 4px 0 24px;
    padding: 16px;
    overflow-x: auto;
    border: 1px solid rgba(0, 90, 127, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
}

.gar-test-form__submit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.gar-test-form__btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 38px;
    border: 0;
    border-radius: var(--gar-radius-pill);
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(216, 184, 109, 0.24);
    transition:
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        transform var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast);
}

.gar-test-form__btn i {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gar-primary-deep);
    color: var(--gar-secondary);
    font-size: 15px;
    line-height: 1;
    transition:
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        transform var(--gar-transition-fast);
}

.gar-test-form__btn:hover {
    background: linear-gradient(135deg, var(--gar-primary), var(--gar-primary-deep));
    color: var(--gar-white);
    box-shadow: 0 20px 42px rgba(0, 90, 127, 0.28);
    transform: translateY(-2px);
}

.gar-test-form__btn:hover i {
    background: var(--gar-secondary);
    color: var(--gar-primary-deep);
    transform: translateX(4px);
}


/* ============================================================================
   08. ACCIONES FINALES
   ============================================================================ */

.gar-test__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 54px;
}

.gar-test__btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 32px;
    border-radius: var(--gar-radius-pill);
    font-family: var(--gar-font-display);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform var(--gar-transition-fast),
        background var(--gar-transition-fast),
        color var(--gar-transition-fast),
        box-shadow var(--gar-transition-fast);
}

.gar-test__btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.gar-test__btn i {
    font-size: 18px;
    line-height: 1;
}

.gar-test__btn--whatsapp {
    background: var(--gar-whatsapp);
    color: var(--gar-white);
    box-shadow: 0 15px 32px rgba(0, 90, 127, 0.22);
}

.gar-test__btn--whatsapp:hover {
    background: var(--gar-whatsapp-dark);
    color: var(--gar-white);
    box-shadow: 0 20px 40px rgba(0, 90, 127, 0.30);
}

.gar-test__btn--secondary {
    background: var(--gar-primary-deep);
    color: var(--gar-white);
    box-shadow: 0 15px 32px rgba(0, 90, 127, 0.24);
}

.gar-test__btn--secondary:hover {
    background: linear-gradient(135deg, var(--gar-secondary), var(--gar-secondary-dark));
    color: var(--gar-primary-deep);
    box-shadow: 0 20px 40px rgba(216, 184, 109, 0.30);
}


/* ============================================================================
   09. RESPONSIVE
   ============================================================================ */

@media (max-width: 1199px) {
    .gar-test__layout {
        grid-template-columns: 330px minmax(0, 1fr);
        gap: 30px;
    }

    .gar-test__form-card {
        padding: 34px;
    }
}

@media (max-width: 991px) {
    .gar-test-hero {
        min-height: 300px;
    }

    .gar-test-hero__content {
        padding: 62px 0;
    }

    .gar-test-hero__content h1 {
        font-size: 48px;
        line-height: 55px;
    }

    .gar-test {
        padding: var(--gar-section-padding-tablet);
    }

    .gar-test__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gar-test__aside {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
        gap: 18px;
    }

    .gar-test__intro-card,
    .gar-test__mini-card {
        height: 100%;
    }

    .gar-test-form__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 767px) {
    .gar-test-hero {
        min-height: 270px;
    }

    .gar-test-hero__content {
        padding: 54px 0;
        text-align: left;
    }

    .gar-test-hero__content h1 {
        font-size: 40px;
        line-height: 46px;
    }

    .gar-test-hero__breadcrumb {
        justify-content: flex-start;
        font-size: 14px;
    }

    .gar-test {
        padding: var(--gar-section-padding-mobile);
    }

    .gar-test__aside {
        grid-template-columns: 1fr;
    }

    .gar-test__intro-card {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .gar-test__intro-card h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .gar-test__intro-card p {
        font-size: 14px;
        line-height: 23px;
    }

    .gar-test__form-card {
        padding: 28px 22px;
        border-radius: 28px;
    }

    .gar-test__form-card::before {
        left: 24px;
        width: 145px;
    }

    .gar-test-form__question {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .gar-test-form__question-header {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gar-test-form__question-header label {
        font-size: 15px;
        line-height: 24px;
    }

    .gar-test-form__options {
        padding-left: 0;
    }

    .gar-test-form__radio {
        flex: 1 1 120px;
    }

    .gar-test-form__field label {
        font-size: 13px;
        line-height: 19px;
    }

    .gar-test-form__control input {
        min-height: 58px;
        padding: 17px 50px 17px 18px;
        font-size: 14px;
    }

    .gar-test-form__recaptcha {
        padding: 14px;
    }

    .gar-test-form__btn {
        width: 100%;
    }

    .gar-test__actions {
        margin-top: 42px;
        flex-direction: column;
    }

    .gar-test__btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .gar-test-hero__content h1 {
        font-size: 35px;
        line-height: 41px;
    }

    .gar-test {
        padding: var(--gar-section-padding-small);
    }

    .gar-test__shape {
        display: none;
    }

    .gar-test__intro-card {
        padding: 26px 18px;
        border-radius: 24px;
    }

    .gar-test__intro-icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .gar-test__intro-icon i {
        font-size: 25px;
    }

    .gar-test__intro-card h2 {
        font-size: 27px;
        line-height: 33px;
    }

    .gar-test__mini-card {
        grid-template-columns: 1fr;
        padding: 18px;
        text-align: center;
    }

    .gar-test__mini-card > span {
        margin: 0 auto;
    }

    .gar-test__form-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .gar-test-form__question {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .gar-test-form__question-header > span {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        font-size: 13px;
    }

    .gar-test-form__question-header label {
        font-size: 14px;
        line-height: 22px;
    }

    .gar-test-form__options {
        gap: 10px;
    }

    .gar-test-form__radio {
        min-width: auto;
        flex: 1 1 calc(50% - 10px);
    }

    .gar-test-form__radio span {
        min-height: 42px;
        padding: 11px 14px;
        font-size: 13px;
    }

    .gar-test-form__control input {
        border-radius: 16px;
    }

    .gar-test-form__recaptcha {
        max-width: 100%;
        overflow-x: auto;
        padding: 12px;
    }

    .gar-test-form__btn {
        min-height: 54px;
        padding: 16px 24px;
    }

    .gar-test__btn {
        min-height: 54px;
        padding: 16px 24px;
        font-size: 14px;
    }
}

/* FIN TEST — REDISEÑO INTERNO */