/* ============================================================================
   conecta.css — Página de produto: Conecta
   ============================================================================ */

:root {
    --ct-green: #263e82;      /* Cor base */
    --ct-green-l: #eef2ff;    /* Fundo leve (light) */
    --ct-green-d: #1e3166;    /* Cor mais escura (dark) */
    
    --ct-blue: #0A52CC;
    --ct-blue-l: #EFF6FF;
    --ct-purple: #7C3AED;
    --ct-purpl-l: #F5F3FF;
    --ct-orange: #EA580C;
    --ct-orang-l: #FFF7ED;
    --ct-radius: 14px;
}

/* ============================================================================
   1. HERO
   ============================================================================ */
.ct-hero {
    background: linear-gradient(145deg, #263e82 0%, #3e5ab3 55%, #1e3166 100%);
    padding: 130px 0 0;
    position: relative;
    overflow: hidden;
}

.ct-hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 242, 255, .15) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.ct-hero__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Breadcrumb */
.ct-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.ct-hero__breadcrumb a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ct-hero__breadcrumb a:hover {
    color: #fff;
}

.ct-hero__breadcrumb i.bi-chevron-right {
    font-size: .7rem;
    color: rgba(255,255,255,.3);
}

.ct-hero__breadcrumb span {
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
}

/* Badge top */
.ct-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    padding: 6px 14px;
    border-radius: 999px;
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.ct-hero__badge i {
    color: #60a5fa;
}

/* Heading */
.ct-hero__content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ct-hero__highlight {
    background: linear-gradient(135deg, #fff, #bfdbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ct-hero__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Stats inline */
.ct-hero__stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
}

.ct-hero__stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.ct-hero__stat span {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    margin-top: 3px;
    display: block;
}

.ct-hero__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.15);
}

/* Actions */
.ct-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 14px 28px !important;
    font-size: 1rem !important;
}

/* Visual / Mockup */
.ct-hero__visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0;
}

.ct-hero__mockup {
    position: relative;
    width: 100%;
    max-width: 560px;
}

.ct-hero__mockup-img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    display: block;
}

.btn-custom-outline {
    color: #fff !important;
    border: 1.5px solid #fff !important;
}
.btn-custom-outline:hover {
    color: #333 !important;
    background: #fff;
}

/* Floating badges */
.ct-mockup-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 700;
    background: #fff;
    color: #0F172A;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    white-space: nowrap;
}

.ct-mockup-badge i {
    color: #22C55E;
    font-size: 1rem;
}

.ct-mockup-badge--tl {
    top: 24px;
    left: -28px;
}

.ct-mockup-badge--br {
    bottom: 28px;
    right: -20px;
}

.ct-mockup-badge--br i {
    color: var(--ct-green);
}

/* Wave */
.ct-hero__wave {
    margin-top: 60px;
    line-height: 0;
}

.ct-hero__wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ============================================================================
   2. TRUST BAR
   ============================================================================ */
.ct-trust {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 32px 0;
}

.ct-trust__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.ct-trust__label {
    font-size: .82rem;
    color: #64748B;
    font-weight: 600;
    flex-shrink: 0;
    margin: 0;
}

.ct-trust__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.ct-trust__item strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ct-green);
    line-height: 1;
}

.ct-trust__item span {
    font-size: .78rem;
    color: #64748B;
    margin-top: 3px;
    display: block;
}

/* ============================================================================
   3. O QUE É
   ============================================================================ */
.ct-about {
    padding: 100px 0;
    background: #fff;
}

.ct-about__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ct-green);
    margin-bottom: 12px;
}

.section-label--light {
    color: #bfdbfe;
}

.ct-about__text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 12px 0 20px;
    color: #0F172A;
}

.ct-about__text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.ct-about__checks {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-about__checks--light li {
    color: rgba(255,255,255,.8);
}

.ct-about__checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: #334155;
    font-weight: 500;
}

