@font-face {
  font-family: 'Nexa';
  src: url('imagens/NexaRegular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url('imagens/Nexa-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'NexaBlak';
  src: url('imagens/NexaBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

:root {
  --amarelo-claro: #fecb4b;
  --amarelo-forte: #ffb600;
  --rosa-forte: #fe1bde;
  --black-tie: #383838;
  --branco: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: "NexaBlak" !important;
  color: var(--black-tie);
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;

  >.col,
  >[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.welcome {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
}

.links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50% - 20px);
  margin-bottom: 40px;
}

.links a img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.links a h3 {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.bg-bem-vindo {
  background-color: #E26AA0;
}

.social {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom right, #ff3a3a, #ff8c00);
  padding: 20px;
}

.social a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
}

.social a i {
  color: #333;
  font-size: 20px;
}

.social a.facebook:hover {
  background: #3b5998;
}

.bg-light-footer {
  background-color: #221d21;
}

.background-image {
  /*background-image: url('imagens/topo_fundo_site_20252.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; */
  background-color: var(--amarelo-forte);
}

.background-image2 {
  /*background-image: url('imagens/back_prog.png');
  background-position: center;
  background-size: cover; */
  background-color: var(--amarelo-claro);
}

.background-image3 {
  background-color: var(--rosa-forte);
}

.background-image4 {
  background-color: var(--amarelo-forte);
}

.background-image5 {
  background-color: #29ABE2;
}

.size-28 {
  font-size: 28px;
}

.insta-embed {
  margin: 20px auto;
  display: block;
  max-width: 360px;
}

.atracao img {
  max-width: 100%;
  height: auto;
}

.image-container img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .background-image {
    background-image: url('imagens/20261-fundo-mobile.png');
    background-size: cover;
    background-position: center;
  }

  .card-1 {
    max-width: 80%;
  }

}


/* Card base */
.card-activity {
  background-color: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s;
}

.card-activity:hover {
  transform: translateY(-5px);
}

/* Header estilo "balão" */
.card-header-custom {
  background-color: #6c4cf6;
  /* roxo */
  padding: 12px 20px;
  border-top-left-radius: 12px;
  border-top-right-radius: 40px;
  /* canto arredondado maior */
}

.card-header-custom h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
  font-weight: bold;
}

/* Imagem */
.card-img-top {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 0 0;
}

/* Corpo de texto */
.card-body-custom {
  padding: 15px 18px;
}

.card-body-custom p {
  margin: 0;
  font-size: 1rem;
  color: #222;
  line-height: 1.5;
  text-align: justify;
}