:root {
  --azul: #0070f3;
  --azul-escuro: #141c24;
  --preto: #181a1b;
  --branco: #fff;
  --cinza: #f4f4f4;
  --cinza-escuro: #23272b;
  --borda: #e5e7eb;
  --sombra: 0 2px 12px #0002;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--preto);
  color: var(--branco);
  min-height: 100vh;
  line-height: 1.6;
}

/* TOPO E MENU */
.topbar {
  width: 100%;
  background: var(--preto);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
  box-shadow: var(--sombra);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.logo span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--azul);
  letter-spacing: 1px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s;
  padding: 8px 0;
  position: relative;
}

.menu a:hover {
  color: var(--azul);
}

.menu .cta-btn {
  background: var(--azul);
  color: var(--branco);
  font-weight: 700;
  padding: 8px 22px;
  border: none;
  border-radius: 24px;
  margin-left: 12px;
  box-shadow: 0 2px 12px #0070f344;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  font-size: 1rem;
}

.menu .cta-btn:hover {
  background: #0051a8;
  transform: scale(1.04);
}

.social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 18px;
}

.social a {
  color: var(--azul);
  font-size: 1.3rem;
  transition: color 0.2s;
}

.social a:hover {
  color: #fff;
}

.spacer {
  height: 72px;
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px 20px;
  background: linear-gradient(120deg, var(--preto) 60%, var(--azul) 100%);
  min-height: 350px;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--azul);
  text-shadow: 0 2px 8px #0008;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--cinza);
}

.cta-btn {
  background: var(--azul);
  color: var(--branco);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 38px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 24px #0070f355;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background: #0051a8;
  transform: scale(1.04);
}

/* PRODUTOS */
.produtos {
  background: var(--cinza);
  color: var(--preto);
  padding: 48px 0;
  text-align: center;
}

.produtos h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--azul);
}

.produtos-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.produto {
  background: var(--branco);
  border-radius: 18px;
  box-shadow: 0 2px 16px #0001;
  padding: 32px 24px;
  width: 260px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.produto:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #0070f322;
}

.produto img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 1px 6px #0001;
}

.produto h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--azul);
}

.produto p {
  font-size: 0.98rem;
  color: #333;
}

/* SOBRE */
.sobre {
  background: #181c20;
  color: var(--cinza);
  padding: 48px 20px;
  text-align: center;
}

.sobre h3 {
  color: var(--azul);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.sobre p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: justify;
}

/* EQUIPE */
.equipe {
  background: #181c20;
  padding: 40px 0 30px 0;
  text-align: center;
  color: #fff;
}

.equipe h3 {
  color: var(--azul);
  font-size: 1.7rem;
  margin-bottom: 32px;
  font-weight: 700;
}

.equipe-lista {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.membro {
  background: #23272b;
  border-radius: 18px;
  box-shadow: 0 2px 16px #0002;
  padding: 32px 24px 24px 24px;
  max-width: 320px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.membro:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #0070f322;
}

.foto-equipe {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  border: 3px solid var(--azul) !important;
  margin-bottom: 16px !important;
  background: #fff !important;
  display: block !important;
}

.cargo {
  color: var(--azul);
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 4px;
}

.membro h4 {
  margin-bottom: 4px;
  font-size: 1.15rem;
  font-weight: 700;
}

.membro p {
  font-size: 1rem;
  color: #e0e6ed;
  margin-bottom: 0;
}

/* CONTATO */
.contato {
  background: #181c20;
  color: var(--branco);
  padding: 40px 0 0 0;
  text-align: center;
}

.contato h3 {
  color: var(--azul);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.contato p, .contato ul {
  font-size: 1.08rem;
  margin-bottom: 12px;
}

.contato ul {
  list-style: none;
  padding: 0;
}

.contato a {
  color: var(--azul);
  text-decoration: none;
}

.contato a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #101214;
  color: var(--cinza);
  text-align: center;
  padding: 24px 0 0 0;
  font-size: 0.98rem;
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--azul);
  font-size: 2rem;
  cursor: pointer;
  margin-left: 18px;
  z-index: 201;
}

