*{
    box-sizing:border-box;
}

:root{
    --blue:#0b4dff;
    --blue-dark:#061b4f;
    --blue-soft:#e8f0ff;
    --cyan:#38bdf8;
    --text:#0f172a;
    --muted:#64748b;
    --white:#ffffff;
    --bg:#f3f7ff;
    --card:#ffffff;
    --shadow:0 22px 60px rgba(15,23,42,.12);
    --radius:26px;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    color:var(--text);
    background:var(--bg);
}

img{
    max-width:100%;
}

.container{
    width:min(1180px, calc(100% - 36px));
    margin:0 auto;
}

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(148,163,184,.28);
}

.nav-wrap{
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:var(--text);
}

.brand-mark{
    width:54px;
    height:54px;
    border-radius:18px;
    background:linear-gradient(135deg,#dbeafe,#ffffff);
    display:grid;
    place-items:center;
    box-shadow:0 10px 30px rgba(37,99,235,.18);
    overflow:hidden;
}

.brand-mark img{
    width:64px;
    max-width:none;
}

.brand strong{
    display:block;
    font-size:24px;
    letter-spacing:-.8px;
}

.brand span{
    display:block;
    font-size:12px;
    color:var(--muted);
    font-weight:700;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:8px;
}

.main-nav a{
    color:#1e293b;
    text-decoration:none;
    font-weight:800;
    font-size:14px;
    padding:12px 14px;
    border-radius:999px;
}

.main-nav a:hover{
    background:var(--blue-soft);
    color:var(--blue);
}

.nav-cta{
    background:var(--blue)!important;
    color:#fff!important;
    box-shadow:0 10px 25px rgba(37,99,235,.25);
}

.menu-toggle{
    display:none;
    border:0;
    background:var(--blue);
    color:#fff;
    width:46px;
    height:46px;
    border-radius:14px;
    font-size:20px;
}

.hero{
    position:relative;
    overflow:hidden;
    padding:86px 0 72px;
    background:
        radial-gradient(circle at 15% 20%, rgba(56,189,248,.22), transparent 30%),
        radial-gradient(circle at 78% 22%, rgba(37,99,235,.22), transparent 33%),
        linear-gradient(135deg,#f8fbff 0%,#eaf2ff 55%,#ffffff 100%);
}

.hero-bg{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(37,99,235,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.08) 1px, transparent 1px);
    background-size:42px 42px;
    mask-image:linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid{
    position:relative;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:50px;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 13px;
    border-radius:999px;
    background:#ffffff;
    color:var(--blue);
    font-weight:900;
    font-size:13px;
    box-shadow:0 10px 28px rgba(37,99,235,.10);
}

.eyebrow.dark{
    background:#e8f0ff;
}

.hero h1{
    font-size:clamp(42px, 5vw, 70px);
    line-height:.98;
    letter-spacing:-3px;
    margin:22px 0;
    color:#061b4f;
}

.hero p{
    font-size:19px;
    line-height:1.7;
    color:#475569;
    max-width:720px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:30px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 20px;
    border-radius:16px;
    text-decoration:none;
    border:0;
    cursor:pointer;
    font-weight:900;
    font-size:15px;
}

.btn.primary{
    background:linear-gradient(135deg,var(--blue),#0031b8);
    color:#fff;
    box-shadow:0 18px 35px rgba(37,99,235,.28);
}

.btn.secondary{
    background:#ffffff;
    color:var(--blue);
    border:1px solid #dbeafe;
}

.hero-stats{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:34px;
}

.hero-stats div{
    background:rgba(255,255,255,.82);
    border:1px solid rgba(148,163,184,.25);
    border-radius:18px;
    padding:16px 18px;
    box-shadow:0 16px 35px rgba(15,23,42,.08);
}

.hero-stats strong{
    display:block;
    font-size:22px;
    color:#061b4f;
}

.hero-stats span{
    color:var(--muted);
    font-size:13px;
    font-weight:800;
}

.hero-visual{
    position:relative;
    display:flex;
    justify-content:center;
}

.glow-card{
    position:relative;
    width:min(470px,100%);
    min-height:520px;
    border-radius:40px;
    background:linear-gradient(145deg,#ffffff,#dbeafe);
    box-shadow:var(--shadow);
    display:grid;
    place-items:center;
    overflow:visible;
}

.glow-card:before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(37,99,235,.18);
    filter:blur(45px);
}

.mascot{
    position:relative;
    z-index:2;
    width:440px;
    transform:translateY(16px);
}

.floating-card{
    position:absolute;
    z-index:4;
    background:#ffffff;
    border:1px solid rgba(148,163,184,.25);
    box-shadow:0 18px 45px rgba(15,23,42,.16);
    border-radius:20px;
    padding:15px;
    width:220px;
}

.floating-card i{
    color:var(--blue);
    font-size:22px;
}

.floating-card strong{
    display:block;
    margin-top:8px;
}

.floating-card span{
    display:block;
    color:var(--muted);
    font-size:12px;
    margin-top:4px;
}

.card-one{
    left:-35px;
    top:70px;
}

.card-two{
    right:-35px;
    bottom:85px;
}

.section{
    padding:86px 0;
}

.section-title{
    text-align:center;
    margin-bottom:42px;
}

.section-title span{
    color:var(--blue);
    font-weight:900;
    text-transform:uppercase;
    font-size:13px;
}

.section-title h2{
    font-size:clamp(30px,4vw,48px);
    line-height:1.08;
    letter-spacing:-1.6px;
    margin:12px auto;
    max-width:830px;
    color:#061b4f;
}

.section-title p{
    color:var(--muted);
    font-size:17px;
    max-width:720px;
    margin:0 auto;
    line-height:1.6;
}

.cards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.service-card{
    background:#fff;
    border-radius:var(--radius);
    padding:28px;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
    border:1px solid rgba(148,163,184,.18);
    transition:.25s;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 60px rgba(37,99,235,.16);
}

.service-card i{
    width:54px;
    height:54px;
    border-radius:18px;
    background:var(--blue-soft);
    color:var(--blue);
    display:grid;
    place-items:center;
    font-size:24px;
}

.service-card h3{
    font-size:21px;
    margin:20px 0 10px;
}

.service-card p{
    color:var(--muted);
    line-height:1.65;
}

.portal-section{
    padding:90px 0;
    background:#061b4f;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.portal-section:before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(56,189,248,.18);
    border-radius:50%;
    filter:blur(80px);
    top:-180px;
    right:-100px;
}

.portal-grid{
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:42px;
    align-items:center;
}

.portal-copy h2,
.about h2,
.contact h2{
    font-size:clamp(32px,4vw,52px);
    line-height:1.08;
    letter-spacing:-1.7px;
    margin:18px 0;
}

.portal-copy p{
    color:#cbd5e1;
    line-height:1.7;
    font-size:17px;
}

.feature-list{
    display:grid;
    gap:12px;
    margin:28px 0;
}

.feature-list div{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:#eef6ff;
    font-weight:700;
}

.feature-list i{
    color:#38bdf8;
}

.mockup-panel{
    background:#ffffff;
    color:#0f172a;
    border-radius:30px;
    box-shadow:0 30px 90px rgba(0,0,0,.35);
    overflow:hidden;
    transform:rotate(1deg);
}

.browser-top{
    height:46px;
    background:#e2e8f0;
    display:flex;
    gap:8px;
    align-items:center;
    padding:0 18px;
}

.browser-top span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#94a3b8;
}

.dashboard-preview{
    padding:28px;
}

.dash-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:18px;
    border-bottom:1px solid #e2e8f0;
}

.dash-header strong{
    font-size:21px;
    color:#061b4f;
}

.dash-header small{
    color:var(--muted);
}

.mini-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin:24px 0;
}

