/* Hero Section */
.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../../img/hero-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.151);
  z-index: 0;
}

.hero-section .hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-section h1 {
  color: var(--branco);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 600px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 500px;
}

@media (max-width: 768px) {
  .hero-section {
    height: 400px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* =========================
   SEÇÃO PRODUTOS
========================= */
.section-produtos {
  padding: 50px 0 100px;
  background: #fff;
}

.produtos-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* Conteúdo */
.produtos-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 16px;
}

.produtos-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 40px;
}

.produtos-text a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

/* Grid produtos */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.produto-card {
  background: #fff;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  color: #111;
  transition: transform .2s ease;
}

.produto-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 12px;
}

.produto-card span {
  font-size: 13px;
  font-weight: 500;
}

.produto-card:hover {
  transform: translateY(-4px);
}

/* Aside */
.produtos-aside {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  height: fit-content;
}

.produtos-aside a {
  color: var(--azul-escuro);
}

.aside-top {
  background: #f7f7f7;
  padding: 24px;
  border-bottom: 3px solid var(--azul-escuro);
}

.aside-top h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.aside-top span {
  font-size: 13px;
  color: #777;
}

.aside-body {
  padding: 24px;
}

.aside-body p {
  font-size: 13px;
  color: #000000;
  margin-bottom: 16px;
}

.aside-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aside-body li {
  font-size: 13px;
  color: #111;
  margin-bottom: 8px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 991px) {
  .produtos-wrapper {
    grid-template-columns: 1fr;
  }

  .produtos-grid {
    grid-template-columns: 1fr;
  }
}

.who-we-are {
  padding: 100px 0;
  background: var(--azul-escuro);
  font-family: 'Inter', sans-serif;
}

.who-we-are .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Esquerda */
.who-we-are h2 {
  color: #fff;
}

.content-left p {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 15px;
  max-width: 520px;
}

/* Botões */
.buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn {
  padding: 12px 22px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn.secundary {
  background: #fff;
  color: var(--azul-escuro);
  font-weight: 600;
}

.btn.secundary:hover {
  background: #b8b8b8;
  color: #183e58;
}

.btn.primary {
  background: var(--azul-escuro);
  color: #ffffff;
  font-weight: 600;
}

.btn.primary:hover {
  background: #183e58;
  color: #fff;
}

.btn.outline {
  border: 1px solid #ddd;
  color: #333;
}

.btn.outline:hover {
  border-color: var(--azul-escuro);
  color: var(--azul-escuro);
}

/* Direita */
.content-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item .icon {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.info-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #ffffff;
}

.info-item p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
}

/* Responsivo */
@media (max-width: 992px) {
  .who-we-are .container {
    grid-template-columns: 1fr;
  }
}

.news-section {
  padding: 100px 0 50px;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

/* Cabeçalho */
.news-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.news-header .subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
  display: block;
  margin-bottom: 10px;
}

.news-header p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Grid */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Card */
.news-card {
  display: flex;
  gap: 25px;
}

.news-card.vertical {
  flex-direction: column;
}

.news-card img {
  width: 260px;
  height: 180px;
  object-fit: cover;
}

.news-card.vertical img {
  width: 100%;
  height: 320px;
}

/* Conteúdo */
.news-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
  line-height: 1.4;
}

.news-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Responsivo */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    flex-direction: column;
  }

  .news-card img {
    width: 100%;
    height: 260px;
  }
}
