* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
 /* ===== Seção Missão, Visão e Valores ===== */
.mvv-section {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
  position: relative;
}

.mvv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, #e6f0ff 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, #e6f0ff 0%, transparent 60%);
  opacity: 0.4;
  z-index: 0;
}

.mvv-section * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 36px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 17px;
  color: #555;
  margin-bottom: 50px;
}

.mvv-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mvv-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(13, 71, 161, 0.1);
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.mvv-card i {
  font-size: 36px;
  color: #0d47a1;
  margin-bottom: 15px;
}

.mvv-card h3 {
  color: #0d47a1;
  font-size: 22px;
  margin-bottom: 10px;
}

.mvv-card p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .mvv-grid {
    flex-direction: row;
    justify-content: center;
  }

  .mvv-card {
    flex: 1;
    max-width: 300px;
  }
}

/* ===== Seção Equipe ===== */
.equipe-section {
  background: #f5faff;
  padding: 100px 20px;
  text-align: center;
}

.equipe-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.equipe-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  max-width: 300px;
}

.equipe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 123, 255, 0.15);
}

.equipe-img {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
}

.equipe-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d47a1, #2196f3);
  padding: 4px;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.equipe-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.equipe-card h3 {
  color: #0d47a1;
  font-size: 20px;
  margin-bottom: 5px;
}

.equipe-card p {
  color: #555;
  font-size: 16px;
}

@media (min-width: 768px) {
  .equipe-grid {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}


/* História */
.historia-section {
  background: #f5faff;
  padding: 80px 20px;
  text-align: center;
}

.timeline {
  position: relative;
  margin: 40px auto;
  padding-left: 20px;
  max-width: 800px;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0d47a1;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 10px;
  width: 16px;
  height: 16px;
  background: white;
  border: 4px solid #0d47a1;
  border-radius: 50%;
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-content h3 {
  color: #0d47a1;
  margin-bottom: 5px;
}

.timeline-content p {
  color: #444;
}

/* Responsivo */
@media (max-width: 768px) {
  .timeline {
    padding-left: 10px;
  }

  .timeline-item {
    padding-left: 30px;
  }

  .timeline:before {
    left: 10px;
  }

  .timeline-item::before {
    left: 2px;
  }
}

/* Curiosidades */
.curiosidades-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.curiosidades-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.curiosidade-card {
  background: #e3f2fd;
  border-left: 6px solid#0d47a1;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.curiosidade-card:hover {
  transform: translateY(-6px);
}

.curiosidade-card h3 {
  color: #0d47a1;
  margin-bottom: 10px;
  font-size: 20px;
}

.curiosidade-card p {
  color: #333;
  font-size: 15px;
}

/* Responsivo */
@media (min-width: 768px) {
  .curiosidades-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* ===== Seção Clientes ===== */
.clientes-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #e8f2ff);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

/* Fundo com brilho tech sutil */
.clientes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(13, 71, 161, 0.06), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(33, 150, 243, 0.05), transparent 60%);
  z-index: 0;
}

.clientes-section * {
  position: relative;
  z-index: 1;
}

.clientes-section .section-title {
  font-size: 36px;
  color: #0d47a1;
  margin-bottom: 15px;
}

.clientes-section .section-subtitle {
  font-size: 17px;
  color: #555;
  margin-bottom: 60px;
}

/* Swiper Configuração */
.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  max-width: 180px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  filter: grayscale(100%);
  opacity: 0.8;
  transform: scale(0.95);
}

.swiper-slide:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08) rotate(1deg);
  box-shadow: 0 12px 40px rgba(0, 123, 255, 0.15);
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Adaptação responsiva */
@media (max-width: 768px) {
  .clientes-section {
    padding: 70px 15px;
  }
  .swiper-slide {
    max-width: 120px;
    padding: 15px;
  }
  .section-title {
    font-size: 28px;
  }
}

/* Tema escuro */
body.dark-mode .clientes-section {
  background: linear-gradient(135deg, #0d1117, #1b2735);
}

body.dark-mode .clientes-section .section-title {
  color: #90caf9;
}

body.dark-mode .clientes-section .section-subtitle {
  color: #ccc;
}

body.dark-mode .swiper-slide {
  background: #1e2a3a;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  filter: grayscale(100%) brightness(0.9);
}

body.dark-mode .swiper-slide:hover {
  filter: grayscale(0%) brightness(1.1);
  box-shadow: 0 10px 30px rgba(33,150,243,0.3);
}


/* CTA Contato */
.cta-contato {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta-contato h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-contato p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #e3f2fd;
}

.btn-cta {
  display: inline-block;
  background-color: #ffffff;
  color: #0d47a1;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.btn-cta:hover {
  background-color: #e3f2fd;
  transform: scale(1.05);
}
/* ===== Seção Sobre Resumo ===== */
.sobre-resumo {
  position: relative;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

/* Overlay gradiente elegante */
.sobre-resumo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 10, 40, 0.8) 0%, rgba(13, 71, 161, 0.6) 100%);
  backdrop-filter: blur(2px);
  z-index: 0;
}

/* Efeito de partículas sutis */
.sobre-resumo::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: floatParticles 60s linear infinite;
  z-index: 0;
  opacity: 0.6;
}

@keyframes floatParticles {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

.sobre-resumo > * {
  position: relative;
  z-index: 1;
}

/* ===== Conteúdo principal ===== */
.sobre-resumo .section-title {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sobre-resumo p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: #e6e6e6;
}

/* Botão */
.btn-sobre {
  display: inline-block;
  padding: 14px 34px;
  background: #00bfff;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.3);
}

.btn-sobre:hover {
  background: #0099e6;
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 191, 255, 0.4);
}

/* ===== Valores da empresa ===== */
.valores-empresa {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.valor-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px 20px;
  width: 280px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.valor-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.valor-item i {
  font-size: 2rem;
  color: #00bfff;
  margin-bottom: 15px;
}

.valor-item h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.valor-item p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
  .sobre-resumo {
    padding: 80px 15px;
  }

  .sobre-resumo .section-title {
    font-size: 2rem;
  }

  .valor-item {
    width: 90%;
  }
}

/* Valores da Empresa */
.valores-empresa {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

.valor-item {
  max-width: 260px;
  padding: 20px;
  background: rgb(232, 232, 232);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.valor-item:hover {
  transform: translateY(-5px);
}

.valor-item img {
  width: 60px;
  margin-bottom: 15px;
}

.valor-item h3 {
  color: #0d47a1;
  font-size: 20px;
  margin-bottom: 10px;
}

.valor-item p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* Responsivo - Valores e Sobre */
@media (max-width: 768px) {
  .sobre-resumo {
    padding: 60px 15px;
  }

  .sobre-resumo .section-title {
    font-size: 26px;
  }

  .sobre-resumo p {
    font-size: 16px;
    padding: 0 10px;
  }

  .valores-empresa {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
  }

  .valor-item {
    width: 100%;
    max-width: 90%;
    padding: 20px;
  }

  .valor-item img {
    width: 50px;
  }

  .valor-item h3 {
    font-size: 18px;
  }

  .valor-item p {
    font-size: 14px;
  }

  .btn-sobre {
    padding: 10px 24px;
    font-size: 14px;
  }
}