.mini-cards div{
    background:var(--blue-soft);
    border-radius:18px;
    padding:18px;
}

.mini-cards strong{
    display:block;
    color:var(--blue);
}

.mini-cards span{
    color:var(--muted);
    font-size:13px;
}

.preview-table{
    display:grid;
    gap:12px;
}

.preview-table div{
    display:flex;
    justify-content:space-between;
    background:#f8fafc;
    border-radius:14px;
    padding:15px;
}

.preview-table span{
    color:var(--muted);
}

.solutions{
    background:#ffffff;
}

.segment-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.segment-grid div{
    background:#f3f7ff;
    border:1px solid #dbeafe;
    border-radius:22px;
    padding:22px;
    font-weight:900;
    color:#061b4f;
    display:flex;
    align-items:center;
    gap:12px;
}

.segment-grid i{
    color:var(--blue);
    font-size:24px;
}

.testimonials{
    padding:90px 0;
    background:linear-gradient(135deg,#061b4f,#0b4dff);
    color:#fff;
}

.section-title.light h2,
.section-title.light p{
    color:#fff;
}

.section-title.light p{
    color:#dbeafe;
}

.section-title.light span{
    color:#93c5fd;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.testimonial-card{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(12px);
    border-radius:26px;
    padding:28px;
}

.stars{
    color:#fde047;
    letter-spacing:2px;
    margin-bottom:18px;
}

.testimonial-card p{
    line-height:1.7;
    color:#f8fafc;
}

.testimonial-card strong{
    display:block;
    margin-top:20px;
}

.testimonial-card span{
    color:#bfdbfe;
    font-size:13px;
}

.about{
    padding:88px 0;
    background:#ffffff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr .9fr;
    gap:38px;
    align-items:center;
}

.about p{
    color:var(--muted);
    font-size:17px;
    line-height:1.7;
}

.about-card{
    display:flex;
    gap:22px;
    align-items:center;
    background:#f3f7ff;
    border:1px solid #dbeafe;
    border-radius:32px;
    padding:26px;
    box-shadow:var(--shadow);
}

.about-card img{
    width:180px;
}

.about-card p{
    font-size:15px;
}

.contact{
    padding:88px 0;
    background:linear-gradient(135deg,#e8f0ff,#ffffff);
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr .9fr;
    gap:36px;
    align-items:center;
}

.contact p{
    color:var(--muted);
    font-size:17px;
    line-height:1.7;
}

.contact-links{
    display:grid;
    gap:12px;
    margin-top:24px;
}

.contact-links a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#061b4f;
    font-weight:900;
    background:#fff;
    border-radius:18px;
    padding:16px;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
}

.contact-links i{
    color:var(--blue);
    font-size:24px;
}

.contact-form{
    background:#ffffff;
    border-radius:32px;
    padding:28px;
    box-shadow:var(--shadow);
    display:grid;
    gap:12px;
}

.contact-form label{
    font-weight:900;
    color:#061b4f;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #dbe4f0;
    border-radius:16px;
    padding:15px;
    font-size:15px;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--blue);
    box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:#22c55e;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:32px;
    text-decoration:none;
    z-index:1001;
    box-shadow:0 18px 35px rgba(34,197,94,.35);
}