.ct-about__checks li i {
    color: var(--ct-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ct-about__checks--light li i {
    color: #bfdbfe;
}

.ct-about__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ct-about__card {
    padding: 24px 20px;
    border-radius: var(--ct-radius);
    border: 1px solid transparent;
}

.ct-about__card i {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 14px;
}

.ct-about__card h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.ct-about__card p {
    font-size: .85rem;
    line-height: 1.6;
    margin: 0;
}

.ct-about__card--blue { background: var(--ct-blue-l); border-color: #BFDBFE; }
.ct-about__card--blue i, .ct-about__card--blue h4 { color: var(--ct-blue); }

.ct-about__card--green { background: var(--ct-green-l); border-color: #c7d2fe; }
.ct-about__card--green i, .ct-about__card--green h4 { color: var(--ct-green); }

.ct-about__card--purple { background: var(--ct-purpl-l); border-color: #DDD6FE; }
.ct-about__card--purple i, .ct-about__card--purple h4 { color: var(--ct-purple); }

.ct-about__card--orange { background: var(--ct-orang-l); border-color: #FED7AA; }
.ct-about__card--orange i, .ct-about__card--orange h4 { color: var(--ct-orange); }

.ct-about__card p { color: #475569; }

/* ============================================================================
   4. MÓDULOS
   ============================================================================ */
.ct-modulos {
    padding: 100px 0;
    background: #F8FAFC;
}

.ct-modulos__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.ct-modulos__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.ct-modulos__header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 12px 0 14px;
}

.ct-modulos__header p {
    color: #64748B;
}

.ct-modulos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ct-modulo-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: var(--ct-radius);
    padding: 32px 28px;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.ct-modulo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: hsl(var(--mc), 55%);
    opacity: 0;
    transition: opacity .25s;
}

.ct-modulo-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.09);
    transform: translateY(-4px);
}

.ct-modulo-card:hover::before { opacity: 1; }

.ct-modulo-card__icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: hsl(var(--mc), 93%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: hsl(var(--mc), 45%);
    margin-bottom: 18px;
}

.ct-modulo-card h3 {
    font-size: 1rem; font-weight: 700; color: #0F172A; margin-bottom: 10px;
}

.ct-modulo-card > p {
    font-size: .875rem; color: #64748B; line-height: 1.7; margin-bottom: 18px;
    border-bottom: 1px solid #F1F5F9; padding-bottom: 18px;
}

.ct-modulo-card ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 7px;
}

.ct-modulo-card ul li {
    font-size: .82rem; color: #475569; padding-left: 16px; position: relative;
}

.ct-modulo-card ul li::before {
    content: '›';
    position: absolute; left: 0; color: hsl(var(--mc), 50%); font-weight: 700;
}

/* ============================================================================
   5. BENEFÍCIOS
   ============================================================================ */
.ct-beneficios {
    padding: 100px 0; background: #fff;
}

.ct-beneficios__inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

.ct-beneficios__header { text-align: center; max-width: 560px; margin: 0 auto 56px; }

.ct-beneficios__header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 12px 0 0; }

.ct-beneficios__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px;
}

.ct-beneficio { display: flex; gap: 18px; align-items: flex-start; }

.ct-beneficio__icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
}

.ct-beneficio__icon--blue { background: var(--ct-blue-l); color: var(--ct-blue); }
.ct-beneficio__icon--green { background: var(--ct-green-l); color: var(--ct-green); }
.ct-beneficio__icon--purple { background: var(--ct-purpl-l); color: var(--ct-purple); }
.ct-beneficio__icon--orange { background: var(--ct-orang-l); color: var(--ct-orange); }

.ct-beneficio h4 { font-size: .95rem; font-weight: 700; color: #0F172A; margin-bottom: 6px; }
.ct-beneficio p { font-size: .875rem; color: #64748B; line-height: 1.65; margin: 0; }

/* ============================================================================
   6. INTEGRAÇÕES
   ============================================================================ */
.ct-integracoes {
    padding: 100px 0; background: var(--ct-green-d); position: relative; overflow: hidden;
}

.ct-integracoes::before {
    content: ''; position: absolute; width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.ct-integracoes__inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative;
}

.ct-integracoes__text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; margin: 12px 0 16px; }
.ct-integracoes__text p { color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 28px; }

/* Orbit map */
.ct-integracoes__map {
    position: relative; width: 100%; aspect-ratio: 1; max-width: 440px; justify-self: center;
}

.ct-integ-hub {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--ct-green), #60a5fa);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    box-shadow: 0 0 0 12px rgba(255,255,255,.05), 0 0 0 24px rgba(255,255,255,.02); z-index: 2;
}

