/* Paleta principal */
:root {
    --color-primary: #057C3F;
    --color-primary-dark: #03562C;
    --color-background: #FFFFFF;
    --color-cta: #F08103;
    --color-text-main: #222222;
    --color-text-muted: #555555;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.12);
    --radius-lg: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-background);
    overflow-x: hidden;
}

.lp-root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Header fixo simples acima da hero */
.lp-header {
    background-color: #ffffff;
    border-bottom: 1px solid #F0F0F0;
    position: relative;
    z-index: 10;
}

.lp-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-header-logo {
    display: inline-flex;
    align-items: center;
}

.lp-header-logo img {
    height: 44px;
    width: auto;
    display: block;
}

/* Banner campanha Aluguel Sem Zebra — objeto do miolo (arte original 1024×426) */
.lp-campaign-banner {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    padding: 0 1.5rem;
    margin: 0;
    box-sizing: border-box;
    line-height: 0;
}

.lp-campaign-banner-inner {
    /* Mesma largura do miolo das demais seções */
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.lp-campaign-banner-link {
    display: block;
    line-height: 0;
    overflow: hidden;
    border-radius: 12px;
    background-color: transparent;
}

.lp-campaign-banner-link img {
    /* Escala só pela largura do miolo; altura automática = proporção nativa */
    width: 100%;
    max-width: 1024px;
    height: auto;
    display: block;
    margin: 0 auto;
    vertical-align: top;
}

@media (min-width: 960px) {
    .lp-campaign-banner {
        padding: 0 min(6vw, 3rem);
    }
}

/* MOBILE FIRST */
.lp-hero {
    padding: 2.5rem 1.5rem 3rem;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.lp-hero-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.lp-hero-content {
    max-width: 640px;
}

.lp-hero-title {
    font-size: clamp(2.2rem, 3vw + 1rem, 3.1rem);
    line-height: 1.1;
    margin: 0 0 1.5rem;
    color: #ffffff;
}

.lp-hero-subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #f5f5f5;
}

/* Fundo da hero com imagem + tom de verde + leve blur */
.lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/hero-anuncie aqui.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1px);
    transform: scale(1.02);
    z-index: 0;
}

.lp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(5, 124, 63, 0.65),
        rgba(5, 124, 63, 0.40)
    );
    mix-blend-mode: multiply;
    z-index: 0;
}

.lp-hero-form-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.6rem 1.8rem;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
}

.lp-form-title {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    color: var(--color-primary-dark);
}

.lp-form {
    display: grid;
    gap: 1rem;
}

.lp-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.lp-form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.lp-form-field label::after {
    content: " *";
    color: #e74c3c;
}

/* Campos preenchidos automaticamente não exibem o asterisco */
.lp-form-address .lp-form-field label::after {
    content: none;
}

.lp-form-field input,
.lp-form-field select,
.lp-form-field textarea {
    border-radius: 0.6rem;
    border: 1px solid #E0E0E0;
    padding: 0.65rem 0.8rem;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lp-form-field input:focus,
.lp-form-field select:focus,
.lp-form-field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(5, 124, 63, 0.14);
}

.lp-form-field select {
    background-color: #fff;
}

.lp-btn-primary,
.lp-btn-secondary {
    cursor: pointer;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.9rem 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.lp-btn-primary {
    background-color: var(--color-cta);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(240, 129, 3, 0.35);
}

a.lp-btn-primary {
    text-decoration: none;
}

.lp-btn-primary:hover {
    background-color: #d87201;
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(240, 129, 3, 0.4);
}

.lp-btn-secondary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(5, 124, 63, 0.35);
}

.lp-btn-secondary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(5, 124, 63, 0.45);
}

/* Seção de benefícios */
.lp-benefits {
    padding: 0 1.5rem 3rem;
}

.lp-benefits-inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.lp-benefits-header h2 {
    font-size: 1.6rem;
    margin: 0 0 1.5rem;
    color: var(--color-primary-dark);
}

.lp-benefits-header {
    text-align: center;
}

.lp-benefits-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem 1.5rem;
}

.lp-benefit-item {
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(5, 124, 63, 0.24);
    padding: 1.4rem 1.4rem 1.3rem;
    box-shadow: 0 14px 32px rgba(5, 124, 63, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease, border-color 0.25s ease,
        background-color 0.25s ease;
}

.lp-benefit-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--color-primary);
    background: linear-gradient(145deg, rgba(5, 124, 63, 0.04), #ffffff);
    box-shadow: 0 18px 40px rgba(5, 124, 63, 0.16);
}

.lp-benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(5, 124, 63, 0.22);
}

