﻿/* ============================================================
   PÁGINA RELÓGIO ELETRÔNICO DE PONTO — lp-rep-
============================================================ */

.lp-rep-accent { color: #ff9900; }

img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

body {
    background: #001f5e;
}


.lp-rep-hero {
    background:
        radial-gradient(circle at 72% 48%, rgba(37, 94, 172, .45) 0%, rgba(11, 51, 119, .22) 31%, transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(0, 33, 92, .72) 0%, transparent 48%),
        linear-gradient(115deg, #00215c 0%, #062e76 48%, #001b4d 100%);
    padding: 30px 0 30px;
    position: relative;
    overflow: hidden;
}
.lp-rep-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: .28;
    pointer-events: none;
}
.lp-rep-hero__inner {
    display: grid;
    grid-template-columns: minmax(390px, 520px) minmax(560px, 1fr);
    gap: 12px 66px;
    align-items: start;
    max-width: 1218px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.lp-rep-hero__left { display: contents; }
.lp-rep-hero__right {
    grid-column: 1;
    grid-row: 4;
    width: 100%;
}
.lp-rep-hero__badge-pill {
    grid-column: 1;
    grid-row: 1;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.27);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 100px;
    padding: 8px 18px 7px;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 0 5px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 10px 28px rgba(0,0,0,.12);
}
.lp-rep-hero__title {
    font-family: 'poppins', sans-serif;
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(2.2rem, 2.6vw, 2.9rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.lp-rep-hero__title--accent { color: #ff9900; }
.lp-rep-hero__sub {
    grid-column: 1;
    grid-row: 3;
    font-size: 1.24rem;
    color: rgba(255,255,255,.9);
    line-height: 1.42;
    margin: 8px 0 12px;
    max-width: 505px;
}

/* Trust badges */
.lp-rep-hero__trust {
    grid-column: 2;
    grid-row: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 8px;
    margin: 2px auto 0;
    max-width: 430px;
}
.lp-rep-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.96);
    border-radius: 6px;
    min-height: 34px;
    padding: 7px 13px;
    font-size: .78rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.lp-rep-hero__trust-item svg { color: #ff9900; flex-shrink: 0; }

.lp-rep-carousel {
    grid-column: 2;
    grid-row: 1 / 5;
    align-self: start;
    position: relative;
    min-height: 640px;
    padding-top: 84px;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 0;
    box-shadow: none;
}
.lp-rep-carousel::before,
.lp-rep-carousel::after {
    content: none;
}

@keyframes lp-rep-slide-in-r {
    from { transform: translateX(108%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}
@keyframes lp-rep-slide-in-l {
    from { transform: translateX(-108%); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}
@keyframes lp-rep-slide-out-l {
    from { transform: translateX(0);     opacity: 1; }
    to   { transform: translateX(-108%); opacity: 0; }
}
@keyframes lp-rep-slide-out-r {
    from { transform: translateX(0);    opacity: 1; }
    to   { transform: translateX(108%); opacity: 0; }
}
.lp-rep-carousel__brands {
    position: absolute;
    top: 58px;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 32px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    color: rgba(255,255,255,.66);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
}
.lp-rep-carousel__brands span {
    position: relative;
    cursor: pointer;
    min-width: 105px;
    padding: 0 26px;
    text-align: center;
    transition: color .2s ease, transform .2s ease;
}
.lp-rep-carousel__brands span + span {
    border-left: 1px solid rgba(255,255,255,.38);
}
.lp-rep-carousel__brands span::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 0;
    height: 4px;
    border-radius: 999px;
    background: #ff9900;
    transform: translateX(-50%);
    transition: width .2s ease;
}
.lp-rep-carousel__brands span.is-active {
    color: #ffffff;
    transform: translateY(-1px);
}
.lp-rep-carousel__brands span.is-active::after {
    width: 38px;
}
.lp-rep-carousel__track {
    display: block;
    width: 100%;
    min-height: 480px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.lp-rep-carousel__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 78px 18px 0;
    gap: 22px;
    opacity: 0;
    pointer-events: none;
}
.lp-rep-carousel__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.lp-rep-carousel__slide.slide-in-right {
    animation: lp-rep-slide-in-r .45s cubic-bezier(.4,0,.2,1) both;
}
.lp-rep-carousel__slide.slide-in-left {
    animation: lp-rep-slide-in-l .45s cubic-bezier(.4,0,.2,1) both;
}
.lp-rep-carousel__slide.slide-out-left {
    animation: lp-rep-slide-out-l .45s cubic-bezier(.4,0,.2,1) both;
    opacity: 1;
}
.lp-rep-carousel__slide.slide-out-right {
    animation: lp-rep-slide-out-r .45s cubic-bezier(.4,0,.2,1) both;
    opacity: 1;
}
.lp-rep-carousel__slide img {
    height: 400px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,.34));
    transition: transform .3s ease;
}
.lp-rep-carousel__slide:hover img { transform: scale(1.04); }
.lp-rep-carousel__slide span {
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 900;
    text-align: center;
    padding-bottom: 0;
    text-shadow: 0 3px 12px rgba(0,0,0,.24);
}
.lp-rep-carousel__platform {
    position: absolute;
    left: 50%;
    bottom: 66px;
    width: min(620px, 100%);
    height: auto;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}
.lp-rep-carousel__nav {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 16px 0;
    background: transparent;
}
.lp-rep-carousel__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.24);
    transition: background .2s;
    flex-shrink: 0;
}
.lp-rep-carousel__btn:hover { background: rgba(255,153,0,.45); }
.lp-rep-carousel__dots { display: flex; gap: 6px; }
.lp-rep-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.lp-rep-carousel__dot.is-active { background: #ff9900; transform: scale(1.3); }

.lp-rep-form-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    width: 100%;
    max-width: 495px;
}
.lp-rep-form-card__header {
    display: none;
}
.lp-rep-form-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.lp-rep-form-card__title strong { color: #ff9900; }
.lp-rep-form-card__sub { font-size: .83rem; color: rgba(255,255,255,.72); }
.lp-rep-form {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 9px;
}
.lp-rep-form__row {
    display: contents;
}
.lp-rep-form__row .lp-rep-form__group {
    min-width: 0;
}
.lp-rep-form__group--full {
    grid-column: 1 / -1;
}
.lp-rep-form__group { display: flex; flex-direction: column; gap: 0; }
.lp-rep-form__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.lp-rep-form__input {
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 6px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: .86rem;
    color: #17304b;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,244,241,.98));
    width: 100%;
    min-height: 42px;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.lp-rep-form__input:focus {
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255,153,0,.18);
    background: #fff;
}
.lp-rep-form__input::placeholder {
    color: #8994a3;
}
.lp-rep-form__select {
    cursor: pointer;
    appearance: none;
    background-color: rgba(255,255,255,.96);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23003366' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.lp-rep-form__textarea {
    grid-column: 1 / -1;
    resize: none;
    min-height: 84px;
}
.lp-rep-form__submit {
    display: grid;
    grid-column: 1 / -1;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: min(100%, 398px);
    min-height: 44px;
    margin-top: 2px;
    padding: 12px 22px;
    background: linear-gradient(90deg, #ff9900 0%, #e07e00 100%);
    color: #fff;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .2px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(255,153,0,.24);
    transition: filter .2s, transform .2s;
}
.lp-rep-form__submit:hover { filter: brightness(1.08); transform: translateY(-2px); }
.lp-rep-form__submit:active { transform: translateY(0); }
.lp-rep-form__privacy {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 0;
    font-size: .70rem;
    color: rgba(255,255,255,.76);
    text-align: center;
}
.lp-rep-form__privacy svg { color: #ff9900; flex-shrink: 0; }
.lp-rep-form__privacy a { color: #ffffff; font-weight: 700; text-decoration: underline; }

.lp-rep-char-counter {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .72);
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
}

/* --- BENEFÍCIOS --- */
.lp-rep-benefits {
    background: #ffffff;
    padding: 26px 0 58px;
}
.lp-rep-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    max-width: 1140px;
    margin: 0 auto;
}
.lp-rep-benefit { text-align: center; }
.lp-rep-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    color: #ff9900;
}
.lp-rep-benefit__icon svg { width: 88px; height: 88px; }
.lp-rep-benefit h2 {
    color: #003366;
    font-family: 'poppins', Arial, sans-serif;
    font-size: 1.42rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 10px;
}
.lp-rep-benefit p {
    color: #7b8290;
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.72;
    margin: 0;
}

/* --- IDCOMBO --- */
.lp-rep-idcombo {
    background: #f4f4f6;
    padding: 0 0 48px;
}
.lp-rep-idcombo .container { max-width: 1120px; }
.lp-rep-idcombo__header {
    padding: 60px 0 24px;
    text-align: left;
}
.lp-rep-idcombo__header h2 {
    color: #365b80;
    font-family:'DM Sans', Arial, sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    font-weight: 900;
    line-height: 1.04;
    max-width: 1050px;
    margin: 0 auto 22px;
}
#lp-rep-idcombo-title strong { color: #032e59; }
.lp-rep-idcombo__header p {
    color: #ffa100;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 auto;
    max-width: 1080px;
    text-align: center;
}
.lp-rep-idcombo__content {
    display: grid;
    grid-template-columns: 200px 320px 220px 320px;
    gap: 22px;
    align-items: start;
    justify-content: center;
}
.lp-rep-idcombo__text {
    padding-top: 20px;
    text-align: center;
}
.lp-rep-idcombo__text h3 {
    color: #5b626b;
    font-family:'DM Sans', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    margin: 0 0 16px;
}
.lp-rep-idcombo__text p {
    color: #6f7680;
    font-size: .84rem;
    line-height: 1.48;
    margin: 0 0 20px;
}
.lp-rep-idcombo__text a {
    color: #0071b8;
    font-size: .94rem;
    font-weight: 700;
}
.lp-rep-idcombo__device {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
}
.lp-rep-idcombo__device img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0,0,0,.14));
}
.lp-rep-idcombo__device--face img { max-width: 300px; }
.lp-rep-idcombo__device--power img {
    max-width: 300px;
    margin-top: 6px;
}
.lp-rep-idcombo__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    max-width: 600px;
    margin: -72px 0 0 auto;
    position: relative;
    z-index: 2;
}
.lp-rep-idcombo__footer p {
    color: #606874;
    font-size: .92rem;
    line-height: 1.42;
    margin: 0 0 26px;
}
.lp-rep-idcombo__footer strong {
    color: #59626d;
    font-weight: 700;
}
.lp-rep-idcombo__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 520px);
    min-height: 56px;
    padding: 13px 36px;
    border-radius: 999px;
    background: #ff9900;
    color: #ffffff;
    font-size: 1.24rem;
    font-weight: 600;
    font-family: 'poppins', sans-serif;
    letter-spacing: 0.2px;
    line-height: 1.08;
    text-align: center;
    box-shadow: 0 8px 18px rgba(255,153,0,.2);
    transition: background .2s, transform .2s;
}
.lp-rep-idcombo__cta:hover {
    background: #eb8500;
    transform: translateY(-1px);
}

