:root {
  --font-default: "gotham", sans-serif;
  --font-primary: "gotham", sans-serif;
  --font-secondary: "gotham", sans-serif;
}

:root {
  --color-1: #30705e;
  --color-default: #2c2c2e;
  --color-whatsapp: #2e421c;
  --color-primary: #2e421c;
  --color-secondary: #c1946f;
  --gradient: linear-gradient(45deg, #2e421c, #00000026);
  --font-color-primary: #252525;
  --font-color-secondary: #484848;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-default);
  color: var(--color-default);
}

html {
  font-size: 16px;
}

h1 {
  font-size: clamp(3rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--font-color-primary);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
}

p {
  font-size: clamp(1.125rem, 2vw, 1.150rem);
  line-height: 1.6;
  color: var(--font-color-secondary);
}

.btn-font-get {
  font-size: clamp(1.475rem, 2vw, 1.725rem);
  font-weight: 700;
}

.btn-font-event {
  font-size: clamp(1.275rem, 2vw, 1.425rem);
  text-decoration: none;
  font-weight: 400;
}

.btn-font-form {
  font-size: clamp(1.275rem, 2vw, 1.425rem);
  text-decoration: none;
  font-weight: 400;
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-primary);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-get-whatsapp {
  padding: clamp(1.5rem, 2vw, 1.75rem) clamp(1.5rem, 2vw, 1.75rem);
  border-radius: 0px 30px;
  text-decoration: none;
  width: auto;
  transition: all 0.5s ease-in-out;
  border: 1px solid #1dfcd7;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(to left, #30705e, #22b573);
  text-align: center;
}

.btn-get-whatsapp:hover {
  background: #fff;
  color: var(--color-1);
  border-radius: 35px 0px;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-primary);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Imgs
--------------------------------------------------------------*/
#img-mockup-1 {
  border-radius: 10px
}

#img-mockup-2 {
  border-radius: 10px
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-top: 60px;
  overflow: hidden;
  padding-bottom: 60px;
}

.section-bg {
  background-color: #ffffff;
}

.section-title span {
  color: #30705e;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section (Desktop)
--------------------------------------------------------------*/
#bgb-section-0 {
  width: 100%;
  height: 95vh;
  background: linear-gradient(45deg, black, transparent), url(../img/bgb-banner-principal.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}

#bgb-section-0::after {
  background: #f7f7f7;
}

#bgb-section-0 .container {
  padding-top: 25px;
}

#bgb-section-0 span {
  color: #22b573;
}

#bgb-section-0 h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
}

#bgb-section-0 .img-logo {
  display: block;
  margin: 0 auto;
  width: 180px;
  height: auto;
}

#bgb-section-0 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#bgb-section-0 .cards {
  z-index: 1;
  display: flex;
  background: linear-gradient(to left, #30705e, #22b573);
  padding: 20px 0px;
  border-radius: 0px 30px;
  border: 1px solid #1dfcd7;
  height: auto;
  position: absolute;
  width: 69.5vw;
  left: 15%;
  top: 88vh;
}

#bgb-section-0 .card-item {
  flex: 1;
  border-right: 1px solid #ffffff;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#bgb-section-0 .card-item:last-child {
  border-right: none;
}

#bgb-section-0 .card-item p {
  color: #ffffff;
  margin-bottom: 0;
}

#bgb-section-0 .icone-bgb-section-0 {
  width: 32px;
  height: auto;
}

/*--------------------------------------------------------------
# Hero Section Mobile
--------------------------------------------------------------*/
#bgb-section-0-mobile-img {
  background: linear-gradient(45deg, black, transparent), url(../img/bgb-banner-principal-mobile.webp);
  background-size: cover;
  background-position: top;
  height: 100%;
}

