:root {
    color-scheme: only light;
    --blue: #2060DF;
    --blue-dark: #1D4DB6;
    --blue-light: #DDE8FD;
    --blue-xlight: #F2F6FD;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --purple: #9333ea;
    --purple-light: #f3e8ff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--slate-800);
    line-height: 1.6;
}

/* ============ NAVBAR ============ */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--slate-200);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-links a:hover { background: var(--slate-100); color: var(--slate-900); }

.btn-nav-cta {
    background: var(--blue);
    color: white !important;
    padding: 0.55rem 1.25rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.btn-nav-cta:hover { background: var(--blue-dark) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--slate-200);
    padding: 1rem 2rem 1.5rem;
    z-index: 999;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-700);
    text-decoration: none;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--slate-100);
}

.mobile-menu a:last-child { border-bottom: none; }

/* =============== HERO CONECTA =============== */
.hero-conecta {
    padding: 120px 2rem 60px;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-conecta::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(32,96,223,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-conecta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--slate-900);
    letter-spacing: -0.03em;
}

.hero-conecta h1 .highlight {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats-panel {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}

.hero-conecta-desc {
    font-size: 1.8rem;
    color: var(--slate-600);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-conecta-cta {
    background: var(--blue);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(32,96,223,0.3);
}

.hero-conecta-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(32,96,223,0.4);
}

/* ============ SECTION BASE ============ */
.section {
    padding: 90px 2rem;
}

.section-alt { background: var(--slate-50); }
.section-dark { background: var(--slate-900); color: white; }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.section-title em {
    font-style: normal;
    color: var(--blue);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--slate-500);
    max-width: 600px;
    line-height: 1.7;
}



/* ============ PERFIS NAV ============ */
.profiles-section {
    background: var(--white);
}



/* Barra de navegação secundária (sub-navbar) fixa para perfis */
.profile-sub-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    position: fixed;
    top: 68px;
    width: 100%;
    height: 48px;
    z-index: 990;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.profile-sub-navbar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sub-nav-inner {
    max-width: 600px;
    gap: 0rem;
    margin: 0 auto;
    padding: 0 0.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
}

.sub-nav-inner::-webkit-scrollbar {
    display: none;
}

.sub-nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-500);
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 20px;
    transition: all 0.2s;
    white-space: nowrap;
}

.sub-nav-link:hover {
    color: var(--slate-900);
}

.sub-nav-link.active {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.profile-pain-title {
    font-size: 0.95rem; /* Aumentado no computador */
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
    margin-bottom: 1rem;
}

.profile-image-col {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.profile-image-col img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.profile-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    background: var(--slate-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 5rem;
}

.access-legend {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.legend-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate-600);
}

/* ============ INTEGRAÇÕES ============ */
.pain-item-card img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ============ CTA FINAL ============ */
.cta-section {
    background: var(--slate-900);
    padding: 90px 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-section h2 em {
    font-style: normal;
    color: #60A5FA;
}

.cta-section p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--slate-900);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.2s;
}

.btn-white:hover { background: var(--slate-100); }

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 2px solid rgba(255,255,255,0.25);
    transition: all 0.2s;
}

.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* ============ FOOTER ============ */
footer {
    background: var(--slate-900);
    padding: 2.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    color: white;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-300) !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin: 0 0.25rem 0.75rem 0.25rem;
}

