:root {
    --lp-bg: #ffffff;
    --lp-bg-soft: #f5f8ff;
    --lp-bg-card: rgba(255, 255, 255, 0.88);
    --lp-bg-card-strong: #ffffff;
    --lp-title: #0b1220;
    --lp-text: #314056;
    --lp-muted: #6d7a91;
    --lp-line: rgba(10, 18, 32, 0.08);
    --lp-blue: #0066ff;
    --lp-blue-strong: #0052cc;
    --lp-blue-soft: #e9f1ff;
    --lp-shadow: 0 24px 80px rgba(18, 38, 83, 0.08);
    --lp-shadow-soft: 0 18px 42px rgba(18, 38, 83, 0.06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing-franquias {
    margin: 0;
    color: var(--lp-text);
    background:
        radial-gradient(circle at 10% 12%, rgba(0, 102, 255, 0.10), transparent 24%),
        radial-gradient(circle at 88% 16%, rgba(85, 169, 255, 0.14), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 38%, #ffffff 100%);
    font-family: "Plus Jakarta Sans", "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.landing-franquias a {
    color: inherit;
    text-decoration: none;
}

.lp-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.lp-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.lp-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lp-particles span {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.10);
    animation: particleFloat 10s ease-in-out infinite;
}

.lp-particles span:nth-child(1) { top: 18%; left: 8%; animation-delay: 0s; }
.lp-particles span:nth-child(2) { top: 28%; left: 82%; animation-delay: 1s; }
.lp-particles span:nth-child(3) { top: 62%; left: 12%; animation-delay: 2s; }
.lp-particles span:nth-child(4) { top: 72%; left: 88%; animation-delay: 3s; }
.lp-particles span:nth-child(5) { top: 44%; left: 56%; animation-delay: 4s; }
.lp-particles span:nth-child(6) { top: 82%; left: 42%; animation-delay: 5s; }

.lp-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(11, 18, 32, 0.04);
}

.lp-header .lp-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.lp-brand {
    display: inline-grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    min-width: max-content;
    font-family: "Plus Jakarta Sans", "Roboto", sans-serif;
    color: var(--lp-title);
}

.lp-brand-logo {
    width: auto;
    height: 32px;
    max-width: none;
    display: block;
    flex-shrink: 0;
}

.lp-brand-copy {
    display: grid;
    gap: 2px;
    white-space: nowrap;
}

.lp-brand-copy strong {
    font-size: 16px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lp-brand-copy small {
    color: var(--lp-muted);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lp-map-center-logo img,
.lp-footer-brand img {
    width: 156px;
    max-width: 100%;
}

.lp-nav {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    color: var(--lp-muted);
}

.lp-nav a:hover {
    color: var(--lp-title);
}

.lp-nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 255, 0.12);
    background: rgba(0, 102, 255, 0.06);
    color: var(--lp-blue-strong);
    font-weight: 700;
}

.lp-hero {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 56px 0 40px;
}

.lp-hero-grid,
.lp-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
    gap: 40px;
    align-items: center;
}

.lp-kicker,
.lp-section-head span,
.lp-final-card span,
.lp-map-badge,
.lp-form-copy span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.10);
    color: var(--lp-blue-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-copy h1,
.lp-section-head h2,
.lp-final-card h2,
.lp-form-copy h2 {
    margin: 18px 0 0;
    color: var(--lp-title);
    font-family: "Plus Jakarta Sans", "Roboto", sans-serif;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.lp-copy h1 {
    max-width: 11.3ch;
    font-size: clamp(40px, 5.5vw, 70px);
}

.lp-subtitle,
.lp-section-head p,
.lp-final-card p,
.lp-form-copy p,
.lp-contact-panel p,
.lp-metric-card span,
.lp-logo-band img,
.lp-solution-card p,
.lp-solution-card li,
.lp-flow-track p,
.lp-ecosystem-card p,
.lp-segment-grid p,
.lp-persona-card p,
.lp-steps-grid p,
.lp-faq-grid p,
.lp-footer p {
    font-size: 17px;
    line-height: 1.72;
    color: var(--lp-muted);
}

.lp-subtitle {
    max-width: 63ch;
    margin: 24px 0 0;
}

.lp-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lp-btn:hover {
    transform: translateY(-1px);
}

.lp-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-blue) 0%, #388dff 100%);
    box-shadow: 0 18px 32px rgba(0, 102, 255, 0.22);
}

