/* --- RESET E VARIÁVEIS --- */
:root {
    --primary: #0d64d6; /* Azul BMI TAG */
    --dark: #1a1a1a;    
    --light: #f4f4f4;   
    --text: #333;
    --white: #fff;
    --gray-bg: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

html, body { overflow-x: hidden; }
body { color: var(--text); line-height: 1.6; }
a { text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Botões Padrão */
.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover { background: #0044cc; transform: translateY(-2px); }

/* --- HEADER (Menu) --- */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding-top: 30px;
    z-index: 10;
}

/* --- CAPA INTRO --- */
.hero-cover {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #0d1b3e url('../fotos-exemplo/image.png') center center / cover no-repeat;
    overflow: hidden;
    padding: 32px 0 28px;
}

/* Overlay azul para blend da imagem de fundo */
.hero-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(13, 27, 62, 0.87);
    pointer-events: none;
    z-index: 0;
}

/* Grade decorativa de fundo */
.hero-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.hero-cover-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: min(100%, 1200px);
    margin: 0 auto;
    flex-shrink: 0;
}

.hero-cover-intro {
    width: min(100%, 1100px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
}

.hero-cover-logo {
    width: clamp(100px, 14vw, 220px);
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    flex-shrink: 0;
}

.hero-cover-title {
    font-size: clamp(2.4rem, 5.8vw, 5.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: coverFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    text-align: left;
    max-width: 640px;
}

.hero-cover-title span {
    color: #3d9bff;
}

.hero-cover-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    max-width: 820px;
}

.hero-cover-showcase {
    width: 100%;
    max-width: 430px;
    justify-self: end;
}

.hero-cover-main-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 1.8vw, 18px);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(61, 155, 255, 0.28), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.hero-cover-main-visual::before {
    content: '';
    position: absolute;
    inset: auto -10% -35% auto;
    width: clamp(180px, 28vw, 320px);
    height: clamp(180px, 28vw, 320px);
    background: radial-gradient(circle, rgba(61, 155, 255, 0.35), transparent 68%);
    pointer-events: none;
}

.hero-cover-main-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    max-height: clamp(360px, 45vw, 540px);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(3, 10, 28, 0.28));
}

.hero-cover-media {
    margin-top: 8px;
    width: min(100%, 960px);
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 280px));
    justify-content: center;
    gap: 20px;
}

.hero-cover-quote-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    border: 2px solid #25d366;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: rgba(7, 18, 37, 0.45);
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
    animation: quoteCtaBlink 1.35s infinite;
    transition: transform 0.25s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero-cover-quote-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #25d366;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}

.hero-cover-quote-btn:hover {
    transform: translateY(-2px);
    color: #071225;
    border-color: #25d366;
}

.hero-cover-quote-btn:hover::before {
    transform: scaleX(1);
}

.hero-cover-quote-btn-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

@keyframes quoteCtaBlink {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.12), 0 0 0 rgba(37, 211, 102, 0);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0), 0 0 24px rgba(37, 211, 102, 0.45);
    }
}

.cover-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 10px;
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.cover-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.35);
}

.cover-card img {
    width: 100%;
    height: clamp(130px, 16vw, 190px);
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.cover-card figcaption {
    margin-top: 10px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.cover-card-left { transform: translateY(14px); }
.cover-card-right { transform: translateY(14px); }
.cover-card-left:hover,
.cover-card-right:hover { transform: translateY(8px); }

@keyframes coverFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Seta de scroll */
.hero-cover-arrow {
    margin-top: 10px;
    color: rgba(255,255,255,0.6);
    animation: arrowBounce 1.6s ease-in-out infinite;
    cursor: pointer;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0);    opacity: 0.6; }
    50%      { transform: translateY(10px); opacity: 1;   }
}