.footer-badge:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.footer-badge i {
    font-size: 0.75rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
      text-align: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img { height: 36px; width: auto; }

.footer-links {
    display: flex;
    gap: 1.5rem;
    text-align: center;
}

.footer-links a {
    font-size: 0.85rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: #94a3b8; }

/* ============ PRE-PROFILES CTA ============ */
.pre-profiles-cta {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--slate-900) 0%, #1e3a5f 100%);
    text-align: center;
    color: white;
}

.pre-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.pre-cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.pre-cta-title .highlight-text {
    background: linear-gradient(135deg, #60A5FA 0%, #2060DF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #60A5FA;
}

.pre-cta-desc {
    font-size: 1.15rem;
    color: var(--slate-300);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ============ PERFIS SEQUENCIAIS ============ */
.profile-detail-row {
    padding: 20px 2rem; /* Reduzido de 80px para 48px para diminuir o espaço entre seções */
    width: 100%;
    scroll-margin-top: 116px;
}

.profile-panel-row {
    display: grid;
    grid-template-columns: var(--col-left, 1.15fr) var(--col-right, 0.85fr);
    gap: 1.5rem 4rem;  /* Reduzido o row-gap de 3rem para 1.5rem para aproximar o título do balão */
    align-items: stretch;
    max-width: 1000px; /* Limita a largura do bloco inteiro para não ficar muito espalhado */
    margin: 0 auto;    /* Centraliza o bloco horizontalmente na tela do computador */
}

.profile-info-intro {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-panel-row h3 {
    grid-column: 1 / span 2;
    grid-row: 1;
    font-size: 2rem;
    font-weight: 850;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.profile-role-desc {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    color: #5a5d63;
    margin-top: 0; /* Removido margin-top de 1.5rem para aproximar do título h3 */
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-left: 4px solid #2060DF;
    border-radius: 8px;
    position: relative;
}

/* Linha de conexão tracejada ligando a frase (mote) à imagem correspondente no desktop */
@media (min-width: 1024px) {
    .profile-role-desc::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 100%;
        width: 4rem; /* Atravessa exatamente o gap do grid */
        height: 2px;
        border-top: 2px dashed rgba(32, 96, 223, 0.3);
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 5;
    }

    /* Bolinha azul que encosta na borda da imagem/visualizador à direita */
    .profile-role-desc::before {
        content: '';
        position: absolute;
        top: 50%;
        right: -4rem;
        width: 8px;
        height: 8px;
        background: #2060DF;
        border-radius: 50%;
        transform: translate(50%, -50%);
        box-shadow: 0 0 0 4px rgba(32, 96, 223, 0.15);
        z-index: 6;
        pointer-events: none;
    }

    .profile-panel-row { gap: 3rem; }
}

.profile-panel-row .profile-image-col {
    grid-column: 2;
    grid-row: 2;
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinhado à esquerda para encostar na linha decorativa tracejada */
    height: 100%;
    min-width: 0; /* Impede que imagens ou elementos filhos empurrem a largura da coluna no grid */
}

.profile-panel-row .profile-image-col img {
    max-width: 450px; /* Limita o tamanho no computador para não ficar excessivamente grande */
    width: 100%; /* Garante que a imagem seja responsiva e se ajuste ao celular */
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    border: 1px solid rgba(32, 96, 223, 0.06); /* Borda temática sutil conectando visualmente ao azul do mote */
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(32, 96, 223, 0.02);
}



.profile-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    background: var(--slate-100);
    border: 1px solid rgba(32, 96, 223, 0.06); /* Borda temática sutil */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 5rem;
}

.profile-extra-content {
    grid-column: 1 / span 2;
    grid-row: 3;
    margin-top: 1.5rem;
}

/* ============ CARDS DE DORES E SOLUÇÕES (GRID) ============ */
.pain-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem; /* Aumentado no computador */
    margin-top: 1.5rem;
    margin-bottom: 1.75rem;
}

.pain-item-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Aumentado no computador */
    background: var(--slate-50);
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 12px;
    padding: 1.25rem; /* Aumentado no computador */
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
}

.pic-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
}

.pic-content img {
    max-width: 200px;
}

.pic-title {
    font-size: 1rem;
    color: #1D4DB6;
    font-weight: 700;
    font-weight: normal;
}

.pic-desc {
    font-size: 1.1rem; /* Aumentado no computador */
    color: var(--slate-600);
    line-height: 1.5;
    margin: 0;
}

ganho {
    color: #1D4DB6;
    font-weight: bold;
}

dor {
    color: #b42b16;
}

.citacao-mote {
    display: block;
    font-style: italic;
    color: #1D4DB6;
    background: color-mix(in srgb, #1D4DB6 5%, transparent);
    padding: 0.3rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    font-weight: 400;
}

marca0 {
    display: inline;
    font-weight: 800;
    letter-spacing: 0.08em;
    color:#25D366;
}

marca {
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue) 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ============ FAQ ============ */
.faq-grid {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.faq-item[open] {
    border-color: var(--blue);
    box-shadow: 0 10px 15px -3px rgba(32, 96, 223, 0.08), 0 4px 6px -2px rgba(32, 96, 223, 0.04);
}

.faq-question {
    padding: 1.25rem 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-800);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--blue);
}

/* Remove a setinha padrão do details no Chrome/Safari */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '\f078'; /* Ícone fa-chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--slate-400);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
    color: var(--blue);
}

.faq-answer {
    padding: 0 0.8rem 0.8rem;
    color: var(--slate-600);
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid var(--slate-100);
    padding-top: 1rem;
}

.faq-answer a {
    color: var(--blue-dark);
    text-decoration: underline;
    font-weight: 500;
}

.faq-answer a:hover {
    color: var(--blue);
}

/* ============ PARCERIA CONDONAL ============ */
.condonal-section {
    padding: 80px 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--slate-100);
}

.condonal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.condonal-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.condonal-logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    border-radius: 12px;
}

.condonal-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.condonal-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 850;
    color: var(--slate-900);
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.condonal-desc {
    font-size: 1.15rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin: 0;
}


/*MOSAICO*/
/* ============ MOSAICO DE TELAS (APP) ============ */
.mo-mosaic-section {
    padding: 80px 0 90px;
    background: #10325F;
    overflow: hidden;
}

.mo-mosaic-section .container {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;
}

.mo-mosaic-section .section-label {
    color: #60A5FA;
}

.mo-mosaic-section .section-title {
    color: #ffffff;
}

.mo-mosaic-section .section-desc {
    margin-left: auto;
    margin-right: auto;
    color: #94a3b8;
    max-width: 650px;
}