#bgb-section-0-mobile-img::before {
  /* content: ''; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 11%);
  z-index: 1;
}

#bgb-section-0-mobile {
  background: transparent;
  margin-top: 15vh;
  padding: 0px 0px;
  overflow: hidden;
  height: auto;
}

#bgb-section-0-mobile .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

#bgb-section-0-mobile::after {
  background: #f7f7f7;
}

#bgb-section-0-mobile span {
  color: #22b573;
}

#bgb-section-0-mobile h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
}

#bgb-section-0-mobile .img-logo {
  display: block;
  margin: 0 auto;
  width: 180px;
  height: auto;
}

#bgb-section-0-mobile .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 768px) {
  #bgb-section-0-mobile h2 {
    font-size: 1.2rem;
  }

  #bgb-section-0-mobile .animated {
    animation: up-down 1.5s ease-in-out infinite alternate-reverse both;
  }

  #bgb-section-0-mobile .cards {
    display: none !important;
  }
}

@media (max-width: 480px) {
  #bgb-section-0-mobile .img-logo {
    margin: 0 auto;
    border-radius: 0px;
    width: 180px;
    height: auto;
  }

  #bgb-section-0-mobile h1 {
    margin: 0 0 6px 0;
  }

  #bgb-section-0-mobile h2 {
    font-size: 1rem;
  }

  #bgb-section-0-mobile .animated {
    animation: up-down 1s ease-in-out infinite alternate-reverse both;
  }
}

#bgb-section-0-mobile .cards {
  z-index: 1;
  display: flex;
  background: linear-gradient(to left, #30705e, #22b573);
  padding: 20px 0px;
  border-radius: 0px 30px;
  border: 1px solid #1dfcd7;
  height: auto;
  position: absolute;
  width: 69.5vw;
  left: 15%;
  top: 90vh;
}

#bgb-section-0-mobile .card-item {
  flex: 1;
  border-right: 1px solid #ffffff;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#bgb-section-0-mobile .card-item:last-child {
  border-right: none;
}

#bgb-section-0-mobile .card-item p {
  color: #ffffff;
  margin-bottom: 0;
}

#bgb-section-0-mobile .icone-bgb-section-0-mobile {
  width: 32px;
  height: auto;
}

/*--------------------------------------------------------------
# bgb-section-1
--------------------------------------------------------------*/
#bgb-section-1 {
  padding-bottom: 48px;
  padding-top: 114px;
}

#bgb-section-1 .foto-sec5 {
  width: 100%;
  height: auto;
}

#bgb-section-1 span {
  color: #30705e;
}

#bgb-section-1 .texto {
  margin-top: 6vw;
  margin-bottom: 3vw;
}

@media (max-width: 768px) {
  #bgb-section-1 {
    padding-bottom: 40px;
    padding-top: 20px;
  }

  #bgb-section-1 .foto-sec5 {
    margin-bottom: 2rem;
  }

  #bgb-section-1 span {
    color: #30705e;
  }
}

@media (max-width: 480px) {
  #bgb-section-1 .foto-sec5 {}

  #bgb-section-1 span {
    color: #30705e;
  }
}

/*--------------------------------------------------------------
# bgb-section-2 (desktop)
--------------------------------------------------------------*/
#bgb-section-2 {
  background: linear-gradient(45deg, black, transparent), url(../img/bgb-muito-alem-do-networking.webp) center / cover no-repeat;
  padding: 60px 0;
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

#bgb-section-2 .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#bgb-section-2 .row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}

#bgb-section-2 .cards-container {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  width: 100%;
  margin: 20px 0;
}

#bgb-section-2 .card {
  flex: 1;
  background: linear-gradient(to left, #30705e, #22b573);
  padding: 30px 15px;
  border-radius: 0px 30px;
  border: 1px solid #1dfcd7;
  transition: all 0.5s ease-in-out;
  display: -webkit-inline-box;
  align-items: center;
  justify-content: center;
}

#bgb-section-2 .card img,
#bgb-section-2 .card svg {
  width: 44px;
  height: 44px;
}

#bgb-section-2 .card:hover p {
  color: var(--color-1);
}

#bgb-section-2 .card:hover {
  background: #fff;
  border-radius: 35px 0px;
}

#bgb-section-2 .card:hover svg {
  filter: brightness(0.5);
}

#bgb-section-2 h2 {
  color: #ffffff;
}

#bgb-section-2 p {
  color: #ffffff;
}

#bgb-section-2 .card p {
  padding: 20px;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 0;
  vertical-align: middle;
}