.lp-rep-stats {
    background: #003366;
    padding: 32px 0;
}
.lp-rep-stats__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.lp-rep-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}
.lp-rep-stats__num {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #ff9900;
    line-height: 1;
}
.lp-rep-stats__label { font-size: .83rem; color: rgba(255,255,255,.72); font-weight: 500; }
.lp-rep-stats__sep { width: 1px; height: 48px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* --- MANUTENÇÃO --- */
.lp-rep-maintenance {
    background: #ffffff;
    padding: 0px 0 0px;
    overflow: hidden;
}
.lp-rep-maintenance__inner {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(190px, 250px) minmax(290px, 360px) minmax(220px, 280px);
    grid-template-areas:
        "title title title title"
        "copy carousel offer map";
    align-items: center;
    justify-content: center;
    gap: 22px 36px;
    width: 100vw;
    min-height: 410px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 78px max(32px, calc((100vw - 1180px) / 2)) 82px;
    background: #f4f4f6;
}
.lp-rep-maintenance h2 {
    grid-area: title;
    color: #365b80;
    font-size: clamp(2rem, 3.3vw, 2.65rem);
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    margin: 0 0 10px;
}
.lp-rep-maintenance h2 strong {
    color: #003c73;
    font-weight: 900;
}
.lp-rep-maintenance__copy {
    grid-area: copy;
    align-self: center;
}
.lp-rep-maintenance__copy p {
    color: #5d6168;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 24px;
}
.lp-rep-maintenance__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 26px;
    border-radius: 999px;
    background: #ff9900;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background .2s, transform .2s;
}
.lp-rep-maintenance__btn:hover {
    background: #eb8500;
    transform: translateY(-1px);
}
.lp-rep-maintenance__carousel {
    grid-area: carousel;
    position: relative;
    width: 250px;
    height: 170px;
}
.lp-rep-maintenance__carousel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(.96);
    transition: opacity .28s ease, transform .28s ease;
    filter: drop-shadow(0 14px 16px rgba(0,0,0,.12));
}
.lp-rep-maintenance__carousel img.is-active {
    opacity: 1;
    transform: scale(1);
}
.lp-rep-maintenance__offer {
    grid-area: offer;
    text-align: center;
}
.lp-rep-maintenance__offer h3 {
    color: #595d64;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.18;
    margin: 0 0 28px;
}
.lp-rep-maintenance__highlight {
    color: #ff9900;
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 22px;
}
.lp-rep-maintenance__valid {
    color: #5b6068;
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 18px;
}
.lp-rep-maintenance__note {
    color: #777c85;
    font-size: .78rem;
    font-weight: 500;
    margin: 0;
}
.lp-rep-maintenance__map {
    grid-area: map;
    margin: 0;
}
.lp-rep-maintenance__map img {
    display: block;
    width: 100%;
    max-width: 282px;
    height: auto;
    object-fit: contain;
}