.lp-btn-primary:hover,
.lp-btn-primary:focus {
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-blue-strong) 0%, var(--lp-blue) 100%);
}

.lp-btn-secondary {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--lp-line);
    color: var(--lp-title);
}

.lp-btn-block {
    width: 100%;
}

.lp-trust-inline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.lp-trust-inline div,
.lp-map-card,
.lp-metric-card,
.lp-solution-card,
.lp-ecosystem-card,
.lp-segment-grid article,
.lp-persona-card,
.lp-steps-grid article,
.lp-faq-grid article,
.lp-form-card,
.lp-final-card,
.lp-contact-panel {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow-soft);
}

.lp-trust-inline div {
    border-radius: 24px;
    padding: 18px;
}

.lp-trust-inline strong {
    display: block;
    color: var(--lp-title);
    font-family: "Plus Jakarta Sans", "Roboto", sans-serif;
    font-size: 22px;
}

.lp-trust-inline span {
    display: block;
    margin-top: 8px;
    color: var(--lp-muted);
    font-size: 14px;
    line-height: 1.5;
}

.lp-hero-visual {
    position: relative;
}

.lp-map-card {
    position: relative;
    min-height: 610px;
    border-radius: 34px;
    padding: 26px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 248, 255, 0.96) 100%);
    box-shadow: var(--lp-shadow);
}

.lp-map-card::before,
.lp-map-card::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.10);
    filter: blur(6px);
}

.lp-map-card::before {
    width: 190px;
    height: 190px;
    top: -60px;
    right: -30px;
}

.lp-map-card::after {
    width: 230px;
    height: 230px;
    bottom: -90px;
    left: -80px;
}

.lp-map-badge {
    position: relative;
    z-index: 2;
}

.lp-brazil-map {
    position: absolute;
    inset: 78px 38px 44px 38px;
    width: calc(100% - 76px);
    height: calc(100% - 122px);
}

