/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(180deg, #f4f9ff, #eef4ff);
  color: #1f2937;
}


/* ================= HEADER ================= */
header {
  background: linear-gradient(135deg, #0b5ed7, #1d4ed8);
  color: white;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.logo {
  font-weight: 700;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #fde047; /* amarelo tech */
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* ================= TOPO ================= */
.topo {
  max-width: 1200px;
  margin: 20px auto 0;          /* centraliza e dá respiro */
  padding: 0 16px;
}

.topo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;          /* BORDAS ARREDONDADAS */
  box-shadow: 0 20px 50px rgba(0,0,0,0.25); /* SOMBRA */
}

/* ================= CTA + REDES ================= */
.cta-redes {
  text-align: center;
  padding: 16px 12px 20px;   /* COMPACTO */
}

.cta-redes button {
  background: red;
  color: yellow;
  border: none;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;           /* BEM PRÓXIMO */
}

.redes img {
  width: 26px;
  height: 26px;
}

/* ================= SEÇÕES ================= */
section {
  padding: 48px 20px;        /* MENOS ESPAÇO */
  max-width: 1100px;
  margin: auto;
}

section h2 {
  font-size: 26px;
  margin-bottom: 14px;
  color: #0b5ed7;
}

section p {
  font-size: 16px;
  line-height: 1.6;
}

.bg {
  background: linear-gradient(135deg, #eaf2ff, #dbeafe);
}

/* ================= CARDS ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  list-style: none;
}

.cards li {
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-size: 15px;
}

/* ================= GALERIA ================= */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.galeria img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
}

/* ================= FOOTER ================= */
footer {
  background: #0b5ed7;
  color: white;
  text-align: center;
  padding: 16px;
  font-size: 14px;
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.img-ampliada {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: 5% auto;
  border-radius: 16px;
}

.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 34px;
  color: white;
  cursor: pointer;
}

/* ================= MOBILE FINO ================= */
@media (max-width: 600px) {
  section {
    padding: 36px 16px;
  }

  section h2 {
    font-size: 22px;
  }

  .cta-redes button {
    font-size: 15px;
    padding: 10px 24px;
  }

  .galeria img {
    height: 150px;
  }
}
.card-video h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0b5ed7;
  text-align: center;
}

/* PROPORÇÃO VERTICAL (Short) */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177%; /* 9:16 */
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.btn-projeto {
  margin-top: 20px;
}

.btn-projeto button {
  background: #0b5ed7;
  color: white;
  border: none;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-projeto button:hover {
  background: #094db5;
  transform: translateY(-2px);
}

/* ================= VÍDEOS ================= */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.video-card {
  background: white;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0b5ed7;
  text-align: center;
}

/* RESPONSIVO */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ================= CARROSSEL ================= */
.carousel {
  position: relative;
  max-width: 900px;      /* TAMANHO MEDIANO */
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  background: #000;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  min-width: 100%;
  max-height: 500px;     /* ALTURA MEDIANA */
  object-fit: contain;  /* MOSTRA FOTO INTEIRA */
  background: #000;     /* barras pretas se necessário */
}

/* BOTÕES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 32px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

/* MOBILE */
@media (max-width: 600px) {
  .carousel {
    max-width: 100%;
  }

  .carousel-track img {
    max-height: 300px;
  }
}

body {

  background-image: url("img/bg.jpg");
  background-repeat: repeat;          /* ou no-repeat */
  background-size: 1000px;              /* controla “força” do desenho */
  background-position: center;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.90); /* QUANTO MAIOR, MAIS CLARO */
  z-index: -1;
}

@media (max-width: 600px) {
  .topo {
    margin-top: 12px;
  }

  .topo img {
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.2);
    
  }
}

/* ================= EQUIPE ================= */
.equipe-section {
 
  padding: 80px 20px;
  text-align: center;
  color: white;

}

.equipe-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0769eb;
}

.equipe-sub {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 16px;
  opacity: 0.9;
}

/* GRID */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.equipe-card {
  background: rgb(208, 230, 248);
  color: #1f2937;
  border-radius: 22px;
  padding: 30px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.equipe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.equipe-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 1px solid #3c27f8;
}

.equipe-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.equipe-card span {
  font-size: 14px;
  color: #2563eb;
  font-weight: 600;
}

.equipe-card p {
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.5;
  color: #4b5563;
}

/* SOCIAL */
.equipe-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.equipe-social img {
  width: 30px;
  height: 30px;
}

.equipe-social img:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* MOBILE */
@media (max-width: 600px) {
  .equipe-section h2 {
    font-size: 28px;
  }
}