.menu-mobile {
  display: none;
  align-items: center;
  gap: 24px;
}

.menu-mobile.open {
  display: flex;
}

.menu-mobile a,
.menu-mobile .cta-btn {
  color: var(--branco);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 8px 0;
  position: relative;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #222;
  background: none;
  margin: 0;
}

.menu-mobile .cta-btn {
  background: var(--azul);
  color: var(--branco);
  border-radius: 18px;
  padding: 8px 18px;
  font-weight: 700;
  margin-top: 6px;
}

.menu-mobile .cta-btn:hover {
  background: #0051a8;
}

.menu-mobile .social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 18px;
  padding: 10px 24px 0 24px;
  margin: 0;
}

.menu-mobile .social a {
  color: var(--azul);
  font-size: 1.3rem;
  transition: color 0.2s;
}

.menu-mobile .social a:hover {
  color: #fff;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .topbar { padding: 0 12px; }
  .produtos-lista { flex-wrap: wrap; }
  .produto { width: 45%; }
}

@media (max-width: 700px) {
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 8px;
  }
  .logo img { height: 32px; }
  .logo span { font-size: 1rem; }
  .menu { display: none; }
  .menu-toggle { display: block; }
  .menu-mobile {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100vw;
    background: var(--preto);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 4px 16px #0003;
    z-index: 200;
    padding: 12px 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .menu-mobile.open {
    display: flex;
  }
  .spacer { height: 56px; }
  .produtos-lista { flex-direction: column; align-items: center; }
  .produto { width: 90%; }
  .equipe-lista { flex-direction: column; align-items: center; gap: 24px; }
  .membro { width: 90%; min-width: unset; max-width: 400px; }
}

@media (max-width: 600px) {
  .topbar { padding: 0 4px; }
  .logo img { height: 28px; }
  .logo span { font-size: 0.95rem; }
  .spacer { height: 56px; }
}

.equipe {
  background: #181c20;
  padding: 40px 0 30px 0;
  text-align: center;
  color: #fff;
}

.equipe h3 {
  color: #0070f3;
  font-size: 1.7rem;
  margin-bottom: 32px;
  font-weight: 700;
}

.equipe-lista {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.membro {
  background: #23272b;
  border-radius: 18px;
  box-shadow: 0 2px 16px #0002;
  padding: 32px 24px 24px 24px;
  max-width: 320px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.membro:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #0070f322;
}

.cargo {
  color: #0070f3;
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 4px;
}

.membro h4 {
  margin-bottom: 4px;
  font-size: 1.15rem;
  font-weight: 700;
}

.membro p {
  font-size: 1rem;
  color: #e0e6ed;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .equipe-lista {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .membro {
    width: 90%;
    min-width: unset;
    max-width: 400px;
  }
}
.footer {
  background: linear-gradient(90deg, #141c24 60%, #0070f3 100%);
  color: #fff;
  padding: 36px 0 18px 0;
  font-size: 1rem;
  margin-top: 40px;
  box-shadow: 0 -2px 16px #0002;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 12px auto;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 38px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 2px 8px #0001;
}

.footer-logo span {
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.footer-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.2s;
  margin-top: 2px;
}

.footer-links a:hover {
  color: #ffe600;
}

.footer-links a:hover::after {
  width: 100%;
  background: #ffe600;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  color: #ffe600;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: #fff;
  transform: scale(1.15);
}

.footer-copy {
  text-align: center;
  color: #e0e6ed;
  font-size: 0.98rem;
  margin-top: 12px;
  opacity: 0.85;
}

.footer-copy span {
  color: #ffe600;
  font-size: 0.98rem;
  display: block;
  margin-top: 2px;
}

@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 8px;
  }
  .footer-logo img {
    height: 32px;
  }
  .footer-links {
    gap: 16px;
  }
  .footer-social {
    gap: 12px;
  }
}