.lp-rep-solutions {
    background: #f7fbff;
    padding: 48px 0 0;
    overflow: hidden;
}
.lp-rep-solutions .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.lp-rep-solutions__header {
    background: transparent;
    padding: 0 0 22px;
}
.lp-rep-solutions__heading {
    display: block;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.lp-rep-solutions__heading h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #003c73;
    font-size: clamp(1.45rem, 2.6vw, 2.1rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px;
}
.lp-rep-solutions__heading strong{
    font-weight: 800;
    color: #032e59;
}
.lp-rep-solutions__heading h2 > span {
    text-align: center;
}
.lp-rep-solutions__heading-icon {
    height: 52px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 2px;
}
.lp-rep-solutions__heading p {
    color: #667b95;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
}
.lp-rep-solutions__band {
    padding: 0;
    overflow: visible;
}
.lp-rep-solutions__band--dark {
    background: transparent;
}
.lp-rep-solutions__band--orange {
    background: transparent;
}
.lp-rep-solution {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: center;
    font-family: 'Poppins', sans-serif;
    min-height: clamp(260px, 30vw, 360px);
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    padding: clamp(22px, 3.2vw, 40px) max(48px, calc((100vw - 1280px) / 2));
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 36, 78, .14);
}
.lp-rep-solutions__band--dark .lp-rep-solution {
    background:
        radial-gradient(ellipse at 95% -10%, rgba(0, 150, 255, .38) 0%, transparent 45%),
        radial-gradient(ellipse at 5% 110%, rgba(77, 151, 196, .32) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 70, 160, .22) 0%, transparent 70%),
        linear-gradient(112deg, #061722 0%, #003c73 100%);
}
.lp-rep-solutions__band--orange .lp-rep-solution {
    background:
        radial-gradient(ellipse at 95% -10%, rgba(255, 255, 255, .32) 0%, transparent 45%),
        radial-gradient(ellipse at 5% 110%, rgba(200, 90, 0, .28) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 120, 0, .18) 0%, transparent 65%),
        linear-gradient(112deg, #ff9900 0%, #f27b00 100%);
}
.lp-rep-solution__media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    min-height: 180px;
}
.lp-rep-solution__media img {
    display: block;
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 26px 22px rgba(0,0,0,.22));
}
.lp-rep-solutions__band--dark .lp-rep-solution__content {
    color: #ffffff;
}
.lp-rep-solution__content h3 {
    color: #ff9900;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 18px;
    position: relative;
}
.lp-rep-solution__content h3::after {
    content: '';
    display: block;
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: currentColor;
    margin-top: 10px;
}
.lp-rep-solutions__band--orange .lp-rep-solution__content h3 {
    color: #003c73;
}
.lp-rep-solution__content p,
.lp-rep-solution__content li {
    color: #ffffff;
    font-size: clamp(.82rem, 1vw, .92rem);
    font-weight: 600;
    line-height: 1.6;
}
.lp-rep-solution__content p {
    margin: 0 0 10px;
}
.lp-rep-solution__content strong {
    font-weight: 700;
}
.lp-rep-solution__content ul {
    margin: 0 0 12px;
    padding-left: 0;
    list-style: none;
}
.lp-rep-solution__content li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 8px;
}
.lp-rep-solution__content li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: .18em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    color: #ff9900;
    font-size: .72rem;
    font-weight: 900;
    line-height: 20px;
    text-align: center;
}
.lp-rep-solution__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-items: center;
    margin-top: 16px;
}
.lp-rep-solution__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 42px;
    padding: 9px 22px;
    border-radius: 12px;
    background: #ff8500;
    color: #ffffff;
    font-size: .9rem;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,.16);
    transition: transform .2s, background .2s;
}
.lp-rep-solution__actions a::before {
    content: '\203A';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1;
}
.lp-rep-solution__actions a:first-child::before {
    content: 'i';
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: .9rem;
    font-weight: 900;
}
.lp-rep-solution__actions a:first-child {
    background: transparent;
    border: 1px solid rgba(255,255,255,.78);
}
.lp-rep-solutions__band--orange .lp-rep-solution__actions a {
    background: #003c73;
}
.lp-rep-solutions__band--orange .lp-rep-solution__actions a:first-child {
    background: #003c73;
    border-color: #003c73;
}
.lp-rep-solution__actions a:hover {
    transform: translateY(-1px);
    background: #e98700;
}
.lp-rep-solution__actions a:first-child:hover {
    background: rgba(255,255,255,.12);
}
.lp-rep-solutions__band--orange .lp-rep-solution__actions a:hover {
    background: #002d57;
}

.lp-rep-products {
    padding: 82px 0 72px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.92) 0%, rgba(255,255,255,.58) 30%, transparent 62%),
        linear-gradient(180deg, #f7fbff 0%, #edf5fc 100%);
}
.lp-rep-solutions + .lp-rep-products {
    display: none;
}
.lp-rep-products .container {
    max-width: 1160px;
}
.lp-rep-products__header {
    text-align: center;
    margin-bottom: 34px;
}
.lp-rep-products__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #003c73;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 8px;
}

