:root{
  --radius: 18px;
}

*{
  box-sizing: border-box;
}

html, body{
  height: 100%;
}

body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #061a2b;
}

.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* FUNDO */
.hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* CONTEÚDO CENTRAL */
.hero__content{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* ARTE DO RETÂNGULO */
.panel__art{
  position: relative;
  width: min(980px, 100%);
  display: block;
}

.panel__art img{
  width: 100%;
  height: auto;
  display: block;
}

/* PAINEL DE CONTEÚDO */
.panel{
  position: absolute;
  width: min(980px, 100%);
  padding: 40px 56px;
  text-align: center;
  pointer-events: none;
}

/* REATIVA CLIQUES */
.panel__actions,
.panel__actions *{
  pointer-events: auto;
}

/* LOGO */
.panel__logo{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.panel__logo img{
  max-width: 220px;
  width: 100%;
  height: auto;
}

/* TÍTULO */
.panel__title{
  margin: 0 0 14px 0;
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: 2px;
  font-weight: 900;
  color: #ffd200;
}

/* TEXTO */
.panel__text{
  margin: 0 auto 22px auto;
  max-width: 820px;
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}

/* AÇÕES */
.panel__actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* BOTÕES / LOGOS */
.action{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
}

.action img{
  display: block;
  height: 44px;
  width: auto;
}

/* TELEFONE */
.action--phone img{
  height: 52px;
}

/* MOBILE */
@media (max-width: 720px){

  .hero__content{
    padding: 18px;
  }

  .panel{
    padding: 26px 20px;
  }

  .panel__logo img{
    max-width: 170px;
  }

  .panel__actions{
    gap: 14px;
  }

  .action img{
    height: 40px;
  }

  .action--phone img{
    height: 48px;
  }
}