/*--------------------------------------------------------------
# bgb-section-1 (mobile)
--------------------------------------------------------------*/
#bgb-section-2-mobile-img {
  background: linear-gradient(45deg, black, transparent), url(../img/bgb-muito-alem-do-networking-mobile.webp) center / cover no-repeat;
  background-size: cover;
  background-position: top;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

#bgb-section-2-mobile-img::before {
  /* content: ''; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0%);
  z-index: 1;
}

#bgb-section-2-mobile {
  background: transparent;
  margin-top: 30vh;
  padding-bottom: 0;
  overflow: hidden;
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

#bgb-section-2-mobile .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#bgb-section-2-mobile .row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}

#bgb-section-2-mobile .cards-container {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  width: 100%;
  margin: 20px 0;
}

#bgb-section-2-mobile .card {
  flex: 1;
  background: linear-gradient(to left, #30705e, #22b573);
  padding: 25px 15px;
  border-radius: 0px 30px;
  border: 1px solid #1dfcd7;
  transition: all 0.5s ease-in-out;
  display: -webkit-inline-box;
  align-items: center;
  width: 100%;
}

#bgb-section-2-mobile .card img,
#bgb-section-2-mobile .card svg {
  width: 44px;
  height: 44px;
}

#bgb-section-2-mobile .card:hover p {
  color: var(--color-1);
}

#bgb-section-2-mobile .card:hover {
  background: #fff;
  border-radius: 35px 0px;
}

#bgb-section-2-mobile .card:hover svg {
  filter: brightness(0.5);
}

#bgb-section-2-mobile h2 {
  color: #ffffff;
}

#bgb-section-2-mobile p {
  color: #ffffff;
}

#bgb-section-2-mobile .card p {
  padding: 20px;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 0;
  vertical-align: middle;
}

@media (max-width: 768px) {
  #bgb-section-2-mobile .cards-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #bgb-section-2-mobile .card {
    /* width: 100%; */
    /* border-radius: 0px 30px; */
  }

  #bgb-section-2-mobile .card img,
  #bgb-section-2-mobile .card svg {
    width: 32px;
    height: 32px;
  }
}

/*--------------------------------------------------------------
# bgb-section-3
--------------------------------------------------------------*/
#bgb-section-3 .foto-sec7 {
  width: 100%;
  height: auto;
}

#bgb-section-3 span {
  color: #30705e;
}

#bgb-section-3 .card {
  background: linear-gradient(to left, #30705e, #22b573);
  padding: 20px;
  border-radius: 0px 30px;
  text-align: center;
  border: 2px solid #1dfcd7;
  color: white;
  width: 280px;
  height: 100px;
  align-items: center;
}

#bgb-section-3 .card i {
  font-size: 30px;
}

#bgb-section-3 .card h3 {
  font-size: 15px;
  padding: 10px;
}

@media (max-width: 768px) {
  #bgb-section-3 .foto-sec7 {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# bgb-section-4 (desktop)
--------------------------------------------------------------*/
#bgb-section-4 {
  background: linear-gradient(45deg, black, transparent), url('../img/bgb-o-campo-aproxima.webp') center/cover no-repeat;
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

#bgb-section-4 .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#bgb-section-4 .row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}

#bgb-section-4 h2 {
  color: #ffffff;
}

#bgb-section-4 p {
  color: #ffffff;
}

#bgb-section-4 .cards-container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  margin: 20px 0;
}

#bgb-section-4 .card {
  background: linear-gradient(to left, #30705e, #22b573);
  padding: 20px;
  border-radius: 0px 30px;
  text-align: center;
  border: 2px solid #1dfcd7;
  color: white;
  width: 370px;
  height: 100px;
  display: -webkit-inline-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

#bgb-section-4 .card p {
  line-height: normal;
  margin-bottom: 0;
}

#bgb-section-4 .card img {
  display: block;
  width: 32px;
  margin-right: 15px;
}

#bgb-section-4 .card h3 {
  font-size: 15px;
  padding: 10px;
}

#bgb-section-4 .div-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#bgb-section-4 .div-item img {
  margin-right: 10px;
}

#bgb-section-4 .div-item p {
  margin: 0;
}