.lp-map-shape {
    fill: url(#mapFill);
    stroke: url(#mapStroke);
    stroke-width: 8;
}

.lp-map-lines path {
    fill: none;
    stroke: rgba(0, 102, 255, 0.42);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 10 12;
    animation: dashMove 9s linear infinite;
}

.lp-map-node {
    fill: #6eb1ff;
    opacity: 0.9;
    animation: nodePulse 3s ease-in-out infinite;
}

.lp-map-node.is-active {
    fill: var(--lp-blue);
}

.lp-map-center-logo {
    position: absolute;
    top: 48%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 216px;
    min-height: 144px;
    padding: 18px 22px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 26px 40px rgba(0, 102, 255, 0.10);
    border: 1px solid rgba(0, 102, 255, 0.08);
    backdrop-filter: blur(10px);
}

.lp-map-center-logo img {
    width: 150px;
}

.lp-city-tag {
    position: absolute;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(11, 18, 32, 0.84);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 28px rgba(11, 18, 32, 0.12);
}

.city-sp { right: 72px; top: 292px; }
.city-cwb { left: 160px; bottom: 138px; }
.city-bsb { left: 238px; top: 230px; }
.city-rec { right: 96px; top: 176px; }
.city-poa { left: 136px; bottom: 72px; }

.lp-section {
    padding: 64px 0;
}

.lp-section-alt {
    background: linear-gradient(180deg, rgba(244, 249, 255, 0.84) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-top: 1px solid rgba(0, 102, 255, 0.05);
    border-bottom: 1px solid rgba(0, 102, 255, 0.05);
}

.lp-section-head {
    max-width: 820px;
}

.lp-section-head h2,
.lp-final-card h2,
.lp-form-copy h2 {
    font-size: clamp(32px, 4vw, 56px);
}

.lp-section-head p,
.lp-final-card p,
.lp-form-copy p {
    margin: 18px 0 0;
}

.lp-metric-grid,
.lp-solution-grid,
.lp-ecosystem-grid,
.lp-segment-grid,
.lp-persona-grid,
.lp-faq-grid {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

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

.lp-metric-card {
    border-radius: 28px;
    padding: 28px 24px;
}

.lp-metric-card strong {
    display: block;
    color: var(--lp-title);
    font-family: "Plus Jakarta Sans", "Roboto", sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
}

.lp-metric-card span {
    display: block;
    margin-top: 10px;
}

.lp-logo-band {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid var(--lp-line);
    background: rgba(250, 252, 255, 0.96);
    box-shadow: var(--lp-shadow-soft);
}

.lp-logo-band div {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.lp-logo-band img {
    width: 100%;
    max-width: 110px;
    filter: grayscale(1);
    opacity: 0.72;
}

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

.lp-solution-card {
    border-radius: 30px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.lp-solution-card h3,
.lp-flow-track h3,
.lp-ecosystem-card h3,
.lp-segment-grid h3,
.lp-persona-card h3,
.lp-steps-grid h3,
.lp-faq-grid h3 {
    margin: 0;
    color: var(--lp-title);
    font-family: "Plus Jakarta Sans", "Roboto", sans-serif;
    font-size: 26px;
    line-height: 1.15;
}

.lp-solution-card p {
    margin: 14px 0 0;
}

.lp-solution-card ul {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.lp-solution-card li {
    position: relative;
    padding-left: 18px;
    margin: 0;
    font-size: 15px;
}

.lp-solution-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-blue);
}

.lp-iso-art {
    width: 132px;
    height: 98px;
    position: relative;
    margin-bottom: 22px;
}

.lp-iso-art span {
    position: absolute;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.18) 0%, rgba(0, 102, 255, 0.04) 100%);
    border: 1px solid rgba(0, 102, 255, 0.10);
    box-shadow: 0 18px 30px rgba(0, 102, 255, 0.08);
}

.lp-iso-art span:nth-child(1) { inset: 10px 38px 34px 0; }
.lp-iso-art span:nth-child(2) { inset: 0 0 48px 38px; }
.lp-iso-art span:nth-child(3) { inset: 36px 18px 0 18px; }

.lp-iso-art-two span { background: linear-gradient(180deg, rgba(13, 23, 39, 0.12) 0%, rgba(13, 23, 39, 0.03) 100%); }
.lp-iso-art-three span { background: linear-gradient(180deg, rgba(69, 140, 255, 0.18) 0%, rgba(69, 140, 255, 0.04) 100%); }
.lp-iso-art-four span { background: linear-gradient(180deg, rgba(0, 102, 255, 0.12) 0%, rgba(0, 102, 255, 0.02) 100%); }

.lp-flow-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.lp-flow-track::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 38px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.24), rgba(0, 102, 255, 0.72), rgba(0, 102, 255, 0.24));
}

.lp-flow-track article {
    position: relative;
    z-index: 1;
    padding: 78px 18px 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow-soft);
}

.lp-flow-track b,
.lp-steps-grid b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--lp-blue) 0%, #4f95ff 100%);
    color: #ffffff;
    font-family: "Plus Jakarta Sans", "Roboto", sans-serif;
    font-size: 22px;
    box-shadow: 0 14px 24px rgba(0, 102, 255, 0.20);
}

.lp-flow-track b {
    position: absolute;
    top: 14px;
}

.lp-flow-track p,
.lp-ecosystem-card p,
.lp-segment-grid p,
.lp-persona-card p,
.lp-faq-grid p {
    margin: 12px 0 0;
}

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

.lp-ecosystem-card,
.lp-segment-grid article,
.lp-persona-card,
.lp-steps-grid article,
.lp-faq-grid article {
    border-radius: 26px;
    padding: 24px;
}

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

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

.lp-persona-art {
    width: 100%;
    height: 122px;
    margin-bottom: 20px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.82), transparent 18%),
        linear-gradient(135deg, rgba(0, 102, 255, 0.18) 0%, rgba(0, 102, 255, 0.04) 100%);
    border: 1px solid rgba(0, 102, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.lp-persona-art::before,
.lp-persona-art::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(0, 102, 255, 0.14);
}

.lp-persona-art::before {
    width: 44px;
    height: 44px;
    top: 22px;
    left: 26px;
}

