/* =========================================================
   Landing Page Industrial MaaS - OneRF Networks
   ========================================================= */

#contac_whatsapp { position: fixed; z-index: 999; left: 20px; bottom: 80px; width: 46px; height: 46px; }

/* Bootstrap .container substitute — necessário pois não carregamos bootstrap.min.css no LP */
.lp-industrial .container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
    box-sizing: border-box;
}

:root {
    --lp-blue:      #1c8ff5;
    --lp-dark:      #01263e;
    --lp-darker:    #011829;
    --lp-mid:       #06263e;
    --lp-text:      #ccd6e0;
    --lp-muted:     #7a9ab0;
    --lp-white:     #ffffff;
    --lp-border:    rgba(255,255,255,0.1);
    --lp-gradient:  linear-gradient(90deg, #1c8ff5 0%, #01263e 100%);
}

/* Reset de fontes e elementos que skeleton.css pode sobrescrever */
.lp-industrial,
.lp-industrial h1,
.lp-industrial h2,
.lp-industrial h3,
.lp-industrial h4,
.lp-industrial p,
.lp-industrial a,
.lp-industrial span,
.lp-industrial li,
.lp-industrial button,
.lp-industrial input,
.lp-industrial select,
.lp-industrial label {
    font-family: 'Catamaran', sans-serif;
    box-sizing: border-box;
}

/* =========================================================
   FOOTER próprio da LP — enxuto e autocontido
   ========================================================= */
.lp-footer {
    background: var(--lp-darker);
    border-top: 1px solid var(--lp-border);
    padding: 56px 0 28px;
}
.lp-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.lp-footer-brand { flex: 1 1 360px; max-width: 460px; }
.lp-footer-logo { width: 120px; height: auto; margin-bottom: 18px; }
.lp-footer-brand p { color: var(--lp-text); font-size: 14px; line-height: 1.7; margin: 0 0 18px; }

.lp-footer-social { display: flex; gap: 16px; }
.lp-footer-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--lp-border); border-radius: 50%;
    color: #fff; font-size: 16px; text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.lp-footer-social a:hover { background: var(--lp-blue); border-color: var(--lp-blue); }

.lp-footer-contact { flex: 0 1 300px; }
.lp-footer-phone {
    display: inline-block;
    font-size: 28px; font-weight: 800; color: #fff;
    text-decoration: none; margin-bottom: 8px;
}
.lp-footer-phone:hover { color: var(--lp-blue); }
.lp-footer-contact p { color: var(--lp-muted); font-size: 13px; line-height: 1.7; margin: 0 0 20px; }
.lp-footer-cta {
    display: inline-block;
    background: var(--lp-blue); color: #fff;
    padding: 12px 22px; border-radius: 8px;
    font-weight: 700; font-size: 14px; text-decoration: none;
    transition: filter 0.2s;
}
.lp-footer-cta:hover { filter: brightness(1.1); }

.lp-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 40px; padding-top: 24px;
    border-top: 1px solid var(--lp-border);
}
.lp-footer-bottom span { color: var(--lp-muted); font-size: 13px; }
.lp-footer-bottom a { color: var(--lp-text); font-size: 13px; text-decoration: none; }
.lp-footer-bottom a:hover { color: var(--lp-blue); }

@media (max-width: 767px) {
    .lp-footer-top { flex-direction: column; gap: 36px; }
    .lp-footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ── NAV LP (autónomo, sem depender das classes Bootstrap do site) ── */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: background 0.3s, box-shadow 0.3s;
}
.lp-nav.scrolled {
    background: var(--lp-darker);
    border-bottom-color: var(--lp-border);
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.lp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-nav-logo { display: flex; align-items: center; text-decoration: none; }
.lp-nav-logo img { height: 36px; width: auto; }

/* logo branco visível só quando nav está scrolled (fundo escuro) */
.lp-logo-white { display: none; }
.lp-logo-dark  { display: block; }
.lp-nav.scrolled .lp-logo-white { display: block; }
.lp-nav.scrolled .lp-logo-dark  { display: none; }

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.lp-nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--lp-dark);
    transition: color 0.2s;
}
.lp-nav.scrolled .lp-nav-links a { color: var(--lp-text); }
.lp-nav-links a:hover { color: var(--lp-blue); }

