/* =====================================================
   GRUPO JOÃO BOSCO — Design System Institucional (Rota A)
   Paleta clara: branco/cinza-claro + azul + laranja
   Tipografia: Montserrat (títulos) / Inter (corpo)
   ===================================================== */

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

:root {
    --color-bg: #F7F8FA;
    --color-surface: #FFFFFF;
    --color-primary: #0B2A5B;
    --color-primary-light: #12386F;
    --color-primary-pale: #EAF0FA;
    --color-accent: #C2410C;
    --color-accent-light: #EA580C;
    --color-accent-pale: #FDECE3;
    --color-text: #1A2233;
    --color-text-muted: #5B6472;
    --color-border: #E2E5EA;
    --shadow-sm: 0 1px 2px rgba(11,42,91,0.05);
    --shadow-md: 0 6px 16px rgba(11,42,91,0.06);
    --shadow-lg: 0 14px 32px rgba(11,42,91,0.09);
    --radius: 14px;
    --max-width: 1180px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--color-primary); line-height: 1.2; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.section-container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section.alt { background: var(--color-surface); }
.section.dark { background: var(--color-primary); color: #fff; }
.section.dark h1, .section.dark h2, .section.dark h3 { color: #fff; }

.section-pretitle {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; }
.section-lead { font-size: 1.1rem; color: var(--color-text-muted); max-width: 720px; margin-bottom: 32px; }

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--color-primary); color: #fff;
    padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    z-index: 999; transition: width 0.1s ease-out;
}

/* ===== HEADER / NAV ===== */
header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247,248,250,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.2s ease;
}
header.scrolled { box-shadow: var(--shadow-sm); }

nav {
    max-width: var(--max-width); margin: 0 auto; padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo img { height: 42px; }

nav ul { list-style: none; display: flex; align-items: center; gap: 6px; }
nav ul > li { position: relative; }
nav ul > li > a {
    display: block; padding: 10px 14px; font-size: 0.92rem; font-weight: 600;
    color: var(--color-primary); border-radius: 8px; transition: background 0.15s ease;
    white-space: nowrap;
}
nav ul > li > a:hover, nav ul > li > a:focus-visible { background: var(--color-primary-pale); }

.has-submenu > a::after { content: '▾'; font-size: 0.65em; margin-left: 4px; opacity: 0.6; }
.submenu {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px;
    box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: all 0.15s ease;
}
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.submenu li a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--color-text); }
.submenu li a:hover { background: var(--color-primary-pale); color: var(--color-primary); }

.nav-cta {
    background: var(--color-accent) !important; color: #fff !important;
    padding: 10px 18px !important; border-radius: 9px;
}
.nav-cta:hover { background: var(--color-accent-light) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--color-primary); border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 0.98rem;
    border: 2px solid transparent; cursor: pointer; transition: all 0.15s ease;
}
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ===== HERO BAND (subpages) ===== */
.page-hero {
    background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff; padding: 72px 0 64px;
}
.page-hero .breadcrumb { font-size: 0.85rem; opacity: 0.75; margin-bottom: 16px; }
.page-hero .breadcrumb a { text-decoration: underline; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 16px; max-width: 780px; }
.page-hero p.lead { font-size: 1.1rem; opacity: 0.9; max-width: 680px; }

/* ---- Variantes de hero com foto real (subpáginas) ---- */
.page-hero-photo {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-hero-grupo {
    background-image: linear-gradient(160deg, rgba(8,20,45,0.90) 0%, rgba(11,42,91,0.82) 55%, rgba(8,20,45,0.92) 100%), url('../../auditorio-evento-gjb.jpg');
    background-position: center 38%;
}
.page-hero-treinamentos {
    background-image: linear-gradient(160deg, rgba(8,20,45,0.90) 0%, rgba(11,42,91,0.82) 55%, rgba(8,20,45,0.92) 100%), url('../../treinamento-equipe-arca.jpg');
    background-position: center 30%;
}
.page-hero-gestor {
    background-image: linear-gradient(160deg, rgba(8,20,45,0.90) 0%, rgba(11,42,91,0.82) 55%, rgba(8,20,45,0.92) 100%), url('../../gestor-financeiro-hero.jpg');
    background-position: center 25%;
}
@media (max-width: 640px) {
    .page-hero-photo { background-position: center 25%; }
}

/* ===== CARDS ===== */
.card-grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius);
    padding: 32px 28px; box-shadow: none; transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); border-color: #C7D2E3; }