.lp-rep-products__title > span {
    text-align: center;
}
.lp-rep-products__title-icon {
    height: 36px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 4px;
    filter: brightness(0) invert(1) saturate(0) brightness(0.89);
}
.lp-rep-products__sub {
    color: #627b9b;
    font-size: clamp(1.02rem, 1.8vw, 1.35rem);
    font-weight: 500;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.45;
}
.lp-rep-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Product card */
.lp-rep-product-card {
    background: #fff;
    border: 1px solid rgba(0, 60, 115, .06);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0, 46, 96, .11);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
    min-height: 596px;
    position: relative;
}
.lp-rep-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(0, 46, 96, .15);
}
.lp-rep-product-card__img-wrap {
    position: relative;
    background:
        radial-gradient(ellipse at 50% 72%, rgba(0, 60, 115, .12) 0%, transparent 38%),
        linear-gradient(180deg, #f8fcff 0%, #edf5fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 24px;
    min-height: 225px;
}
.lp-rep-product-card__img-wrap img {
    height: 192px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform .3s ease;
    filter: drop-shadow(0 12px 14px rgba(0, 37, 77, .12));
}
.lp-rep-product-card:hover .lp-rep-product-card__img-wrap img { transform: scale(1.06); }
.lp-rep-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.lp-rep-product-card__badge--face { background: #003366; color: #fff; }
.lp-rep-product-card__badge--top  { background: #ff9900; color: #fff; }
.lp-rep-product-card__badge--app  { background: #25d366; color: #fff; }
.lp-rep-product-card__body {
    padding: 24px 28px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 13px;
}
.lp-rep-product-card__name {
    color: #003c73;
    font-size: 1.19rem;
    font-weight: 900;
    line-height: 1.2;
}
.lp-rep-product-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.lp-rep-product-card__features li {
    color: #4f6688;
    font-size: .91rem;
    font-weight: 500;
    padding-left: 18px;
    position: relative;
    line-height: 1.36;
}
.lp-rep-product-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .58em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff9900;
}
.lp-rep-product-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 52px;
    padding: 13px 18px;
    background: #003c73;
    color: #fff;
    border-radius: 8px;
    font-size: .98rem;
    font-weight: 900;
    letter-spacing: 0;
    transition: background .2s;
    margin-top: 6px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.lp-rep-product-card__cta:hover { background: #ff9900; }
.lp-rep-product-card__brand {
    display: grid;
    grid-template-columns: 150px 1px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 102px;
    padding: 20px 28px 22px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 60, 115, .08);
    border-bottom: 3px solid #ff9900;
}
.lp-rep-product-card__brand::before {
    content: '';
    grid-column: 2;
    width: 1px;
    height: 44px;
    background: #d9e2ed;
}
.lp-rep-product-card__brand img {
    grid-column: 1;
    grid-row: 1;
    display: block;
    max-width: 185px;
    max-height: 72px;
    object-fit: contain;
    justify-self: start;
}
.lp-rep-product-card__brand p {
    grid-column: 3;
    grid-row: 1;
    color: #4f6688;
    font-size: .78rem;
    font-weight: 500;
    line-height: 1.34;
    margin: 0;
}

/* WhatsApp CTA below product grid */
.lp-rep-whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 32px auto 0;
    padding: 14px 28px;
    background: #25d366;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: background .2s, transform .15s;
    box-shadow: 0 2px 10px rgba(37,211,102,.25);
}
.lp-rep-whatsapp-cta svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.lp-rep-whatsapp-cta:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.lp-rep-buy-modal {
    z-index: 10020;
}

.lp-rep-buy-modal.active .lp-rep-buy-modal__box {
    animation: lpRepBuyModalIn .32s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes lpRepBuyModalIn {
    from {
        transform: translateY(22px) scale(.97);
    }
    to {
        transform: translateY(0) scale(1);
    }
}

.lp-rep-buy-modal__box {
    position: relative;
    width: min(100%, 920px);
    max-height: calc(100vh - 36px);
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 31, 94, 0.28);
}

.lp-rep-buy-modal__close {
    top: 14px;
    right: 16px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef3f8;
    color: #003c73;
}

.lp-rep-buy-modal__media {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 42px 34px 34px;
    background:
        radial-gradient(ellipse at 50% 64%, rgba(0, 60, 115, .12) 0%, transparent 42%),
        linear-gradient(180deg, #f8fcff 0%, #edf5fb 100%);
    text-align: center;
}

.lp-rep-buy-modal__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 153, 0, 0.14);
    color: #e07e00;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.lp-rep-buy-modal__media img {
    width: min(100%, 310px);
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 16px 18px rgba(0, 37, 77, .15));
}

.lp-rep-buy-modal__media h3 {
    margin: 4px 0 0;
    color: #003c73;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.2;
}

.lp-rep-buy-modal__media p {
    margin: 0;
    color: #4f6688;
    font-size: .96rem;
    font-weight: 700;
}

.lp-rep-buy-modal__content {
    padding: 42px 38px 36px;
    overflow-y: auto;
}

.lp-rep-buy-modal__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: #19b957;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(25, 185, 87, .22);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease, filter .2s ease;
}

.lp-rep-buy-modal__whatsapp:hover {
    transform: translateY(-2px);
    background: #14a94d;
    color: #ffffff;
    filter: brightness(1.03);
    box-shadow: 0 18px 36px rgba(25, 185, 87, .34);
}

.lp-rep-buy-modal__whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(25, 185, 87, .24);
}

.lp-rep-buy-modal__header {
    margin-bottom: 22px;
    color: #6b7280;
    font-size: 1.06rem;
    line-height: 1.35;
}

.lp-rep-buy-modal__header span,
.lp-rep-buy-modal__header strong {
    display: block;
}

.lp-rep-buy-modal__header strong {
    color: #003c73;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
}

.lp-rep-buy-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.lp-rep-buy-form__group {
    min-width: 0;
}

.lp-rep-buy-form__group--full,
.lp-rep-buy-form__submit {
    grid-column: 1 / -1;
}

.lp-rep-buy-form__group label {
    display: block;
    margin-bottom: 5px;
    color: #6b7280;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.25;
}

.lp-rep-buy-form__group label span {
    color: #e53935;
}

.lp-rep-buy-form__group .lp-rep-char-counter {
    color: #6b7280;
}

.lp-rep-buy-form__group input,
.lp-rep-buy-form__group select,
.lp-rep-buy-form__group textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid #aeb8c5;
    border-radius: 6px;
    padding: 10px 12px;
    color: #17304b;
    font: inherit;
    font-size: .92rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.lp-rep-buy-form__group textarea {
    min-height: 94px;
    resize: vertical;
}

.lp-rep-buy-form__group input:focus,
.lp-rep-buy-form__group select:focus,
.lp-rep-buy-form__group textarea:focus {
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, .18);
}