.lp-nav-cta {
    background: var(--lp-blue) !important;
    color: #fff !important;
    border-radius: 6px;
    padding: 9px 20px !important;
    font-weight: 700;
    transition: opacity 0.2s;
}
.lp-nav-cta:hover { opacity: 0.85; color: #fff !important; }

/* HERO */
.lp-hero {
    min-height: 80vh;
    background: linear-gradient(160deg, #011829 0%, #01263e 60%, #063a5e 100%);
    display: flex;
    align-items: center;
    padding: 80px 0 80px;
}

.lp-hero-inner { max-width: 760px; }

.lp-tag {
    display: inline-block;
    background: rgba(28,143,245,0.15);
    border: 1px solid rgba(28,143,245,0.4);
    color: var(--lp-blue);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.lp-headline {
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    font-weight: 800;
    color: var(--lp-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.lp-headline-accent {
    display: block;
    /* começa azul vivo e escurece no fim, sumindo no fundo
       — reforça a ideia de "não enxergar" */
    background: linear-gradient(90deg,
        #1c8ff5 0%,
        #1c8ff5 35%,
        #14567f 65%,
        #0c2c44 85%,
        #07223a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-subheadline {
    font-size: 1.125rem;
    color: var(--lp-text);
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 36px;
}

.lp-btn-primary {
    display: inline-block;
    background: var(--lp-blue);
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}
.lp-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.lp-btn-secondary {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.25);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s;
    white-space: nowrap;
}
.lp-btn-secondary:hover { background: rgba(255,255,255,0.14); }

.lp-btn-full { width: 100%; text-align: center; font-size: 1rem; }

.lp-clients-strip {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.lp-clients-strip > span:first-child {
    font-size: 11px;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.lp-client-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    font-family: 'Catamaran', sans-serif;
    transition: color 0.2s;
    white-space: nowrap;
}
.lp-client-name:hover { color: rgba(255,255,255,0.55); }

/* SECOES */
.lp-section { padding: 80px 0; }
.lp-section-dark  { background: var(--lp-darker); }
.lp-section-blue  { background: var(--lp-dark); }
.lp-section-form  { background: var(--lp-mid); }

.lp-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-blue);
    margin-bottom: 12px;
}

.lp-section-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--lp-white);
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 640px;
}

.lp-section-desc {
    color: var(--lp-text);
    font-size: 1.0625rem;
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 48px;
}

/* GRIDS */
.lp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media(max-width: 900px) {
    .lp-grid-3 { grid-template-columns: 1fr; }
    .lp-grid-2 { grid-template-columns: 1fr; }
}

/* CARDS DE DOR */
.lp-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 28px;
}
.lp-card-icon { display: block; margin-bottom: 16px; color: var(--lp-blue); line-height: 0; }
.lp-card-icon svg { width: 40px; height: 40px; }
.lp-diff > span { font-size: 1.5rem; flex-shrink: 0; color: var(--lp-blue); line-height: 0; }
.lp-diff > span svg { width: 32px; height: 32px; }
.lp-card h3 { color: var(--lp-white); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.lp-card p  { color: var(--lp-text); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* STEPS */
.lp-step {
    background: rgba(28,143,245,0.06);
    border: 1px solid rgba(28,143,245,0.2);
    border-radius: 12px;
    padding: 28px;
}
.lp-step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(28,143,245,0.2);
    line-height: 1;
    margin-bottom: 12px;
}
.lp-step h3 { color: var(--lp-blue); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.lp-step p  { color: var(--lp-text); font-size: 0.9rem; line-height: 1.65; margin: 0 0 14px; }
.lp-badge {
    display: inline-block;
    background: var(--lp-gradient);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

/* DIFFS */
.lp-diffs { margin-top: 40px; }
.lp-diff {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 18px;
}
.lp-diff > span { font-size: 1.5rem; flex-shrink: 0; }
.lp-diff strong { display: block; color: var(--lp-white); font-size: 0.95rem; margin-bottom: 4px; }
.lp-diff p { color: var(--lp-text); font-size: 0.85rem; line-height: 1.55; margin: 0; }

/* CASES */
.lp-case {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--lp-border);
    border-left: 3px solid var(--lp-blue);
    border-radius: 12px;
    padding: 28px;
}
.lp-case-sector { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lp-blue); margin-bottom: 8px; }
.lp-case h3 { color: var(--lp-white); font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.lp-case ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.lp-case ul li { color: var(--lp-text); font-size: 0.875rem; line-height: 1.5; padding-left: 18px; position: relative; }
.lp-case ul li::before { content: "→"; color: var(--lp-blue); position: absolute; left: 0; }

/* UTILITIES */
.lp-utilities { background: linear-gradient(90deg, #063a5e 0%, var(--lp-mid) 100%); padding: 56px 0; border-top: 1px solid var(--lp-border); border-bottom: 1px solid var(--lp-border); }
.lp-utilities-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.lp-utilities-inner h3 { color: var(--lp-white); font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.lp-utilities-inner p { color: var(--lp-text); font-size: 0.9rem; line-height: 1.7; max-width: 520px; margin: 0; }

/* FORMULARIO */
.lp-form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media(max-width: 900px) { .lp-form-wrapper { grid-template-columns: 1fr; gap: 40px; } }

.lp-promises { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lp-promises li { color: var(--lp-text); font-size: 0.9rem; padding-left: 28px; position: relative; }
.lp-promises li::before {
    content: "✓";
    position: absolute; left: 0;
    width: 20px; height: 20px;
    background: rgba(28,143,245,0.15);
    border: 1px solid var(--lp-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--lp-blue); font-size: 10px; font-weight: 700;
    top: 1px;
}

.lp-form-right { background: rgba(255,255,255,0.04); border: 1px solid var(--lp-border); border-radius: 16px; padding: 36px; }
.lp-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.lp-field label { color: var(--lp-text); font-size: 0.85rem; font-weight: 700; }
.lp-field input,
.lp-field select {
    background: var(--lp-darker);
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    color: var(--lp-white);
    font-size: 0.9rem;
    padding: 11px 14px;
    height: 46px;
    width: 100%;
    transition: border-color 0.2s;
}
.lp-field select { appearance: none; cursor: pointer; }
.lp-field input:focus,
.lp-field select:focus { outline: none; border-color: var(--lp-blue); }
.lp-field input::placeholder { color: var(--lp-muted); }
.lp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width: 600px) { .lp-field-row { grid-template-columns: 1fr; } }

.lp-form-note { text-align: center; color: var(--lp-muted); font-size: 0.75rem; margin-top: 10px; margin-bottom: 0; }