/*--------------------------------------------------------------
# bgb-section-4-mobile (desktop)
--------------------------------------------------------------*/
#bgb-section-4-mobile-img {
  background: linear-gradient(45deg, black, transparent), url('../img/bgb-o-campo-aproxima-mobile.webp') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

#bgb-section-4-mobile-img::before {
  /* content: ''; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 11%);
  z-index: 1;
  border: 2px solid red;
}

#bgb-section-4-mobile {
  padding: 60px 0;
  background: transparent;
  margin-top: 30vh;
  padding-bottom: 0;
  overflow: hidden;
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

#bgb-section-4-mobile .bgb-section-4-mobile-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

#bgb-section-4-mobile .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#bgb-section-4-mobile .row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}

#bgb-section-4-mobile h2 {
  color: #ffffff;
}

#bgb-section-4-mobile p {
  color: #ffffff;
}

#bgb-section-4-mobile .cards-container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  margin: 20px 0;
}

#bgb-section-4-mobile .card {
  background: linear-gradient(to left, #30705e, #22b573);
  padding: 20px;
  border-radius: 0px 30px;
  text-align: center;
  border: 2px solid #1dfcd7;
  color: white;
  width: 280px;
  height: 100px;
  display: -webkit-inline-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

#bgb-section-4-mobile .card p {
  line-height: normal;
  margin-bottom: 0;
}

#bgb-section-4-mobile .card img {
  display: block;
  width: 32px;
  margin-right: 15px;
}

#bgb-section-4-mobile .card h3 {
  font-size: 15px;
  padding: 10px;
}

#bgb-section-4-mobile .div-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#bgb-section-4-mobile .div-item img {
  margin-right: 10px;
}

#bgb-section-4-mobile .div-item p {
  margin: 0;
}

@media (max-width: 768px) {
  #bgb-section-4-mobile .cards-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #bgb-section-4-mobile .card {
    width: 100%;
    max-width: 350px;
    height: auto;
    padding: 15px;
    border-radius: 0px 30px;
  }
}

@media (max-width: 480px) {
  #bgb-section-4-mobile .card {
    width: 100%;
    padding: 20px;
  }

  #bgb-section-4-mobile .card h3 {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# bgb-section-5
--------------------------------------------------------------*/
#bgb-section-5 .section-title h2 {
  margin-bottom: 10px;
}

#bgb-section-5 .custom-card-group {
  display: flex;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 0px 30px;
  border: 1px solid #30705e;
  margin: auto;
}

#bgb-section-5 .custom-card {
  flex: 1;
  border-right: 1px solid #30705e;
  padding: 5px;
}

#bgb-section-5 .icon-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 100%;
  border: 1px solid #30705e;
  padding: 25px;
}

#bgb-section-5 .custom-card:last-child {
  border-right: none;
}

#bgb-section-5 .custom-card .card {
  border: none;
  box-shadow: none;
  background: transparent;
}

#bgb-section-5 .custom-card .card-title {
  font-size: 1.2rem;
  font-weight: bold;
}

#bgb-section-5 .custom-card .card-text {
  color: #30705e;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  line-height: inherit;
}

#bgb-section-5 .custom-card:hover .card-text {
  color: #fff !important;
}

#bgb-section-5 .custom-card:hover {
  background: var(--color-1);
  color: #fff !important;
}

#bgb-section-5 .custom-card:hover .icon-img {
  background: #fff;
  border: 1px;
}

@media (max-width: 768px) {
  #bgb-section-5 .custom-card-group {
    flex-direction: column;
    margin: 4%;
  }

  #bgb-section-5 .custom-card {
    border-right: none;
    border-bottom: 1px solid #30705e;
    padding: 15px;
    text-align: center;
  }

  #bgb-section-5 .custom-card:last-child {
    border-bottom: none;
  }

  #bgb-section-5 .custom-card .card-title {
    font-size: 1rem;
  }

  #bgb-section-5 .custom-card .card-text {
    height: auto;
  }
}

#bgb-section-6 {
  background: linear-gradient(271deg, #ffffff6e, #ffffffba), url(../img/convidado-bgb.webp) center / cover no-repeat;
  color: rgb(0, 0, 0);
}

