/* ====== RESET BÁSICO ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ====== ESTILOS GERAIS ====== */
body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  background-color: #f4f4f4; /* cor de fundo fora das seções */
  color: #ffffff;
}

h1,
h2,
h3 {
  font-weight: 700;
}

/* Cores principais extraídas das imagens */
:root {
  --verde-escuro: #234032;
  --rosa-fundo: rgb(249, 213, 223);
  --texto-titulo: rgb(249, 213, 223);
  --cinza-cartao: #2a4636;
  --rosa-cartao: rgb(249, 213, 223);
}

/* Centralização comum para títulos de seção */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  padding-top: 25px;
  padding-bottom: 25px;
}

/* Container principal de cada dobra para limitar largura */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

/* ====== DOBRA 1 – VÍDEO + TEXTO ====== */
.hero {
  background-color: var(--verde-escuro);
}

.hero-title {
  color: var(--texto-titulo);
}

.hero-content {
  display: flex;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
  padding-bottom: 40px;
  flex-wrap: wrap; /* mobile */
}

.hero-video {
  flex: 1 1 480px;
}

.hero-video iframe {
  width: 100%;
  height: 270px;
  border: none;
}

.hero-text-box {
  flex: 1 1 300px;
  background-color: var(--rosa-cartao);
  border-radius: 20px;
  padding: 20px 25px;
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
}

/* ====== DOBRA 2 – TEMAS ====== */
.themes {
  background-color: var(--rosa-fundo);
  color: #163022;
}

.themes-title {
  color: #234032;
}

.themes-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.theme-card {
  background-color: var(--cinza-cartao);
  color: #ffffff;
  border-radius: 18px;
  width: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.theme-card img {
  width: 100%;
  display: block;
  border-radius: 18px 18px 0 0;
}

.theme-card-body {
  padding: 18px 20px 22px;
}

.theme-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.theme-card p {
  font-size: 0.96rem;
  line-height: 1.5;
}

/* ====== DOBRA 3 – REDES SOCIAIS ====== */
.social {
  background-color: var(--verde-escuro);
}

.social-title {
  color: var(--texto-titulo);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 260px));
  justify-content: center;
  gap: 25px;
}

.social-card {
  background-color: var(--rosa-cartao);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #000;
  font-size: 1.05rem;
  font-weight: 600;
}

.social-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.social-card span {
  display: inline-block;
}

.social-card:hover {
  filter: brightness(0.97);
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-content {
    padding-bottom: 25px;
  }

  .hero-video iframe {
    height: 220px;
  }

  .themes-grid {
    gap: 18px;
  }

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

.container-imagem {
  position: relative;
  display: inline-block;
}
.img-grande {
  width: 500px; /* Tamanho exemplo */
  height: auto;
  display: block;
}
.img-pequena {
  position: absolute;
  bottom: 5px; /* Ajuste a margem inferior */
  right: 15px; /* Ajuste a margem direita */
  width: 50px; /* Tamanho da imagem pequena */
  height: auto;
}