.lp-persona-art::after {
    width: 72px;
    height: 72px;
    bottom: -18px;
    right: 24px;
}

.persona-two { background: linear-gradient(135deg, rgba(13, 23, 39, 0.10) 0%, rgba(0, 102, 255, 0.03) 100%); }
.persona-three { background: linear-gradient(135deg, rgba(0, 102, 255, 0.14) 0%, rgba(70, 145, 255, 0.03) 100%); }
.persona-four { background: linear-gradient(135deg, rgba(16, 59, 140, 0.12) 0%, rgba(0, 102, 255, 0.03) 100%); }

.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.lp-steps-grid article {
    text-align: left;
}

.lp-steps-grid h3 {
    margin-top: 18px;
    font-size: 22px;
}

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

.lp-final-cta {
    padding: 10px 0 26px;
}

.lp-final-card {
    border-radius: 34px;
    padding: 38px;
    background:
        linear-gradient(135deg, rgba(0, 102, 255, 0.92) 0%, rgba(12, 32, 73, 0.96) 100%);
    box-shadow: 0 30px 70px rgba(0, 102, 255, 0.18);
}

.lp-final-card span,
.lp-final-card h2,
.lp-final-card p {
    color: #ffffff;
}

.lp-final-card span {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.lp-final-card p {
    max-width: 62ch;
    opacity: 0.86;
}

.lp-form-section {
    padding-top: 42px;
}

.lp-contact-panel {
    display: grid;
    gap: 16px;
    margin-top: 26px;
    border-radius: 26px;
    padding: 22px;
}

.lp-contact-panel strong {
    color: var(--lp-title);
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.lp-contact-panel p {
    margin: 0;
    font-size: 15px;
}

.lp-form-card {
    border-radius: 32px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--lp-shadow);
}

.lp-form {
    display: grid;
    gap: 14px;
}

.lp-form label {
    color: var(--lp-title);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lp-form input,
.lp-form select,
.lp-form textarea {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid rgba(12, 27, 58, 0.10);
    border-radius: 16px;
    background: #f9fbff;
    padding: 16px 18px;
    color: var(--lp-title);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.35;
    outline: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lp-form input,
.lp-form select {
    min-height: 48px;
}

.lp-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(12, 27, 58, 0.55) 50%),
        linear-gradient(135deg, rgba(12, 27, 58, 0.55) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.lp-form textarea {
    min-height: 128px;
    resize: vertical;
}

.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
    border-color: rgba(0, 102, 255, 0.28);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.10);
    background: #ffffff;
}

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

.lp-checkbox {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    color: var(--lp-muted);
    font-weight: 600;
    cursor: pointer;
}

.lp-checkbox input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    padding: 0;
}

.lp-checkbox-copy {
    line-height: 1.5;
}

.lp-checkbox-copy a {
    color: var(--lp-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lp-checkbox-copy a:hover {
    color: var(--lp-blue-strong);
}

.lp-form-feedback {
    min-height: 24px;
    margin: 2px 0 0;
    font-size: 14px;
    font-weight: 700;
}

.lp-form-feedback.is-success {
    color: #157347;
}

.lp-form-feedback.is-error {
    color: #d63384;
}

.lp-footer {
    padding: 30px 0 42px;
}

.lp-footer .lp-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.9fr;
    gap: 24px;
    align-items: start;
    padding-top: 22px;
    border-top: 1px solid rgba(11, 18, 32, 0.08);
}

.lp-footer-brand p,
.lp-footer-links,
.lp-footer-social {
    margin: 14px 0 0;
}

.lp-footer-brand img {
    width: 168px;
}

.lp-footer-links,
.lp-footer-social {
    display: grid;
    gap: 10px;
}

.lp-footer-links a,
.lp-footer-social a {
    color: var(--lp-muted);
}

.lp-footer-links a:hover,
.lp-footer-social a:hover {
    color: var(--lp-title);
}

.lp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

.lp-solution-card:hover,
.lp-ecosystem-card:hover,
.lp-segment-grid article:hover,
.lp-persona-card:hover,
.lp-faq-grid article:hover,
.lp-metric-card:hover,
.lp-steps-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 54px rgba(18, 38, 83, 0.10);
    border-color: rgba(0, 102, 255, 0.14);
}