.card-icon {
    width: 48px; height: 48px; border-radius: 12px; background: var(--color-primary-pale);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--color-primary);
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--color-text-muted); font-size: 0.96rem; }
.card-link { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--color-accent); font-size: 0.9rem; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-value { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--color-primary); }
.section.dark .stat-value { color: #fff; }
.stat-label { font-size: 0.86rem; color: var(--color-text-muted); margin-top: 4px; }
.section.dark .stat-label { color: rgba(255,255,255,0.75); }

/* ===== TESTIMONIALS ===== */
.depoimento-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.stars { color: var(--color-accent); letter-spacing: 2px; margin-bottom: 12px; }
.depoimento-text { font-size: 0.98rem; color: var(--color-text); margin-bottom: 16px; }
.depoimento-author { font-weight: 700; color: var(--color-primary); font-size: 0.92rem; }
.depoimento-role { font-size: 0.84rem; color: var(--color-text-muted); }

.empresas-label { text-align: center; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-text-muted); margin: 56px 0 24px; }
.empresas-ticker-wrap { overflow: visible; }
.empresas-ticker { display: flex; gap: 64px; align-items: center; justify-content: center; flex-wrap: wrap; }
.empresa-logo { height: 38px; width: 127px; flex-shrink: 0; opacity: 0.55; filter: grayscale(100%); transition: opacity .2s ease; }
.empresa-logo svg { width: 100%; height: 100%; display: block; }
.empresa-logo:hover { opacity: 0.85; }

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(160deg, var(--color-primary), var(--color-primary-light));
    color: #fff; border-radius: 20px; padding: 56px 40px; text-align: center;
    max-width: var(--max-width); margin: 0 auto;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { opacity: 0.88; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--color-border); padding: 18px 0; }
.faq-item summary { font-weight: 700; cursor: pointer; color: var(--color-primary); font-size: 1rem; list-style: none; display: flex; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--color-accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 12px; color: var(--color-text-muted); }

/* ===== TABLE (metodologia) ===== */
.data-table { width: 100%; border-collapse: collapse; background: var(--color-surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.data-table th, .data-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; }
.data-table th { background: var(--color-primary-pale); color: var(--color-primary); font-weight: 700; }

/* ===== BADGE / TAG ===== */
.tag { display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--color-accent-pale); color: var(--color-accent); font-size: 0.78rem; font-weight: 700; }
.tag-blue { background: var(--color-primary-pale); color: var(--color-primary); }

