/* ReportLog — landing clara */
:root {
 --text: #172b4d;
 --text-ink: #091e42;
 --text-muted: #42526e;
 --surface: #ffffff;
 /* Fundos de seção (landing + páginas internas) */
 --bg-section-primary: #e9f2fe;
 --bg-section-secondary: #f2f8ff;
 --surface-subtle: #f2f8ff;
 --surface-tint: #ebecf0;
 --border: #dfe1e6;
 --brand: #0052cc;
 --brand-hover: #0747a6;
 --brand-soft: #deebff;
 --accent: #00b8d9;
 --radius-lg: 12px;
 --radius-xl: 20px;
 --radius-pill: 999px;
 --shadow: 0 1px 1px #091e4240, 0 0 1px #091e4221;
 --shadow-raised: 0 8px 12px #091e4226;
 --shadow-card: 0 4px 8px -2px #091e4240, 0 0 1px #091e4221;
 --max: 72rem;
 --font-display: "Sora", system-ui, sans-serif;
 --font-body: "Instrument Sans", system-ui, sans-serif;
 --section-pad-y: clamp(3.5rem, 8vw, 5.5rem);
 --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.landing-light {
 margin: 0;
 font-family: var(--font-body);
 font-size: 1.0625rem;
 line-height: 1.6;
 color: var(--text);
 background: var(--bg-section-primary);
 -webkit-font-smoothing: antialiased;
}

body.landing-light a {
 color: var(--brand);
 text-decoration: none;
}
body.landing-light a:hover { text-decoration: underline; }

/* Rótulos “eyebrow” acima de títulos */
.section-eyebrow,
.hero-eyebrow {
 display: block;
 font-family: var(--font-display);
 font-size: 0.75rem;
 font-weight: 700;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--brand);
 margin: 0 0 0.85rem;
}

.section-head {
 text-align: center;
 max-width: 48rem;
 margin-inline: auto;
 margin-bottom: 2.5rem;
}

.section-head .section-title {
 margin-bottom: 0;
}

.section-head + .features-grid,
.section-head + .partners-banner,
.section-head + .stats-grid {
 margin-top: 0;
}

.section-head + .modules-subtitle,
.section-head + .faq-subtitle,
.section-head + .contact-subtitle {
 margin-top: -0.5rem;
}

.container {
 max-width: var(--max);
 margin-inline: auto;
 padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.brand-font { font-family: var(--font-display); }

/* Header */
body.landing-light .header {
 background: rgba(255, 255, 255, 0.92);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border);
 position: sticky;
 top: 0;
 z-index: 1000;
 box-shadow: var(--shadow);
}

body.landing-light .nav {
 max-width: var(--max);
 margin: 0 auto;
 padding: 0 clamp(1.25rem, 4vw, 2.5rem);
 min-height: 72px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 flex-wrap: wrap;
}

body.landing-light .nav-brand {
 display: flex;
 align-items: center;
}

body.landing-light .nav-logo {
 height: 36px;
 width: auto;
 display: block;
}

body.landing-light .nav-menu {
 display: none;
 list-style: none;
 margin: 0;
 padding: 0;
 gap: 1.75rem;
 align-items: center;
}

@media (min-width: 900px) {
 body.landing-light .nav-menu {
 display: flex;
 flex: 1;
 justify-content: center;
 }
}

body.landing-light .nav-menu a {
 font-weight: 500;
 font-size: 0.9375rem;
 color: var(--text-muted);
 text-decoration: none;
 position: relative;
 padding: 0.35rem 0;
 transition: color 0.2s var(--ease-out);
}
body.landing-light .nav-menu a::after {
 content: "";
 position: absolute;
 left: 0;
 bottom: 0;
 width: 100%;
 height: 2px;
 background: var(--brand);
 transform: scaleX(0);
 transform-origin: center;
 transition: transform 0.25s var(--ease-out);
 border-radius: 1px;
}
body.landing-light .nav-menu a:hover,
body.landing-light .nav-menu a.active {
 color: var(--text-ink);
 text-decoration: none;
}
body.landing-light .nav-menu a:hover::after,
body.landing-light .nav-menu a.active::after {
 transform: scaleX(1);
}

body.landing-light .nav-actions {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 flex-wrap: wrap;
}

body.landing-light .theme-toggle {
 display: none;
}

body.landing-light .nav-menu li {
 list-style: none;
}

body.landing-light .mobile-toggle {
 color: var(--text);
 background: none;
 border: none;
 font-size: 1.5rem;
 cursor: pointer;
 padding: 0.5rem;
}

/* Buttons */
body.landing-light .btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.5rem;
 padding: 0.55rem 1.25rem;
 font-family: var(--font-display);
 font-size: 0.9375rem;
 font-weight: 600;
 border-radius: var(--radius-pill);
 border: none;
 cursor: pointer;
 transition: background 0.2s var(--ease-out), color 0.2s, box-shadow 0.2s, transform 0.15s;
 text-decoration: none;
 position: relative;
 overflow: hidden;
}

body.landing-light .btn-primary {
 background: var(--brand);
 color: #fff !important;
 box-shadow: var(--shadow-card);
}
body.landing-light .btn-primary:hover {
 background: var(--brand-hover);
 text-decoration: none;
 transform: translateY(-1px);
 box-shadow: 0 6px 12px -2px #091e4240, 0 0 1px #091e4221;
}