.footer{
    background:#061b4f;
    color:#dbeafe;
    padding:32px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:20px;
    align-items:center;
}

.footer strong{
    font-size:22px;
    color:#fff;
}

.footer p{
    margin:5px 0;
}

@media(max-width:980px){
    .menu-toggle{
        display:grid;
        place-items:center;
    }

    .main-nav{
        position:absolute;
        top:82px;
        left:18px;
        right:18px;
        background:#fff;
        border-radius:22px;
        padding:16px;
        box-shadow:var(--shadow);
        display:none;
        flex-direction:column;
        align-items:stretch;
    }

    .main-nav.open{
        display:flex;
    }

    .main-nav a{
        border-radius:14px;
    }

    .hero-grid,
    .portal-grid,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero{
        padding-top:56px;
    }

    .glow-card{
        min-height:430px;
    }

    .mascot{
        width:360px;
    }

    .floating-card{
        position:relative;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;
        width:100%;
        margin:10px;
    }

    .glow-card{
        display:flex;
        flex-direction:column;
        padding:18px;
    }

    .cards-grid,
    .testimonial-grid,
    .segment-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }
}

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

    .nav-wrap{
        height:72px;
    }

    .brand strong{
        font-size:21px;
    }

    .brand-mark{
        width:48px;
        height:48px;
    }

    .main-nav{
        top:72px;
    }

    .hero h1{
        letter-spacing:-1.7px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-actions .btn{
        width:100%;
    }

    .hero-stats{
        display:grid;
        grid-template-columns:1fr;
    }

    .cards-grid,
    .testimonial-grid,
    .segment-grid{
        grid-template-columns:1fr;
    }

    .mockup-panel{
        transform:none;
    }

    .mini-cards{
        grid-template-columns:1fr;
    }

    .about-card{
        flex-direction:column;
        text-align:center;
    }

    .about-card img{
        width:210px;
    }

    .whatsapp-float{
        width:56px;
        height:56px;
        font-size:28px;
        right:16px;
        bottom:16px;
    }
}


