


header h1 {
  font-size: 2.7rem;
  margin: 0;
}

header p {
  margin-top: 14px;
  font-size: 1.1rem;
  color: #cbd5f5;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

/* ===== STORIES FULL WIDTH ===== */
.stories-full {
  width: 100%;
  height: 460px;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.story-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.story {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.story.active {
  opacity: 1;
}

.story img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,0.85), rgba(2,6,23,0.2));
}

.story-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  color: #ffffff;
  z-index: 2;
}

.story-text h3 {
  font-size: 1.9rem;
  margin: 0;
}

.story-text p {
  margin-top: 6px;
  font-size: 1rem;
  color: #cbd5f5;
}

.story-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(2,6,23,0.55);
  color: #ffffff;
  border: none;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.story-btn:hover {
  background: rgba(2,6,23,0.75);
}

.story-btn.prev { left: 20px; }
.story-btn.next { right: 20px; }


.story-btn:hover {
  background: rgba(2,6,23,0.75);
  transform: translateY(-50%) scale(1.08);
}

.story-btn.prev { left: 16px; }
.story-btn.next { right: 16px; }


.story-btn.prev { left: 20px; }
.story-btn.next { right: 20px; }

/* ===== SECTIONS (ESPAÇO REDUZIDO) ===== */
section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

section h2 {
  font-size: 1.9rem;
  margin-bottom: 40px;
  color: #0f172a;
}

/* ===== SERVIÇOS (ORIGINAL RESTAURADO) ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(2,6,23,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(2,6,23,0.12);
}

.service-link {
  text-decoration: none;
  color: inherit;
}

.service-link h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #1e40af;
}

.service-link p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #374151;
}

.service-cta {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1d4ed8;
}

/* ===== CONTATO ===== */
.contact {
  background: #e5e7eb;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
}


@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== QUEM SOMOS ===== */
.about {
  background: #ffffff;
  padding: 80px 20px;
}

.about-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-text h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: #1e40af;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(2,6,23,0.15);
}

/* Mobile */
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    margin-bottom: 24px;
  }
}
.story-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
}

.story-indicators span {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.story-indicators span.active {
  background: #1d4ed8;
  transform: scale(1.2);
}
/* ===== MENU MOBILE ===== */
.menu {
  position: relative;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #e5e7eb;
  cursor: pointer;
}

/* Desktop */
.menu-links {
  display: flex;
  gap: 20px;
}

/* Mobile */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .menu-links {
    position: absolute;
    right: 0;
    top: 56px;
    background: #020617;
    border-radius: 14px;
    padding: 14px 0;
    min-width: 200px;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    display: flex;
  }

  .menu-links a {
    padding: 12px 20px;
  }

  .menu-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
/* ===== CONTATO PROFISSIONAL ===== */
.contact-section {
  background: #f1f5f9;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
}

.contact-info {
  background: #ffffff;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(2,6,23,0.1);
  max-width: 600px;
}

.contact-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d4ed8;
  margin-bottom: 14px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #0f172a;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-item strong {
  font-size: 0.85rem;
  color: #1e40af;
  margin-bottom: 4px;
}

.contact-item span {
  font-size: 1rem;
  color: #0f172a;
}

/* ===== REDES SOCIAIS CONTATO ===== */
.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  background: #020617;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
  background: #1d4ed8;
}

.social-icons img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}
.team-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.team-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.team-text {
  flex: 1 1 400px;
}

.team-text h2 {
  font-size: 2.2rem;
  color:#0f172a; /* azul do seu site */
  margin-bottom: 15px;
}

.team-text p {
  color: #374151; /* cinza texto */
  line-height: 1.6;
}

.team-image {
  flex: 1 1 400px;
  text-align: center;
}

.team-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(2,6,23,0.15);
}


/* Responsivo */
@media(max-width: 768px){
  .team-content {
    flex-direction: column;
    text-align: left;
  }

 @media(max-width: 768px){
  .team-image img {
    width: 100%;
    margin-top: 20px;
  }
}

}
/* ===== AJUSTE DE ESPAÇAMENTO MOBILE ===== */
@media (max-width: 768px) {

  section {
    padding: 24px 16px;
  }

  section h2 {
    margin-bottom: 24px;
    font-size: 1.6rem;
  }

  .stories-full {
    height: 300px;
    margin: 24px 0;
  }

  .story-text {
    bottom: 24px;
  }

  .story-text h3 {
    font-size: 1.4rem;
  }

  .about {
    padding: 40px 16px;
  }

  .about-layout {
    gap: 24px;
  }

  .contact-section {
    padding: 40px 16px;
  }

  .contact-info {
    padding: 28px;
  }

  .team-section {
    padding: 40px 16px;
  }

}
/* ===== AJUSTES FINOS - SEÇÃO NOSSO TIME ===== */
.team-section h2 {
  font-size: 1.9rem;   /* menor que antes */
  margin-bottom: 12px; /* menos espaço para o texto */
}

.team-text p {
  margin-bottom: 0;
}

/* Reduz espaço interno da seção */
.team-section {
  padding-top: 40px;
  padding-bottom: 32px;
}

/* Aproxima a próxima seção (Contato) */
.team-section + .contact-section {
  padding-top: 40px;
}

/* Mobile */
@media (max-width: 768px) {

  .team-section h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .team-section {
    padding-top: 32px;
    padding-bottom: 24px;
  }

}