/* Laptops pequenos / monitores compactos (altura limitada) */
@media (max-height: 750px) and (min-width: 769px) {
    .hero-cover {
        padding: 24px 0 20px;
    }
    .hero-cover-inner {
        gap: 12px;
    }
    .hero-cover-intro {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
        gap: 24px;
    }
    .hero-cover-logo {
        width: clamp(80px, 10vw, 140px);
    }
    .hero-cover-title {
        font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    }
    .hero-cover-subtitle {
        font-size: clamp(0.88rem, 1.4vw, 1.05rem);
    }
    .hero-cover-main-visual {
        padding: 10px 16px;
    }
    .hero-cover-showcase {
        max-width: 360px;
    }
    .hero-cover-main-img {
        max-height: 320px;
    }
    .cover-card img {
        height: clamp(90px, 12vw, 140px);
    }
    .hero-cover-arrow {
        margin-top: 4px;
    }
}

/* Tablets e telas estreitas */
@media (max-width: 980px) {
    .hero-cover {
        padding: 32px 0 28px;
    }

    .hero-cover-inner {
        gap: 16px;
    }

    .hero-cover-intro {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
    }

    .hero-cover-title {
        text-align: center;
        max-width: 760px;
    }

    .hero-cover-showcase {
        max-width: 420px;
        justify-self: center;
    }

    .hero-cover-main-visual {
        padding: 12px 16px;
    }

    .hero-cover-main-img {
        max-height: 420px;
    }

    .hero-cover-media {
        grid-template-columns: repeat(2, minmax(220px, 280px));
        gap: 14px;
        max-width: 620px;
    }

    .hero-cover-media .cover-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 280px);
    }

    .hero-cover-quote-btn {
        width: min(100%, 340px);
    }

    .cover-card-left,
    .cover-card-right,
    .cover-card-left:hover,
    .cover-card-right:hover {
        transform: none;
    }

    .cover-card img {
        height: 165px;
    }
}

/* Mobile: esconde cards, ajusta logo e título */
@media (max-width: 768px) {
    .hero-cover {
        padding: 28px 0 24px;
        align-items: center;
    }
    .hero-cover-inner {
        min-height: calc(100vh - 52px);
        justify-content: center;
    }
    .hero-cover-logo {
        width: clamp(140px, 38vw, 200px);
    }
    .hero-cover-title {
        font-size: clamp(2rem, 8.5vw, 3rem);
    }
    .hero-cover-subtitle {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem);
        line-height: 1.55;
        max-width: 90%;
    }
    .hero-cover-showcase {
        width: min(100%, 380px);
    }
    .hero-cover-main-visual {
        padding: 10px 12px;
        border-radius: 22px;
    }
    .hero-cover-main-img {
        max-height: 320px;
    }
    .hero-cover-quote-btn {
        margin-top: auto;
    }
    .hero-cover-arrow {
        margin-top: 20px;
        padding-top: 0;
    }
    .hero-cover-media {
        display: none;
    }
}

/* Mobile pequenos */
@media (max-width: 400px) {
    .hero-cover {
        padding: 20px 0 16px;
    }
    .hero-cover-inner {
        gap: 14px;
        min-height: calc(100vh - 36px);
    }
    .hero-cover-logo {
        width: clamp(120px, 34vw, 160px);
    }
    .hero-cover-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }
    .hero-cover-subtitle {
        font-size: clamp(1.05rem, 4.2vw, 1.2rem);
    }
    .hero-cover-main-visual {
        padding: 8px 10px;
    }
    .hero-cover-main-img {
        max-height: 260px;
    }
    .hero-cover-quote-btn {
        margin-top: 22px;
    }
}

/* Helper acessibilidade */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* --- HERO SECTION (Topo) --- */
.hero-split {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 80px;
    overflow: hidden;
}

.split-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-logo-img {
    max-width: 250px;
    width: 100%;
    margin: 0 auto 25px;
    display: block;
    box-shadow: 0 10px 30px rgb(0, 37, 85);
    background-color: rgba(13, 100, 214, 0.15);
    padding: 25px;
    border-radius: 15px;
    animation: float 3s ease-in-out infinite;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }

/* Animação de Flutuação */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* --- SEÇÃO: NOSSA ABORDAGEM (Baseada no HTML enviado) --- */
.approach {
    padding: 60px 0;
    background-color: var(--primary);
    color: #fff;
    text-align: center;
}
.approach h2 { font-size: 2rem; margin-bottom: 20px; }
.approach p { max-width: 800px; margin: 0 auto 30px auto; font-size: 1.1rem; opacity: 0.9; }
.approach .btn { background: #fff; color: var(--primary); }
.approach .btn:hover { background: #eee; }

/* --- SEÇÃO: SERVIÇOS --- */
.services { padding: 80px 0; background: var(--gray-bg); }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.2rem; color: var(--dark); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Desktop: card principal (featured) no centro */
@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid > :nth-child(1) { order: 2; } /* featured → meio */
    .services-grid > :nth-child(2) { order: 1; } /* insumos → esquerda */
    .services-grid > :nth-child(3) { order: 3; } /* consultoria → direita */
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid transparent;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-bottom: 3px solid var(--primary); }

.service-img {
    height: 200px;
    background: #e1e1e1;
    display: flex; align-items: center; justify-content: center;
    color: #777; font-weight: bold;
    width: 100%;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-info { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.service-info h3 { margin-bottom: 10px; color: var(--primary); }
.service-info p { color: #666; font-size: 0.95rem; flex: 1; margin-bottom: 15px; }
.service-link { color: var(--primary); font-weight: bold; font-size: 0.9rem; }

/* --- SEÇÃO: QUEM SOMOS --- */
.about {
    padding: 90px 0;
    background: #fff;
}
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.about-text {
    width: min(100%, 980px);
    text-align: center;
}
.about-text h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}
.about-text p {
    margin: 0 auto 15px;
    color: #555;
    max-width: 920px;
}

.about-map {
    width: min(100%, 1120px);
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(0,0,0,0.12);
}
.about-map iframe {
    width: 100%;
    height: 520px;
    border: 0;
    display: block;
}
.about-address {
    margin-top: 14px;
    text-align: center;
    font-size: 0.9rem;
    color: #5b657a;
}

/* --- SEÇÃO: IDEAL PARA VOCÊ (Baseada no HTML enviado) --- */
.ideal-for { padding: 80px 0; background: var(--gray-bg); }
.ideal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }

.ideal-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}
.ideal-item:hover { border-bottom: 3px solid var(--primary); }
.ideal-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.ideal-item p { font-weight: 500; color: #444; }

/* --- CARROSSEL INFRAESTRUTURA (CORRIGIDO) --- */
.infra { 
    padding: 60px 0; 
    background: #fff; 
    text-align: center; 
    overflow: hidden; /* Evita rolagem horizontal na página inteira */
}

.infra-carousel {
    display: flex;
    gap: 50px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px; /* Espaço para a sombra não cortar */
    cursor: grab; /* Mostra a mãozinha para arrastar */
    
    /* Esconder barra de rolagem (Estética) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

/* Esconder barra no Chrome/Safari */
.infra-carousel::-webkit-scrollbar { display: none; }

.infra-slide {
    /* DESKTOP: Ocupa 1/3 da tela exato (menos o espaço do gap) */
    flex: 0 0 calc(33.333% - 14px);
    width: calc(33.333% - 14px);
    
    height: 320px; /* Aumentei a altura para ficar mais bonito */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom: 3px solid transparent;
    transition: transform 0.3s ease, border-bottom 0.3s ease;
    
    /* Efeito magnético */
    scroll-snap-align: start; 
}

.infra-slide:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary);
}

.infra-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Quando clicar e arrastar, muda o cursor */
.infra-carousel.active {
    cursor: grabbing;
    scroll-snap-type: none; /* Desativa o imã enquanto arrasta para ficar fluido */
}

@media (max-width: 768px) {
    .split-container, .about-container { flex-direction: column; text-align: center; }
    .hero-logo-img { margin: 0 auto 20px auto; }
    .contact-box { width: 90%; }
    .hero-split { padding-top: 60px; }

    .about {
        padding: 60px 0;
    }
    .about-map {
        width: 100%;
        margin-top: 18px;
        border-radius: 12px;
    }
    .about-map iframe {
        height: 420px;
    }
    .about-address {
        font-size: 0.84rem;
        padding: 0 8px;
    }

    /* Ajuste do Carrossel */
    .infra-carousel {
        padding-left: 20px;
        padding-right: 20px;
        scroll-snap-type: x mandatory;
    }

    .infra-slide {
        /* O COMANDO MÁGICO: */
        flex: 0 0 auto; /* Isso diz: "Esqueça os 33% do desktop, não encolha, não estique" */

        width: 85vw; /* Agora o navegador vai respeitar os 85% da tela */
        height: 280px;
        margin-right: 10px;
        scroll-snap-align: center;
    }
}

/* --- ANIMAÇÃO DE SCROLL (FADE IN UP) --- */
.scroll-hidden {
    opacity: 0;
    transform: translateY(50px); /* Começa 50px para baixo */
    transition: all 0.8s ease-out; /* Demora 0.8s para aparecer suavemente */
}

.scroll-visible {
    opacity: 1;
    transform: translateY(0); /* Volta para a posição original */
}

/* (Opcional) Atraso para itens em sequência, como os cards */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* --- FAQ --- */
.faq { padding: 80px 0; background: var(--gray-bg); }

/* --- SEÇÃO: NOSSOS PARCEIROS (Drag Carousel) --- */
.partners {
    padding: 60px 0 40px 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.partners-subtitle {
    color: #888;
    font-size: 1rem;
    margin-top: -35px;
    margin-bottom: 30px;
}

/* Container que esconde o overflow horizontal */
.partners-track-wrapper {
    overflow-x: auto;
    width: 100%;
    cursor: grab;
    padding: 20px 60px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);

    /* Esconder barra de rolagem */
    scrollbar-width: none;
    -ms-overflow-style: none;

    /* Impedir seleção ao arrastar */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.partners-track-wrapper::-webkit-scrollbar { display: none; }

/* Quando clicar e arrastar, muda o cursor */
.partners-track-wrapper.active {
    cursor: grabbing;
}

/* Faixa dos logos */
.partners-track {
    display: flex;
    gap: 50px;
    align-items: center;
    width: max-content;
}

.partner-logo {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: var(--gray-bg);
    border-radius: 10px;
    border-bottom: 3px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-bottom 0.3s;
}

.partner-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-bottom: 3px solid var(--primary);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .partner-logo {
        width: 200px;
        height: 140px;
    }
    .partners-track {
        gap: 30px;
    }
    .partners-track-wrapper {
        padding-left: 20px;
        padding-right: 20px;
        scroll-snap-type: x mandatory;
    }
    .partner-logo {
        scroll-snap-align: center;
    }
}
/* ===== TRUST BAR (Redesenhada — fundo escuro, alto contraste) ===== */
.trust-bar {
    background: linear-gradient(135deg, #071225 0%, #0d1b3e 40%, #152a5c 100%);
    padding: 30px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    border-bottom: 2px solid rgba(255,255,255,0.08);
}
.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    white-space: normal;
    min-height: 100%;
    padding: 18px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.trust-item > span:last-child {
    display: block;
}
.trust-item strong {
    color: #fff;
}
.trust-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    flex-shrink: 0;
}
.trust-divider {
    display: none;
}
@media (max-width: 1100px) {
    .trust-bar-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .trust-bar-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .trust-item {
        font-size: 0.88rem;
        padding: 14px 16px;
    }
    .trust-icon {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
}

/* ===== PROCESSO ===== */
.process {
    padding: 80px 0;
    background: #f8fafd;
}
.process h2 {
    text-align: center;
    margin-bottom: 10px;
}
.process-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PROCESS SPLIT LAYOUT ===== */
.process-split {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    flex: 1;
    padding: 10px 0;
}
/* Linha vertical à esquerda */
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0d64d6 0%, #4a90e2 100%);
    border-radius: 3px;
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 32px;
    padding-left: 58px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
/* Marcador na linha */
.timeline-marker {
    position: absolute;
    left: -1px;
    top: 16px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0d64d6 0%, #4a90e2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px #f8fafd, 0 4px 16px rgba(13,100,214,0.25);
    z-index: 2;
}
.timeline-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
}
/* Card do timeline */
.timeline-card {
    background: #fff;
    border: 1px solid #e8eef6;
    border-radius: 14px;
    padding: 24px 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s, box-shadow 0.25s;
    width: 100%;
}
.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(13,100,214,0.12);
}
.timeline-card .step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}
.timeline-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #1a1a2e;
}
.timeline-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* Imagem ao lado da timeline */
.process-image {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* Responsivo */
@media (max-width: 768px) {
    .process-split {
        flex-direction: column;
        gap: 32px;
    }
    .process-image {
        order: -1;
        max-height: 280px;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 58px;
    }
    .timeline-marker {
        left: -1px;
        width: 38px;
        height: 38px;
        top: 14px;
        box-shadow: 0 0 0 4px #f8fafd, 0 3px 12px rgba(13,100,214,0.2);
    }
}

/* ===== CARD DESTAQUE ===== */
.service-card--featured {
    border: 2px solid #0d64d6 !important;
    position: relative;
    overflow: visible !important;
}
.featured-ribbon {
    position: absolute;
    top: -13px;
    left: 24px;
    background: #0d64d6;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.service-highlights {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.service-highlights li {
    font-size: 0.85rem;
    color: #2a5298;
    font-weight: 500;
}

/* ===== URGÊNCIA ===== */
.urgency-block {
    background: linear-gradient(135deg, #0d1b3e 0%, #0d64d6 100%);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    margin: 60px 0 20px;
}
.urgency-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}
.urgency-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
}
.urgency-block .btn {
    background: #fff;
    color: #0d64d6;
    font-weight: 700;
}
.urgency-block .btn:hover {
    background: #f0f4ff;
}
@media (max-width: 600px) {
    .urgency-block { padding: 36px 20px; }
    .urgency-text { font-size: 1.15rem; }
}