.lp-benefit-icon-slot {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    transform: translateY(6px) scale(0.9);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.lp-benefit-icon-slot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lp-benefit-item.is-visible .lp-benefit-icon-slot {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.lp-benefit-item h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    color: var(--color-text-main);
}

.lp-benefit-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.lp-benefits-cta-wrapper {
    margin-top: 2.5rem;
    text-align: center;
}

/* Oferta Alugar / Vender */
.lp-offer {
    padding: 3rem 1.5rem 3.5rem;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.lp-offer-inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lp-offer-header h2 {
    font-size: 1.9rem;
    margin: 0 0 1.75rem;
    color: #ffffff;
    text-align: center;
}

.lp-offer-highlight {
    color: var(--color-cta);
}

/* Fundo da seção de oferta com parallax semelhante à hero */
.lp-offer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/bg-anuncie aqui.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(0.6px);
    transform: scale(1.015);
    z-index: 0;
    background-attachment: fixed; /* efeito parallax simples */
}

.lp-offer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(5, 124, 63, 0.65),
        rgba(5, 124, 63, 0.40)
    );
    mix-blend-mode: multiply;
    z-index: 0;
}

.lp-offer-tabs {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    border-bottom: 2px solid #E5E5E5;
    margin-bottom: 1.25rem;
}

.lp-offer-tab {
    background: transparent;
    border: none;
    padding: 0.35rem 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
}

.lp-offer-tab.is-active {
    color: #ffffff;
}

.lp-offer-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background-color: var(--color-cta);
    border-radius: 999px 999px 0 0;
}

.lp-offer-panels {
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 1.75rem 1.9rem;
    color: var(--color-text-main);
}

.lp-offer-panel {
    display: none;
}

.lp-offer-panel.is-active {
    display: block;
}

.lp-offer-panel h3 {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    color: var(--color-text-main);
}

.lp-offer-panel p {
    margin: 0 0 0.75rem;
    font-size: 0.96rem;
    color: var(--color-text-muted);
}

