* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

:root {
  --brand: #06145f;
  --muted: #f2f2f5;
}

/* HEADER */
.header {
  position: sticky;
  display: relative;
  top: 0;
  width: 100%;
  background: #f1ee27;        /* cor de fundo topo */
  z-index: 2000;
  box-shadow: 0 2px 10px rgba(207, 11, 11, 0.08);
}

.nav-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 150px;
  transition: matrix3d(0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}

/* MENU */
.nav-list {
  display: relative;
  display: flex;
  gap: 20px;
  list-style-type:none;
  background-color:#f1ee27;
}

.nav-list a {
  text-decoration: none;
  color: #070977;
  padding: 8px 12px;
  border-radius: 6px;
}

.nav-list a:hover {  /* efeito hover nos links do mrnu */
  background: #f1ee27;
  color:#fff;
  transition:lab(from color lightness channel_a channel_b alpha); 
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
 
}

/* BANNER */
.banner {
  margin-top:0px;
 
  width:auto;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0px;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 458px;
  width: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: .6s;
}

.slide.active {
  opacity: 1;
}




/* ===== BANNER FUNDO NOSSA EQUIPE ===== */
.equipe-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* SLIDES */
.equipe-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.equipe-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.equipe-slide.active {
  opacity: 1;
}

/* OVERLAY TRANSPARENTE */
.equipe-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* ajuste aqui */
  z-index: 2;
}

/* CONTEÚDO POR CIMA */
.equipe-content {
  position: relative;
  z-index: 3;
}

/* CARDS COM LEVE TRANSPARÊNCIA */
.equipe-banner .card {
  background: rgba(255, 255, 255, 0.9);
  color: #111;
}

/* MOBILE */
@media (max-width: 768px) {
  .equipe-banner {
    padding: 60px 0;
  }
}
































/* HERO */
.hero {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .hero {
    grid-template-columns: 1fr 350px;
  }
}


.btn {
  background: var(--brand);
  color: #e9e5e5;
  border: 0;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
}

/* SEÇÕES */
.section {
  padding: 80px 20px;
  text-align: center;
  font-size: 32px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #f1ee27;
    flex-direction: column;
    width: 200px;
    border-radius: 10px;
  }

  .nav-list {
  z-index: 1500;
}


  .nav-list.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .slides {
    height: 200px;
  }
}
.whatsapp-float {
  animation:pulse 2s infinite;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 2000;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
/* ===== BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #222;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* ===== SECTIONS ===== */
.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.section-light {
  background: #f5f5f5;
}

.section-dark {
  background: #111;
  color: #fff;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.section-dark .card {
  background: #1c1c1c;
  color: #fff;
}

/* ===== SERVIÇOS ===== */
.service-list {
  list-style:none;
  text-align: auto;
  margin-top: 20px;
}

.service-list li {
  font-size: 16px;
  padding: 10px 0;
  text-align: auto;
}







/* ===== BOTÃO WHATSAPP ===== */
.btn-whatsapp {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* ===== MENU MOBILE ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
  }

  .nav-list.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.section {
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map iframe {
    height: 250px;
  }
}

/* ===== AJUSTE FINO MOBILE ===== */
@media (max-width: 480px) {

  .cards {
    gap: 16px;
  }

  .card {
    padding: 20px;
    text-align: center;
  }

  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .card p {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-dark .card {
  background: #be1d1d;
  color: #fff;
}

.footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
}

.footer p {
  line-height: 1.6;
}
img,
iframe {
  max-width: 100%;
  height: auto;
}
