/* =========================================================================
   STYLE.CSS - FTRM-10 Industrial Landing Page
   ========================================================================= */

:root {
    /* Paleta Principal */
    --primary: #1D407D;
    --primary-dark: #1B344D;
    --accent: #FFD700;
    --accent-hover: #FFC43D;
    --white: #FFFFFF;

    /* Cores de Apoio */
    --bg-light: #F3F6F9;
    --text-main: #1E293B;
    --text-muted: #475569;
    --danger: #E11D48;
    --border: #E2E8F0;

    /* Efeitos */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glow-accent: 0 0 15px rgba(255, 215, 0, 0.4);

    /* Transições */
    --transition: all 0.3s ease;
}

/* Reset Genérico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilitários */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.8);
}

.bg-light {
    background-color: var(--bg-light);
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Tipografia Básica */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.85;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.logo-highlight {
    color: #e7aa3e;
}

.logo-separator {
    width: 2px;
    height: 32px;
    background-color: var(--primary);
    border-radius: 2px;
}

.logo-treal {
    height: 26px;
    /* ajustando baseado em 1634x484 para não ficar enorme */
    width: auto;
    object-fit: contain;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 6px;
}

.nav-menu a.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 48%;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
    box-shadow: var(--glow-accent);
}

@media (max-width: 800px) {
    .nav-menu a.active::after {
        bottom: -6px;
        width: 40%;
        height: 3px;
    }
}

.nav-menu a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-dark);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: var(--glow-accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-transparent {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-transparent:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

.whatsapp-link {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
}

.whatsapp-link:hover {
    background-color: #20BA56 !important;
    border-color: #20BA56 !important;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4) !important;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-dark);
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.52;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 20, 33, 0.58) 0%, rgba(9, 20, 33, 0.36) 34%, rgba(9, 20, 33, 0.14) 58%, rgba(9, 20, 33, 0.08) 100%);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(180deg,
            rgba(243, 246, 249, 0) 0%,
            rgba(243, 246, 249, 0.22) 34%,
            rgba(243, 246, 249, 0.58) 62%,
            rgba(243, 246, 249, 0.9) 82%,
            var(--bg-light) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1280px;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.9rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 0 0 1.4rem;
}

/* Destaque específico no hero */
.hero-highlight {
    color: #e7aa3e;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.84);
    max-width: 40rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 150px 0 72px;
}

.hero-copy {
    width: min(100%, 640px);
}

.hero-signature {
    margin-top: 1.4rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-footnote {
    width: min(100%, 980px);
    align-self: center;
    margin-top: auto;
    padding: 0.85rem 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
    transform: translateY(18px);
}

.hero-footnote-marquee {
    display: flex;
    width: max-content;
    min-width: max-content;
    gap: 1rem;
    animation: heroMarquee 40s linear infinite;
    will-change: transform;
}

.hero-footnote-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 1rem;
}

.hero-footnote-track span {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hero-footnote-track span::before {
    content: '';
    width: 7px;
    height: 7px;
    margin-right: 0.7rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

@keyframes heroMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - 0.5rem), 0, 0);
    }
}

