@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@400;500;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
/* Banner Quem Somos */
.banner-quemsomos {
  position: relative;
  width: 100%;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(to right,   rgba(41, 38, 39, 0.85),
    rgba(24, 46, 61, 0.85)),
    url('../imag/authentic-small-youthful-marketing-agency.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 20px;
}

.banner-content {
  display: flex;
  justify-content:center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  color: #fff;
  flex-wrap: wrap;
  margin-top: 100px;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.info-boxes {
  display: flex;
  gap: 20px;
  background-color: transparent;
  border: 2px solid #A8161F;
  border-radius: 50px;
  padding: 10px 20px;
  flex-wrap: wrap;
  justify-content: center; /* 🔥 centraliza horizontal */
  align-items: center;     /* 🔥 centraliza vertical */
  text-align: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item .icon {
  font-size: 2rem;
  color: #f8f6f6;
}

.info-item h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #fff;
}

.info-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #ddd;
}

/* Responsividade */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .info-boxes {
    flex-direction: column;
    align-items: center;
    border-width: 1.5px;
  }
}
  
  @keyframes slideInRight {
    from {
      transform: translateX(50px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
/* ===== SEÇÃO ===== */
.estrutura {
  padding: 80px 20px;
  background: #f7f7f7;
  font-family: 'Poppins', sans-serif;
  margin-bottom:60px;
}

.estrutura-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ===== IMAGEM ===== */
.estrutura-imagem {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.estrutura-imagem img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #A8161F;
  z-index: 2;
}

/* círculo decorativo */
.circulo-decorativo {
  position: absolute;
  left: -30px;
  bottom: 40px;
  width: 120px;
  height: 120px;
  background: #A8161F;
  border-radius: 50%;
  z-index: 1;
}

/* ===== CONTEÚDO ===== */
.estrutura-conteudo {
  flex: 2;
  background: #fff;
  padding: 50px 60px;
  position: relative;
  color: #0000;
 
}

.estrutura-conteudo h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
color: #A8161F;
}

.estrutura-conteudo .linha {
  display: block;
  width: 60px;
  height: 6px;
  background: #A8161F;
  margin-bottom: 25px;
}

.estrutura-conteudo p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  text-align: justify;
  color:#000;
}

/* detalhe quadrado */
.estrutura-conteudo::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  background: #fff;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .estrutura-container {
    flex-direction: column;
    text-align: center;
  }

  .estrutura-imagem img {
    width: 280px;
    height: 280px;
  }

  .estrutura-conteudo {
    padding: 40px 30px;
  }

  .estrutura-conteudo p {
    max-width: 100%;
  }

  .estrutura-conteudo .linha {
    margin: 0 auto 25px;
  }
}

@media (max-width: 480px) {
  .estrutura-imagem img {
    width: 220px;
    height: 220px;
  }

  .estrutura-conteudo h2 {
    font-size: 26px;
  }

  .estrutura-conteudo p {
    font-size: 15px;
  }
}

 /* SECTION */
.valores-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  margin-top: 60px;
}

/* CONTAINER */
.valores-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.valor-card {
  background-color: #fff;
  color: #000;
  width: 300px;
  padding: 35px 25px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
}

/* ACTIVE */
.valor-card.active {
  opacity: 1;
  transform: translateY(0);
}

.valor-card:hover {
  transform: translateY(-8px);
}

/* ICON IMAGE */
.valor-card .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f2f2f2;
  border-radius: 50%;
}

.valor-card .icon img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/* TITLES */
.valor-card h3 {
  font-size: 1.6rem;
  color: #A8161F;
  margin-bottom: 15px;
}

/* TEXT */
.valor-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .valor-card {
    width: 90%;
    max-width: 380px;
  }

  .valor-card .icon {
    width: 130px;
    height: 130px;
  }

  .valor-card .icon img {
    width: 60px;
    height: 60px;
  }

  .valor-card p {
    text-align: center;
  }
}