/* ===== FOOTER ===== */
footer { background: var(--color-primary); color: rgba(255,255,255,0.85); padding: 64px 0 0; margin-top: 72px; }
.footer-content { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-column h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-column p { font-size: 0.88rem; opacity: 0.8; margin-bottom: 8px; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 9px; }
.footer-column ul li a { font-size: 0.88rem; opacity: 0.82; transition: opacity 0.15s; }
.footer-column ul li a:hover { opacity: 1; text-decoration: underline; }
.footer-column a { color: #fff; }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.social-icon:hover { background: var(--color-accent); }
.footer-bottom { text-align: center; padding: 28px 24px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.82rem; opacity: 0.7; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4); z-index: 90; transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== ANIMATION ===== */
.animate-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
[data-stagger] .stagger-item { opacity: 0; transform: translateY(14px); transition: opacity 0.45s ease, transform 0.45s ease; }
[data-stagger] .stagger-item.in { opacity: 1; transform: translateY(0); }
[data-stagger] .stagger-item:nth-child(2) { transition-delay: 0.08s; }
[data-stagger] .stagger-item:nth-child(3) { transition-delay: 0.16s; }
[data-stagger] .stagger-item:nth-child(4) { transition-delay: 0.24s; }

/* ===== MOBILE-FIRST: base já é compacta; telas maiores ganham mais respiro ===== */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
a, button { -webkit-tap-highlight-color: transparent; }
.btn:focus-visible, .app-badge:focus-visible, .nav-cta:focus-visible, .card-link:focus-visible {
    outline: 3px solid var(--color-accent-light); outline-offset: 2px;
}
.btn, .nav-cta, .hamburger, .card-link, .whatsapp-float, .social-icon { touch-action: manipulation; }

/* Tamanho mínimo de área de toque (~44px) no botão de menu */
.hamburger { padding: 12px; margin: -12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .section { padding: 64px 0; }
    header { backdrop-filter: none; background: var(--color-bg); }
    nav ul { position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--color-surface);
        flex-direction: column; align-items: stretch; padding: 20px; gap: 4px; overflow-y: auto;
        transform: translateX(100%); transition: transform 0.25s ease; }
    nav ul.mobile-open { transform: translateX(0); }
    nav ul > li > a { padding: 14px; font-size: 1rem; }
    .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 12px; display: none; }
    .has-submenu.open .submenu { display: block; }
    .hamburger { display: flex; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .grid-4, .card-grid.grid-4 { grid-template-columns: 1fr; }
    .card { padding: 24px 20px; }
    .section-title { font-size: 1.5rem; }
    .empresas-ticker { gap: 20px 28px; }
    .empresa-logo { height: 30px; width: 100px; }
    .cta-band { padding: 40px 22px; border-radius: 16px; }
    .pesquisa-panel { padding: 28px 18px; }
    .page-hero { padding: 56px 0 44px; }
}
@media (max-width: 560px) {
    .footer-content { grid-template-columns: 1fr; }
    .section { padding: 48px 0; }
    .section-container { padding: 0 18px; }
    .btn { width: 100%; }
}
@media (max-width: 400px) {
    .stats-row { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
    .stat-value { font-size: 1.6rem; }
}

/* =====================================================
   HOME — Hero com foto, seção de destaque Universidade
   Corporativa e faixa de fotos reais
   ===================================================== */

/* ---- Hero com imagem de fundo em tela cheia ---- */
.home-hero-section {
    position: relative;
    background-image: linear-gradient(160deg, rgba(8,20,45,0.92) 0%, rgba(11,42,91,0.86) 55%, rgba(8,20,45,0.94) 100%), url('../../hero-consultoria-desktop.jpg');
    background-size: cover;
    background-position: center 32%;
    background-repeat: no-repeat;
    padding: 132px 24px 64px;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 2; }
.hero-inner .section-pretitle { color: #FDBA74; }
.hero-inner h1 { color: #fff; font-size: clamp(2.1rem, 4.2vw, 3.3rem); max-width: 820px; margin-bottom: 18px; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.hero-inner p.lead { color: rgba(255,255,255,0.92); font-size: 1.12rem; max-width: 620px; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }

.home-hero-section .stats-row {
    margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.22);
}
.home-hero-section .stat-value { color: #fff; }
.home-hero-section .stat-label { color: rgba(255,255,255,0.8); }

@media (max-width: 980px) {
    .home-hero-section { padding: 112px 20px 48px; background-position: center 22%; }
    .home-hero-section .stats-row { margin-top: 32px; padding-top: 24px; }
}
@media (max-width: 640px) {
    .home-hero-section {
        background-image: linear-gradient(160deg, rgba(8,20,45,0.92) 0%, rgba(11,42,91,0.86) 55%, rgba(8,20,45,0.94) 100%), url('../../hero-consultoria-mobile.jpg');
        background-position: center 15%;
    }
}

/* ---- Card com imagem (Gestor Financeiro Pro etc.) ---- */
.card-icon-img { width: 48px; height: 48px; border-radius: 12px; overflow: hidden; margin-bottom: 18px; background: var(--color-primary-pale); display: flex; align-items: center; justify-content: center; padding: 9px; }
.card-icon-img img { width: 100%; height: 100%; object-fit: contain; }

/* ---- Seção de destaque (painel escuro) ---- */
.feature-panel {
    background: linear-gradient(155deg, var(--color-primary) 0%, #081E42 100%);
    border-radius: 24px; padding: 64px 48px; color: #fff;
    max-width: var(--max-width); margin: 0 auto;
}
.feature-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.feature-text .section-pretitle { background: rgba(234,88,12,0.18); border: 1px solid rgba(234,88,12,0.4); color: #FDBA74; padding: 6px 14px; border-radius: 999px; }
.feature-text h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 16px 0 16px; }
.feature-text p.lead { color: rgba(255,255,255,0.82); margin-bottom: 26px; }
.feature-list { list-style: none; margin-bottom: 30px; }
.feature-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: rgba(255,255,255,0.9); font-size: 0.96rem; }
.feature-list li::before {
    content: '✓'; width: 24px; height: 24px; border-radius: 50%; background: var(--color-accent);
    color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 900; flex-shrink: 0;
}
.app-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.app-badge {
    display: inline-flex; align-items: center; gap: 12px; background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 10px 18px; border-radius: 12px;
    min-width: 175px; transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.app-badge:hover { transform: translateY(-3px); border-color: var(--color-accent-light); box-shadow: 0 12px 28px rgba(0,0,0,0.35); }
.app-badge-icon { display: flex; align-items: center; }
.app-badge-text { display: flex; flex-direction: column; line-height: 1.15; }
.app-badge-text small { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.75; }
.app-badge-text strong { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; }
.app-badge-dark { background: #10182B; border-color: rgba(11,42,91,0.35); }
.app-badge-primary { background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light)); border-color: var(--color-accent-light); }
.app-badge-primary:hover { border-color: #fff; }

/* ---- Phone mockup (visual do app) ---- */
.phone-mockup-wrap { display: flex; justify-content: center; }
.real-photo-frame {
    display: flex; justify-content: center;
}
.real-photo-frame img {
    width: 100%; max-width: 320px; border-radius: 28px; display: block;
    transform: rotate(-3deg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08), 0 0 60px rgba(234,88,12,0.12);
    transition: transform .25s ease;
}
.real-photo-frame img:hover { transform: rotate(0deg) translateY(-6px); }
@media (max-width: 380px) {
    .real-photo-frame img { max-width: 250px; }
}
.phone-mockup {
    position: relative; width: 250px; height: 500px; background: #081E42; border: 9px solid #1B2A4A;
    border-radius: 40px; overflow: hidden; transform: rotate(-3deg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08), 0 0 60px rgba(234,88,12,0.12);
    transition: transform .25s ease;
}
.phone-screen::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(115deg, rgba(255,255,255,0.07) 0%, transparent 30%);
}
.phone-mockup:hover { transform: rotate(0deg) translateY(-6px); }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 110px; height: 20px; background: #12386F; border-radius: 0 0 12px 12px; z-index: 3; }
.phone-screen { position: relative; width: 100%; height: 100%; background: linear-gradient(180deg, #0B2A5B, #081E42); padding: 34px 16px 16px; display: flex; flex-direction: column; align-items: center; }
.phone-screen-logo { width: 84px; margin-top: 22px; margin-bottom: 14px; background: #fff; border-radius: 16px; padding: 10px; box-shadow: 0 8px 22px rgba(0,0,0,0.35); }
.phone-screen h4 { color: #fff; font-size: 0.86rem; margin-bottom: 6px; text-align: center; }
.phone-screen .tagline { color: #FDBA74; font-size: 0.62rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.2px; }
.phone-course-item {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px;
    padding: 11px 13px; margin-bottom: 9px; width: 100%; display: flex; align-items: center; gap: 11px;
    backdrop-filter: blur(4px);
}
.phone-course-icon {
    width: 30px; height: 30px; flex-shrink: 0; border-radius: 8px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(194,65,12,0.35);
}
.phone-course-info { flex: 1; min-width: 0; }
.phone-course-info strong { display: block; color: #fff; font-size: 0.68rem; font-weight: 600; margin-bottom: 3px; letter-spacing: 0.01em; }
.phone-course-info span { display: block; color: rgba(255,255,255,0.55); font-size: 0.57rem; margin-bottom: 5px; }
.phone-progress { height: 3px; background: rgba(255,255,255,0.14); border-radius: 3px; overflow: hidden; }
.phone-progress div { height: 100%; background: linear-gradient(90deg, #FDBA74, var(--color-accent-light)); border-radius: 3px; }

@media (max-width: 980px) {
    .feature-panel { padding: 40px 24px; }
    .feature-grid { grid-template-columns: 1fr; gap: 32px; }
    .phone-mockup-wrap { order: -1; }
}
@media (max-width: 380px) {
    .phone-mockup { width: 208px; height: 420px; }
    .feature-panel { padding: 32px 16px; }
}

/* ---- Faixa de fotos reais (prova social) ---- */
.gallery-strip { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 48px; }
.gallery-strip img { width: 100%; display: block; max-height: 320px; object-fit: cover; }

/* ---- Hero: linha de ciclo discreta ---- */
.hero-cycle { margin-top: 22px; font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.01em; }

/* ---- Destaque Pesquisa Nacional ---- */
.pesquisa-panel { border: 1px solid var(--color-border); border-top: 3px solid var(--color-primary); border-radius: 4px; background: var(--color-surface); padding: 56px; }
.pesquisa-highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pesquisa-highlight-steps { display: flex; flex-direction: column; }
.pesquisa-step { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--color-border); }
.pesquisa-step:last-child { border-bottom: none; }
.step-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--color-primary); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; font-family: 'Montserrat', sans-serif; }
.pesquisa-step p { margin: 0; color: var(--color-text-muted); font-size: 0.94rem; padding-top: 3px; }
@media (max-width: 980px) { .pesquisa-highlight { grid-template-columns: 1fr; gap: 32px; } .pesquisa-panel { padding: 36px 24px; } }