#bgb-section-6 span {
  color: #30705e;
  font-weight: 900;
}

#bgb-section-6 .card {
  background: linear-gradient(to left, #30705e, #22b573);
  padding: 20px;
  border-radius: 0px 30px;
  text-align: center;
  border: 2px solid #1dfcd7;
  color: white;
  width: 250px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#bgb-section-6 .event-card {
  background: white;
  border-radius: 0px 30px;
  box-shadow: -2px 4px 10px rgb(0 0 0 / 28%);
  max-width: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 30vw;
}

#bgb-section-6 .event-details {
  padding-left: 120px;
  padding-right: 100px;
  padding-top: 45px;
  padding-bottom: 45px;
}

#bgb-section-6 .event-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
  width: 100%;
}

#bgb-section-6 .event-item img {
  width: 40px;
  height: auto;
  display: block;
}

#bgb-section-6 .event-item p {
  margin: 0;
}

#bgb-section-6 .event-button {
  text-align: center;
  background: linear-gradient(to right, #22b573, #30705e);
  color: white;
  font-weight: bold;
  padding: 60px;
  border: none;
  cursor: pointer;
  display: block;
  width: 100%;
}

.btn-get-whatsapp {
  font-size: clamp(1.475rem, 2vw, 1.725rem);
  font-weight: 600;
  padding: clamp(1.5rem, 2vw, 1.75rem) clamp(1.5rem, 2vw, 1.75rem);
  border-radius: 0px 30px;
  text-decoration: none;
  width: auto;
  transition: all 0.5s ease-in-out;
  border: 1px solid #1dfcd7;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(to left, #30705e, #22b573);
  text-align: center;
}

#bgb-section-6 .event-button:hover {
  background: var(--color-default);
  color: #fff;
}

@media (max-width: 768px) {
  #bgb-section-6 .event-button {
    padding: 25px;
  }

  #bgb-section-6 .event-card {
    background: white;
    border-radius: 0px 30px;
    box-shadow: -2px 4px 10px rgb(0 0 0 / 28%);
    max-width: 100%;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 45px;
    margin-bottom: 15px;
  }

  #bgb-section-6 .row {
    flex-direction: column-reverse;
    margin: 4%;
  }

  #bgb-section-6 .event-details {
    padding-left: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 15px;
  }

  #bgb-section-6 .event-item img {
    margin: 0 auto;
    width: 35px;
  }

  .foto-sec5 {
    min-height: 250px;
  }

  #bgb-section-6 {
    background: linear-gradient(360deg, #ffffff, #ffffffb8), url(../img/convidado-bgb.webp) center / cover no-repeat;
    color: rgb(0, 0, 0);
  }
}




#bgb-section-7 {
  background-color: #f8f9fa;
  padding-top: 100px;
  padding-bottom: 100px;
}

#bgb-section-7 h2 {
  color: #252525;
  font-size: 46px;
  margin-bottom: 40px;
}

#bgb-section-7 .item-cards .card {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#bgb-section-7 .item-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#bgb-section-7 .item-cards .card-body {
  padding: 1rem;
}

#bgb-section-7 .btn-saiba-mais {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--accent-color);
  text-decoration: none;
  padding: 1rem 1rem 3rem;
  border-radius: 30px;
  transition: background 0.3s ease, color 0.3s ease;
}

#bgb-section-7 .btn-saiba-mais img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

#bgb-section-7 .btn-saiba-mais:hover img path {
  fill: #fff;
}

#bgb-section-7 h5 {
  margin-bottom: 1rem;
}

#bgb-section-7 .btn-saiba-mais:hover img {
  transform: translateX(4px);
}

#bgb-section-7 .img-wrapper {
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0rem auto 0rem;
}

#bgb-section-7 .img-wrapper svg {
  width: 40px;
  height: 40px;
}

#bgb-section-7 .img-wrapper img {
  width: 100%;
  height: auto;
}

#bgb-section-7 .custom-swiper-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#bgb-section-7 .custom-swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  margin-bottom: 4rem;
}

#bgb-section-7 .item-cards {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 10px;
  box-sizing: border-box;
}

