/* ===================== QUEM SOMOS ===================== */
.quem-somos.cinematic {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  background: #fff,
              url('https://i.ibb.co/YkJtC3v/textura-concreto.jpg') center/cover no-repeat;
  color: #fff;
}

.quem-somos .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  align-items: center;
}

/* Texto */
.text-content {
  flex: 1 1 500px;
  min-width: 280px;
}

.text-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: black; /* Ajustado para contraste */
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: black;
}

/* Ícones/pilares */
.icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: flex-start;
}

.icon-box {
  background: rgba(120, 118, 118, 0.297);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 120px;
  min-width: 100px;
}

.icon-box img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.icon-box h3 {
  margin: 0;
  color: black;
  font-size: 1rem;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* Modal dos pilares */
.pillar-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(128, 126, 126, 0.6);
}

@supports (backdrop-filter: blur(5px)) {
  .pillar-modal {
    backdrop-filter: blur(5px);
  }
}

.pillar-content {
  background: #E66E18;
  color: #0b0b0b;
  padding: 20px;
  border-radius: 15px;
  max-width: 50%;
  text-align: center;
  position: relative;
  margin: 10vh auto 0; /* 10% da altura da tela */
}

.pillar-content img {
  width: 40%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.pillar-content h3 {
  margin-top: 0;
  color: #0b0b0b;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Vídeo lateral */
.image-content {
  flex: 1 1 400px;
  min-width: 280px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.5);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.video-wrapper:hover video {
  transform: scale(1.3); /* Ajustado para melhor visibilidade */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.15);
}

/* ===================== RESULTADOS ===================== */
/* ===== BASE DA SEÇÃO ===== */
.results-section {
  padding: 60px 20px;
  background: #e66e188b;
  text-align: center;
}

.results-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: bold;
}

/* ===== GRID DE CARDS ===== */
.results-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

/* ===== CARD INDIVIDUAL ===== */
.result-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  width: 250px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.result-card.show {
  opacity: 1;
  transform: translateY(0);
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ===== ÍCONES ===== */
.result-card i {
  font-size: 2.5rem;
  color: #0C3B65;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.4s ease;
}

.result-card.pulse i {
  animation: pulse 1s ease-in-out 2;
}

@keyframes pulse {
  0% { transform: scale(1); color: #e66e18; }
  50% { transform: scale(1.2); color: #cd6013; }
  100% { transform: scale(1); color: #0C3B65; }
}

/* ===== NÚMEROS ===== */
.result-card h3 {
  font-size: 2rem;
  margin: 10px 0;
  color: #222;
  font-weight: bold;
}

/* ===== TEXTOS ===== */
.result-card p {
  font-size: 1rem;
  color: #555;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .results-cards {
    flex-direction: column;
    align-items: center;
  }
}


/* ===================== RESPONSIVO ===================== */
@media (max-width: 1024px) {
  .quem-somos .container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .quem-somos .container {
    flex-direction: column;
    text-align: center;
  }

  .video-wrapper {
    max-width: 100%;
    margin-top: 20px;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .icons {
    justify-content: center;
  }

  .icon-box {
    flex: 1 1 45%;
  }

  .results-cards {
    flex-direction: column;
    gap: 20px;
  }

  .result-card {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .icon-box {
    flex: 1 1 100%;
  }
}

/* ===== ESTILO DO TOOLTIP ===== */
.tooltip-box {
  position: absolute;
  max-width: 280px;
  background: #fff;
  color: #333;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
  line-height: 1.4;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.tooltip-box.show {
  opacity: 1;
  transform: translateY(0);
}

.tooltip-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: #e63946;
}

/* ESTILO DO BOX DE INFORMAÇÕES */
.info-box-section {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  padding: 0 10px;
}

.info-box {
  background: linear-gradient(135deg, #f8f8f8, #e0e0e0);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  padding: 25px 30px;
  max-width: 500px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.info-box h2 {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: #2d2d2d;
  text-align: center;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box ul li {
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
  color: #444;
}

.info-box ul li:last-child {
  border-bottom: none;
}

.info-box ul li strong {
  color: #000;
}

.crea-news-carousel {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: #fdfdfd;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}
.crea-news-carousel h2 {
  text-align: center;
  color: #004aad;
  margin-bottom: 20px;
}
.carousel-wrapper {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}
.carousel-wrapper::-webkit-scrollbar {
  height: 8px;
}
.carousel-wrapper::-webkit-scrollbar-thumb {
  background-color: #0077cc;
  border-radius: 4px;
}
.crea-news-card {
  flex: 0 0 250px;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}
.crea-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.crea-news-card h3 {
  font-size: 1.1em;
  color: #0077cc;
  margin: 0 0 10px 0;
}
.crea-news-card p {
  font-size: 0.9em;
  color: #333;
  flex-grow: 1;
}
.crea-news-card a {
  margin-top: 10px;
  font-weight: bold;
  color: #004aad;
  text-decoration: none;
}
.crea-news-card a:hover {
  color: #0077cc;
}
.carousel-buttons {
  text-align: center;
  margin: 15px 0;
}
.carousel-buttons button {
  background: #0077cc;
  color: white;
  border: none;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}
.carousel-buttons button:hover {
  background: #004aad;
}
.all-news-btn {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: #ffffff;
  background-color: #0077cc;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}
.all-news-btn:hover {
  background-color: #004aad;
}