/* GERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  background: var(--gray-100);
  color: var(--blue);
}

:root {
  --blue: #040fd9;
  --orange: #f28322;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --black: #000000;
  --green: #22c55e;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LETRAS */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}

/* HEADER */

header {
  background: var(--white);
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  top: 0;
  left: 0;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo img {
  height: 80px;
  width: auto;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 5rem;
  margin-left: -8rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  text-shadow: #000000;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background: var(--white);
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 0;
  margin: 0;
  width: 100%;
  padding: 1rem 0;
}

.nav-mobile ul li {
  width: 100%;
}

.nav-mobile ul li a {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.nav-mobile ul li a:hover {
  background: var(--gray-100);
  color: var(--blue);
  border-left-color: var(--orange);
}

/* HERO SERVIÇO */
.hero-servico {
  display: flex;
  justify-content: center; /* centraliza horizontal */
  align-items: center;     /* centraliza vertical */
  text-align: center;      /* já estava */
  height: 45vh;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: linear-gradient(135deg, #3e5cc0 0%, #1657e4 50%, #1e3a8a 100%);
  padding: 8rem 0 4rem;
  color: var(--white);
}


.efeito-luz {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  transition: background 0.1s ease;
}

.hero-servico .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;           /* ao invés de grid */
  flex-direction: column;  /* empilha verticalmente */
  align-items: center;     /* centraliza horizontalmente */
  justify-content: center; /* centraliza verticalmente dentro do container */
  text-align: center;
  position: relative;
  z-index: 1;
  gap: 1rem;               /* espaço entre elementos */
}


.hero-servico-content {
   margin: 0 auto;
}
.hero-servico-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1.2;
  margin: 0 auto;
}

.titulo-laranja {
  color: var(--orange);
}

.hero-servico-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.sobre-hero {
  margin: 0 auto;
  align-items: center;
  background: linear-gradient(135deg, #3e5cc0 0%, #1657e4 50%, #1e3a8a 100%);
}

/* INTRODUÇÃO DO SERVIÇO */
.servico-intro {
  padding: 5rem 0;
  background: var(--white);
}

.servico-intro .container {
  max-width: 70%;
  margin: 0 auto;
  padding: 0 1rem;
  display: block;
}

.intro-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.secao-cabecalho {
  text-align: center;
  margin-bottom: 2rem;

}

.cabecalho-icone {
  display: inline-flex;
  gap: 0.5rem;
  background: #f28322d0;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.secao-cabecalho h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  justify-content: left;
  text-align: left;
}

.intro-texto p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.125rem;
}

.intro-beneficios {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
  font-weight: 500;
}

.beneficio i {
  color: var(--orange);
  font-size: 1.25rem;
}

.intro-imagem img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* TIPOS DE SERVIÇOS / MISSÃO VISÃO VALORES */
.tipos-servicos {
  padding: 5rem 0;
  background: var(--gray-100);
}

.tipos-servicos .container {
  display: flex;
  width: 90%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 100%;
  width: 100%;
  align-items: stretch; /* faz todos os cards terem mesma altura */
}

.secao-cabecalho h2 {
 text-align: center;
}

.servico-item {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--orange);
}

.servico-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.servico-icone {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--orange), #e07420);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.servico-icone i {
  font-size: 2rem;
  color: var(--white);
}

.servico-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--blue);
}

.servico-item p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.missao-visao-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.valores-card {
  min-height: 280px; /* mesma altura dos outros cards */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.valores-lista {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: grid;
  grid-template-columns: 1fr; /* só uma coluna */
  gap: 10px; /* espaço entre itens */
}

.valores-lista li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
  padding: 10px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.valores-lista li:hover {
  background: rgba(255, 107, 0, 0.1);
  transform: translateX(5px);
}

.valores-lista li i {
  color: #ff6b00;
  font-size: 18px;
}

/* VANTAGENS DO SERVIÇO / DIFERENCIAIS */
.vantagens-servico {
  padding: 5rem 0;
  background: var(--white);
}

.vantagens-servico .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
}

.vantagem-item {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.vantagem-item h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--blue);
}

.vantagem-item p {
  color: var(--gray-600);
  line-height: 1.6;
}

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

.diferencial-item {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.diferencial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #ff6b00;
}

.diferencial-icone {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.diferencial-icone i {
  color: white;
  font-size: 32px;
}

.diferencial-item h4 {
  font-size: 22px;
  color: #1a1a2e;
  margin-bottom: 15px;
  font-weight: 700;
}

.diferencial-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.diferencial-detalhes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.diferencial-detalhes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #444;
  font-size: 14px;
}

.diferencial-detalhes li::before {
  content: "✓";
  color: #ff6b00;
  font-weight: bold;
  font-size: 16px;
}

/* CTA FINAL */
.cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, #3e5cc0 0%, #1657e4 50%, #1e3a8a 100%);
  color: var(--white);
  text-align: center;
}

.cta-final .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  justify-content: center;
  display: block;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-botoes {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.botao-principal {
  background: var(--white);
  color: var(--blue);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.botao-principal:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.botao-secundario {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.botao-secundario:hover {
  background: var(--white);
  color: var(--blue);
}

/* FOOTER */

.footer {
  background: #111827;
  color: white;
  padding: 3rem 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 150px;
  height: auto;
  border-radius: 50%;
}

.footer-brand-text h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: white;
}

.footer-brand-text p {
  font-size: 0.875rem;
  color: white;
}

.footer-description {
  color: #9ca3af;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  width: 98%;
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  header .container {
    padding: 0 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  nav:not(.nav-mobile) {
    display: none;
  }

  .logo img {
    height: 60px;
  }

  .hero-servico .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-servico-content h1 {
    font-size: 2rem;
  }

  .intro-content {
    grid-template-columns: 1fr;
  }

  .intro-beneficios {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-botoes {
    flex-direction: column;
  }

  .vantagens-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .valores-card {
    grid-column: span 1;
  }

  .valores-lista {
    grid-template-columns: 1fr;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .hero-servico {
    padding: 6rem 0 3rem;
  }

  .nav-mobile ul li a {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}
