/* =========================================================
   MOTOGRAPHIX V9
   LIBRO DE RECLAMACIONES
   ========================================================= */

.mgx-claims-page {
    width: 100%;

    background: #FFFFFF;

    color: #111111;

    padding: 54px 0 100px;
}


.mgx-claims-container {
    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.mgx-claims-header {
    max-width: 850px;

    margin:
        0
        auto
        42px;

    text-align: center;
}

.mgx-claims-kicker {
    display: block;

    margin-bottom: 12px;

    color: #E30613;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.mgx-claims-header h1 {
    margin: 0;

    color: #111111;

    font-size: clamp(
        38px,
        5vw,
        64px
    );

    font-weight: 900;

    line-height: 0.96;

    letter-spacing: -1.5px;
}


.mgx-claims-header p {
    max-width: 680px;

    margin: 20px auto 0;

    color: #626262;

    font-size: 16px;
    font-weight: 650;

    line-height: 1.7;
}


/* =========================================================
   LAYOUT
   ========================================================= */

.mgx-claims-layout {
    display: grid;

    grid-template-columns:
        300px
        minmax(0, 1fr);

    gap: 28px;

    align-items: start;
}


/* =========================================================
   EMPRESA
   ========================================================= */

.mgx-claims-company {
    position: sticky;

    top: 110px;

    padding: 28px;

    background: #F7F7F7;

    border:
        1px solid
        #E3E3E3;

    border-radius: 22px;

    box-shadow:
        0 10px 32px
        rgba(0, 0, 0, 0.05);
}


.mgx-claims-company-label {
    color: #E30613;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.3px;
}


.mgx-claims-company h2 {
    margin: 10px 0 26px;

    color: #111111;

    font-size: 21px;
    font-weight: 900;

    line-height: 1.1;
}


.mgx-company-data {
    display: grid;

    gap: 22px;
}


.mgx-company-data div {
    padding-bottom: 20px;

    border-bottom:
        1px solid
        #E1E1E1;
}


.mgx-company-data span,
.mgx-company-data small {
    display: block;
}


.mgx-company-data span {
    margin-bottom: 5px;

    color: #777777;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.mgx-company-data strong {
    color: #111111;

    font-size: 14px;
    font-weight: 900;
}


.mgx-company-data small {
    margin-top: 4px;

    color: #686868;

    font-size: 12px;
    font-weight: 650;
}


.mgx-company-help {
    margin-top: 24px;

    padding: 16px;

    background:
        rgba(
            227,
            6,
            19,
            0.055
        );

    border:
        1px solid
        rgba(
            227,
            6,
            19,
            0.18
        );

    border-radius: 14px;
}


.mgx-company-help i {
    color: #E30613;
}


.mgx-company-help p {
    margin: 8px 0 0;

    color: #555555;

    font-size: 12px;
    font-weight: 650;

    line-height: 1.55;
}


/* =========================================================
   FORM
   ========================================================= */

.mgx-claims-form {
    display: grid;

    gap: 20px;
}


.mgx-claim-section {
    padding: 32px;

    background: #FFFFFF;

    border:
        1px solid
        #E2E2E2;

    border-radius: 22px;

    box-shadow:
        0 10px 34px
        rgba(0, 0, 0, 0.045);
}


.mgx-claim-section-heading {
    display: flex;

    gap: 17px;

    margin-bottom: 28px;
}


.mgx-claim-section-heading > span {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #E30613;

    color: #FFFFFF;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 900;
}


.mgx-claim-section-heading h3 {
    margin: 0;

    color: #111111;

    font-size: 21px;
    font-weight: 900;
}


.mgx-claim-section-heading p {
    margin: 5px 0 0;

    color: #777777;

    font-size: 13px;
    font-weight: 650;
}


/* =========================================================
   GRID
   ========================================================= */

.mgx-form-grid {
    display: grid;

    gap: 16px;
}


.mgx-grid-2 {
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
}


/* =========================================================
   CAMPOS
   ========================================================= */

.mgx-field {
    margin-bottom: 18px;
}


.mgx-field:last-child {
    margin-bottom: 0;
}


.mgx-field label {
    display: block;

    margin-bottom: 8px;

    color: #333333;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}


.mgx-field input,
.mgx-field select,
.mgx-field textarea {
    width: 100%;

    min-height: 50px;

    padding:
        0
        16px;

    background: #FFFFFF;

    color: #111111;

    border:
        1px solid
        #D9D9D9;

    border-radius: 12px;

    outline: none;

    font-family:
        Helvetica,
        Arial,
        sans-serif;

    font-size: 14px;
    font-weight: 700;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.mgx-field input:hover,
.mgx-field select:hover,
.mgx-field textarea:hover {
    border-color: #C9C9C9;
}


.mgx-field textarea {
    min-height: 120px;

    padding: 15px 16px;

    resize: vertical;
}


.mgx-field input:focus,
.mgx-field select:focus,
.mgx-field textarea:focus {
    border-color: #E30613;

    background: #FFFFFF;

    box-shadow:
        0 0 0 3px
        rgba(
            227,
            6,
            19,
            0.08
        );
}


/* =========================================================
   MONTO
   ========================================================= */

.mgx-money-field {
    display: flex;

    align-items: center;

    background: #FFFFFF;

    border:
        1px solid
        #D9D9D9;

    border-radius: 12px;
}


.mgx-money-field > span {
    padding-left: 16px;

    color: #E30613;

    font-weight: 900;
}


.mgx-money-field input {
    border: 0;
}


/* =========================================================
   CHECK
   ========================================================= */

.mgx-check-row {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    cursor: pointer;
}


.mgx-check-row input {
    margin-top: 3px;

    accent-color: #E30613;
}


.mgx-check-row span {
    color: #444444;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.5;
}


/* =========================================================
   RECLAMO / QUEJA
   ========================================================= */

.mgx-claim-type-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 14px;

    margin-bottom: 24px;
}


.mgx-claim-type input {
    position: absolute;

    opacity: 0;
}


.mgx-claim-type-card {
    min-height: 105px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #FAFAFA;

    border:
        1px solid
        #DEDEDE;

    border-radius: 15px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


.mgx-claim-type-card:hover {
    background: #F6F6F6;

    border-color: #D2D2D2;
}


.mgx-claim-type-card strong {
    color: #111111;

    font-size: 14px;
    font-weight: 900;
}


.mgx-claim-type-card small {
    margin-top: 7px;

    color: #666666;

    font-size: 12px;
    font-weight: 650;

    line-height: 1.5;
}


.mgx-claim-type input:checked
+ .mgx-claim-type-card {
    border-color: #E30613;

    background:
        rgba(
            227,
            6,
            19,
            0.055
        );

    box-shadow:
        0 0 0 2px
        rgba(
            227,
            6,
            19,
            0.08
        );
}


/* =========================================================
   CONFIRMACIÓN
   ========================================================= */

.mgx-claim-confirm {
    padding: 24px;

    background: #F8F8F8;

    border:
        1px solid
        #E2E2E2;

    border-radius: 18px;
}


.mgx-claim-confirm p {
    margin:
        13px
        0
        0
        28px;

    color: #777777;

    font-size: 11px;
    font-weight: 650;
}


/* =========================================================
   BOTÓN
   ========================================================= */

.mgx-claim-submit {
    width: 100%;

    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    background:
        linear-gradient(
            135deg,
            #FF1825,
            #E30613,
            #C8000C
        );

    color: #FFFFFF;

    border: 0;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 0.7px;

    cursor: pointer;

    box-shadow:
        0 10px 30px
        rgba(
            227,
            6,
            19,
            0.24
        );

    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease;
}


.mgx-claim-submit:hover {
    transform: translateY(-2px);

    filter: brightness(1.04);

    box-shadow:
        0 14px 34px
        rgba(
            227,
            6,
            19,
            0.30
        );
}


.mgx-claim-submit:disabled {
    opacity: 0.65;

    cursor: wait;

    transform: none;
}


/* =========================================================
   NOTA LEGAL
   ========================================================= */

.mgx-claims-legal-note {
    max-width: 850px;

    margin:
        38px
        auto
        0;

    text-align: center;
}


.mgx-claims-legal-note p {
    margin: 8px 0;

    color: #666666;

    font-size: 11px;
    font-weight: 650;

    line-height: 1.6;
}


/* =========================================================
   SUCCESS
   ========================================================= */

.mgx-claim-success {
    max-width: 650px;

    margin: 40px auto;

    padding: 54px 35px;

    background: #FFFFFF;

    border:
        1px solid
        #E2E2E2;

    border-radius: 24px;

    text-align: center;

    box-shadow:
        0 14px 42px
        rgba(0, 0, 0, 0.07);
}


.mgx-claim-success-icon {
    width: 62px;
    height: 62px;

    margin:
        0
        auto
        22px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #E30613;

    color: #FFFFFF;

    border-radius: 999px;

    font-size: 24px;
}


.mgx-claim-success h2 {
    margin: 0;

    color: #111111;

    font-size: 32px;
    font-weight: 900;
}


.mgx-claim-success > p {
    color: #555555;
}


.mgx-claim-success > strong {
    display: block;

    margin-top: 10px;

    color: #E30613;

    font-size: 24px;
    font-weight: 900;
}


.mgx-claim-success-label {
    display: block;

    margin-top: 26px;

    color: #777777;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.3px;
}


.mgx-claim-success-small {
    color: #666666;

    font-size: 12px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 899px) {

    .mgx-claims-page {
        padding:
            34px
            0
            80px;
    }


    .mgx-claims-container {
        width:
            calc(
                100% - 24px
            );
    }


    .mgx-claims-header {
        text-align: center;

        margin-bottom: 28px;
    }


    .mgx-claims-header h1 {
        font-size: 36px;
    }


    .mgx-claims-header p {
        margin:
            16px
            auto
            0;

        font-size: 14px;
    }


    .mgx-claims-layout {
        grid-template-columns: 1fr;
    }


    .mgx-claims-company {
        position: relative;

        top: auto;
    }


    .mgx-claim-section {
        padding: 20px 16px;
    }


    .mgx-grid-2 {
        grid-template-columns: 1fr;
    }


    .mgx-claim-type-grid {
        grid-template-columns: 1fr;
    }


    .mgx-claim-submit {
        height: 54px;

        font-size: 13px;
    }

}

/* =========================================================
   CONSTANCIA DE RECLAMACIÓN
   ========================================================= */

.mgx-claim-receipt {
    max-width: 920px;

    margin: 0 auto;
}


/* =========================================================
   CONFIRMACIÓN SUPERIOR
   ========================================================= */

.mgx-receipt-success {
    margin-bottom: 30px;

    text-align: center;
}


.mgx-receipt-check {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #E30613;
    color: #FFFFFF;

    border-radius: 999px;

    font-size: 22px;

    box-shadow:
        0 10px 28px
        rgba(227, 6, 19, 0.24);
}


.mgx-receipt-success > span {
    display: block;

    margin-bottom: 8px;

    color: #E30613;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.4px;
}


.mgx-receipt-success h1 {
    margin: 0;

    color: #111111;

    font-size: clamp(
        32px,
        5vw,
        48px
    );

    font-weight: 900;

    line-height: 1;
}


.mgx-receipt-success p {
    max-width: 620px;

    margin: 14px auto 0;

    color: #666666;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.6;
}


/* =========================================================
   DOCUMENTO
   ========================================================= */

.mgx-receipt-document {
    overflow: hidden;

    background: #FFFFFF;

    border:
        1px solid
        #DEDEDE;

    border-radius: 22px;

    box-shadow:
        0 14px 46px
        rgba(0, 0, 0, 0.07);
}


/* =========================================================
   CABECERA DOCUMENTO
   ========================================================= */

.mgx-receipt-header {
    padding: 28px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;

    background: #111111;

    color: #FFFFFF;
}


.mgx-receipt-header span {
    display: block;

    margin-bottom: 7px;

    color: #E30613;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.2px;
}


.mgx-receipt-header h2 {
    margin: 0;

    color: #FFFFFF;

    font-size: 22px;
    font-weight: 900;
}


.mgx-receipt-header p {
    margin: 5px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            0.60
        );

    font-size: 12px;
    font-weight: 700;
}


.mgx-receipt-code {
    text-align: right;
}


.mgx-receipt-code strong {
    display: block;

    color: #FFFFFF;

    font-size: 18px;
    font-weight: 900;
}


.mgx-receipt-code small {
    display: block;

    margin-top: 6px;

    color:
        rgba(
            255,
            255,
            255,
            0.52
        );

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   SECCIONES
   ========================================================= */

.mgx-receipt-section {
    padding: 25px 28px;

    border-bottom:
        1px solid
        #E8E8E8;
}


.mgx-receipt-section h3 {
    margin:
        0
        0
        18px;

    color: #111111;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.mgx-receipt-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 18px 28px;
}


.mgx-receipt-grid .wide {
    grid-column:
        1 / -1;
}


.mgx-receipt-grid span {
    display: block;

    margin-bottom: 5px;

    color: #858585;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.mgx-receipt-grid strong {
    display: block;

    color: #111111;

    font-size: 13px;
    font-weight: 800;

    line-height: 1.5;
}


.mgx-receipt-grid small {
    display: block;

    margin-top: 4px;

    color: #707070;

    font-size: 11px;
    font-weight: 650;
}


.mgx-receipt-grid p,
.mgx-receipt-text {
    margin: 0;

    color: #333333;

    font-size: 13px;
    font-weight: 650;

    line-height: 1.7;
}


/* =========================================================
   TEXTO LEGAL
   ========================================================= */

.mgx-receipt-legal {
    padding: 22px 28px;

    background: #F7F7F7;
}


.mgx-receipt-legal p {
    margin:
        5px
        0;

    color: #777777;

    font-size: 10px;
    font-weight: 650;

    line-height: 1.55;
}


/* =========================================================
   BOTONES
   ========================================================= */

.mgx-receipt-actions {
    margin-top: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}


.mgx-receipt-actions button,
.mgx-receipt-actions a {
    min-height: 48px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 999px;

    font-family:
        Helvetica,
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 0.5px;

    text-decoration: none;

    cursor: pointer;
}


.mgx-receipt-primary {
    background: #E30613;

    color: #FFFFFF;

    border: 1px solid #E30613;
}


.mgx-receipt-secondary {
    background: #FFFFFF;

    color: #111111;

    border:
        1px solid
        #DADADA;
}


.mgx-receipt-home {
    color: #555555;

    background: transparent;

    border:
        1px solid
        transparent;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 899px) {

    .mgx-receipt-header {
        flex-direction: column;
    }


    .mgx-receipt-code {
        text-align: left;
    }


    .mgx-receipt-grid {
        grid-template-columns: 1fr;
    }


    .mgx-receipt-grid .wide {
        grid-column: auto;
    }


    .mgx-receipt-section {
        padding: 22px 18px;
    }


    .mgx-receipt-header {
        padding: 22px 18px;
    }


    .mgx-receipt-legal {
        padding: 20px 18px;
    }


    .mgx-receipt-actions {
        flex-direction: column;
    }


    .mgx-receipt-actions button,
    .mgx-receipt-actions a {
        width: 100%;
    }

}


/* =========================================================
   IMPRESIÓN / PDF
   ========================================================= */

@media print {

    body {
        background: #FFFFFF !important;
    }


    .mgx-header-desktop,
    .mgx-header-mobile,
    .mgx-footer-desktop,
    .mgx-footer-mobile,
    .floating-catalog,
    .floating-catalog-mobile,
    .mgx-receipt-success,
    .mgx-receipt-actions {
        display: none !important;
    }


    .mgx-claims-page {
        padding: 0 !important;

        background: #FFFFFF !important;
    }


    .mgx-claims-container,
    .mgx-claim-receipt {
        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
    }


    .mgx-receipt-document {
        border: 0 !important;

        border-radius: 0 !important;

        box-shadow: none !important;
    }


    .mgx-receipt-header {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }


    .mgx-receipt-section {
        break-inside: avoid;
    }

}