@keyframes heroMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.page-placeholder {
    padding: 160px 0 100px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.page-placeholder-inner {
    max-width: 760px;
}

.page-eyebrow {
    display: block;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-placeholder h1 {
    margin-bottom: 1rem;
}

.page-placeholder p {
    max-width: 54ch;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.authority-strip {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 32px 0;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.authority-item {
    padding: 1.25rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
}

.authority-item strong {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.35rem;
    color: var(--accent);
}

.authority-item span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.5;
}

.system-grid,
.applications-grid {
    align-items: stretch;
}

.system-grid .card,
.applications-grid .card {
    height: 100%;
}

.system-card .card-icon,
.application-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.system-card h3,
.application-card h3 {
    font-size: 1.25rem;
}

.system-card p,
.application-card p {
    color: var(--text-muted);
}

.card-emphasis {
    border-top-color: var(--accent);
}

.section-subtitle-left {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
}

.application-card {
    padding: 2rem;
}

.section-heading {
    margin-bottom: 3.5rem;
}

.section-title-left::after {
    left: 0;
    transform: none;
}

.page-eyebrow-light {
    color: rgba(255, 255, 255, 0.74);
}

.home-solutions {
    padding-top: 110px;
}

.home-solutions-grid,
.home-applications-grid {
    gap: 1.5rem;
}

.solution-card {
    position: relative;
    padding-top: 6.85rem;
}

.solution-card.is-disabled {
    cursor: default;
    opacity: 0.82;
}

.solution-card.is-disabled:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.solution-card.is-disabled::after {
    content: 'Em breve';
    position: absolute;
    right: 1.6rem;
    bottom: 1.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(27, 52, 77, 0.08);
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.solution-chip {
    position: absolute;
    top: 1.35rem;
    left: 2rem;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 4rem);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(29, 64, 125, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.solution-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    margin-top: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.solution-points {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.solution-points li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.solution-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.home-expertise-layout {
    align-items: stretch;
}

.company-story-card {
    margin: 2rem 0 2.2rem;
    padding: 1.6rem 1.7rem;
    border: 1px solid rgba(27, 52, 77, 0.1);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 252, 0.94) 100%),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 42%);
    box-shadow: var(--shadow-sm);
}

.company-story-lead {
    margin-bottom: 0.9rem;
    color: var(--primary-dark);
    font-size: 1.08rem;
    line-height: 1.8;
    font-weight: 600;
}

.company-story-text {
    color: var(--text-muted);
    line-height: 1.8;
}

.company-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem 0 1rem;
}

.company-pillar {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(27, 52, 77, 0.06);
    border: 1px solid rgba(27, 52, 77, 0.08);
    color: var(--primary-dark);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.company-story-signature {
    color: var(--accent-dark);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.expertise-list {
    display: grid;
    gap: 1rem;
}

.expertise-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.expertise-item h3 {
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
}

.expertise-item p {
    color: var(--text-muted);
}

.expertise-index {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 215, 0, 0.18);
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 800;
}

.expertise-panel {
    height: 100%;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(160deg, #112846 0%, #1d407d 100%);
    color: var(--white);
}

.expertise-panel-label {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.expertise-metric {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.expertise-metric:last-of-type {
    margin-bottom: 1.25rem;
}

.expertise-metric strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--accent);
    font-size: 1rem;
}

.expertise-metric span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.expertise-checks li {
    color: rgba(255, 255, 255, 0.84);
}

.expertise-checks li::before {
    color: var(--accent);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.process-step {
    padding: 2rem 1.35rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: var(--shadow-sm);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 1.2rem;
    border-radius: 18px;
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-dark);
    font-size: 1.15rem;
    font-weight: 800;
}

.process-step h3 {
    font-size: 1.12rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.96rem;
}

.process-cta {
    margin-top: 2rem;
    padding: 2rem 2.25rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.process-cta h3 {
    color: var(--white);
    margin-bottom: 0.55rem;
}

.process-cta p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 52rem;
}

.presence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.presence-card {
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.presence-card h3 {
    margin-bottom: 0.6rem;
}

.presence-card p {
    color: var(--text-muted);
}

.presence-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 1.1rem;
    border-radius: 16px;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.home-cta .page-eyebrow {
    margin-bottom: 1.15rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

/* Layouts Grids */
.section {
    padding: 100px 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Seção Problema - Cards */
.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-warning {
    border-top-color: var(--danger);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Layout Split (Metade Imagem / Text) */
.layout-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.layout-split.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.box-shadow-heavy {
    box-shadow: var(--shadow-lg);
}

.tech-overlay {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--primary);
    color: var(--accent);
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-md);
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Seção Benefícios (Dark) */
.beneficios {
    background-color: var(--primary-dark);
    position: relative;
}

.beneficios .section-title::after {
    background-color: var(--accent);
}

/* Tornar subtítulo na seção de benefícios mais legível (usar branco padrão) */
.beneficios .section-subtitle {
    color: var(--white);
    opacity: 1;
}

.benefit-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.benefit-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.benefit-box .icon-circle {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-box h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Steps / Como funciona */
.steps-list {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--glow-accent);
}

.step-content h4 {
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

/* Tabelas (Specs e Comparativo) */
.table-responsive {
    overflow-x: auto;
}

.tech-table,
.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.tech-table th,
.tech-table td,
.compare-table th,
.compare-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.tech-table th {
    background: var(--primary);
    color: var(--white);
    width: 40%;
}

.compare-table th {
    background: var(--primary-dark);
    color: var(--white);
}

.compare-table .highlight {
    background: var(--bg-light);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

.compare-table th.highlight {
    background: var(--primary);
    color: var(--accent);
}

/* Logos */
.logos-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo-holder {
    padding: 10px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
    background: var(--primary);
    padding: 80px 0;
    color: var(--white);
    scroll-margin-top: 80px; /* Adiciona espaçamento ao rolar para a seção */
}

.cta-banner h2 {
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Corrige alinhamento do título da seção FAQ na versão desktop */
.faq .section-title {
    display: block;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.25rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

/* Footer */
.footer {
    background: var(--text-main);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.brand-col p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

.links-col ul li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.links-col ul li a:hover {
    color: var(--accent);
}

.contact-col p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animações Genéricas */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.popup-anim {
    animation: popup 2s infinite alternate;
}

@keyframes popup {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

.dl-1 {
    transition-delay: 0.1s;
}

.dl-2 {
    transition-delay: 0.2s;
}

.dl-3 {
    transition-delay: 0.3s;
}

.dl-4 {
    transition-delay: 0.5s;
}

/* Responsividade */
@media (max-width: 992px) {

    .authority-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-shell {
        padding-top: 136px;
        padding-bottom: 56px;
    }

    .hero-copy {
        width: min(100%, 560px);
    }

    .hero-footnote {
        width: 100%;
        transform: translateY(14px);
    }

    .layout-split,
    .layout-split.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline,
    .presence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .split-image {
        width: 100%;
        order: -1;
    }
}

@media (max-width: 768px) {
    .authority-strip {
        padding: 24px 0;
    }

    .authority-grid {
        grid-template-columns: 1fr;
    }

    .authority-item {
        text-align: left;
    }

    .hero-bg {
        background-image: url('assets/hero_bg_mobile.png');
        background-position: center;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(9, 20, 33, 0.68) 0%, rgba(9, 20, 33, 0.48) 52%, rgba(9, 20, 33, 0.3) 100%);
    }

    .hero-shell {
        min-height: auto;
        padding: 132px 0 52px;
        gap: 2.5rem;
    }

    .section {
        padding: 84px 0;
    }

    .section-heading {
        margin-bottom: 2.5rem;
    }

    .solution-card,
    .application-card,
    .presence-card,
    .expertise-panel,
    .process-step {
        padding: 1.6rem;
    }

    .solution-chip {
        position: static;
        margin-bottom: 1rem;
    }

    .solution-card {
        padding-top: 1.6rem;
    }

    .expertise-item {
        grid-template-columns: 1fr;
    }

    .company-story-card {
        padding: 1.35rem;
    }

    .company-story-lead,
    .company-story-text {
        line-height: 1.72;
    }

    .process-timeline,
    .presence-grid,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .process-cta {
        padding: 1.6rem;
    }

    .hero h1 {
        font-size: 2.45rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 32rem;
        margin-bottom: 1.5rem;
    }

    .hero-signature {
        font-size: 0.82rem;
        letter-spacing: 0.1em;
    }

    .hero-footnote {
        padding: 0.7rem 0;
        border-radius: 22px;
        transform: translateY(10px);
    }

    .hero-footnote-marquee {
        animation-duration: 32s;
    }

    .hero-footnote-track {
        gap: 0.75rem;
    }

    .hero-footnote-track span {
        font-size: 0.82rem;
        padding: 0.5rem 0.78rem;
    }

    .page-placeholder {
        padding: 132px 0 72px;
        min-height: auto;
    }

    .page-placeholder p {
        font-size: 1rem;
    }

    .logo {
        gap: 10px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-separator {
        height: 24px;
    }

    .logo-treal {
        height: 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }

    .tech-table th {
        width: auto;
        display: block;
        background: var(--bg-light);
        color: var(--text-main);
    }

    .tech-table td {
        display: block;
        border-bottom: 2px solid var(--primary);
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Esconder o CTA do menu lateral no Desktop */
.menu-cta {
    display: none;
}


/* Mobile UX Improvements */
@media (max-width: 768px) {
  /* FIX: Evitar overflow horizontal e rolagem do eixo X (Zoom out) */
  html, body { overflow-x: hidden !important; max-width: 100vw; }

  /* 1. Hero / 5. Reorganizar / 7. Overlay */
    .hero { padding: 0 !important; margin: 0; min-height: auto; }
    .hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,20,33,0.68) 0%, rgba(9,20,33,0.48) 52%, rgba(9,20,33,0.3) 100%); z-index: 2; }
  .hero-bg { display: block !important; opacity: 1 !important; z-index: 0; background-size: cover !important; background-position: center !important; }
  .hero-bg img, .hero-bg video { object-fit: cover !important; width: 100% !important; height: 100% !important; }
    .hero-content { display: block; position: relative; z-index: 4; width: 100%; max-width: 100vw; box-sizing: border-box; }
    .hero-shell { width: 100%; min-height: auto; padding: 132px 0 52px; gap: 2.5rem; }
    .hero-copy { width: 100%; }
    .hero-content h1 { font-size: 39px; line-height: 1.05; margin-top: 0; }
    .hero-content p { font-size: 16px; margin-top: 0; }
    .hero-content .hero-actions { margin-top: 0; margin-bottom: 0; display: flex; flex-direction: column; width: 100%; gap: 10px; }
    .hero-actions .btn-primary { display: inline-flex !important; }

  /* 2. CTA WhatsApp */
  .cta-whatsapp { position: fixed; bottom: 0; left: 0; width: 100%; max-width: 100vw; z-index: 999; border-radius: 0 !important; display: flex; justify-content: center; align-items: center; background: #25D366; padding: 14px; box-sizing: border-box; }
  .cta-whatsapp::after { content: 'Fale pelo WhatsApp'; font-size: 16px; font-weight: bold; margin-left: 8px; color: #fff; }
  body { padding-bottom: 70px; }

  /* 3. Menu Mobile */
  /* Ajuste de transição por Transform evita bug de scroll X do iOS e Android Chromes */
  .nav-menu { position: fixed; top: 0; right: 0 !important; left: auto !important; width: 80%; max-width: 300px; height: 100%; background: #fff; transform: translateX(100%); transition: transform 0.3s ease; padding: 24px; padding-top: 80px; z-index: 1000; flex-direction: column; align-items: flex-start; box-shadow: -2px 0 10px rgba(0,0,0,0.1); }
  .nav-menu.active { transform: translateX(0) !important; }
  .nav-menu a { display: block; padding: 14px 0; font-size: 16px; width: 100%; border-bottom: 1px solid #f0f0f0; }
  .nav-menu .menu-cta { background: #25D366; color: #fff !important; padding: 12px; text-align: center; margin-top: 20px; border-radius: 6px; width: 100%; display: block; border: none; font-weight: bold; }

  /* Garantir que .mobile-menu-btn fique acima do menu */
  .mobile-menu-btn { z-index: 1001; position: relative; }

  /* Ajustes globais que possam vazar (Bug da faixa branca) */
  .container { width: 100% !important; max-width: 100vw !important; padding-left: 16px; padding-right: 16px; box-sizing: border-box; }
  .row, .grid { max-width: 100vw; box-sizing: border-box; }
  .table-responsive { max-width: 100vw; margin: auto; }
  
  /* 4. Espacamento global mobile */
  section { padding: 50px 16px !important; width: 100%; max-width: 100vw; box-sizing: border-box; }

  /* 6. Tamanho de toque */
  a, button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

    /* Cards de solucoes sao anchors; no mobile eles nao podem herdar o inline-flex global. */
    .solution-card {
        display: block;
        min-height: 0;
    }

  /* Ocultar secao de comparacao no mobile */
  .comparativo { display: none !important; }
}






 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 / *   B L O C O   P R O V A   D E   A U T O R I D A D E   -   B 2 B   P R E M I U M     * / 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . p r e m i u m - a u t h - c a r d   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         b a c k g r o u n d :   # f f f f f f ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 7 ,   5 2 ,   7 7 ,   0 . 0 6 ) ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         p a d d i n g :   2 . 5 r e m ; 
 
         b o x - s h a d o w :   0   2 0 p x   4 0 p x   - 1 0 p x   r g b a ( 2 7 ,   5 2 ,   7 7 ,   0 . 0 8 ) ,   0   4 p x   6 p x   - 2 p x   r g b a ( 2 7 ,   5 2 ,   7 7 ,   0 . 0 3 ) ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) ,   b o x - s h a d o w   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) ; 
 
 } 
 
 . p r e m i u m - a u t h - c a r d : h o v e r   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 4 p x ) ; 
 
         b o x - s h a d o w :   0   3 0 p x   6 0 p x   - 1 2 p x   r g b a ( 2 7 ,   5 2 ,   7 7 ,   0 . 1 2 ) ,   0   8 p x   1 2 p x   - 4 p x   r g b a ( 2 7 ,   5 2 ,   7 7 ,   0 . 0 4 ) ; 
 
 } 
 
 . p r e m i u m - a u t h - c a r d : : b e f o r e   { 
 
         c o n t e n t :   " " ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   0 ; 
 
         l e f t :   0 ; 
 
         h e i g h t :   1 0 0 % ; 
 
         w i d t h :   6 p x ; 
 
         b a c k g r o u n d :   v a r ( - - a c c e n t ,   # f 9 a 8 2 6 ) ;   / *   u s a   a   c o r   d e   d e s t a q u e   ( a m a r e l o   d a   m a r c a )   * / 
 
 } 
 
 . a u t h - e y e b r o w   { 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   0 . 5 r e m ; 
 
         f o n t - s i z e :   0 . 8 5 r e m ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
 
         c o l o r :   v a r ( - - p r i m a r y ,   # 1 B 3 4 4 D ) ; 
 
         m a r g i n - b o t t o m :   1 . 2 5 r e m ; 
 
         o p a c i t y :   0 . 8 ; 
 
 } 
 
 . a u t h - e y e b r o w   s v g   { 
 
         c o l o r :   v a r ( - - a c c e n t ,   # f 9 a 8 2 6 ) ; 
 
 } 
 
 . p r e m i u m - a u t h - c a r d   . c o m p a n y - s t o r y - l e a d   { 
 
         f o n t - s i z e :   1 . 6 r e m ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
         l i n e - h e i g h t :   1 . 3 ; 
 
         c o l o r :   v a r ( - - p r i m a r y - d a r k ,   # 1 1 2 2 3 3 ) ; 
 
         m a r g i n - b o t t o m :   1 r e m ; 
 
         l e t t e r - s p a c i n g :   - 0 . 0 2 e m ; 
 
 } 
 
 . p r e m i u m - a u t h - c a r d   . c o m p a n y - s t o r y - t e x t   { 
 
         f o n t - s i z e :   1 r e m ; 
 
         c o l o r :   # 4 a 5 c 6 d ; 
 
         l i n e - h e i g h t :   1 . 6 ; 
 
         m a r g i n - b o t t o m :   2 r e m ; 
 
 } 
 
 . p r e m i u m - p i l l a r s   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - w r a p :   w r a p ; 
 
         g a p :   0 . 7 5 r e m ; 
 
 } 
 
 . p r e m i u m - p i l l a r s   . c o m p a n y - p i l l a r   { 
 
         f o n t - s i z e :   0 . 8 5 r e m ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   v a r ( - - p r i m a r y ,   # 1 B 3 4 4 D ) ; 
 
         b a c k g r o u n d :   r g b a ( 2 7 ,   5 2 ,   7 7 ,   0 . 0 4 ) ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 7 ,   5 2 ,   7 7 ,   0 . 0 8 ) ; 
 
         p a d d i n g :   0 . 5 r e m   1 r e m ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 
 } 
 
 . p r e m i u m - p i l l a r s   . c o m p a n y - p i l l a r : h o v e r   { 
 
         b a c k g r o u n d :   r g b a ( 2 7 ,   5 2 ,   7 7 ,   0 . 0 8 ) ; 
 
         b o r d e r - c o l o r :   r g b a ( 2 7 ,   5 2 ,   7 7 ,   0 . 1 5 ) ; 
 
 } 
 
 