@font-face {
  font-family: "Effra";
  src: url("./font/Effra-Regular.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Effra", "Arial", Helvetica, sans-serif;
  background-color: #e5e0d3;
  color: #2c2c2c;
}

.page {
  max-width: 768px;
  margin: 0 auto;
  background-color: #e5e0d3;
}

/* ===== HEADER ===== */
.header {
  position: relative;
  width: 100%;
  background: #38363c url("img/cabecalho.png") center / cover no-repeat;
  color: #fff;
}

.header__inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 45px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px 35px;
}

.header__logo {
  line-height: 0.85;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header__logo .acoes {
  font-family: bebas-neue, "Arial Black", sans-serif;
  font-size: 70px;
  font-weight: 900;
  color: #6fbf3c;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.header__logo .festval {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  margin-top: 6px;
}

.header__info {
  flex: 1 1 320px;
  max-width: 360px;
  padding-top: 8px;
}

.header__info h1 {
  /* font-size: 24px; */
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.header__info p {
  /* font-size: 14px; */
  line-height: 1.6;
  max-width: 320px;
}

/* ===== CONTENT ===== */
.content {
  padding: 45px 30px;
}

.action {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  align-items: center;
}

.action__media {
  flex-shrink: 0;
  width: 165px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.action__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.action__media.stacked {
  flex-direction: column;
  gap: 8px;
  height: auto;
}

.action__media.stacked img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.action__media.stacked img+img {
  margin-top: 0;
}

.action__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.action__body h2 {
  font-family: bebas-neue, "Arial Black", sans-serif;
  /* font-size: 26px; */
  letter-spacing: 0.5px;
  color: #2c2c2c;
  margin-bottom: 6px;
}

.action__body p {
  /* font-size: 13.5px; */
  line-height: 1.55;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.action__body p:last-child {
  margin-bottom: 0;
}

.action__list {
  display: flex;
  gap: 40px;
  /* font-size: 13.5px; */
  line-height: 1.7;
  margin-top: 6px;
}

.action__list ul {
  list-style: none;
}

/* Small icon based actions */
.action--icon .action__media {
  width: 165px;
  height: 150px;
}

.action--icon {
  align-items: center;
}

.action--icon .action__body h2 {
  /* font-size: 20px; */
}

/* Seja calma ribbon icon inline with title */
.action__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.action__title-row img {
  width: 30px;
}

.action__title-row h2 {
  margin-bottom: 0;
}

/* logo-only rows (mamae festval / retorna machine text without heading) */
.action--simple .action__body p:first-child {
  /* font-size: 13.5px; */
}

.action--simple .action__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Footer logo */
.footer {
  display: flex;
  justify-content: center;
  padding: 20px 0 50px;
}

.footer img {
  width: 150px;
}

@media (max-width: 600px) {
  .header {
    background-size: 100% 100%;
  }

  .header__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 24px;
  }

  .header__logo,
  .header__info {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .header__logo {
    margin: 0 auto;
  }

  .header__info {
    max-width: 420px;
    padding-top: 0;
    flex: 1 1;
  }

  .header__info p {
    margin: 0 auto;
  }

  .action {
    flex-direction: column;
  }

  .action__media {
    width: 100%;
    max-width: 220px;
  }

  .action--icon .action__media {
    width: 100%;
    max-width: 220px;
    height: 150px;
  }

  .action__list {
    flex-direction: column;
    gap: 4px;
  }
}