.ct-integ-hub i { font-size: 1.6rem; color: #fff; }
.ct-integ-hub span { font-size: .55rem; font-weight: 700; color: rgba(255,255,255,.9); letter-spacing: .05em; }

.ct-integ-node {
    position: absolute; width: 64px; height: 64px; border-radius: 50%;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    transition: background .2s, border-color .2s; cursor: default;
}

.ct-integ-node span {
    font-size: .48rem; font-weight: 600; color: rgba(255,255,255,.55); text-align: center; line-height: 1.2;
}

.ct-integ-node--t { top: 2%; left: 50%; transform: translate(-50%, 0); }
.ct-integ-node--tr { top: 14%; right: 9%; transform: none; }
.ct-integ-node--r { top: 50%; right: 0%; transform: translateY(-50%); }
.ct-integ-node--br { bottom: 14%; right: 9%; transform: none; }
.ct-integ-node--b { bottom: 2%; left: 50%; transform: translate(-50%, 0); }
.ct-integ-node--bl { bottom: 14%; left: 9%; transform: none; }
.ct-integ-node--l { top: 50%; left: 0%; transform: translateY(-50%); }
.ct-integ-node--tl { top: 14%; left: 9%; transform: none; }

/* ============================================================================
   7. CASE
   ============================================================================ */
.ct-case { padding: 100px 0; background: #F8FAFC; }

.ct-case__inner { max-width: 960px; margin: 0 auto; padding: 0 40px; }

.ct-case__card {
    background: #fff; border: 1px solid #E2E8F0; border-radius: 20px;
    padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.ct-case__quote > i { font-size: 3rem; color: var(--ct-green); display: block; margin-bottom: 16px; line-height: 1; }
.ct-case__quote blockquote { font-size: 1.05rem; font-style: italic; color: #334155; line-height: 1.8; margin: 0 0 28px; border: none; padding: 0; }

.ct-case__author { display: flex; align-items: center; gap: 14px; }
.ct-case__avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--ct-green-l); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--ct-green); flex-shrink: 0;
}
.ct-case__author strong { display: block; font-size: .9rem; color: #0F172A; }
.ct-case__author span { font-size: .78rem; color: #64748B; }

.ct-case__results h4 { font-size: 1.1rem; color: #0F172A; margin-bottom: 24px; font-weight: 800; }
.ct-case__result-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.ct-case__result-item i { color: var(--ct-green); font-size: 1.2rem; line-height: 1; }
.ct-case__result-item span { font-size: .9rem; color: #475569; line-height: 1.5; }

/* ============================================================================
   8. DÚVIDAS FREQUENTES
   ============================================================================ */
.ct-faq { padding: 100px 0; background: #fff; }

.ct-faq__inner { max-width: 800px; margin: 0 auto; padding: 0 40px; }

.ct-faq__header { text-align: center; margin-bottom: 48px; }
.ct-faq__header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 12px 0 0; }

.ct-faq__list { display: flex; flex-direction: column; gap: 16px; }

.ct-faq__item {
    border: 1px solid #E2E8F0; border-radius: 12px; overflow: hidden;
    transition: box-shadow .2s; background: #F8FAFC;
}

.ct-faq__item.is-open { background: #fff; border-color: #CBD5E1; box-shadow: 0 4px 12px rgba(0,0,0,.03); }

.ct-faq__question {
    width: 100%; text-align: left; padding: 20px 24px;
    background: none; border: none; cursor: pointer;
    font-size: .95rem; font-weight: 600; color: #0F172A;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.ct-faq__question i { color: #64748B; font-size: 1.2rem; transition: transform .3s; }
.ct-faq__answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.ct-faq__answer p { padding: 0 24px 24px; color: #475569; line-height: 1.7; margin: 0; }

/* ============================================================================
   9. CTA
   ============================================================================ */
.ct-cta { padding: 80px 0; background: linear-gradient(135deg, #1e3166, #263e82); text-align: center; }
.ct-cta__inner { max-width: 600px; margin: 0 auto; padding: 0 40px; }
.ct-cta__icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #fff; margin: 0 auto 24px;
}
.ct-cta__inner h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; margin-bottom: 16px; }
.ct-cta__inner p { color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.ct-cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
