html {
    scroll-behavior: smooth;
}

.lp-body {
    font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
    color: #1e293b;
    background: #fff;
    margin: 0;
    --lp-header-height: 5rem;
}

.lp-container {
    width: min(100% - 2rem, 72rem);
    margin-inline: auto;
}

/* Header */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Stepper / Breadcrumb */
.lp-stepper {
    margin-top: var(--lp-header-height);
    padding: 0.75rem 0;
    background: var(--lp-surface);
    border-bottom: 1px solid #e2e8f0;
}

.lp-stepper__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: min(100% - 2rem, 72rem);
    margin-inline: auto;
    font-size: 0.875rem;
}

.lp-stepper__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-stepper__item:not(:last-child)::after {
    content: '›';
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1;
}

.lp-stepper__link {
    color: var(--lp-primary);
    text-decoration: none;
    font-weight: 500;
}

.lp-stepper__link:hover {
    text-decoration: underline;
}

.lp-stepper__current {
    color: #64748b;
    font-weight: 500;
}

/* Internal links */
.lp-section--compact {
    padding-block: 2.5rem;
}

.lp-internal-links__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: center;
}

.lp-internal-links__list a {
    color: var(--lp-primary);
    font-weight: 500;
    text-decoration: none;
}

.lp-internal-links__list a:hover {
    text-decoration: underline;
}

.lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 5rem;
    gap: 1rem;
}

.lp-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
    padding: 0.35rem 0;
    margin-right: auto;
}

.lp-logo__img {
    display: block;
    height: 3.25rem;
    width: auto;
    max-width: 12rem;
    object-fit: contain;
}

.lp-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.lp-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.lp-nav__link {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.15s;
}

.lp-nav__link:hover {
    color: var(--lp-primary);
}

.lp-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
}

.lp-menu-toggle__bar {
    display: block;
    height: 2px;
    width: 100%;
    background: #334155;
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
}

.lp-menu-toggle.is-active .lp-menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lp-menu-toggle.is-active .lp-menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.lp-menu-toggle.is-active .lp-menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
    .lp-menu-toggle {
        display: none;
    }

    .lp-nav {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
    }

    .lp-logo__img {
        height: 3.5rem;
        max-width: 14rem;
    }

    .lp-header__inner {
        min-height: 5.5rem;
    }

    .lp-body {
        --lp-header-height: 5.5rem;
    }
}

/* Banner */
.lp-banner {
    position: relative;
    margin-top: 0;
    height: clamp(22rem, 55vh, 36rem);
    overflow: hidden;
    background: #0f172a;
}

.lp-banner--offset-header {
    margin-top: var(--lp-header-height);
}

.lp-banner__track {
    position: relative;
    height: 100%;
}

.lp-banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.lp-banner__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.lp-banner__slide--solid {
    background: #0f172a;
}

.lp-banner__slide--solid .lp-banner__overlay {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.2));
}

.lp-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.35));
}

.lp-banner__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding-block: 2rem;
}

.lp-banner__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.75rem;
    max-width: 36rem;
}

.lp-banner__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 1.5rem;
    max-width: 32rem;
    opacity: 0.92;
    line-height: 1.5;
}

.lp-banner__controls {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.lp-banner__arrow {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
}

.lp-banner__dots {
    display: flex;
    gap: 0.5rem;
}

.lp-banner__dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
}

.lp-banner__dot.is-active {
    background: var(--lp-accent);
    transform: scale(1.15);
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    width: fit-content;
}

.lp-btn--accent {
    background: var(--lp-accent);
    color: #1e293b;
}

.lp-btn--accent:hover {
    filter: brightness(1.05);
}

.lp-btn--primary {
    background: var(--lp-primary);
    color: #fff;
}

.lp-btn--primary:hover {
    background: var(--lp-primary-dark);
}

.lp-segmento__cta {
    margin-top: 1.5rem;
}

.lp-segmento__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.lp-btn--outline-dark {
    background: transparent;
    color: var(--lp-primary-dark);
    border-color: var(--lp-primary);
}