.lp-offer-panel ul {
    margin: 0.35rem 0 0;
    padding-left: 1.1rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.lp-offer-panel li + li {
    margin-top: 0.2rem;
}

/* FAQ */
.lp-faq {
    padding: 0 1.5rem 3.5rem;
}

.lp-faq-header h2 {
    font-size: 1.6rem;
    margin: 0 0 0.75rem;
    color: var(--color-primary-dark);
}

.lp-faq-header p {
    margin: 0 0 2rem;
    font-size: 0.98rem;
    color: var(--color-text-muted);
}

.lp-faq-header {
    text-align: center;
}

.lp-faq-list {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.lp-faq-item + .lp-faq-item {
    border-top: 1px solid #F0F0F0;
}

.lp-faq-toggle {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background-color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.lp-faq-question {
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--color-text-main);
}

.lp-faq-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(5, 124, 63, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--color-primary);
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.lp-faq-item.is-open .lp-faq-icon {
    transform: rotate(90deg);
    background-color: rgba(5, 124, 63, 0.06);
}

.lp-faq-answer {
    padding: 0 1.5rem 1.4rem;
    display: none;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.lp-faq-answer p {
    margin: 0.25rem 0;
}

.lp-faq-answer ul {
    margin: 0.35rem 0 0.75rem 1rem;
    padding-left: 0.75rem;
}

.lp-faq-answer li {
    margin-bottom: 0.15rem;
}

.lp-faq-item.is-open .lp-faq-answer {
    display: block;
}

/* Depoimentos */
.lp-testimonials {
    padding: 3rem 1.5rem 3.5rem;
    background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
}

.lp-testimonials-inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.lp-testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lp-testimonials-header h2 {
    font-size: 1.6rem;
    margin: 0 0 0.5rem;
    color: var(--color-primary-dark);
}

.lp-testimonials-header p {
    margin: 0;
    font-size: 0.98rem;
    color: var(--color-text-muted);
}

.lp-testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.lp-testimonial-card {
    flex: 1 1 280px;
    max-width: 320px;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(5, 124, 63, 0.18);
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 12px 32px rgba(5, 124, 63, 0.06);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.lp-testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    font-size: 3rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.lp-testimonial-card:hover {
    border-color: rgba(5, 124, 63, 0.35);
    box-shadow: 0 18px 44px rgba(5, 124, 63, 0.12);
    transform: translateY(-2px);
}

.lp-testimonial-quote {
    margin: 0 0 1.25rem;
    padding: 0.5rem 0 0 0.5rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text-main);
    font-style: italic;
}

.lp-testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0;
}

/* Navegação do carrossel de depoimentos (mobile) */
.lp-testimonials-nav {
    display: none;
}

.lp-testimonials-nav-btn {
    border-radius: 999px;
    border: 1px solid rgba(5, 124, 63, 0.3);
    background-color: #ffffff;
    color: var(--color-primary-dark);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.lp-testimonials-nav-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.lp-testimonials-nav-btn:not(:disabled):hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.lp-testimonials-nav-indicator {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

@media (max-width: 767px) {
    .lp-testimonials-grid {
        display: block;
    }

    .lp-testimonial-card {
        display: none;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .lp-testimonial-card.is-active {
        display: block;
    }

    .lp-testimonials-nav {
        margin-top: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }
}

/* Quando tiver mais depoimentos, descomente o bloco abaixo para grid em 2/3 colunas
@media (min-width: 640px) {
    .lp-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lp-testimonial-card { max-width: none; margin-left: 0; margin-right: 0; }
}
@media (min-width: 960px) {
    .lp-testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
*/

@media (min-width: 768px) {
    .lp-testimonials {
        padding-inline: min(6vw, 3rem);
    }
}

/* Footer */
.lp-footer {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 2.5rem 1.5rem 2rem;
    margin-top: 0;
}

.lp-footer-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.lp-footer-lgpd-title {
    margin: 0 0 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.lp-footer-lgpd p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.lp-footer-contact {
    text-align: center;
}

.lp-footer-contact-title {
    margin: 1.4rem 0 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.lp-footer-contact-text {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.lp-footer-credits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lp-footer-credits-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.lp-footer-logo {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

.lp-footer-credits a {
    display: inline-flex;
    line-height: 0;
}

.lp-footer-credits a:hover .lp-footer-logo {
    opacity: 0.85;
}

/* Modal WhatsApp */
.lp-modal-backdrop {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 40;
}

.lp-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lp-modal {
    width: min(560px, 100% - 2.0rem);
    max-height: 90vh;
    overflow: auto;
    background-color: #ffffff;
    border-radius: 18px;
    padding: 1.8rem 1.8rem 2rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    position: relative;
}

.lp-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    border: none;
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
}

.lp-modal-subtitle {
    margin-top: 0.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.lp-modal-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Estado após seleção: mostrar apenas a opção escolhida, centralizada */
.lp-modal-options.is-single-selected {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-modal-options.is-single-selected .lp-option-chip:not(.is-selected) {
    display: none;
}

.lp-option-chip {
    border-radius: 999px;
    border: 1px solid rgba(5, 124, 63, 0.3);
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
    cursor: pointer;
    background-color: #ffffff;
    color: var(--color-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.lp-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-whatsapp-icon svg {
    width: 20px;
    height: 20px;
}

.lp-option-chip.is-selected {
    background-color: #1fb653;
    border-color: #1fb653;
    color: #ffffff;
    transform: translateY(-1px);
}

.lp-modal-form {
    border-top: 1px solid #F0F0F0;
    padding-top: 1.25rem;
    margin-top: 0.25rem;
}

.lp-modal-form.is-hidden {
    display: none;
}

/* Responsivo: telas médias e grandes */
@media (min-width: 768px) {
    .lp-hero {
        padding: 3rem min(6vw, 3rem);
    }

    .lp-hero-inner {
        padding-inline: 0;
    }

    .lp-benefits,
    .lp-offer,
    .lp-faq {
        padding-inline: min(6vw, 3rem);
    }
}

@media (min-width: 960px) {
    .lp-hero-inner {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
        gap: 3rem;
        align-items: center; /* centraliza verticalmente texto e formulário */
    }

    .lp-benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lp-modal-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ─── CEP lookup (ViaCEP) ─────────────────────────────────────────────────── */

/* Wrapper relativo para posicionar o spinner dentro do input */
.lp-cep-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.lp-cep-wrapper input {
    width: 100%;
    padding-right: 2.4rem;
}

/* Spinner (oculto por padrão, visível durante a requisição) */
.lp-cep-spinner {
    position: absolute;
    right: 0.75rem;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(5, 124, 63, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.lp-cep-spinner.is-loading {
    opacity: 1;
    animation: lp-spin 0.7s linear infinite;
}

@keyframes lp-spin {
    to { transform: rotate(360deg); }
}

/* Mensagem de erro abaixo do campo CEP */
.lp-cep-error {
    display: block;
    font-size: 0.82rem;
    color: #e74c3c;
    min-height: 1em;
    margin-top: 0.15rem;
}

/* Bloco de campos de endereço: oculto até o CEP ser encontrado */
.lp-form-address {
    display: none;
    flex-direction: column;
    gap: 0.85rem;
}

.lp-form-address.is-visible {
    display: flex;
    animation: lp-fade-in 0.25s ease;
}

@keyframes lp-fade-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Linha com dois campos lado a lado (ex.: Bairro + UF, Cidade + Número) */
.lp-address-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: start;
}

.lp-field-uf {
    flex-shrink: 0;
}

.lp-field-uf input {
    width: 3.5rem;
    text-align: center;
}

.lp-field-numero {
    flex-shrink: 0;
}

.lp-field-numero input {
    width: 6rem;
}

/* Visual diferenciado para campos preenchidos automaticamente */
.lp-form-address input[readonly] {
    background-color: #f5f8f6;
    color: var(--color-text-muted);
    cursor: default;
    border-color: #D8EDE1;
}

/* ─── Estado de sucesso do formulário ────────────────────────────────────── */
.lp-form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    animation: lp-fade-in 0.35s ease;
    min-height: 240px;
}

.lp-form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(5, 124, 63, 0.35);
    animation: lp-pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes lp-pop-in {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.lp-form-success h3 {
    margin: 0 0 0.6rem;
    font-size: 1.25rem;
    color: var(--color-primary-dark);
}

.lp-form-success p {
    margin: 0;
    font-size: 0.97rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}
