/*
**
** Config Bootstrap CSS
**
*/
:root {
  /* Fonte */
  --ciee-font-title: 'Nunito', sans-serif;
  --ciee-font-default: Montserrat, system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  /* Cores */
  --ciee-primary-hexa: #202751;
  --ciee-primary-rgb: 32,39,81;
  --ciee-primary-hover-hexa: #0B0C2E;
  --ciee-primary-hover-rgb: 11,12,46;
  --ciee-primary-dark-hexa: #141C3D;
  --ciee-primary-dark-rgb: 20,28,61;
  --ciee-primary-dark-bg-hexa: #141C3D;
  --ciee-primary-dark-bg-rgb: 20,28,61;
  --ciee-primary-light-hexa: #2E3D7A;
  --ciee-primary-light-rgb: 46, 61, 122;
  --ciee-primary-light-bg-hexa: #2E3D7A;
  --ciee-primary-light-bg-rgb: 46, 61, 122;

  --ciee-secondary-hexa: #D6E236;
  --ciee-secondary-rgb: 214,226,54;
  --ciee-secondary-hover-hexa: #D6E236;
  --ciee-secondary-hover-rgb: 214,226,54;
  --ciee-secondary-dark-hexa: #636a03;
  --ciee-secondary-dark-rgb: 174, 187, 31;
  --ciee-secondary-dark-bg-hexa: #636a03;
  --ciee-secondary-dark-bg-rgb: 174, 187, 31;
  --ciee-secondary-light-hexa: #E7F06A;
  --ciee-secondary-light-rgb: 223, 240, 106;
  --ciee-secondary-light-bg-hexa: #E7F06A;
  --ciee-secondary-light-bg-rgb: 223, 240, 106;

  --ciee-tertiary-hexa: #D6E236;
  --ciee-tertiary-rgb: 214,226,54;
  --ciee-tertiary-hover-rgb: 214,226,54;
  
  --ciee-dark-hexa: #0F172A;
  --ciee-dark-rgb: 15,23,42;
  --ciee-dark-bg-hexa: #0F172A;
  --ciee-dark-bg-rgb: 15,23,42;
  --ciee-light-hexa: #FFFFFF;
  --ciee-light-rgb: 255, 255, 255;
  --ciee-light-bg-hexa: #EEF2F7;
  --ciee-light-bg-rgb: 245, 247, 250;
  --ciee-light-subtle-hexa: #dfd3fd;
  --ciee-light-subtle-rgb: 223, 211, 253;
  --ciee-light-subtle-bg-hexa: #dfd3fd;
  --ciee-light-subtle-bg-rgb: 223, 211, 253;

  --orange: #FF5722;
  --purple-light: #9B5BF5;
  --yellow: #f9c623;
}

.text-yellow {
  color: var(--yellow);
}