.lp-btn--outline-dark:hover {
    background: color-mix(in srgb, var(--lp-primary) 8%, white);
}

.lp-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    margin-top: 0.75rem;
}

.lp-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Sections */
.lp-section {
    padding: 4rem 0;
}

.lp-section--alt {
    background: var(--lp-surface);
}

.lp-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--lp-primary-dark);
    margin: 0 0 1.25rem;
}

.lp-section__title--center {
    text-align: center;
    margin-bottom: 2.5rem;
}

.lp-section__text {
    color: #475569;
    line-height: 1.7;
    margin: 0 0 1rem;
}

/* Scroll reveal — imagens entram da direita */
.lp-reveal-from-right {
    opacity: 0;
    transform: translateX(2.75rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.lp-reveal-from-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.lp-reveal-from-left {
    opacity: 0;
    transform: translateX(-2.75rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.lp-reveal-from-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .lp-reveal-from-right {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }

    .lp-reveal-from-left {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

/* Quem somos */
.lp-quem-somos {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.lp-quem-somos__image-wrap {
    overflow: hidden;
}

.lp-quem-somos__image {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .lp-quem-somos {
        grid-template-columns: 1fr 1fr;
    }
}

/* Services */
.lp-services {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .lp-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp-services {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lp-service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.lp-section--alt .lp-service-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lp-service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.lp-service-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: color-mix(in srgb, var(--lp-primary) 12%, white);
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.lp-icon {
    width: 1.375rem;
    height: 1.375rem;
}

.lp-service-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #1e293b;
}

.lp-service-card__desc {
    font-size: 0.925rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Gallery */
.lp-gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .lp-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-gallery__item {
    margin: 0;
    border-radius: 0.625rem;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.lp-gallery__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.lp-gallery__item:hover .lp-gallery__image {
    transform: scale(1.04);
}

.lp-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
    color: #fff;
    font-size: 0.8rem;
}

/* Footer */
.lp-footer {
    background: var(--lp-primary-dark);
    color: #e2e8f0;
    padding: 3.5rem 0 1.5rem;
}

.lp-footer__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lp-footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #fff;
}

.lp-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.lp-footer__label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    margin-bottom: 0.15rem;
}

.lp-footer a {
    color: #fff;
    text-decoration: none;
}

.lp-footer a:hover {
    text-decoration: underline;
}

.lp-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.lp-social__link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.lp-social__link:hover {
    background: rgba(255, 255, 255, 0.22);
    text-decoration: none;
}

.lp-social__link .lp-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.lp-social__link--whatsapp {
    background: #25d366;
}

.lp-social__link--whatsapp:hover {
    background: #20bd5a;
}

.lp-footer__address {
    font-size: 0.925rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
}

.lp-map {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.lp-footer__legal {
    margin: 0;
}

.lp-link-btn {
    background: none;
    border: none;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.lp-footer__copy {
    margin: 2.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.75;
}

/* Modal */
.lp-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.lp-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.lp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
}

.lp-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: 0.75rem;
    max-width: 32rem;
    width: 100%;
    max-height: 80vh;
    overflow: auto;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.lp-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.lp-modal__header h2 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--lp-primary-dark);
}

.lp-modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
    padding: 0.25rem;
}

.lp-modal__body {
    padding: 1.25rem 1.5rem 1.5rem;
    color: #475569;
    line-height: 1.7;
}

/* WhatsApp float */
.lp-whatsapp-float {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: box-shadow 0.2s;
    animation: lp-whatsapp-breathe 1.6s ease-in-out infinite;
}

.lp-whatsapp-float:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

@keyframes lp-whatsapp-breathe {
    0%,
    100% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.1);
    }
}

.lp-whatsapp-float__icon {
    position: relative;
    z-index: 2;
    display: flex;
}

.lp-whatsapp-float__icon .lp-icon {
    width: 2rem;
    height: 2rem;
}

.lp-whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #25d366;
    z-index: 1;
    animation: lp-whatsapp-pulse 2s ease-out infinite;
}

@keyframes lp-whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.45);
        opacity: 0;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .lp-whatsapp-float {
        left: 1.5rem;
        bottom: 1.5rem;
        width: 4rem;
        height: 4rem;
    }

    .lp-whatsapp-float__icon .lp-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
}