/* --- FAQ --- */
.accordion-item { background: #fff; margin-bottom: 10px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.accordion-header { padding: 20px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; color: var(--dark); }
.accordion-content { max-height: 0; overflow: hidden; padding: 0 20px; transition: 0.3s; color: #555; }
.active .accordion-content { max-height: 200px; padding-bottom: 20px; }

/* --- CARD DE CONTATO FLUTUANTE --- */
.contact-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: -60px; /* Efeito de sobreposição */
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin-left: auto; margin-right: auto;
    border: 1px solid #eee;
}
.contact-box h3 { color: var(--primary); font-size: 1.8rem; margin-bottom: 10px; }

/* --- FOOTER --- */
footer { background: #111; color: #aaa; padding: 80px 0 40px 0; text-align: center; margin-top: -40px; padding-top: 100px; }

/* --- BOTÃO WHATSAPP FIXO --- */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.whatsapp-widget.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-bubble {
    background: #fff;
    color: #111;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    white-space: nowrap;
    position: relative;
    animation: bubblePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

/* Setinha apontando para baixo */
.whatsapp-bubble::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #fff;
}

@keyframes bubblePop {
    from { opacity: 0; transform: scale(0.7) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.whatsapp-float {
    position: relative;
    background: #25d366; color: #fff; width: 60px; height: 60px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Responsividade */
@media (max-width: 768px) {
    .split-container, .about-container { flex-direction: column; text-align: center; }
    .hero-logo-img { margin: 0 auto 20px auto; }
    .contact-box { width: 90%; }
    .hero-split { padding-top: 60px; }
}
