/* ============================================================
   RESET & VARIÁVEIS
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange:       #D94F00;
  --orange-light: #F05A00;
  --orange-dim:   rgba(217, 79, 0, 0.12);
  --dark:         #1A1A1A;
  --darker:       #111111;
  --darkest:      #0A0A0A;
  --white:        #FFFFFF;
  --gray:         #8A8A8A;
  --gray-light:   #2A2A2A;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--darkest);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}


/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 79, 0, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 250px;
  height: auto;
  object-fit: contain;
}

.nav-wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--orange-light);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to right,
    rgba(10,10,10,0.9),
    rgba(10,10,10,0.6),
    rgba(10,10,10,0.3)
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217, 79, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 79, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(217, 79, 0, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dim);
  border: 1px solid rgba(217, 79, 0, 0.3);
  padding: 6px 16px;
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-badge span {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 110px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  margin-top: 28px;
  font-size: 18px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 520px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 42px;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ============================================================
   BOTÕES GLOBAIS
   ============================================================ */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 16px 36px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}


/* ============================================================
   SEÇÃO GENÉRICA
   ============================================================ */
.section {
  padding: 100px 5vw;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 0.95;
}

.section-title em {
  color: var(--orange);
  font-style: normal;
}


/* ============================================================
   QUEM SOMOS
   ============================================================ */
.about-section {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 10, 10, 0.9)  0%,
      rgba(10, 10, 10, 0.6) 50%,
      rgba(10, 10, 10, 0.4) 100%
    ),
    url('./img/Joce-Gradiente.png') center / cover no-repeat;
  display: flex;
  justify-content: flex-end;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr auto; /* 👈 esquerda livre, direita ajustada */
}

.about-content {
  max-width: 520px;
  margin-left: 10;   /* 👈 empurra pra direita */
  margin-right: 125px; /* 👈 controla distância da borda */
}

.about-text {
  margin-top: 20px;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.about-stats .stat span {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  color: var(--orange);
  display: block;
}

.about-stats .stat p {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}


/* ============================================================
   SERVIÇOS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.service-card {
  background: var(--gray-light);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  background: #333;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 24px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

.service-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 64px;
  color: rgba(217, 79, 0, 0.08);
  line-height: 1;
  pointer-events: none;
}


/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff-section {
  background: var(--dark);
}

.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diff-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.diff-logo-big svg {
  width: 260px;
  height: 180px;
}

.diff-ring {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(217, 79, 0, 0.15);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.diff-ring-2 {
  position: absolute;
  inset: -60px;
  border: 1px solid rgba(217, 79, 0, 0.08);
  border-radius: 50%;
  animation: spin 30s linear infinite reverse;
}

.diff-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.diff-check {
  width: 32px; height: 32px;
  background: var(--orange-dim);
  border: 1px solid rgba(217, 79, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-check svg {
  width: 14px; height: 14px;
}

.diff-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.diff-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 4px;
}


/* ============================================================
   PROCESSO
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.process-step {
  padding: 36px 28px;
  background: var(--gray-light);
  position: relative;
}

.step-arrow {
  position: absolute;
  top: 50%; right: -12px;
  width: 24px; height: 24px;
  background: var(--orange);
  transform: translateY(-50%);
  z-index: 1;
}

.process-step:last-child .step-arrow {
  display: none;
}

.step-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}


/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials-section {
  background: var(--darkest);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--dark);
  padding: 36px 28px;
}

.stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  background: var(--orange-dim);
  border: 1px solid rgba(217, 79, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
}

.author-car {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--orange);
  padding: 100px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  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: 40px 40px;
}

.cta-section h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 80px);
  text-transform: uppercase;
  line-height: 0.92;
  position: relative;
}

.cta-section p {
  font-size: 18px;
  margin-top: 20px;
  opacity: 0.9;
  position: relative;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 18px 48px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-top: 40px;
  position: relative;
  transition: transform 0.15s, opacity 0.2s;
}

.btn-white:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}


/* ============================================================
   CONTATO
   ============================================================ */
.contact-section {
  padding: 100px 5vw;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--orange);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--gray-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--orange);
}

.form-field select option {
  background: var(--dark);
}

.form-field textarea {
  min-height: 100px;
}

.form-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: var(--orange-light);
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--darkest);
  padding: 40px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 250px;
  height: auto;
  object-fit: contain;
}


.footer-copy {
  font-size: 12px;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}


/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   HAMBURGUER BASE
   ========================= */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: white;
  display: block;
  transition: 0.3s;
}


/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    padding: 12px 20px;
  }

  .nav-logo img {
    width: 140px;
  }

  .nav-toggle {
    display: flex;
  }

  /* MENU LATERAL */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 35%;
    height: 100vh;
    background: #0a0a0a;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;

    transition: 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  /* HERO */
  .hero {
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* ABOUT */
  .about-section {
    padding: 80px 20px;
    background-position: center;
  }

  .about-wrapper {
    display: block;
  }

  .about-content {
    margin: 0;
    max-width: 100%;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  /* GRIDS */
  .services-grid,
  .diff-inner,
  .contact-grid,
  .process-steps,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* SEGURANÇA */
  section,
  .hero,
  .about-section,
  .diff-section {
    overflow: hidden;
  }

  * {
    max-width: 100%;
  }

  /* PERFORMANCE */
  .video-bg {
    display: none;
  }
  /* FOOTER MOBILE CLEAN */
@media (max-width: 768px) {

  footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* esconde texto */
  .footer-copy {
    display: none;
  }

  /* esconde links */
  .footer-links {
    display: none;
  }

  /* ajusta logo */
  .footer-logo img {
    width: 140px;
  }
}
}


/* ==============================
   SCROLL REVEAL
============================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }


/* ==============================
   SCROLL PROGRESS BAR
============================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  box-shadow: 0 0 2px rgba(217,79,0,0.5);
  background: linear-gradient(90deg, #D94F00, #F05A00);
  z-index: 9999;
  transition: width 0.2s ease;
}


/* ==============================
   LINKS CLICÁVEIS (MAPS)
============================== */

.contact-link,
.contact-link:visited,
.contact-link:hover,
.contact-link:active {
  text-decoration: none;
  color: inherit;
}