/* Segmentos — conteúdo */
.lp-segmento {
    padding: 4rem 0;
    background: #fff;
}

.lp-segmento--alt {
    background: var(--lp-surface);
}

.lp-segmento__inner {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .lp-segmento__inner {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .lp-segmento__inner--reverse .lp-segmento__media {
        order: 2;
    }

    .lp-segmento__inner--reverse .lp-segmento__content {
        order: 1;
    }
}

.lp-segmento__media {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.12);
}

.lp-segmento__image {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.lp-segmento__title {
    margin: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1e3a8a;
    line-height: 1.25;
}

.lp-segmento__line {
    display: block;
    width: 4.5rem;
    height: 3px;
    margin: 0.75rem 0 1.25rem;
    background: #5eead4;
    border-radius: 1px;
}

.lp-segmento__intro {
    margin: 0 0 1.75rem;
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.lp-segmento__topics {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lp-segmento__topic-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.lp-segmento__topic-text {
    margin: 0;
    font-size: 0.925rem;
    color: #64748b;
    line-height: 1.65;
}

/* FAQ */
.lp-faq {
    max-width: 48rem;
    margin-inline: auto;
}

.lp-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-faq__item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lp-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
    color: #1e293b;
    line-height: 1.45;
}

.lp-faq__question::-webkit-details-marker {
    display: none;
}

.lp-faq__icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
}

.lp-faq__icon::before,
.lp-faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.75rem;
    height: 2px;
    background: var(--lp-primary);
    transform: translate(-50%, -50%);
    transition: transform 0.2s, opacity 0.2s;
}

.lp-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.lp-faq__item.is-open .lp-faq__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.lp-faq__answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.lp-faq__item.is-open .lp-faq__answer-wrapper {
    grid-template-rows: 1fr;
}

.lp-faq__answer {
    overflow: hidden;
    min-height: 0;
}

.lp-faq__answer p {
    margin: 0;
    padding: 0 1.25rem 1.125rem;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

.lp-faq__item.is-open .lp-faq__question {
    color: var(--lp-primary-dark);
}

/* Conteúdo especializado */
.lp-conteudo__intro {
    max-width: 42rem;
    margin: 0 auto 2rem;
    text-align: center;
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}

.lp-conteudo__figure {
    margin: 0 auto 2rem;
    max-width: 48rem;
}

.lp-conteudo__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    object-fit: cover;
    max-height: 28rem;
}

.lp-conteudo {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 52rem;
    margin-inline: auto;
}

.lp-conteudo__block {
    background: var(--lp-surface);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.75rem 1.5rem;
}

.lp-conteudo__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--lp-primary-dark);
}

.lp-conteudo__line {
    display: block;
    width: 3.5rem;
    height: 3px;
    margin: 0.65rem 0 1.125rem;
    background: #5eead4;
    border-radius: 1px;
}

.lp-conteudo__subtitle {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.lp-conteudo__text {
    margin: 0 0 1.25rem;
    color: #475569;
    line-height: 1.7;
    font-size: 0.975rem;
}

.lp-conteudo__text:last-child {
    margin-bottom: 0;
}

.lp-conteudo__qualifica {
    margin-bottom: 1.25rem;
}

.lp-conteudo__list {
    margin: 0;
    padding-left: 1.25rem;
    color: #475569;
    line-height: 1.65;
    font-size: 0.95rem;
}

.lp-conteudo__list li {
    margin-bottom: 0.4rem;
}

.lp-conteudo__list li::marker {
    color: var(--lp-primary);
}

.lp-conteudo__ajuda {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.lp-conteudo__actions {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