/* Bloco de contato sem formulário */
.contact-card-no-form{
    text-align:left;
    gap:18px;
}

.contact-card-icon{
    width:118px;
    height:118px;
    border-radius:30px;
    background:linear-gradient(135deg,#e8f0ff,#ffffff);
    display:grid;
    place-items:center;
    box-shadow:0 16px 35px rgba(37,99,235,.12);
    overflow:hidden;
}

.contact-card-icon img{
    width:135px;
    max-width:none;
}

.contact-card-no-form h3{
    font-size:26px;
    color:#061b4f;
    margin:6px 0 0;
}

.contact-card-no-form p{
    margin:0;
    color:#64748b;
    line-height:1.7;
}

.contact-card-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:8px;
}

.webmail-btn{
    background:#061b4f;
    color:#ffffff;
}

.webmail-btn:hover{
    background:#0b4dff;
}

@media(max-width:640px){
    .contact-card-actions .btn{
        width:100%;
    }

    .contact-card-icon{
        margin:auto;
    }

    .contact-card-no-form{
        text-align:center;
    }
}


/* Área de downloads */
.downloads-section{
    padding:90px 0;
    background:linear-gradient(135deg,#ffffff,#e8f0ff);
    position:relative;
    overflow:hidden;
}

.downloads-section:before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(37,99,235,.14);
    filter:blur(90px);
    right:-160px;
    top:-120px;
}

.downloads-grid{
    position:relative;
    display:grid;
    grid-template-columns:1fr .85fr;
    gap:42px;
    align-items:center;
}

.downloads-copy h2{
    font-size:clamp(32px,4vw,52px);
    line-height:1.08;
    letter-spacing:-1.7px;
    margin:18px 0;
    color:#061b4f;
}

.downloads-copy p{
    color:#64748b;
    font-size:17px;
    line-height:1.7;
}

.download-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin:28px 0 18px;
}

.download-note{
    background:#ffffff;
    border:1px solid #dbeafe;
    border-radius:20px;
    padding:18px;
    color:#475569;
    line-height:1.6;
    box-shadow:0 14px 35px rgba(15,23,42,.08);
}

.download-note strong{
    color:#061b4f;
}

.download-card{
    display:flex;
    justify-content:center;
}

.phone-mock{
    width:300px;
    min-height:570px;
    background:#061b4f;
    border-radius:42px;
    padding:18px;
    box-shadow:0 30px 80px rgba(6,27,79,.32);
    border:8px solid #0f172a;
}

.phone-top{
    width:90px;
    height:8px;
    border-radius:999px;
    background:#334155;
    margin:0 auto 18px;
}

.phone-screen{
    min-height:500px;
    border-radius:30px;
    background:linear-gradient(180deg,#e8f0ff,#ffffff);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:24px;
}

.phone-screen img{
    width:170px;
    margin-bottom:12px;
}

.phone-screen strong{
    font-size:25px;
    color:#061b4f;
}

.phone-screen span{
    color:#64748b;
    margin-top:4px;
    font-weight:700;
}

.app-features{
    display:grid;
    gap:10px;
    margin-top:26px;
    width:100%;
}

.app-features div{
    background:#ffffff;
    border:1px solid #dbeafe;
    border-radius:16px;
    padding:12px;
    color:#061b4f;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.app-features i{
    color:#16a34a;
}

@media(max-width:980px){
    .downloads-grid{
        grid-template-columns:1fr;
    }

    .download-card{
        order:-1;
    }
}

@media(max-width:640px){
    .download-actions .btn{
        width:100%;
    }

    .phone-mock{
        width:270px;
        min-height:520px;
    }

    .phone-screen{
        min-height:450px;
    }
}