.lp-solution-card,
.lp-ecosystem-card,
.lp-segment-grid article,
.lp-persona-card,
.lp-faq-grid article,
.lp-metric-card,
.lp-steps-grid article {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@keyframes particleFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.45; }
    50% { transform: translate3d(0, -18px, 0) scale(1.25); opacity: 0.9; }
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.84; }
    50% { transform: scale(1.35); opacity: 1; }
}

@keyframes dashMove {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -160; }
}

@media (max-width: 1180px) {
    .lp-header .lp-wrap {
        display: grid;
        justify-items: start;
    }

    .lp-nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .lp-metric-grid,
    .lp-ecosystem-grid,
    .lp-persona-grid,
    .lp-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 980px) {
    .lp-header {
        position: static;
    }

    .lp-header .lp-wrap,
    .lp-nav,
    .lp-hero-grid,
    .lp-form-grid,
    .lp-trust-inline,
    .lp-metric-grid,
    .lp-solution-grid,
    .lp-flow-track,
    .lp-ecosystem-grid,
    .lp-segment-grid,
    .lp-persona-grid,
    .lp-steps-grid,
    .lp-faq-grid,
    .lp-footer .lp-wrap,
    .lp-form-row {
        grid-template-columns: 1fr;
    }

    .lp-header .lp-wrap {
        display: grid;
        justify-items: start;
    }

    .lp-nav {
        display: grid;
        width: 100%;
        gap: 10px;
    }

    .lp-nav-cta {
        text-align: center;
    }

    .lp-hero {
        min-height: auto;
        padding-top: 40px;
    }

    .lp-copy h1 {
        max-width: 100%;
    }

    .lp-map-card {
        min-height: 520px;
    }

    .lp-flow-track::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .lp-wrap {
        width: min(100% - 24px, 1180px);
    }

    .lp-brand {
        gap: 10px;
        min-width: 0;
        max-width: 100%;
    }

    .lp-brand-logo,
    .lp-footer-brand img {
        width: auto;
        height: 26px;
        max-width: 100%;
    }

    .lp-brand-copy strong {
        font-size: 14px;
    }

    .lp-brand-copy small {
        font-size: 11px;
    }

    .lp-map-center-logo img {
        width: 118px;
    }

    .lp-copy h1 {
        font-size: 36px;
    }

    .lp-subtitle,
    .lp-section-head p,
    .lp-form-copy p,
    .lp-final-card p {
        font-size: 16px;
    }

    .lp-btn {
        width: 100%;
    }

    .lp-map-card,
    .lp-form-card,
    .lp-final-card,
    .lp-contact-panel,
    .lp-solution-card,
    .lp-metric-card,
    .lp-ecosystem-card,
    .lp-segment-grid article,
    .lp-persona-card,
    .lp-steps-grid article,
    .lp-faq-grid article {
        border-radius: 24px;
        padding: 20px;
    }

    .lp-map-card {
        min-height: 440px;
    }

    .lp-brazil-map {
        inset: 92px 18px 24px 18px;
        width: calc(100% - 36px);
        height: calc(100% - 116px);
    }

    .lp-map-center-logo {
        width: 168px;
        min-height: 112px;
        padding: 14px 16px;
        border-radius: 24px;
    }

    .lp-city-tag {
        font-size: 11px;
        padding: 8px 10px;
    }

    .city-sp { right: 28px; top: 236px; }
    .city-cwb { left: 72px; bottom: 94px; }
    .city-bsb { left: 138px; top: 194px; }
    .city-rec { right: 46px; top: 142px; }
    .city-poa { left: 56px; bottom: 48px; }
}

@media (max-width: 420px) {
    .lp-header .lp-wrap {
        gap: 14px;
        padding: 16px 0;
    }

    .lp-brand {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: start;
    }

    .lp-brand-logo {
        width: min(100%, 168px);
        height: auto;
        max-width: 100%;
    }

    .lp-brand-copy {
        gap: 3px;
        white-space: normal;
    }

    .lp-brand-copy strong,
    .lp-brand-copy small {
        display: block;
    }

    .lp-nav {
        gap: 8px;
    }

    .lp-nav-cta {
        padding: 12px 14px;
    }
}