body.landing-light .btn-secondary {
 background: var(--surface);
 color: var(--text-ink) !important;
 border: 1px solid var(--border);
 box-shadow: var(--shadow);
}
body.landing-light .btn-secondary:hover {
 background: var(--surface-subtle);
 text-decoration: none;
 border-color: #c1c7d0;
}

body.landing-light .btn-large {
 padding: 0.9rem 1.65rem;
 font-size: 1rem;
}

/* Hero tagline */
.hero-tagline {
 text-align: center;
 padding: 1rem 1rem 1.25rem;
 background: var(--bg-section-primary);
 border-bottom: 1px solid var(--border);
}
.hero-tagline p {
 margin: 0;
 font-family: var(--font-display);
 font-size: clamp(1rem, 2.2vw, 1.2rem);
 font-weight: 600;
 color: var(--text-muted);
 letter-spacing: -0.02em;
}

/* Hero — malha + gradiente */
body.landing-light .hero {
 position: relative;
 overflow: hidden;
 padding-block: clamp(3rem, 8vw, 5rem);
 padding-bottom: clamp(4rem, 10vw, 6rem);
 background-color: var(--bg-section-secondary);
 background-image:
 radial-gradient(ellipse 100% 80% at 50% -30%, rgba(0, 82, 204, 0.12), transparent 55%),
 radial-gradient(ellipse 60% 50% at 100% 20%, rgba(0, 184, 217, 0.07), transparent 50%),
 radial-gradient(ellipse 50% 40% at 0% 60%, rgba(0, 82, 204, 0.05), transparent 45%),
 linear-gradient(180deg, var(--bg-section-secondary) 0%, #ffffff 58%);
}

body.landing-light .hero::before {
 content: "";
 position: absolute;
 inset: 0;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23091e42' opacity='0.04'/%3E%3C/svg%3E");
 background-size: 32px 32px;
 pointer-events: none;
 mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

body.landing-light .hero::after {
 content: "";
 position: absolute;
 left: 0;
 right: 0;
 bottom: 0;
 height: 72px;
 background: linear-gradient(to top, var(--bg-section-primary) 0%, transparent 100%);
 pointer-events: none;
}

body.landing-light .hero .container {
 display: grid;
 gap: 2.5rem;
 align-items: center;
 position: relative;
 z-index: 1;
}

@media (min-width: 960px) {
 body.landing-light .hero .container {
 grid-template-columns: 1fr 1fr;
 }
}

body.landing-light .hero-content {
 order: 0;
}

body.landing-light .hero-logo {
 margin-bottom: 1rem;
}
body.landing-light .hero-logo-img {
 height: 48px;
 width: auto;
}

body.landing-light .hero-eyebrow {
 text-align: left;
}

body.landing-light .hero-title {
 font-family: var(--font-display);
 font-weight: 800;
 font-size: clamp(2rem, 4.5vw, 3.15rem);
 line-height: 1.08;
 letter-spacing: -0.038em;
 margin: 0 0 1.15rem;
 color: var(--text-ink);
}

body.landing-light .hero-subtitle {
 font-size: clamp(1.05rem, 1.8vw, 1.25rem);
 line-height: 1.55;
 color: var(--text-muted);
 margin: 0 0 1.75rem;
 max-width: 38rem;
}

body.landing-light .hero-visual {
 border-radius: var(--radius-xl);
 background: var(--surface);
 border: 1px solid var(--border);
 box-shadow:
 var(--shadow-raised),
 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
 padding: 1.15rem;
}

body.landing-light .dashboard-preview {
 border-radius: var(--radius-lg);
 overflow: hidden;
}

body.landing-light .dashboard-header {
 padding-bottom: 0.75rem;
 border-bottom: 1px solid var(--border);
 margin-bottom: 1rem;
}

body.landing-light .dashboard-tabs .tab {
 font-size: 0.8125rem;
 font-weight: 600;
 color: var(--brand);
 text-transform: uppercase;
 letter-spacing: 0.06em;
}

body.landing-light .hero-stats-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 0.75rem;
}

@media (min-width: 480px) {
 body.landing-light .hero-stats-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

body.landing-light .hero-stat-item {
 padding: 1rem;
 border-radius: var(--radius-lg);
 background: linear-gradient(145deg, var(--brand-soft) 0%, #fff 85%);
 border: 1px solid #b3d4ff;
}

body.landing-light .hero-stat-item:nth-child(even) {
 background: linear-gradient(145deg, #e6fcff 0%, #fff 85%);
 border-color: #b3f5ff;
}

body.landing-light .hero-stat-item .stat-number {
 font-family: var(--font-display);
 font-size: clamp(1.1rem, 2vw, 1.35rem);
 font-weight: 800;
 color: var(--text-ink);
 letter-spacing: -0.02em;
 line-height: 1.2;
}

body.landing-light .hero-stat-label {
 font-size: 0.75rem;
 font-weight: 600;
 color: var(--text-muted);
 margin-top: 0.35rem;
}

/* Section titles */
.section-title {
 font-family: var(--font-display);
 font-size: clamp(1.65rem, 3.2vw, 2.35rem);
 font-weight: 700;
 letter-spacing: -0.035em;
 line-height: 1.15;
 text-align: center;
 margin: 0 0 0.75rem;
 color: var(--text-ink);
}

.section-subtitle {
 text-align: center;
 color: var(--text-muted);
 font-size: 1.1rem;
 max-width: 42rem;
 margin: 0 auto 2rem;
 line-height: 1.6;
}

.section-logo {
 text-align: center;
 margin-bottom: 1rem;
}
.section-logo-img {
 height: 44px;
 width: auto;
}

.section-logo + .section-head {
 margin-top: 0;
}

/* Partners */
.partners-section {
 padding: var(--section-pad-y) 0;
 background: var(--bg-section-primary);
 border-block: 1px solid var(--border);
 overflow: hidden;
 position: relative;
}

.partners-section::before {
 content: "";
 position: absolute;
 top: 0;
 left: 50%;
 transform: translateX(-50%);
 width: min(100%, 900px);
 height: 1px;
 background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.partners-banner {
 position: relative;
 width: 100%;
 height: 150px;
 margin: 2rem 0 0;
 overflow: hidden;
}

.partners-track {
 display: flex;
 align-items: center;
 animation: scroll-left 35s linear infinite;
 width: max-content;
}
.partners-track:hover { animation-play-state: paused; }

.partner-logo {
 flex-shrink: 0;
 margin: 0 1.25rem;
 display: flex;
 align-items: center;
 justify-content: center;
 background: var(--surface-subtle);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 1rem;
 width: 170px;
 height: 110px;
 transition: box-shadow 0.2s, border-color 0.2s;
}
.partner-logo:hover {
 border-color: var(--brand);
 box-shadow: var(--shadow-raised);
}

.partner-img {
 max-width: 140px;
 max-height: 80px;
 object-fit: contain;
 filter: grayscale(30%);
 opacity: 0.85;
 transition: filter 0.2s, opacity 0.2s;
}
.partner-logo:hover .partner-img {
 filter: none;
 opacity: 1;
}

@keyframes scroll-left {
 0% { transform: translateX(0); }
 100% { transform: translateX(-50%); }
}

/* Features */
.features {
 padding: var(--section-pad-y) 0;
 background: var(--bg-section-secondary);
}

.fretes-bids-section {
 background: linear-gradient(180deg, var(--bg-section-primary) 0%, #f7fbff 50%, var(--bg-section-primary) 100%);
 position: relative;
}

.fretes-bids-section::before {
 content: "";
 display: block;
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 1px;
 background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.features-grid {
 display: grid;
 gap: 1.5rem;
}

@media (min-width: 720px) {
 .features-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}
@media (min-width: 1000px) {
 .features-grid {
 grid-template-columns: repeat(3, 1fr);
 }
}

.feature-card {
 padding: 1.5rem 1.35rem;
 border-radius: var(--radius-xl);
 border: 1px solid var(--border);
 background: var(--surface);
 box-shadow: var(--shadow);
 transition: box-shadow 0.25s var(--ease-out), border-color 0.25s, transform 0.25s var(--ease-out);
 position: relative;
 overflow: hidden;
}

.feature-card::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: linear-gradient(90deg, var(--brand), var(--accent));
 opacity: 0;
 transition: opacity 0.25s var(--ease-out);
}

.feature-card:hover {
 box-shadow: var(--shadow-card);
 border-color: #b3d4ff;
 transform: translateY(-4px);
}

.feature-card:hover::before {
 opacity: 1;
}

.feature-icon {
 width: 48px;
 height: 48px;
 border-radius: 12px;
 background: linear-gradient(145deg, var(--brand-soft) 0%, #f0f7ff 100%);
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1.1rem;
 color: var(--brand);
 font-size: 1.15rem;
 border: 1px solid rgba(0, 82, 204, 0.12);
}

.feature-card h3 {
 font-family: var(--font-display);
 font-size: 1.05rem;
 font-weight: 700;
 margin: 0 0 0.5rem;
 color: var(--text);
}

.feature-card p {
 margin: 0;
 font-size: 0.98rem;
 color: var(--text-muted);
 line-height: 1.55;
}

/* Video */
.video-section {
 padding: var(--section-pad-y) 0;
 background: var(--bg-section-secondary);
 position: relative;
}

.video-section::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 height: 1px;
 background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.video-container {
 display: flex;
 justify-content: center;
 margin: 2rem 0;
}

.video-wrapper {
 position: relative;
 width: 100%;
 max-width: 800px;
 border-radius: var(--radius-xl);
 overflow: hidden;
 box-shadow:
 var(--shadow-raised),
 0 24px 48px -12px rgba(9, 30, 66, 0.18);
 border: 1px solid var(--border);
 background: var(--text-ink);
}

.video-wrapper iframe {
 width: 100%;
 height: min(50vw, 450px);
 border: none;
 display: block;
}

.video-description {
 text-align: center;
 font-size: 1.05rem;
 color: var(--text-muted);
 max-width: 40rem;
 margin: 0 auto;
 line-height: 1.65;
}

/* Stats */
.stats {
 padding: var(--section-pad-y) 0;
 background:
 radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 82, 204, 0.06), transparent 60%),
 var(--bg-section-primary);
}

.about-description {
 text-align: center;
 font-size: 1.05rem;
 color: var(--text-muted);
 max-width: 44rem;
 margin: 0 auto 2.5rem;
 line-height: 1.65;
}

.stats-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 1rem;
}

@media (min-width: 768px) {
 .stats-grid {
 grid-template-columns: repeat(4, 1fr);
 }
}

.stat-item {
 text-align: center;
 padding: 1.65rem 1rem;
 background: var(--surface);
 border-radius: var(--radius-xl);
 border: 1px solid var(--border);
 box-shadow: var(--shadow);
 transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.stat-item:hover {
 transform: translateY(-2px);
 box-shadow: var(--shadow-card);
}

.stat-number {
 font-family: var(--font-display);
 font-size: clamp(1.35rem, 2.5vw, 1.85rem);
 font-weight: 800;
 letter-spacing: -0.03em;
 color: var(--brand);
 line-height: 1.1;
}

.stat-label {
 font-size: 0.85rem;
 color: var(--text-muted);
 margin-top: 0.35rem;
 font-weight: 500;
}

/* Módulos — grelha de cartões com fotos */
.modules-section {
 padding: var(--section-pad-y) 0;
 background: linear-gradient(180deg, var(--bg-section-secondary) 0%, #ffffff 52%, var(--bg-section-secondary) 100%);
}

.module-cards {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1.25rem;
 margin-top: 2rem;
 max-width: 1120px;
 margin-left: auto;
 margin-right: auto;
}

@media (min-width: 600px) {
 .module-cards {
 grid-template-columns: repeat(2, 1fr);
 gap: 1.5rem;
 }
}

@media (min-width: 1000px) {
 .module-cards {
 grid-template-columns: repeat(3, 1fr);
 gap: 1.75rem;
 }
}

.module-card {
 display: flex;
 flex-direction: column;
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-xl);
 overflow: hidden;
 box-shadow: var(--shadow);
 cursor: pointer;
 transition:
 transform 0.3s var(--ease-out),
 box-shadow 0.3s var(--ease-out),
 border-color 0.25s;
}

.module-card:focus {
 outline: none;
}

.module-card:focus-visible {
 outline: 3px solid var(--brand);
 outline-offset: 3px;
}

.module-card:hover {
 transform: translateY(-6px);
 box-shadow: var(--shadow-card);
 border-color: #b3d4ff;
}

.module-card__media {
 position: relative;
 aspect-ratio: 16 / 10;
 background: linear-gradient(160deg, var(--bg-section-primary) 0%, var(--bg-section-secondary) 45%, var(--surface-tint) 100%);
 border-bottom: 1px solid var(--border);
 display: flex;
 align-items: flex-start;
 justify-content: center;
 padding: 0.5rem 0.5rem 0;
}

.module-card__img {
 width: 100%;
 height: 100%;
 object-fit: contain;
 object-position: top center;
 display: block;
}

.module-card__body {
 padding: 1.15rem 1.25rem 1.35rem;
 display: flex;
 flex-direction: column;
 gap: 0.35rem;
 flex: 1;
}

.module-card__kicker {
 margin: 0;
 font-family: var(--font-display);
 font-size: 0.6875rem;
 font-weight: 700;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--text-muted);
}

.module-card__title {
 margin: 0;
 font-family: var(--font-display);
 font-size: 1.125rem;
 font-weight: 700;
 letter-spacing: -0.025em;
 color: var(--text-ink);
 line-height: 1.25;
}

.module-card__text {
 margin: 0.25rem 0 0;
 font-size: 0.9rem;
 line-height: 1.5;
 color: var(--text-muted);
}

/* Modal — ampliar captura do módulo */
.module-modal {
 position: fixed;
 inset: 0;
 z-index: 10050;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 1rem;
}

.module-modal[hidden] {
 display: none !important;
}

.module-modal__backdrop {
 position: absolute;
 inset: 0;
 background: rgba(9, 30, 66, 0.72);
 backdrop-filter: blur(4px);
}

.module-modal__dialog {
 position: relative;
 z-index: 1;
 width: min(96vw, 1100px);
 max-height: min(92vh, 900px);
 display: flex;
 flex-direction: column;
 background: var(--surface);
 border-radius: var(--radius-xl);
 box-shadow: 0 24px 48px rgba(9, 30, 66, 0.35);
 border: 1px solid var(--border);
 overflow: hidden;
}

.module-modal__close {
 position: absolute;
 top: 0.65rem;
 right: 0.65rem;
 z-index: 2;
 width: 44px;
 height: 44px;
 border: none;
 border-radius: var(--radius-pill);
 background: var(--surface-subtle);
 color: var(--text-ink);
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.25rem;
 transition: background 0.2s, color 0.2s;
}

.module-modal__close:hover {
 background: var(--brand);
 color: #fff;
}

.module-modal__heading {
 margin: 0;
 padding: 1rem 3.5rem 0.5rem 1.25rem;
 font-family: var(--font-display);
 font-size: 1.1rem;
 font-weight: 700;
 color: var(--text-ink);
 flex-shrink: 0;
}

.module-modal__frame {
 flex: 1;
 min-height: 0;
 overflow: auto;
 padding: 0 1rem 1rem;
 -webkit-overflow-scrolling: touch;
}

.module-modal__img {
 display: block;
 width: 100%;
 height: auto;
 max-height: min(78vh, 820px);
 object-fit: contain;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border);
 background: var(--surface-subtle);
}

/* CTA — faixa com fundo de seção + cartão em gradiente */
section.cta {
 padding: var(--section-pad-y) clamp(1rem, 3vw, 2rem);
 margin: 0;
 background: var(--bg-section-primary);
}

section.cta .container {
 position: relative;
 isolation: isolate;
 max-width: var(--max);
 margin-inline: auto;
 padding: clamp(2.5rem, 6vw, 3.75rem);
 border-radius: var(--radius-xl);
 background:
 radial-gradient(ellipse 80% 120% at 100% 0%, rgba(255, 255, 255, 0.12), transparent 50%),
 radial-gradient(ellipse 60% 80% at 0% 100%, rgba(0, 184, 217, 0.25), transparent 45%),
 linear-gradient(125deg, #053a8c 0%, #0052cc 42%, #0065ff 65%, #008da6 100%);
 color: #fff;
 text-align: center;
 box-shadow:
 var(--shadow-raised),
 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
 overflow: hidden;
}

section.cta .container::before {
 content: "";
 position: absolute;
 inset: 0;
 border-radius: inherit;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23ffffff' opacity='0.06'/%3E%3C/svg%3E");
 background-size: 40px 40px;
 pointer-events: none;
 z-index: 0;
}

section.cta .container > * {
 position: relative;
 z-index: 1;
}

.cta h2 {
 font-family: var(--font-display);
 font-size: clamp(1.45rem, 3.2vw, 2rem);
 font-weight: 800;
 letter-spacing: -0.03em;
 margin: 0 0 0.5rem;
 line-height: 1.2;
}

.cta p {
 margin: 0 auto 1.25rem;
 max-width: 36rem;
 opacity: 0.92;
 font-size: 1.05rem;
 line-height: 1.55;
}

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

.cta .btn-primary {
 background: #fff;
 color: var(--brand) !important;
}
.cta .btn-primary:hover {
 background: var(--surface-subtle);
}

.cta .btn-secondary {
 background: transparent;
 color: #fff !important;
 border: 1px solid rgba(255, 255, 255, 0.6);
}
.cta .btn-secondary:hover {
 background: rgba(255, 255, 255, 0.12);
}

/* FAQ */
.faq-section {
 padding: var(--section-pad-y) 0;
 background: var(--bg-section-secondary);
}

.faq-subtitle {
 text-align: center;
 color: var(--text-muted);
 margin-bottom: 2rem;
 font-size: 1.05rem;
 max-width: 32rem;
 margin-left: auto;
 margin-right: auto;
}

.faq-container {
 max-width: 48rem;
 margin: 0 auto;
}

.faq-item {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-xl);
 margin-bottom: 0.65rem;
 overflow: hidden;
 box-shadow: var(--shadow);
 transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
 border-color: #b3d4ff;
 box-shadow: var(--shadow-card);
}

.faq-question {
 padding: 1.2rem 1.35rem;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 1rem;
 transition: background 0.15s;
}

.faq-question:hover {
 background: var(--surface-subtle);
}

.faq-question h3 {
 font-family: var(--font-display);
 font-size: 1.02rem;
 font-weight: 600;
 color: var(--text-ink);
 margin: 0;
 flex: 1;
 text-align: left;
 line-height: 1.35;
}

.faq-question i {
 color: var(--brand);
 transition: transform 0.25s;
 flex-shrink: 0;
}

.faq-item.active .faq-question i {
 transform: rotate(180deg);
}

.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.35s ease;
 padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
 max-height: 560px;
 padding: 0 1.25rem 1.15rem;
}

.faq-answer p {
 color: var(--text-muted);
 line-height: 1.65;
 margin: 0;
 padding-top: 0.5rem;
 font-size: 0.95rem;
}

/* Contact */
.contact {
 padding: var(--section-pad-y) 0;
 background: var(--bg-section-primary);
 border-top: 1px solid var(--border);
}

.contact-subtitle {
 text-align: center;
 color: var(--text-muted);
 margin-bottom: 2rem;
}

.contact-content {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 2rem;
 align-items: start;
}

@media (max-width: 900px) {
 .contact-content {
 grid-template-columns: 1fr;
 }
}

.contact-info {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.contact-item {
 display: flex;
 align-items: flex-start;
 gap: 1rem;
 padding: 1.25rem;
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow);
}

.contact-item i {
 color: var(--brand);
 font-size: 1.25rem;
 margin-top: 0.2rem;
}

.contact-item h4 {
 margin: 0 0 0.25rem;
 font-size: 0.85rem;
 text-transform: uppercase;
 letter-spacing: 0.04em;
 color: var(--text-muted);
}

.contact-item p {
 margin: 0;
 color: var(--text);
 font-size: 0.95rem;
 line-height: 1.5;
}

.mini-map iframe {
 margin-top: 0.75rem;
 border-radius: 8px;
 max-width: 100%;
}

.contact-form .form-group {
 margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
 width: 100%;
 padding: 0.85rem 1rem;
 border: 1px solid var(--border);
 border-radius: 8px;
 font-family: inherit;
 font-size: 1rem;
 background: var(--surface);
 color: var(--text);
 transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
 outline: none;
 border-color: var(--brand);
 box-shadow: 0 0 0 3px var(--brand-soft);
}

.contact-form textarea {
 resize: vertical;
 min-height: 100px;
}

/* Botão de envio: não trocar innerHTML (evita botão “grande” após enviar) */
.contact-form button.contact-btn-submit .contact-btn__idle {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
}

.contact-form button.contact-btn-submit {
 position: relative;
 width: fit-content;
 max-width: 100%;
}

.contact-form button.contact-btn-submit .contact-btn__busy {
 display: none;
 position: absolute;
 left: 50%;
 top: 50%;
 transform: translate(-50%, -50%);
 white-space: nowrap;
 align-items: center;
 gap: 0.5rem;
}

.contact-form button.contact-btn-submit.is-submitting .contact-btn__idle {
 visibility: hidden;
}

.contact-form button.contact-btn-submit.is-submitting .contact-btn__busy {
 display: inline-flex;
}

/* Footer */
.footer {
 background: #0c1b2e;
 color: #a8b3c4;
 padding: 3rem 0 1.5rem;
}

.footer .container {
 max-width: var(--max);
}

.footer-content {
 display: grid;
 grid-template-columns: 1fr 2fr;
 gap: 2.5rem;
 align-items: start;
}

@media (max-width: 900px) {
 .footer-content {
 grid-template-columns: 1fr;
 }
}

.footer-brand {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 1.25rem;
}

.footer-logo {
 height: 40px;
 width: auto;
 opacity: 0.95;
}

.footer-social {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 1rem;
}

/* Ícones discretos: só cor da marca, sem bloco nem sombra */
.footer-social__btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 0.25rem;
 border: none;
 border-radius: 6px;
 background: transparent;
 font-size: 1.25rem;
 line-height: 1;
 text-decoration: none;
 opacity: 0.88;
 transition: opacity 0.2s ease;
}

.footer-social__btn:hover {
 opacity: 1;
}

.footer-social__btn--instagram {
 color: #e4405f;
}

.footer-social__btn--linkedin {
 color: #70b5f9;
}

.footer-social__btn:focus-visible {
 outline: 1px solid rgba(255, 255, 255, 0.45);
 outline-offset: 4px;
 opacity: 1;
}

.footer-links {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 1.5rem;
}

@media (max-width: 768px) {
 .footer-links {
 grid-template-columns: repeat(2, 1fr);
 }
}

.footer-column h4 {
 font-family: var(--font-display);
 font-size: 0.75rem;
 text-transform: uppercase;
 letter-spacing: 0.06em;
 color: #e8edf4;
 margin: 0 0 0.75rem;
}

.footer-column ul {
 list-style: none;
 margin: 0;
 padding: 0;
}

.footer-column a {
 color: #a8b3c4;
 font-size: 0.9rem;
 text-decoration: none;
 display: inline-block;
 margin-bottom: 0.4rem;
}
.footer-column a:hover {
 color: #fff;
}

.footer-bottom {
 margin-top: 2rem;
 padding-top: 1.5rem;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 text-align: center;
 font-size: 0.85rem;
}

.footer-bottom a {
 color: #deebff;
}

/* WhatsApp */
.whatsapp-button {
 position: fixed;
 bottom: 1.5rem;
 right: 1.5rem;
 z-index: 1000;
}

.whatsapp-button a {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 58px;
 height: 58px;
 background: linear-gradient(135deg, #25d366, #128c7e);
 border-radius: 50%;
 box-shadow: var(--shadow-raised);
 text-decoration: none;
 transition: transform 0.2s;
}
.whatsapp-button a:hover {
 transform: scale(1.08);
}
.whatsapp-button i {
 font-size: 1.85rem;
 color: #fff;
}

/* Notifications */
.notification {
 position: fixed;
 top: 5rem;
 right: 1rem;
 z-index: 10000;
 max-width: 380px;
 padding: 1rem 1.25rem;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-raised);
 opacity: 0;
 transform: translateX(120%);
 transition: opacity 0.3s, transform 0.3s;
 font-size: 0.95rem;
}

.notification.show {
 opacity: 1;
 transform: translateX(0);
}

.notification-content {
 display: flex;
 align-items: flex-start;
 gap: 0.75rem;
}

.notification-success {
 background: #e3fcef;
 border: 1px solid #36b37e;
 color: #064;
}

.notification-error {
 background: #ffebe6;
 border: 1px solid #de350b;
 color: #600;
}

.notification-close {
 background: none;
 border: none;
 font-size: 1.25rem;
 cursor: pointer;
 line-height: 1;
 opacity: 0.6;
}

/* Páginas internas — sobre, políticas, termos */
body.landing-light .inner-main {
 padding-top: 0;
}

body.landing-light .about-page,
body.landing-light .legal-page {
 padding: clamp(5.5rem, 12vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
 min-height: 60vh;
 background: transparent;
 color: var(--text);
}

body.landing-light .about-container,
body.landing-light .legal-container {
 max-width: 72rem;
 margin: 0 auto;
 padding: 0 clamp(1rem, 4vw, 2rem);
}

body.landing-light .legal-container {
 max-width: 56rem;
}

/* Sobre: faixas alternadas (principal / secundária) em largura total */
body.landing-light .about-container > * {
 position: relative;
 padding-top: clamp(1.25rem, 3vw, 2rem);
 padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

body.landing-light .about-container > *::before {
 content: "";
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 width: 100vw;
 top: 0;
 bottom: 0;
 z-index: -1;
 pointer-events: none;
}

body.landing-light .about-container > *:nth-child(odd)::before {
 background: var(--bg-section-primary);
}

body.landing-light .about-container > *:nth-child(even)::before {
 background: var(--bg-section-secondary);
}

/* Políticas / Termos: cabeçalho em faixa secundária */
body.landing-light .legal-header {
 background: var(--bg-section-secondary);
 padding: clamp(1.5rem, 4vw, 2rem);
 border-radius: var(--radius-xl);
 margin-bottom: 1.5rem;
 border: 1px solid var(--border);
}

body.landing-light .about-hero {
 text-align: center;
 margin-bottom: 0;
 padding: 0 0 0.5rem;
}

body.landing-light .about-hero h1 {
 font-family: var(--font-display);
 font-size: clamp(2rem, 4.5vw, 3rem);
 font-weight: 800;
 margin: 0 0 1rem;
 letter-spacing: -0.02em;
 color: var(--text-ink);
 background: linear-gradient(135deg, var(--brand) 0%, #00b8d9 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

body.landing-light .about-hero p {
 font-size: 1.2rem;
 color: var(--text-muted);
 max-width: 42rem;
 margin: 0 auto;
}

body.landing-light .about-section {
 margin-bottom: 0;
}

body.landing-light .about-section > h2 {
 font-family: var(--font-display);
 font-size: clamp(1.5rem, 3vw, 2rem);
 font-weight: 700;
 margin: 0 0 1.5rem;
 color: var(--brand);
 text-align: center;
}

body.landing-light .about-content {
 background: var(--surface);
 padding: clamp(1.75rem, 4vw, 3rem);
 border-radius: var(--radius-xl);
 box-shadow: var(--shadow-card);
 border: 1px solid var(--border);
 line-height: 1.75;
}

body.landing-light .about-content h2 {
 font-family: var(--font-display);
 font-size: 1.65rem;
 margin: 0 0 1rem;
 color: var(--brand);
}

body.landing-light .about-content p {
 margin-bottom: 1.25rem;
 color: var(--text-muted);
 font-size: 1.0625rem;
}

body.landing-light .about-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.5rem;
 margin-top: 1.5rem;
}

body.landing-light .about-card {
 background: var(--surface-subtle);
 padding: 1.75rem;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border);
 transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s;
}

body.landing-light .about-card:hover {
 transform: translateY(-4px);
 box-shadow: var(--shadow-raised);
 border-color: var(--brand-soft);
}

body.landing-light .about-card h3 {
 font-family: var(--font-display);
 font-size: 1.2rem;
 margin: 0 0 0.75rem;
 color: var(--text-ink);
 display: flex;
 align-items: center;
 gap: 0.65rem;
}

body.landing-light .about-card h3 i {
 font-size: 1.5rem;
 color: var(--brand);
}

body.landing-light .about-card p {
 margin: 0;
 color: var(--text-muted);
 font-size: 1rem;
}

body.landing-light .values-list {
 list-style: none;
 padding: 0;
 margin: 1.5rem 0 0;
}

body.landing-light .values-list li {
 padding: 1rem 1.25rem;
 margin-bottom: 0.75rem;
 background: var(--surface-subtle);
 border-left: 4px solid var(--brand);
 border-radius: var(--radius-lg);
 color: var(--text-muted);
}

body.landing-light .values-list li strong {
 color: var(--text-ink);
 display: block;
 margin-bottom: 0.35rem;
 font-size: 1.05rem;
}

body.landing-light .stats-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
 gap: 1.5rem;
 margin: 2rem 0;
}

body.landing-light .stat-card {
 text-align: center;
 padding: 1.75rem;
 background: var(--surface);
 border-radius: var(--radius-lg);
 border: 1px solid var(--border);
}

body.landing-light .stat-number {
 font-family: var(--font-display);
 font-size: 2.5rem;
 font-weight: 800;
 color: var(--brand);
 margin-bottom: 0.35rem;
}

body.landing-light .stat-label {
 color: var(--text-muted);
 font-size: 1rem;
}

body.landing-light .cta-section {
 text-align: center;
 margin-top: 3rem;
 padding: clamp(2rem, 5vw, 3rem);
 background: linear-gradient(180deg, var(--bg-section-secondary) 0%, var(--surface) 100%);
 border-radius: var(--radius-xl);
 border: 1px solid var(--border);
}

body.landing-light .cta-section h2 {
 font-family: var(--font-display);
 margin: 0 0 0.75rem;
 color: var(--text-ink);
}

body.landing-light .cta-section p {
 margin: 0 0 1.5rem;
 color: var(--text-muted);
}

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

body.landing-light .legal-header {
 margin-bottom: 2rem;
 text-align: center;
}

body.landing-light .legal-header h1 {
 font-family: var(--font-display);
 font-size: clamp(1.75rem, 4vw, 2.5rem);
 font-weight: 800;
 margin: 0 0 0.5rem;
 color: var(--text-ink);
}

body.landing-light .legal-header p {
 font-size: 1rem;
 color: var(--text-muted);
 margin: 0;
}

body.landing-light .legal-content {
 background: var(--surface);
 padding: clamp(1.75rem, 4vw, 3rem);
 border-radius: var(--radius-xl);
 box-shadow: var(--shadow-card);
 border: 1px solid var(--border);
 line-height: 1.75;
}

body.landing-light .legal-content h2 {
 font-family: var(--font-display);
 font-size: 1.35rem;
 margin-top: 2rem;
 margin-bottom: 0.75rem;
 color: var(--brand);
}

body.landing-light .legal-content h2:first-child {
 margin-top: 0;
}

body.landing-light .legal-content h3 {
 font-size: 1.1rem;
 margin-top: 1.5rem;
 margin-bottom: 0.5rem;
 color: var(--text-ink);
}

body.landing-light .legal-content p {
 margin-bottom: 1rem;
 color: var(--text-muted);
}

body.landing-light .legal-content ul {
 margin: 0 0 1rem 1.25rem;
 padding: 0;
}

body.landing-light .legal-content li {
 margin-bottom: 0.5rem;
 color: var(--text-muted);
}

body.landing-light .legal-content strong {
 color: var(--text-ink);
}

body.landing-light .back-link {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 margin-top: 2rem;
 color: var(--brand);
 text-decoration: none;
 font-weight: 600;
}

body.landing-light .back-link:hover {
 color: var(--brand-hover);
 text-decoration: underline;
}

@media (max-width: 768px) {
 body.landing-light .about-content {
 padding: 1.5rem;
 }
}

/* Link da marca no header (HTML local) */
body.landing-light .nav-brand-link {
 display: flex;
 align-items: center;
 text-decoration: none;
}

/* Selos ISO — quando descomentar os includes em index.php / footer */
body.landing-light .iso-badges__sr {
 position: absolute;
 width: 1px;
 height: 1px;
 padding: 0;
 margin: -1px;
 overflow: hidden;
 clip: rect(0, 0, 0, 0);
 white-space: nowrap;
 border: 0;
}

body.landing-light .iso-badges--hero {
 padding: 2.25rem 0;
 background: linear-gradient(180deg, var(--bg-section-secondary) 0%, var(--surface) 100%);
 border-bottom: 1px solid var(--border);
}

body.landing-light .iso-badges--hero .iso-badges__intro {
 text-align: center;
 max-width: 40rem;
 margin: 0 auto 1.75rem;
}

body.landing-light .iso-badges__title {
 font-family: var(--font-display);
 font-size: clamp(1.05rem, 2.5vw, 1.25rem);
 font-weight: 700;
 color: var(--text-ink);
 margin: 0 0 0.5rem;
 letter-spacing: -0.02em;
}

body.landing-light .iso-badges__lead {
 margin: 0;
 font-size: 0.95rem;
 line-height: 1.55;
 color: var(--text-muted);
}

body.landing-light .iso-badges__list {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: center;
 gap: 1rem 1.5rem;
 list-style: none;
 margin: 0;
 padding: 0;
}

body.landing-light .iso-badges__item {
 flex: 0 0 auto;
}

body.landing-light .iso-badges--hero .iso-badges__img {
 display: block;
 height: auto;
 width: clamp(140px, 28vw, 200px);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-card);
 transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.landing-light .iso-badges--hero .iso-badges__img:hover {
 transform: translateY(-2px);
 box-shadow: var(--shadow-raised);
}

body.landing-light .iso-badges--features {
 margin: 2rem 0 0.5rem;
 padding: 1.5rem 1.25rem;
 background: var(--surface-subtle);
 border: 1px solid var(--border);
 border-radius: var(--radius-xl);
}

body.landing-light .iso-badges__features-inner {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-between;
 gap: 1.25rem 2rem;
}

body.landing-light .iso-badges__features-copy {
 flex: 1 1 220px;
 max-width: 28rem;
}

body.landing-light .iso-badges__features-headline {
 font-family: var(--font-display);
 font-size: 1.05rem;
 font-weight: 700;
 color: var(--text-ink);
 margin: 0 0 0.35rem;
 letter-spacing: -0.02em;
}

body.landing-light .iso-badges__features-text {
 margin: 0;
 font-size: 0.9rem;
 line-height: 1.5;
 color: var(--text-muted);
}

body.landing-light .iso-badges__list--compact .iso-badges__img {
 width: clamp(100px, 22vw, 160px);
 height: auto;
 display: block;
 border-radius: var(--radius-lg);
}

body.landing-light .iso-badges__list--compact {
 flex: 1 1 280px;
 justify-content: flex-end;
}

body.landing-light .iso-badges--footer {
 margin-top: 1.25rem;
 padding-top: 1.25rem;
 border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.landing-light .iso-badges__footer-label {
 margin: 0 0 0.65rem;
 font-size: 0.7rem;
 font-weight: 600;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: #94a3b8;
}

body.landing-light .iso-badges__list--footer {
 justify-content: flex-start;
 gap: 0.65rem;
}

body.landing-light .iso-badges--footer .iso-badges__img {
 width: clamp(72px, 22vw, 108px);
 height: auto;
 display: block;
 border-radius: 6px;
 opacity: 0.95;
}

@media (max-width: 600px) {
 body.landing-light .iso-badges__features-inner {
 flex-direction: column;
 align-items: stretch;
 }

 body.landing-light .iso-badges__list--compact {
 justify-content: center;
 }

 body.landing-light .iso-badges--footer .iso-badges__list--footer {
 flex-wrap: wrap;
 justify-content: center;
 }
}