/*
**
** Layout Geral e genérico
**
*/
.py-5 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
}
html {
  font-size: 18px;
}
.btn {
  --bs-btn-border-radius: 8px;
  --bs-btn-padding-y: 12px;
  --bs-btn-padding-x: 24px;
  --bs-btn-font-weight: 600;
}
.btn-sm {
  --bs-btn-border-radius: 8px;
  --bs-btn-padding-y: 4px;
  --bs-btn-padding-x: 20px;
  --bs-btn-font-weight: 600;
}
.btn-secondary {
  border: 2px solid #000;
}
@media(min-width: 1400px)
{
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 64px;
    --bs-gutter-y: 96px;
    padding-right: calc(var(--bs-gutter-x) * 1);
    padding-left: calc(var(--bs-gutter-x) * 1);
  }
}
img {
  max-width: 100%;
}
.mw-75 {
  max-width: 75%;
}
@media(min-width: 1400px)
{
  .mw-xl-75 {
    max-width: 75%;
  }
}
header {
  font-weight: 500;
  background: var(--ciee-primary-hexa) url(../_img/extra/bg/bg-hexa.png);
  background-size: 50px;
}
header .navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.9rem;
}
header .navbar-brand img {
  max-height: 40px;
}
header .navbar ul.navbar-nav {
  --bs-navbar-nav-link-padding-x: 0;
  --bs-navbar-nav-link-padding-y: 0;
  gap: 12px 64px;
}
@media(min-width: 1400px)
{
  .gx-4 {
    --bs-gutter-x: 80px;
    gap: var(--bs-gutter-x), var(--bs-gutter-y);
  }
  .gy-3 {
    --bs-gutter-y: 24px;
    gap: var(--bs-gutter-x), var(--bs-gutter-y);
  }
  .gy-4 {
    --bs-gutter-y: 32px;
    gap: var(--bs-gutter-x), var(--bs-gutter-y);
  }
  .gy-5 {
    --bs-gutter-y: 64px;
    gap: var(--bs-gutter-x), var(--bs-gutter-y);
  }
}
.hr {
  border-bottom: 1px solid var(--bs-primary);
}
h1, .h1 {font-family: var(--ciee-font-title), sans-serif; font-weight: 900; font-style: normal;text-transform: uppercase;} /* BLACK */
h2, .h2 {font-family: var(--ciee-font-title), sans-serif; font-weight: 800; font-style: normal;} /* EXTRA BOLD */
h3, .h3, h4, .h4, h5, .h5, h6, .h6 {font-family: var(--ciee-font-default), sans-serif; font-weight: 700; font-style: normal;} /* BOLD */
P  {font-family: var(--ciee-font-default), sans-serif; font-weight: 500; font-style: normal;} /* MEDIUM */

strong, .strong, b, .b, a {
  font-weight: 700;
}

footer {
  font-size: 14px;
}
#cookies_accept {
  position: fixed;
  bottom: 0;
  margin: 0;
  width: 100%;
}


/*
**
** Layout Personalizados
**
*/
.img-left-border {
  border-radius: 16px 64px 16px 16px;
}
.img-right-border {
  border-radius: 64px 16px 16px 16px;
}

.bg-img-primary {
  /*background-image: url("../_img/extra/bg/bg-primary.png");*/
  background: var(--ciee-primary-hexa) url(../_img/extra/bg/bg-hexa.png);
  background-size: 220px;
}
.bg-img-secondary {
  background-image: url("../_img/extra/bg/bg-secondary.png");
}

