:root {
--green-main: #399b3c;
--azure-tech: #1766a1;
--Azul-escuro: #111e2e;
--Ciano-Claro: #f2f6f6;
--Verde-fluorescente: #00ed32;
}

.bg-escuro {
    background-color: var(--Azul-escuro) !important;
}

body {
font-family: "Montserrat", sans-serif;
scroll-behavior: smooth;
}

/* Menu MOBILE */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(20, 24, 28, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.btn-menu {
    background:transparent;
    border: 0;
    padding: 8px;
}
.menu-icon {
    display: inline-block;
    width: 26px;
    height: 2px;
    background: #fff;
    position: relative;
}
.menu-icon::before,
.menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #fff;
}
.menu-icon::before{ top: -8px; }
.menu-icon::after{ top: 8px; }
.offcanvas-body{
    display: flex;
    flex-direction: column;
}
.offcanvas-body nav {
    padding-bottom: 24px;
}

/* CONTROLES GLOBAIS */
.section-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--Verde-fluorescente);
    margin-bottom: 1rem;
}
.section-lead {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 34ch;
}
.section-text {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 70ch;
    opacity: 0.9;
}
.statement {
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    font-weight: 700;
    line-height: 1.3;
    border-left: 4px solid var(--Verde-fluorescente);
    padding-left: 1rem;
    margin: 2rem 0;
}
.sub-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.list-clean {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.list-clean li {
    padding: .35rem 0;
}
.section-close {
    font-size: 1.05rem;
    opacity: 0.95;
    max-width: 70ch;
}
.card-title-sm{
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}
.text-tl {
    color: var(--Verde-fluorescente);
}
.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.timeline li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.t-step {
    width: 21px;
    height: 21px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 auto;
    background: #fff;
}
.t-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* Sidebar */
.sidebar {
    display:flex;
    flex-direction: column;
    width: 240px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: var(--Azul-escuro);
    border-right: 1px solid #909ba5;
    padding: 2rem 1.5rem;
    z-index: 1000;
}

.sidebar a {
    display: block;
    color: var(--Ciano-Claro);
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 500;
}

.sidebar a:hover {
    color: var(--Verde-fluorescente);
}

/* Main content offset */
.content {
    margin-left: 240px;
    width: calc(100% - 240px);
    min-height: 100vh;
}

section {
    padding: 6rem 3rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Lang DESKTOP */
.lang-switcher {
    margin-top: auto;
    padding-bottom: 24px;
}
.lang-switcher ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lang-switcher li {
  margin-bottom: 6px;
  
}
.lang-switcher a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.lang-switcher a:hover {
  opacity: 1;
}

/* Lang MOBILE */
.lang-switcher-mobile {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
}
.lang-switcher-mobile ul {
  display: flex;
  gap: 16px;
  list-style: none;
}
.lang-switcher-mobile a {
  font-weight: 600;
  color: var(--azure-tech);
  text-decoration: none;
}

/* Hero */
#hero {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    padding: 0;
    opacity: 1 !important;
    transform: none !important;
}
/* Video HOME */
.video-container {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.video-container video {
    position:absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.hero-title {
    color: var(--green-main);
    font-weight: 800;
    letter-spacing: .08em;
    font-size: clamp(2rem, 6vw, 5rem);
}
/* Rola para baixo :3 */
.scroll-down .arrow {
    display: inline-block;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    color: var(--azure-tech);
    line-height: 1;
    animation: bounce 2s infinite;
}

/* top */
#top{ 
    opacity: 1 !important;
    transform: none !important;
}
.top-pin {
    min-height: 200vh;
    background:var(--Azul-escuro);
}
.top-pin-inner {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
}
.top-entrance {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .9s ease, transform .9s ease;
    will-change: opacity, transform;
}
.top-entrance.is-in {
    opacity: 1;
    transform: translateX(0);
}
.top-title {
    font-weight: 900;
    line-height: 1.2;
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    max-width: 34ch;
}

/* Posicionamento */
#posicionamento {
    padding-left: 0;
    padding-right: 0;
}
.bloco-esquerda {
    max-width: 460px;
    padding-right: 2rem;
    text-align: right;
}
.bloco-direita {
    max-width: 520px;
    padding-left: 2rem;
}
.lista-esquerda, .lista-direita {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}
.lista-esquerda li {
    margin-bottom: .6rem;
}
.lista-direita li {
    margin-bottom: .6rem;
}
.text-tl-green {
    color: var(--Verde-fluorescente);
}

/* Para quem vendemos */
.feature-card {
  background: var(--Ciano-Claro);
  border: 1px solid var(--Ciano-Claro);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s ease;
}
.feature-card:hover {
  box-shadow: 0 12px 30px rgba(0, 255, 255, 0.391);
  transform: translateY(-4px);
}
.feature-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--Azul-escuro);
}
.feature-card p {
  color: var(--Azul-escuro);
  font-size: 15px;
  line-height: 1.6;
}
.feature-card li {
    color: #111e2e;
}
.feature-card .highlight {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #0d6efd;
}

/* manifesto */
.manifesto-section {
    background: #0e1311;
    color: rgba(255,255,255,0.85);
}
.manifesto-content {
    max-width: 760px;
}
.manifesto-line {
    font-size: clamp(1.2rem, 2.4vw, 1.2rem);
    line-height: 1.45;
    margin-bottom: 2.5rem;
}
.manifesto-strong {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 800;
}
.manifesto-highlight {
    color: var(--Verde-fluorescente);
    font-weight: 700;
}

/* CTA FInal */
#contato {
    opacity: 1 !important;
    transform: none !important;
}
.cta-bg{
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: var(--cta-bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.cta-bg .container {
    position: relative;
    z-index: 2;
}

/* Botão CTA */
.btn-primary {
background-color: #399b3c !important;
border: none !important;
}
.btn-primary:hover {
background-color: #2f7f31 !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    main.content {
        padding-top: 56px;
        width: 100%;
        margin-left: 0;
    }
    .video-container {
        height: calc(100vh - 56px);
    }
    .sidebar {
        display: none;
    }
    .nav a {
        color: var(--azure-tech) !important;
    }
    .bloco-esquerda {
        text-align: left;
        padding-right: 0;
        padding-left: 1.25rem;
        max-width: 100%;
    }
    .bloco-direita {
        padding-left: 1.25rem;
        padding-right: 0;
        max-width: 100%;
    }
}