.lp-rep-buy-form__submit {
    min-height: 46px;
    border: 0;
    border-radius: 6px;
    background: #ff9900;
    color: #ffffff;
    font: inherit;
    font-size: .92rem;
    font-weight: 900;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.lp-rep-buy-form__submit:hover {
    background: #e07e00;
    transform: translateY(-1px);
}

.lp-rep-obligation {
    background: #ffffff;
    color: #6d737a;
    overflow: hidden;
}
.lp-rep-obligation + .lp-rep-why {
    display: none;
}
.lp-rep-why + .lp-rep-brands {
    display: none;
}
.lp-rep-obligation__hero {
    position: relative;
    background: #f1f3f6;
    padding: 42px 0 24px;
    text-align: center;
}
.lp-rep-obligation__hero .container {
    position: relative;
    max-width: 1140px;
}
.lp-rep-obligation__question {
    position: absolute;
    top: -36px;
    right: 22px;
    width: 92px;
    height: auto;
    object-fit: contain;
}
.lp-rep-obligation__title {
    color: #003c73;
    font-size: clamp(2rem, 3.2vw, 2.1rem);
    font-weight: 600;
    line-height: 1.16;
    margin: 0 0 54px;
}
.lp-rep-obligation__lead {
    max-width: 1210px;
    margin: 0 auto;
    color: #777b80;
    font-size: clamp(1.25rem, 1.55vw, 1.33rem);
    font-weight: 600;
    line-height: 1.7;
}
.lp-rep-obligation__rows {
    background: #ffffff;
}
.lp-rep-obligation__row {
    min-height: 122px;
    display: flex;
    align-items: center;
}
.lp-rep-obligation__row:nth-child(even) {
    background: #f6f8fa;
}
.lp-rep-obligation__row .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 42px;
    align-items: center;
    max-width: 1140px;
}
.lp-rep-obligation__row--mechanic .container {
    grid-template-columns: 150px minmax(0, 1fr);
}
.lp-rep-obligation__text p {
    color: #707781;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.72;
    margin: 0;
}
.lp-rep-obligation__text strong {
    color: #6a6f75;
    font-weight: 900;
}
.lp-rep-obligation__text span {
    color: #0071bc;
    font-weight: 800;
}
.lp-rep-obligation__media {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.lp-rep-obligation__media img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.lp-rep-obligation__row--electronic .lp-rep-obligation__media {
    position: relative;
}
.lp-rep-obligation__row--electronic .lp-rep-obligation__media::before {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    width: 106px;
    height: 106px;
    border: 9px solid #ff8f00;
    border-radius: 18px;
    transform: translate(-50%, -50%) rotate(30deg);
}
.lp-rep-obligation__row--electronic .lp-rep-obligation__media img {
    position: relative;
    z-index: 1;
    max-height: 104px;
    filter: drop-shadow(0 10px 12px rgba(0,0,0,.12));
}
.lp-rep-obligation__row--mechanic .lp-rep-obligation__media {
    position: relative;
}
.lp-rep-obligation__row--mechanic .lp-rep-obligation__media::before {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    width: 96px;
    height: 96px;
    background: #003c73;
    transform: translate(-50%, -50%) rotate(30deg);
    border-radius: 12px;
}
.lp-rep-obligation__row--mechanic .lp-rep-obligation__media img {
    position: relative;
    z-index: 1;
    max-height: 112px;
}
.lp-rep-obligation__row--manual .lp-rep-obligation__media img {
    max-height: 128px;
}

.lp-rep-why {
    padding: 80px 0;
    background: #fff;
}
.lp-rep-why__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}
.lp-rep-why__title {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 900;
    color: #003366;
    line-height: 1.25;
    margin-bottom: 30px;
}
.lp-rep-why__list { display: flex; flex-direction: column; gap: 20px; }
.lp-rep-why__item { display: flex; gap: 16px; align-items: flex-start; }
.lp-rep-why__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9900, #e07e00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(255,153,0,.3);
}
.lp-rep-why__item strong { display: block; font-size: .95rem; font-weight: 700; color: #003366; margin-bottom: 4px; }
.lp-rep-why__item p { font-size: .84rem; color: #5d7899; line-height: 1.55; }
.lp-rep-why__visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,51,102,.15);
}
.lp-rep-why__visual img { width: 100%; height: auto; display: block; }

.lp-rep-brands {
    padding: 86px 0 92px;
    background: #ffffff;
    overflow: hidden;
}
.lp-rep-brands__header {
    text-align: center;
    margin: 0 auto 34px;
    max-width: 1040px;
}
.lp-rep-brands__title {
    font-size: clamp(1.7rem, 5.8vw, 3.4rem);
    font-weight: 900;
    color: #305477;
    line-height: 1.22;
    margin: 0;
    text-wrap: balance;
}
.lp-rep-brands__sub { font-size: .95rem; color: #5d7899; }
.lp-rep-brands__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(54px, 8vw, 116px);
    flex-wrap: wrap;
}
.lp-rep-brands__logos img {
    display: block;
    width: auto;
    height: 98px;
    max-width: 245px;
    object-fit: contain;
}
.lp-rep-brands__logos img:nth-child(2) {
    height: 82px;
}
.lp-rep-brands__logos img:nth-child(3) {
    height: 84px;
}
.lp-rep-brands__track-wrapper {
    display: none;
}
.lp-rep-brands__track-wrapper::before,
.lp-rep-brands__track-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 1;
    pointer-events: none;
}
.lp-rep-brands__track-wrapper::before { left: 0;  background: linear-gradient(to right,  #f0f4f8, transparent); }
.lp-rep-brands__track-wrapper::after  { right: 0; background: linear-gradient(to left,   #f0f4f8, transparent); }
.lp-rep-brands__track {
    display: flex;
    width: max-content;
    animation: repBrandScroll 28s linear infinite;
    will-change: transform;
}
.lp-rep-brands__track:hover { animation-play-state: paused; }
@keyframes repBrandScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.lp-rep-brands__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 260px;
    padding: 28px 36px;
    background: #fff;
    border-radius: 16px;
    margin: 0 10px;
    box-shadow: 0 4px 18px rgba(0,51,102,.07);
    transition: box-shadow .25s;
}
.lp-rep-brands__slide:hover { box-shadow: 0 8px 28px rgba(0,51,102,.14); }
.lp-rep-brands__slide img {
    height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(25%);
    transition: filter .25s;
}
.lp-rep-brands__slide:hover img { filter: grayscale(0%); }
.lp-rep-brands__slide span { font-size: .84rem; font-weight: 700; color: #5d7899; }

.lp-rep-choice {
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: visible;
}
.lp-rep-choice + .lp-rep-coverage {
    display: none;
}
.lp-rep-choice__intro {
    background: #ffffff;
    padding: 10px 0 18px;
    overflow: visible;
}
.lp-rep-choice__intro .container,
.lp-rep-choice__hero .container {
    max-width: 1010px;
}
.lp-rep-choice__intro h2 {
    color: #ff7f00;
    font-size: clamp(2.15rem, 4.1vw, 3.45rem);
    font-weight: 900;
    line-height: 1.08;
    max-width: 1010px;
    margin: 0;
}
.lp-rep-choice__hero {
    position: relative;
    background: #ff9900;
    color: #ffffff;
    overflow: visible;
}
.lp-rep-choice__hero::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 49%;
    height: 100%;
    background: rgba(232, 111, 0, .36);
    clip-path: polygon(20% 0, 100% 76%, 100% 100%, 0 100%, 0 0);
    pointer-events: none;
}
.lp-rep-choice__hero .container {
    position: relative;
    min-height: 374px;
    max-width: 680px;
    margin-left: max(24px, calc((100vw - 1010px) / 2 - 60px));
    padding: 0 24px;
    z-index: 1;
}
.lp-rep-choice__content {
    align-self: center;
    padding: 24px 0 38px;
}
.lp-rep-choice__content h3 {
    color: #ffffff;
    font-size: clamp(1.28rem, 2vw, 1.55rem);
    font-weight: 900;
    line-height: 1.35;
    max-width: 690px;
    margin: 0 0 16px;
    text-align: center;
}
.lp-rep-choice__hint {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    max-width: 660px;
    margin: 0 0 22px;
}
.lp-rep-choice__hint span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 85, 0, .36);
    color: #ffbd44;
}
.lp-rep-choice__hint svg {
    width: 25px;
    height: 25px;
}
.lp-rep-choice__hint p {
    color: #ffffff;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.22;
    margin: 0;
}
.lp-rep-choice__form {
    max-width: 638px;
}
.lp-rep-choice__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 10px;
    margin-bottom: 10px;
}
.lp-rep-choice__form input,
.lp-rep-choice__form textarea {
    width: 100%;
    min-height: 46px;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font: inherit;
    font-size: .93rem;
    font-weight: 500;
    padding: 10px 16px;
    outline: none;
    transition: background .2s, box-shadow .2s;
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45);
}
.lp-rep-choice__form input::placeholder,
.lp-rep-choice__form textarea::placeholder {
    color: rgba(255,255,255,.75);
}
.lp-rep-choice__form input:focus,
.lp-rep-choice__form textarea:focus {
    background: rgba(255,255,255,.28);
    box-shadow: inset 0 0 0 2px #ffffff, 0 4px 14px rgba(0,0,0,.12);
}
.lp-rep-choice__form textarea {
    display: block;
    min-height: 72px;
    resize: vertical;
}
.lp-rep-choice__form .lp-rep-char-counter {
    margin-bottom: 12px;
    color: rgba(255,255,255,.7);
    font-size: .78rem;
}
.lp-rep-choice__form button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 294px;
    margin: 0 auto;
    border: 0;
    border-radius: 999px;
    background: #003c73;
    color: #ffffff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 30, 70, .35);
    transition: background .2s, transform .2s, box-shadow .2s;
}
.lp-rep-choice__form button:hover {
    background: #002d57;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 30, 70, .45);
}
.lp-rep-choice__person {
    position: absolute;
    bottom: 0;
    right: max(0px, calc((100vw - 1010px) / 2 - 40px));
    width: 460px;
    max-width: 38vw;
    height: auto;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 16px 18px rgba(0,0,0,.14));
}
.lp-rep-choice__support {
    padding: 72px 0;
    background: #ffffff;
}
.lp-rep-choice__support .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px 48px;
}
.lp-rep-choice__support-copy h3 {
    color: #74787e;
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    font-weight: 400;
    line-height: 1.12;
    margin: 0 0 22px;
}
.lp-rep-choice__support-copy h3 strong {
    color: #1c4a78;
    font-weight: 900;
}
.lp-rep-choice__support-copy p {
    color: #74787e;
    font-size: 1.12rem;
    line-height: 1.48;
    margin: 0 0 18px;
}
.lp-rep-choice__support-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 20px;
}
.lp-rep-choice__support-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    width: min(100%, 375px);
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
}
.lp-rep-choice__support-actions svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}
.lp-rep-choice__wa {
    background: #ff9900;
    color: #ffffff;
}
.lp-rep-choice__ticket {
    background: #f0f2f5;
    color: #00345f;
}
.lp-rep-choice__contacts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 10px;
}
.lp-rep-choice__contact h4 {
    position: relative;
    color: #37608d;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.18;
    margin: 0 0 18px;
    padding-left: 78px;
}
.lp-rep-choice__contact h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: .52em;
    width: 70px;
    height: 12px;
    background: #e9922b;
}
.lp-rep-choice__contact p {
    color: #003c73;
    font-size: 1rem;
    line-height: 1.45;
    margin: 0 0 9px;
}
.lp-rep-choice__contact strong {
    font-weight: 700;
}