.mo-mosaic {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    background: #10325F;
    padding: 30px 16px 52px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.mo-mosaic::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.mo-mosaic.active {
    cursor: grabbing;
}

.mo-stage {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(10px, 2vw, 20px);
    perspective: 1100px;
    width: max-content;
    margin: 0 auto;
    padding: 0 40px;
}

.mo-phone {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.10);
    background: #111;
    box-shadow:
        0 2px  6px rgba(0,0,0,0.5),
        0 12px 32px rgba(0,0,0,0.55),
        0 32px 64px rgba(0,0,0,0.4);
    flex-shrink: 0;
    width: clamp(160px, 18vw, 250px);
    aspect-ratio: 9/17;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    transition: transform 0.15s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.15s ease-out;
}

.mo-phone::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 34%; height: 5px;
    background: #0E121B;
    border-radius: 0 0 5px 5px;
    z-index: 2;
}

.mo-phone img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    pointer-events: none;
}

.mo-drag-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
    color: rgba(255, 255, 255, 0.671);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    pointer-events: none;
    animation: moPulse 2.5s infinite ease-in-out;
    position: relative;
    z-index: 10;
}

.mo-drag-indicator svg {
    color: #2060DF;
}

@keyframes moPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}
/*MOSAICO*/

/* ============ SEÇÃO DE PRÉ-VISUALIZAÇÃO DO MOSAICO (IMAGEM PRIORIZADA) ============ */
.mo-preview-section {
    padding: 80px 2rem 40px;
    background: #10325F;
    text-align: center;
}

.mo-preview-section .container {
    text-align: center;
}

.mo-preview-section .section-label {
    color: #60A5FA;
}

.mo-preview-section .section-title {
    color: #ffffff;
    max-width: 650px;
    margin: 0 auto;
}

.mo-preview-section .section-title em {
    color: #60A5FA;
}

.mo-preview-section .section-desc {
    color: #cbd5e1;
    margin: 1rem auto 2.5rem;
    max-width: 650px;
}

.mo-preview-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mo-preview-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============ ANIMAÇÃO FADE-IN AO ROLAR (SCROLL REVEAL) ============ */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ REGRAS DE MEDIA QUERY MOBILE (MESCLADAS) ============ */
@media (max-width: 768px) {

    h1 {
        font-size: 1.5rem;
        line-height: 1.5;
    }

    .hero-conecta-desc {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .sub-nav-inner {
        padding: 0 0.5rem;
        justify-content: space-around;
    }

    .sub-nav-link {
        font-size: 0.78rem;
        padding: 0.35rem 0.45rem;
    }

    .section { padding: 60px 1.5rem; }

    .pre-profiles-cta {
        padding: 60px 1.5rem;
    }

    .profile-detail-row {
        padding: 50px 1.5rem;
        scroll-margin-top: 116px;
    }

    .profile-panel-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-panel-row h3 {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0.5rem;
    }

    .profile-info-intro {
        grid-column: 1;
        grid-row: 2;
    }

    .hero-stats-panel {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        padding: 1.2rem 1.8rem !important;
        border-radius: 20px !important;
        align-items: center !important;
    }

    .stats-divider {
        display: none !important; /* Oculta todas as barras separadoras "|" */
    }


    .profile-panel-row .profile-image-col {
        grid-column: 1;
        grid-row: 3;
        position: static;
        justify-content: center; /* Centraliza a imagem horizontalmente no celular se a tela for larga */
    }

    .profile-panel-row .profile-image-placeholder { aspect-ratio: 16/9; font-size: 4rem; }

    .profile-extra-content {
        grid-column: 1;
        grid-row: 4;
        margin-top: 0;
    }

    .profile-role-desc {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        margin-left: -0.7rem;
        margin-right: -0.7rem;
    }

    .profile-role-desc .citacao-mote {
        margin: 0.5rem 0;
        padding: 0.25rem 0.4rem;
    }

    /* Estilos do Grid e Acordeão Interativo no Mobile */
    .pain-cards-grid {
        grid-template-columns: 1fr !important;
        margin-left: -0.7rem;
        margin-right: -0.7rem;
        gap: 0.7rem; /* Mantém o gap original de 0.7rem no celular */
    }

    .profile-pain-title {
        font-size: 0.75rem; /* Mantém o tamanho original de 0.75rem no celular */
    }

    .pain-item-card {
        padding: 0.6rem; /* Mantém o padding original de 0.6rem no celular */
        gap: 0.3rem; /* Mantém o gap interno original no celular */
    }

    .pic-desc {
        font-size: 1rem; /* Mantém o tamanho original de 1rem no celular */
    }

    .cta-section { padding: 60px 1.5rem; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }

    /* ============ RESPONSIVO CONDONAL ============ */
    .condonal-section {
        padding: 50px 1.5rem;
    }

    .condonal-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .condonal-text-col {
        align-items: center;
    }

    .condonal-logo {
        max-height: 80px;
    }

    .mo-preview-section {
        padding: 50px 1.5rem 30px;
    }
    .mo-preview-image-wrapper {
        border-radius: 12px;
    }

    .hero-conecta {
        padding: 100px 1.5rem 50px;
    }
}


@keyframes piscar {
    0%, 100% {
        background-color: #ffffff;
    }
    50% {
        background-color: #25d366; 
    }
}

.piscar {
    color: #128c7e;
    padding: 2px 2px;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    animation: piscar 1.5s infinite alternate;
}