#bgb-section-7 .custom-swiper-bullets {
  text-align: center;
  margin-top: 15px;
}

#bgb-section-7 .custom-swiper-bullets .bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;

}

#bgb-section-7 .custom-swiper-bullets .bullet.active {
  background: var(--accent-color);
}

.swiper {
  width: 90%;
  height: 90%;
  margin-top: 100px
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.swiper {
  padding-bottom: 40px;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}






#bgb-section-8 {
  background-color: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 35px;
}

#bgb-section-8 section.container {
  max-width: 800px;
  margin: auto;
}

#bgb-section-8 .card {
  box-shadow: 0px 4px 10px rgb(188 175 175 / 10%);
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 30px;
}

#bgb-section-8 .formulario {
  border: 1px solid #30705e;
  border-radius: 0px 50px;
  padding: 50px;
  max-width: 1000px;
  margin: auto;
}

#bgb-section-8 .section-title {
  padding-bottom: 30px;
}

#bgb-section-8 .section-title h2 {
  font-size: 46px;
  margin-bottom: 10px;
}

#bgb-section-8 .section-title p {
  font-size: 20px;
  color: #484848;
}

#bgb-section-8 input.form {
  width: 100%;
  border: 1px solid #30705e;
  padding: 12px;
  font-size: 1rem;
  color: #2f2f2f;
  background-color: #ffffff00;
}

#bgb-section-8 input.form::placeholder {
  color: #000000;
}

#bgb-section-8 button {
  text-align: center;
  /* font-size: 20px; */
  color: #fff;
  background: linear-gradient(to left, #30705e, #22b573);
  padding: 15px 150px;
  border-radius: 0px 30px;
  /* border: 2px solid #1dfcd7; */
  font-weight: 600;
  transition: 0.3s ease;
}

#bgb-section-8 button.btn-success:hover {
  background: linear-gradient(to right, #218838, #155724);
}

@media (max-width: 768px) {
  #bgb-section-8 {
    padding-top: 0px;
    padding-bottom: 60px;
  }

  #bgb-section-8 .section-title h2 {
    font-size: 32px;
    text-align: center;
  }

  #bgb-section-8 .section-title p {
    font-size: 18px;
    text-align: center;
  }

  #bgb-section-8 section.container {
    max-width: 95%;
  }

  #bgb-section-8 .card {
    padding: 20px;
  }

  #bgb-section-8 .formulario {
    padding: 30px;
    border-radius: 0px 30px;
    max-width: 90%;
  }

  #bgb-section-8 input.form {
    font-size: 16px;
    padding: 10px;
  }

  #bgb-section-8 button {
    padding: 15px;
    border-radius: 0px 30px;
    width: 100%;
  }
}

.card-jogo {
  background: linear-gradient(to left, #30705e, #22b573);
  padding: 20px;
  border-radius: 0px 30px;
  text-align: center;
  border: 2px solid #1dfcd7;
  color: white;
  width: 250px;
  height: 100px;
  display: -webkit-inline-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.card-jogo img {
  display: block;
  width: 32px;
  margin-right: 15px;
}

.card-jogo p {
  color: #fff;
  line-height: normal;
  margin-bottom: 0;
  margin-top: 0px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background: #000;
  text-align: center;
  color: #fff;
  padding: 30px 0px;
}

footer p,
footer a {
  color: #ffffff;
  font-size: 13px;
  line-height: 0;
  margin-bottom: 0px
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 15px;
  right: 30px;
  background-color: rgb(37, 211, 102);
  color: rgb(255, 255, 255);
  border-radius: 50px;
  text-align: center;
  box-shadow: rgb(153, 153, 153) 2px 2px 3px;
  z-index: 100;
  transition: all 0.2s ease-in-out 0s;
}

.whatsapp-float img {
  padding: 0;
  margin: 15%;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: rgb(18, 140, 126);
  box-shadow: rgb(153, 153, 153) 3px 3px 4px;
  color: rgb(255, 255, 255) !important;
}

.whatsapp-icon {
  margin-top: 15px;
}

/* Dispositivos com mouse */
/* @media (pointer: fine) {} */
@media (pointer: coarse) {}