.lp-rep-coverage {
    padding: 80px 0;
    background: #fff;
}
.lp-rep-coverage__inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
    align-items: center;
}
.lp-rep-coverage__visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,51,102,.15);
}
.lp-rep-coverage__visual img { width: 100%; height: auto; display: block; }
.lp-rep-coverage__title {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 900;
    color: #003366;
    line-height: 1.25;
    margin-bottom: 18px;
}
.lp-rep-coverage__desc { font-size: 1rem; color: #5d7899; line-height: 1.65; margin-bottom: 24px; }
.lp-rep-coverage__cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 30px;
    padding: 18px 20px;
    background: #f0f4f8;
    border-radius: 12px;
}
.lp-rep-coverage__city-group strong {
    display: block;
    font-size: .79rem;
    font-weight: 800;
    color: #003366;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid #ff9900;
}
.lp-rep-coverage__city-group ul { display: flex; flex-direction: column; gap: 4px; }
.lp-rep-coverage__city-group li {
    font-size: .81rem;
    color: #5d7899;
    padding-left: 12px;
    position: relative;
}
.lp-rep-coverage__city-group li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #ff9900;
    font-weight: 900;
}
.lp-rep-coverage__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-rep-coverage__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0,0,0,.14);
    transition: filter .2s, transform .2s;
}
.lp-rep-coverage__btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
.lp-rep-coverage__btn--wa    { background: #25d366; color: #fff; }
.lp-rep-coverage__btn--phone { background: #003366; color: #fff; }

/* --- CTA BANNER --- */
.lp-rep-cta-banner {
    background: linear-gradient(135deg, #003366 0%, #001f4d 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.lp-rep-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,153,0,.15) 0%, transparent 60%);
    pointer-events: none;
}
.lp-rep-cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}
.lp-rep-cta-banner__title {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}
.lp-rep-cta-banner__sub { font-size: .97rem; color: rgba(255,255,255,.7); }
.lp-rep-cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.lp-rep-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    transition: filter .2s, transform .2s;
}
.lp-rep-cta-banner__btn:hover { filter: brightness(1.09); transform: translateY(-2px); }
.lp-rep-cta-banner__btn--primary { background: linear-gradient(90deg, #ff9900, #e07e00); color: #fff; }
.lp-rep-cta-banner__btn--wa      { background: #25d366; color: #fff; }

@media (max-width: 1100px) {
    .lp-rep-hero__inner        { grid-template-columns: minmax(340px, 500px) minmax(380px, 1fr); gap: 16px 32px; }
    .lp-rep-carousel__slide img { height: 330px; }
    .lp-rep-products__grid     { grid-template-columns: repeat(3, 1fr); }
    .lp-rep-why__inner         { grid-template-columns: 1fr 360px; gap: 40px; }
    .lp-rep-coverage__inner    { grid-template-columns: 360px 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .lp-rep-hero { padding: 48px 0 40px; }
    .lp-rep-hero__inner { grid-template-columns: 1fr; gap: 36px; }
    .lp-rep-hero__badge-pill { grid-column: 1; grid-row: 1; }
    .lp-rep-hero__title      { grid-column: 1; grid-row: 2; }
    .lp-rep-hero__sub        { grid-column: 1; grid-row: 3; }
    .lp-rep-hero__right      { grid-column: 1; grid-row: 4; }
    .lp-rep-carousel         { grid-column: 1; grid-row: 5; }
    .lp-rep-hero__trust      { grid-column: 1; grid-row: 6; }
    .lp-rep-hero__sub   { max-width: 100%; }
    .lp-rep-form-card   { max-width: 100%; }
    .lp-rep-carousel__slide img { height: 280px; }

    .lp-rep-products__grid { grid-template-columns: repeat(2, 1fr); }
    .lp-rep-product-card { min-height: auto; }
    .lp-rep-product-card__brand {
        grid-template-columns: 128px 1px minmax(0, 1fr);
        padding: 18px 22px;
    }
    .lp-rep-product-card__brand img {
        max-width: 124px;
    }
    .lp-rep-maintenance {
        padding: 48px 0;
    }
    .lp-rep-maintenance__inner {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "title title"
            "copy carousel"
            "offer map";
        gap: 28px;
        width: 100vw;
        padding: 64px 28px 70px;
    }
    .lp-rep-maintenance__copy,
    .lp-rep-maintenance__offer {
        text-align: center;
    }
    .lp-rep-maintenance__carousel {
        justify-self: center;
    }
    .lp-rep-maintenance__map {
        justify-self: center;
    }
    .lp-rep-solution {
        grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
        gap: 32px;
        min-height: 420px;
        padding: 40px 34px;
        margin-bottom: 0;
    }
    .lp-rep-solution__media img {
        max-width: 310px;
    }
    .lp-rep-solution__actions {
        gap: 16px;
    }

    .lp-rep-benefits {
        padding: 34px 0 42px;
    }
    .lp-rep-benefits__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 420px;
    }
    .lp-rep-idcombo__header {
        padding-top: 40px;
        text-align: center;
    }
    .lp-rep-idcombo__content {
        grid-template-columns: 1fr 1fr;
        gap: 22px 24px;
        max-width: 620px;
        margin: 0 auto;
    }
    .lp-rep-idcombo__text--left { grid-column: 1; grid-row: 1; }
    .lp-rep-idcombo__device--face { grid-column: 1; grid-row: 2; }
    .lp-rep-idcombo__text--right { grid-column: 2; grid-row: 1; }
    .lp-rep-idcombo__device--power { grid-column: 2; grid-row: 2; }
    .lp-rep-idcombo__footer {
        margin: 24px auto 0;
        max-width: 620px;
        text-align: center;
    }
    .lp-rep-obligation__question {
        right: 24px;
        width: 74px;
    }
    .lp-rep-obligation__row .container,
    .lp-rep-obligation__row--mechanic .container {
        grid-template-columns: 1fr 130px;
        gap: 24px;
    }
    .lp-rep-obligation__row--mechanic .container {
        grid-template-columns: 120px 1fr;
    }
    .lp-rep-obligation__row--electronic .lp-rep-obligation__media::before {
        width: 82px;
        height: 82px;
    }
    .lp-rep-obligation__row--mechanic .lp-rep-obligation__media::before {
        width: 78px;
        height: 78px;
    }
    .lp-rep-choice__hero .container {
        grid-template-columns: minmax(0, 1fr) 240px;
        gap: 18px;
    }
    .lp-rep-choice__person {
        width: 240px;
    }
    .lp-rep-choice__support .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .lp-rep-choice__support-actions {
        padding-top: 0;
    }

    .lp-rep-why__inner { grid-template-columns: 1fr; }
    .lp-rep-why__visual { order: -1; max-width: 480px; margin: 0 auto; }

    .lp-rep-coverage__inner  { grid-template-columns: 1fr; }
    .lp-rep-coverage__visual { max-width: 480px; margin: 0 auto; }

    .lp-rep-stats__sep   { display: none; }
    .lp-rep-stats__inner { justify-content: center; gap: 24px 40px; }

    .lp-rep-cta-banner__inner   { flex-direction: column; text-align: center; }
    .lp-rep-cta-banner__actions { justify-content: center; }
}

@media (max-width: 600px) {
    .lp-rep-products__grid { grid-template-columns: 1fr; }
    .lp-rep-products { padding: 58px 0; }
    .lp-rep-products__header { margin-bottom: 28px; }
    .lp-rep-product-card__body { padding: 22px; }
    .lp-rep-product-card__brand {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    .lp-rep-product-card__brand::before { display: none; }
    .lp-rep-product-card__brand img {
        justify-self: center;
    }
    .lp-rep-maintenance__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "copy"
            "carousel"
            "offer"
            "map";
        padding: 58px 22px 64px;
    }
    .lp-rep-maintenance h2 {
        font-size: 1.9rem;
    }
    .lp-rep-maintenance__btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
    .lp-rep-maintenance__map img {
        max-width: 220px;
    }
    .lp-rep-solutions__heading {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .lp-rep-solutions__heading h2 { font-size: 1.8rem; }
    .lp-rep-solutions__band {
        min-height: auto;
        padding: 0;
    }
    .lp-rep-solution {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 34px 20px;
        margin-bottom: 0;
    }
    .lp-rep-solution__content h3::after { margin-left: auto; margin-right: auto; }
    .lp-rep-solution__content h3 { font-size: 2rem; }
    .lp-rep-solution__content p,
    .lp-rep-solution__content li {
        font-size: .98rem;
    }
    .lp-rep-solution__actions {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
    }
    .lp-rep-solution__actions a {
        width: min(100%, 240px);
    }
    .lp-rep-form           { grid-template-columns: 1fr; }
    .lp-rep-form__submit   { min-width: 100%; }
    .lp-rep-carousel__brands { gap: 18px; font-size: .66rem; }
    .lp-rep-carousel__slide img { height: 210px; }
    .lp-rep-idcombo__header h2 { font-size: 1.65rem; }
    .lp-rep-idcombo__content { grid-template-columns: 1fr; }
    .lp-rep-idcombo__text--left,
    .lp-rep-idcombo__device--face,
    .lp-rep-idcombo__text--right,
    .lp-rep-idcombo__device--power {
        grid-column: auto;
        grid-row: auto;
    }
    .lp-rep-idcombo__device--face img,
    .lp-rep-idcombo__device--power img {
        max-width: 230px;
    }
    .lp-rep-idcombo__cta {
        font-size: .86rem;
        padding: 11px 20px;
    }
    .lp-rep-obligation__hero {
        padding: 42px 0 26px;
    }
    .lp-rep-obligation__question {
        position: static;
        display: block;
        width: 70px;
        margin: -18px auto 12px;
    }
    .lp-rep-obligation__title {
        font-size: 1.9rem;
        margin-bottom: 24px;
    }
    .lp-rep-obligation__lead {
        font-size: 1rem;
        line-height: 1.55;
    }
    .lp-rep-obligation__row {
        min-height: auto;
        padding: 28px 0;
    }
    .lp-rep-obligation__row .container,
    .lp-rep-obligation__row--mechanic .container {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }
    .lp-rep-obligation__row--mechanic .lp-rep-obligation__media {
        order: 2;
    }
    .lp-rep-obligation__text p {
        font-size: .95rem;
    }
    .lp-rep-obligation__row--electronic .lp-rep-obligation__media img,
    .lp-rep-obligation__row--mechanic .lp-rep-obligation__media img,
    .lp-rep-obligation__row--manual .lp-rep-obligation__media img {
        max-height: 108px;
    }
    .lp-rep-hero__trust    { gap: 8px; }
    .lp-rep-hero__trust-item { font-size: .75rem; padding: 7px 11px; }
    .lp-rep-coverage__cities { grid-template-columns: 1fr; }
    .lp-rep-coverage__ctas  { flex-direction: column; }
    .lp-rep-cta-banner__actions { flex-direction: column; width: 100%; }
    .lp-rep-cta-banner__btn { justify-content: center; }
    .lp-rep-brands {
        padding: 58px 0 62px;
    }
    .lp-rep-brands__title {
        font-size: 2rem;
    }
    .lp-rep-brands__logos {
        gap: 30px;
    }
    .lp-rep-brands__logos img,
    .lp-rep-brands__logos img:nth-child(2),
    .lp-rep-brands__logos img:nth-child(3) {
        height: 42px;
        max-width: 180px;
    }
    .lp-rep-choice__intro {
        padding: 36px 0 18px;
    }
    .lp-rep-choice__intro h2 {
        font-size: 2rem;
        text-align: center;
    }
    .lp-rep-choice__hero .container {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .lp-rep-choice__content {
        padding: 30px 0 36px;
    }
    .lp-rep-choice__content h3 {
        text-align: center;
        font-size: 1.18rem;
    }
    .lp-rep-choice__hint {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .lp-rep-choice__grid {
        grid-template-columns: 1fr;
    }
    .lp-rep-choice__form button {
        min-width: 100%;
    }
    .lp-rep-choice__person {
        display: none;
    }
    .lp-rep-choice__support {
        padding: 38px 0 46px;
    }
    .lp-rep-choice__support .container,
    .lp-rep-choice__contacts {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .lp-rep-choice__support-copy {
        text-align: center;
    }
    .lp-rep-choice__contact h4 {
        padding-left: 58px;
        font-size: 1.35rem;
    }
    .lp-rep-choice__contact h4::before {
        width: 50px;
    }
}

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 1240px) {
    .lp-rep-hero__inner {
        padding-inline: 22px;
    }

    .lp-rep-carousel {
        min-height: 560px;
    }

    .lp-rep-carousel__platform {
        width: min(560px, 96%);
    }

    .lp-rep-maintenance__inner {
        padding-inline: max(28px, calc((100vw - 1120px) / 2));
    }
}

@media (max-width: 900px) {
    .lp-rep-hero__inner {
        padding-inline: 0;
    }

    .lp-rep-hero__badge-pill,
    .lp-rep-hero__title,
    .lp-rep-hero__sub {
        justify-self: center;
        text-align: center;
    }

    .lp-rep-hero__badge-pill svg {
        display: none;
    }

    .lp-rep-hero__right {
        max-width: 620px;
        margin-inline: auto;
    }

    .lp-rep-carousel {
        min-height: 430px;
        padding-top: 60px;
    }

    .lp-rep-carousel__brands {
        top: 24px;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 12px 12px;
        scrollbar-width: none;
    }

    .lp-rep-carousel__brands::-webkit-scrollbar {
        display: none;
    }

    .lp-rep-carousel__track {
        min-height: 330px;
    }

    .lp-rep-carousel__platform {
        bottom: 62px;
    }

    .lp-rep-hero__trust {
        justify-content: center;
    }

    .lp-rep-stats__item {
        flex: 1 1 170px;
    }

    .lp-rep-solution {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .lp-rep-choice__hero::after {
        opacity: 0.55;
    }
}

@media (max-width: 680px) {
    .lp-rep-hero {
        padding: 36px 0 34px;
    }

    .lp-rep-hero__title {
        font-size: clamp(2rem, 11vw, 2.65rem);
    }

    .lp-rep-hero__sub {
        font-size: 0.98rem;
    }

    .lp-rep-form {
        grid-template-columns: 1fr;
    }

    .lp-rep-form__submit {
        min-width: 100%;
        white-space: normal;
    }

    .lp-rep-buy-modal {
        align-items: flex-start;
        overflow-y: auto;
        padding: 12px;
    }

    .lp-rep-buy-modal__box {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .lp-rep-buy-modal__media {
        padding: 30px 22px 24px;
    }

    .lp-rep-buy-modal__media img {
        height: 190px;
    }

    .lp-rep-buy-modal__content {
        padding: 28px 18px 22px;
    }

    .lp-rep-buy-form {
        grid-template-columns: 1fr;
    }

    .lp-rep-carousel {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        min-height: 360px;
        padding-top: 54px;
    }

    .lp-rep-carousel__brands {
        left: 0;
        right: 0;
        width: 100%;
        transform: none;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        justify-content: stretch;
        overflow: visible;
        padding: 0 8px 12px;
    }

    .lp-rep-carousel__brands span {
        min-width: 0;
        width: 100%;
        padding-inline: 8px;
    }

    .lp-rep-carousel__slide {
        padding-inline: 8px;
        padding-top: 58px;
    }

    .lp-rep-carousel__slide img {
        height: 220px;
    }

    .lp-rep-carousel__platform {
        width: min(420px, 96%);
        bottom: 56px;
    }

    .lp-rep-maintenance__inner {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .lp-rep-maintenance__carousel {
        width: min(250px, 100%);
    }

    .lp-rep-solution__actions {
        justify-content: center;
    }

    .lp-rep-choice__hint,
    .lp-rep-choice__grid,
    .lp-rep-choice__contacts,
    .lp-rep-coverage__cities {
        grid-template-columns: 1fr;
    }

    .lp-rep-choice__support-actions a,
    .lp-rep-coverage__btn,
    .lp-rep-cta-banner__btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lp-rep-carousel__brands span {
        min-width: 0;
        padding-inline: 6px;
        font-size: 0.62rem;
    }

    .lp-rep-carousel__track {
        min-height: 292px;
    }

    .lp-rep-carousel__slide img {
        height: 180px;
    }

    .lp-rep-carousel__slide span {
        font-size: 0.9rem;
    }

    .lp-rep-carousel__nav {
        padding-top: 8px;
    }

    .lp-rep-hero__trust {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .lp-rep-hero__trust-item {
        justify-content: center;
        text-align: center;
    }

    .lp-rep-idcombo__header {
        padding-inline: 4px;
    }

    .lp-rep-solution__content li {
        padding-left: 0;
    }

    .lp-rep-solution__content li::before {
        position: static;
        margin-right: 8px;
        transform: none;
    }

    .lp-rep-products__title,
    .lp-rep-brands__title,
    .lp-rep-choice__intro h2 {
        font-size: 1.78rem;
    }

    .lp-rep-choice__contact h4 {
        padding-left: 14px;
        text-align: left;
        border-left: 4px solid #FFA100;
        font-size: 1.35rem;
    }

    .lp-rep-choice__contact h4::before {
        display: none;
    }

    .lp-rep-choice__contact p {
        text-align: left;
    }
}