.bg-light {
    background-image: url(../_img/extra/bg/bg-hexa.png), linear-gradient(135deg, var(--ciee-light-bg-hexa), #fff0fe) !important;
    background-position: 50px 70px, 0 0;
    background-blend-mode: soft-light, normal;
}

.parallax {
  background-attachment: fixed;
}
.bg-star-1 {
  background-image: url("../_img/extra/bg/star-1.png"),url("../_img/extra/bg/star-1.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left 100px top 45px, right 122px bottom 25px;
}
.bg-star-2 {
  background-image: url("../_img/extra/bg/star-2.png"),url("../_img/extra/bg/star-2.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left -20px bottom 75px, right 45px top 50px;
}
.bg-star-3 {
  background-image: url("../_img/extra/bg/star-3.png"),url("../_img/extra/bg/star-3.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left 100px bottom 45px, right 120px top 35px;
}
.bg-star-4 {
  background-image: url("../_img/extra/bg/star-4.png"),url("../_img/extra/bg/star-4.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left 20px top 135px, right 125px bottom 50px;
}

@media(max-width: 1400px)
{
  .bg-star-1 {
    background-position: left -50px top -75px, right -50px bottom 15px;
  }
  .bg-star-2 {
    background-position: left -70px bottom 35px, right 25px top 0px;
  }
  .bg-star-3 {
    background-image: none, url("../_img/extra/bg/star-3.png");
    background-position: left 100px bottom 45px, right 10px top 145px;
  }
  .bg-star-4 {
    background-position: left -40px top -20px, right -20px bottom 50px;
  }
}
@media(min-width: 1400px)
{
  .parallax .container {
    padding: 160px 64px;
  }
}

/*
**
** Bloco de Realizações | Pesquisa | Apoios
**
*/
.realizadores .d-flex,
.pesquisa .d-flex,
.apoios .d-flex {
  gap: 30px 60px;
  flex-wrap: wrap;
}

.realizadores img {
  max-width: 250px;
  max-height: 60px;
}
.pesquisa img {
  max-width: 130px;
  max-height: 80px;
}
.apoios img {
  max-width: 162px;
  max-height: 60px;
}
.realizadores img.square,
.pesquisa img.square,
.apoios img.square {
  max-width: 80px;
  max-height: 80px;
}

/*
**
** Página de Avaliação
**
*/
.pergunta {
  margin-bottom: 48px;
}
.descricao {
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 16px;
}
.resposta-0-10 {
  display: flex;
  justify-content: space-around;
}
.resposta-0-10 span {
  background-color: rgb(var(--bs-white-rgb));
  border-radius: 50%;
  color: rgb(var(--bs-dark-rgb));
  display: flex;
  width: 57px;
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--bs-white);
}
.resposta-0-10 input[type="radio"] {
  width: 0;
  height: 0;
}
.resposta-0-10 span:hover {
  border-color: var(--bs-primary-bg);
  color: var(--bs-primary);
}
.resposta-0-10 input[type="radio"]:checked + span {
  background-color: var(--bs-primary-bg);
  border-color: var(--bs-primary-bg);
  color: var(--bs-white);
}
.pergunta .qualitativo {
  font-size: 12px;
  font-weight: 400;
}

@media(max-width: 767px)
{
  .resposta-0-10 span {
    width: 40px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
  }
  .resposta-0-10 span::first-child {
    width: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
  }
}
@media(max-width: 470px)
{
  .resposta-0-10 span {
    width: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
  }
  .resposta-0-10 span::first-child {
    width: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
  }
  /*
  .resposta-0-10 {
    flex-wrap: wrap;
  }
  .resposta-0-10 > * {
    width: calc( 100% / 6);
    padding: 4px;
  }
  .resposta-0-10 span {
    width: 100%;
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
  }*/
}

.label_categorias {
  background: var(--ciee-light-bg-hexa);
  border: 2px solid var(--ciee-primary-hexa);
  border-radius: 50px;
  padding: 12px 28px;
  color: var(--ciee-primary-hexa);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.label_categorias_destaque {
  background: #fffff0;
  border: 2px solid var(--ciee-secondary-hexa);
  color: var(--ciee-secondary-dark-hexa);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 90, 0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.evento-info-card {
	padding: 24px 20px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(2px);
}

.evento-info-icon {
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 12px;
	color: var(--ciee-tertiary);
}

.evento-info-label {
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
	color: #ffffff;
	opacity: 0.85;
}

.evento-info-value {
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.25;
	color: #ffffff;
}

.evento-info-subvalue {
	font-size: 1rem;
	line-height: 1.4;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.9);
}

.cta-final-box {
	background: #ffffff;
	border: 1px solid rgba(31, 42, 90, 0.08);
	border-radius: 28px;
	padding: 48px 32px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.cta-final-pillars {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cta-final-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--ciee-primary);
}

.cta-final-item i {
	font-size: 1rem;
	flex-shrink: 0;
}

.cta-final-invite {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--ciee-primary);
}

.cta-final-time {
	font-size: 0.95rem;
	color: #5b6478;
}

@media (max-width: 767.98px) {
	.cta-final-box {
		padding: 36px 20px;
		border-radius: 20px;
	}

	.cta-final-item {
		font-size: 1rem;
		justify-content: flex-start;
		text-align: left;
	}

	.cta-final-pillars {
		max-width: 420px;
		margin: 0 auto;
	}
}

.btn-share-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}

.btn-share-whatsapp i {
  font-size: 20px;
}

.btn-share-whatsapp:hover {
  --bs-btn-hover-bg: #25D366;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  color: #fff;
}
