html {
  font-size: 16px;
}

body {
  font-family: Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #111111;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
  padding: 0;
}

h1 {
  font-size: clamp(2.25rem, 1.5rem + 3.5vw, 3.75rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.875rem, 1.25rem + 2.8vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  text-transform: uppercase;
}

h4 {
  font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

.display-title {
  font-size: clamp(3rem, 1.5rem + 7vw, 6rem);
  line-height: 1.1;
}

p {
  font-weight: 400;
  line-height: 1.7;
  margin: 20px 0;
}

.lead-text {
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  line-height: 1.6;
}

blockquote {
  font-style: italic;
  line-height: 1.7;
  font-size: 1.125rem;
  margin: 28px 0;
  padding: 16px 24px;
  background-color: #f5fef4;
  border-left: 4px solid #3ea855;
  border-radius: 0 8px 8px 0;
}
blockquote > :first-child {
  margin-top: 0;
}
blockquote > :last-child {
  margin-bottom: 0;
}

.stroke-white-text {
  text-shadow: 2px 2px 2px #000000;
}

.text-shadow-dark {
  text-shadow: 2px 2px 2px #000000;
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
}
.page-section {
  position: relative;
}
.page-section--grey {
  background-color: #f2f2f2;
}

.section-content {
  position: relative;
  margin: 0 auto;
  width: 1140px;
  display: flow-root;
}
@media (max-width: 1199px) {
  .section-content {
    width: 940px;
  }
}
@media (max-width: 991px) {
  .section-content {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .section-content {
    width: 540px;
  }
}
@media (max-width: 575px) {
  .section-content {
    width: 340px;
  }
}

.site-header {
  background-color: #ffffff;
  background-image: url("/images/ceufu-header.jpg");
  background-repeat: no-repeat;
  background-size: auto;
}
.site-header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 319px;
}

.site-logo {
  display: block;
  width: 261px;
  height: 261px;
  margin: 1px auto 0;
}
.site-logo img {
  width: 100%;
  height: 100%;
}

.header-social {
  position: absolute;
  right: 120px;
  bottom: 0;
  display: flex;
  gap: 4px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .header-social {
    right: 20px;
  }
}
.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.main-nav-wrap {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.main-nav {
  box-sizing: border-box;
  line-height: 1;
  text-align: center;
  color: #086e1e;
}
.main-nav ul,
.main-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  padding: 18px 24px;
  color: #086e1e;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.main-nav a:hover {
  color: #0b9128;
  background-color: #f5fef4;
}
.main-nav ul:not(.submenu) > .active_button > a {
  font-weight: 700;
  box-shadow: inset 0 -3px 0 #3ea855;
}
.main-nav .submenu > .active_button > a {
  font-weight: 700;
  background-color: #f5fef4;
}

.submenu-arrow {
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  display: inline-block;
  margin: 0 0 3px 8px;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

@media (min-width: 861px) {
  .main-nav > ul > li {
    display: inline-block;
  }
  .has-submenu {
    position: relative;
  }
  .has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 100%;
    padding: 8px 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 15;
  }
  .has-submenu .submenu a {
    padding: 12px 24px;
    white-space: nowrap;
    text-align: left;
    font-weight: 400;
  }
  .has-submenu:hover > a {
    color: #0b9128;
    background-color: #f5fef4;
  }
  .has-submenu:hover > a .submenu-arrow {
    margin-bottom: -1px;
    transform: rotate(225deg);
  }
  .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 860px) {
  .main-nav > ul > li {
    border-bottom: 1px solid #e5e5e5;
  }
  .main-nav > ul > li:last-child {
    border-bottom: none;
  }
  .main-nav a {
    padding: 16px;
  }
  .main-nav ul:not(.submenu) > .active_button > a {
    box-shadow: inset 4px 0 0 #3ea855;
    background-color: #f5fef4;
  }
  .has-submenu > a .submenu-arrow {
    transform: rotate(225deg);
    margin-bottom: -1px;
  }
  .has-submenu .submenu {
    background-color: #f2f2f2;
  }
  .has-submenu .submenu a {
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 400;
  }
}
.site-footer {
  background-color: #2d2d4a;
  color: #ffffff;
}
.site-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 175px;
}
.site-footer__logo {
  display: block;
  width: 60px;
  height: 100px;
  margin: 15px auto 0;
}
.site-footer__logo img {
  width: 100%;
  height: 100%;
}
.site-footer__text {
  color: #cecee4;
  font-style: italic;
  text-align: center;
  margin: 19px 20px 15px;
}
.site-footer a {
  color: #bde6c6;
}
.site-footer a:hover {
  color: #a1a1a1;
}

.btn-cta {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 20px 0;
}
.btn-cta:hover, .btn-cta:focus {
  text-decoration: none;
}
.btn-cta--green {
  background-color: #3ea855;
  color: #ffffff;
}
.btn-cta--green:hover, .btn-cta--green:focus {
  background-color: #2d6639;
  color: #ffffff;
}
.btn-cta--light {
  background-color: #9bf194;
  color: #111111;
}
.btn-cta--light:hover, .btn-cta--light:focus {
  background-color: #7bec72;
  color: #111111;
}
.btn-cta--outline {
  background-color: transparent;
  border-color: #292933;
  color: #292933;
}
.btn-cta--outline:hover, .btn-cta--outline:focus {
  border-color: transparent;
  color: #25252e;
}

.hero {
  position: relative;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), var(--hero-image);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: #ffffff;
}
.hero--fixed {
  background-attachment: fixed;
}
.hero .section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero--center {
  text-align: center;
}
.hero__title {
  text-shadow: 2px 2px 2px #000000;
}
.hero__lead {
  text-shadow: 2px 2px 2px #000000;
}

.rich-article {
  text-align: justify;
  text-indent: 2rem;
  overflow-wrap: break-word;
}
@media (max-width: 767px) {
  .rich-article {
    text-align: left;
    text-indent: 0;
  }
}
.rich-article p {
  hyphens: auto;
}
.rich-article h1, .rich-article h2, .rich-article h3, .rich-article h4, .rich-article h5, .rich-article h6,
.rich-article blockquote, .rich-article ul, .rich-article ol {
  text-indent: 0;
}
.rich-article h3 {
  text-align: left;
  margin: 2.5rem 0 1rem;
}
.rich-article h5, .rich-article h6 {
  line-height: 1.5;
  margin: 1.25rem 0 0.75rem;
}
.rich-article p {
  margin: 0 0 1.1em;
}
.rich-article a {
  color: #6ac17d;
}
.rich-article a:hover {
  color: #6ac17d;
  text-decoration: underline;
}
.rich-article strong,
.rich-article b {
  font-weight: 700;
}
.rich-article ul p {
  font-size: 0.8rem;
  margin: 2px 0;
}

.split {
  width: 100%;
}
.split__row {
  display: flex;
  flex-wrap: wrap;
}
.split__col {
  box-sizing: border-box;
  min-width: 0;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}
.split__col--half {
  flex-basis: 50%;
  max-width: 50%;
}
.split__col--third {
  flex-basis: 33.333%;
  max-width: 33.333%;
}
.split__col--quarter {
  flex-basis: 25%;
  max-width: 25%;
}
@media (max-width: 991px) {
  .split__col--quarter {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .split__row {
    flex-direction: column;
  }
  .split__col, .split__col--half, .split__col--third, .split__col--quarter {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
  }
}

.image-cell {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 250px;
  flex: 1 1 auto;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.form-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #b3b3b3;
  border-radius: 0;
  background-color: transparent;
  background-clip: padding-box;
  color: inherit;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-input:focus {
  outline: none;
  border-color: #3ea855;
}

.map-embed {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  flex: 1 1 auto;
  background-color: #e5e5e5;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.whatsapp-fab-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: inline-block;
  touch-action: none;
}
.whatsapp-fab-container.hidden {
  display: none;
}

.whatsapp-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: grab;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}
.whatsapp-fab img {
  width: 60px;
  height: 60px;
  pointer-events: none;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}
.whatsapp-fab.dragging {
  cursor: grabbing;
  transform: scale(1.05);
}

.close-whatsapp-fab {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: rgba(0, 0, 0, 0.55);
  color: white;
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  padding: 0;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease-in-out;
}
.close-whatsapp-fab:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

body[pagename=index] #main-container {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("/images/inicial.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-attachment: fixed;
}

.hero--home {
  background-image: none;
}

.rifa-hero {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px 0;
}
@media (max-width: 991px) {
  .rifa-hero {
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
  }
}
.rifa-hero__cartaz {
  flex: 0 0 360px;
  margin: 0;
}
@media (max-width: 1199px) {
  .rifa-hero__cartaz {
    flex-basis: 320px;
  }
}
@media (max-width: 991px) {
  .rifa-hero__cartaz {
    flex-basis: auto;
    width: 100%;
    max-width: 320px;
  }
}
.rifa-hero__cartaz img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}
.rifa-hero__cartaz img:hover {
  transform: scale(1.02);
}
.rifa-hero__info {
  flex: 1 1 auto;
  color: #ffffff;
  text-align: center;
}
.rifa-hero__info .hero__title {
  margin: 0;
  color: #ffffff;
}
.rifa-hero__info .hero__lead {
  margin: 16px auto 0;
  max-width: 640px;
  color: #ffffff;
}
.rifa-hero__destaques {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .rifa-hero__destaques {
    grid-template-columns: repeat(2, 1fr);
  }
}
.rifa-hero__texto {
  max-width: 640px;
  margin: 24px auto 0;
  text-shadow: 2px 2px 2px #000000;
}
.rifa-hero__acoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 0;
}
.rifa-hero__acoes .btn-cta {
  margin: 0;
}

.rifa-destaque {
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}
.rifa-destaque__valor {
  display: block;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.2;
  color: #086e1e;
}
.rifa-destaque__rotulo {
  display: block;
  margin-top: 2px;
  font-size: 0.85rem;
  line-height: 1.3;
  color: #111111;
}

.social-title-section .section-content {
  min-height: 177px;
  text-align: center;
}
.social-title-section .section-content h2 {
  font-size: 3.75rem;
  line-height: 1.1;
  font-weight: 900;
  margin: 60px auto;
  color: #ffffff;
  text-shadow: 2px 2px 2px #000000;
}

.social-cards-section .section-content {
  min-height: 495px;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 50px 0;
}
@media (max-width: 991px) {
  .social-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .social-cards {
    grid-template-columns: 100%;
  }
}

.social-card {
  display: block;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 35px;
  text-align: center;
  padding: 30px;
}
.social-card, .social-card:hover {
  text-decoration: none;
  color: inherit;
}
.social-card__icon {
  width: 128px;
  height: 128px;
  margin: 0 auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
.social-card__icon--round {
  border-radius: 50%;
  background-size: cover;
}
.social-card__icon--whatsapp {
  background-image: url("/images/social/whatsapp-social.svg");
}
.social-card__icon--facebook {
  background-image: url("/images/group-index-icon.png");
}
.social-card__icon--instagram {
  background-image: url("/images/social/instagram.svg");
}
.social-card__icon--youtube {
  background-image: url("/images/youtube-index-icon.png");
}
.social-card__name {
  margin: 20px 0 0;
}
.social-card__action {
  margin: 20px 0 0;
  text-decoration: underline;
}

.hero--doutrina {
  --hero-image: url('/images/daime_2.jpg');
}
.hero--doutrina .section-content {
  min-height: 501px;
  padding: 60px 0;
}
@media (max-width: 1199px) {
  .hero--doutrina .section-content {
    min-height: 413px;
  }
}
@media (max-width: 991px) {
  .hero--doutrina .section-content {
    min-height: 316px;
  }
}
@media (max-width: 767px) {
  .hero--doutrina .section-content {
    min-height: 237px;
  }
}
@media (max-width: 575px) {
  .hero--doutrina .section-content {
    min-height: 149px;
  }
}
.hero--doutrina .hero__title {
  margin: 0;
  text-shadow: -2px 0 8px rgb(0, 0, 0);
}
.hero--doutrina .hero__lead {
  margin: 29px 0 0;
}

.doutrina-article-section .section-content {
  min-height: 451px;
}
.doutrina-article-section .section-content .rich-article {
  margin: 1px 0 20px;
}

.hero--daime {
  --hero-image: url('/images/daime_1.jpg');
}
.hero--daime .section-content {
  min-height: 490px;
  padding: 60px 0;
}
@media (max-width: 1199px) {
  .hero--daime .section-content {
    min-height: 404px;
  }
}
@media (max-width: 991px) {
  .hero--daime .section-content {
    min-height: 309px;
  }
}
@media (max-width: 767px) {
  .hero--daime .section-content {
    min-height: 232px;
  }
}
@media (max-width: 575px) {
  .hero--daime .section-content {
    min-height: 146px;
  }
}
.hero--daime .hero__title {
  margin: 0;
  text-shadow: -2px 0 8px rgb(0, 0, 0);
}
.hero--daime .hero__lead {
  margin: 29px 0 0;
}

.daime-article-section .section-content {
  min-height: 451px;
}
.daime-article-section .section-content .rich-article {
  margin: 1px 0 20px;
}

.hero--vaquinha {
  --hero-image: url('/images/MaosDadas.jpg');
  background-position: 0% 0%;
}
.hero--vaquinha .section-content {
  padding: 60px 0;
}

.texto-vaquinha {
  text-align: justify;
  margin: 40px auto;
}
.texto-vaquinha p {
  margin: 0.5rem 0;
  text-indent: 2.5rem;
}
.texto-vaquinha p[style*="text-align: center"] {
  text-indent: 0;
}

.a_link_copy {
  cursor: pointer;
  text-decoration: underline !important;
  color: #007bff !important;
  word-wrap: break-word;
}

.copy_manual_key {
  cursor: pointer;
  color: #007bff !important;
  word-wrap: break-word;
}

.hero--participar {
  --hero-image: url('/images/chacrona_2.jpg');
  background-position: 0% 0%;
  text-align: center;
}
.hero--participar .section-content {
  padding: 32px 0 50px;
}
.hero--participar .btn-cta {
  margin: 50px auto;
}

.participar-intro-section .section-content {
  padding: 20px 0;
}
.participar-intro-section .section-content p {
  text-align: justify;
  text-indent: 2rem;
}
@media (max-width: 767px) {
  .participar-intro-section .section-content p {
    text-align: left;
    text-indent: 0;
  }
}
.participar-intro-section .section-content blockquote {
  font-style: normal;
  text-indent: 0;
}

.participar-article-section .section-content .btn-cta {
  display: table;
  border-style: none;
  letter-spacing: 1px;
  margin: 20px auto 7px;
  padding: 18px 42px 20px;
}

.quote-section .section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-card {
  width: 893px;
  max-width: 100%;
  margin: 2px auto;
  text-align: center;
  padding: 5px 80px 50px;
}
@media (max-width: 991px) {
  .quote-card {
    width: 720px;
    padding-left: 55px;
    padding-right: 55px;
  }
}
@media (max-width: 767px) {
  .quote-card {
    width: 540px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .quote-card {
    width: auto;
  }
}
.quote-card__icon {
  background-color: rgb(187, 187, 187);
  -webkit-mask: url("/images/quote-left.svg") no-repeat center;
  mask: url("/images/quote-left.svg") no-repeat center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.quote-card__verse {
  font-size: 1.125rem;
  margin: 20px 0 0;
}
.quote-card__hymn {
  font-weight: 700;
  margin: 35px auto 0;
}
.quote-card__book {
  margin: 15px auto 0;
}

.location-section {
  background-color: #f2f2f2;
}
.location-section .section-content {
  min-height: 536px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1199px) {
  .location-section .section-content {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .location-section .section-content {
    min-height: 400px;
  }
}
.location-section .split {
  margin: 18px 0;
}
.location-section__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding: 30px 60px;
}
@media (max-width: 991px) {
  .location-section__info {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .location-section__info {
    min-height: auto;
    padding: 30px 10px;
  }
}
.location-section__info h2 {
  margin: 0;
}
.location-section__info p {
  margin: 0;
}
.location-section__info p:first-of-type {
  margin: 20px 0 0;
}
.location-section__map {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 20px;
}
@media (max-width: 991px) {
  .location-section__map {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .location-section__map {
    padding: 20px 10px;
  }
}
.location-section a {
  color: #6ac17d;
}

.contato-section {
  background-image: url("/images/chacrona.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.contato-section .section-content {
  min-height: 657px;
}
@media (max-width: 1199px) {
  .contato-section .section-content {
    min-height: 561px;
  }
}
@media (max-width: 991px) {
  .contato-section .section-content {
    min-height: 455px;
  }
}
.contato-section .split {
  background-color: #ffffff;
  margin: 60px 0;
}

.contato-info {
  min-height: 230px;
  padding: 19px 60px;
}
@media (max-width: 1199px) {
  .contato-info {
    min-height: 190px;
  }
}
@media (max-width: 991px) {
  .contato-info {
    min-height: 100px;
    padding: 19px 30px;
  }
}
@media (max-width: 767px) {
  .contato-info {
    padding: 19px 20px;
  }
}
.contato-info h2 {
  margin: 0;
}
.contato-info p {
  margin: 20px 0 0;
}
.contato-info .u-file-icon img,
.contato-info .icon-inline img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.contato-form {
  min-height: 424px;
  padding: 10px 50px 30px;
}
@media (max-width: 1199px) {
  .contato-form {
    min-height: 350px;
  }
}
@media (max-width: 991px) {
  .contato-form {
    min-height: 100px;
    padding: 10px 20px 30px;
  }
}
@media (max-width: 767px) {
  .contato-form {
    padding: 10px 10px 30px;
  }
}

.contato-map {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 526px;
  padding: 30px;
}
@media (max-width: 1199px) {
  .contato-map {
    min-height: 434px;
  }
}
@media (max-width: 991px) {
  .contato-map {
    min-height: 332px;
  }
}
@media (max-width: 767px) {
  .contato-map {
    min-height: 498px;
    padding: 30px 10px;
  }
}
@media (max-width: 575px) {
  .contato-map {
    min-height: 314px;
  }
}

.hero--comprar {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("/images/chacrona.png");
  color: #111111;
}
.hero--comprar .section-content {
  min-height: 475px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1199px) {
  .hero--comprar .section-content {
    min-height: 412px;
  }
}
@media (max-width: 991px) {
  .hero--comprar .section-content {
    min-height: 316px;
  }
}
@media (max-width: 767px) {
  .hero--comprar .section-content {
    min-height: 237px;
  }
}
@media (max-width: 575px) {
  .hero--comprar .section-content {
    min-height: 149px;
  }
}
.hero--comprar__title-col {
  padding: 30px;
}
@media (max-width: 767px) {
  .hero--comprar__title-col {
    padding: 30px 10px;
  }
}
.hero--comprar__title-col h2 {
  margin: 0;
  font-weight: 700;
  font-size: 3rem;
}
.hero--comprar__underline {
  width: 100px;
  height: 3px;
  background-color: #454545;
  margin: 30px auto 0 0;
}
.hero--comprar__text-col {
  padding: 30px;
  text-align: justify;
}
@media (max-width: 767px) {
  .hero--comprar__text-col {
    padding: 30px 10px;
  }
}
.hero--comprar__text-col p {
  margin: 0;
}

.comprar-title-section .section-content {
  min-height: 354px;
  text-align: center;
}
.comprar-title-section .section-content h5 {
  text-transform: uppercase;
  margin: 60px auto 0;
}
.comprar-title-section .section-content h1 {
  margin: 20px auto 0;
}
.comprar-title-section .section-content p {
  line-height: 1.8;
  width: 680px;
  max-width: 100%;
  margin: 20px auto 60px;
}

.section-cartela {
  background-color: #d9d9d9;
  text-align: center;
}
.section-cartela .section-content {
  min-height: 150px;
}
.section-cartela h4 {
  display: flex;
  align-self: center;
  justify-content: center;
}

.rifa-sub-text {
  margin: 5px 0;
  font-size: 0.8rem;
  font-style: italic;
}

.bt-rifa-submit {
  display: inline-block;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: bold;
  padding: 10px 40vw;
  text-decoration: none;
  margin: 15px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.bt-rifa-submit.active {
  border: 3px solid #337bc4;
  background: linear-gradient(to bottom, #79bbff 5%, #378de5 100%);
  background-color: #79bbff;
  box-shadow: 3px 4px 0 0 #1564ad;
  color: #ffffff;
  cursor: pointer;
  text-shadow: 0 1px 0 #528ecc;
}
.bt-rifa-submit.active:hover {
  background: linear-gradient(to bottom, #378de5 5%, #79bbff 100%);
  background-color: #378de5;
}
.bt-rifa-submit.active:active {
  position: relative;
  top: 1px;
}

.lista-numeros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  margin: 0 5vw;
  padding: 5vh 0;
  background-color: #ffffff;
}

.item-quadrado {
  display: block;
  flex-grow: 1;
  min-width: 120px;
  max-width: 120px;
  min-height: 120px;
  max-height: 120px;
  margin: 5px 10px;
  border: solid 1px #000;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 10px 10px 0 -6px rgba(0, 0, 0, 0.75);
  background-color: #ffffff;
}
.item-quadrado h1 {
  display: block;
  font-size: 2.5rem;
  width: 100%;
  margin: 20px 0 0;
}
.item-quadrado h3 {
  margin: 0;
  font-size: 1rem;
  display: block;
  width: 100%;
}
.item-quadrado.disponivel {
  border-left: solid 5px rgb(0, 175, 70);
  cursor: pointer;
}
.item-quadrado.disponivel:hover {
  border: solid 5px rgb(0, 175, 70);
}
.item-quadrado.disponivel h1 {
  color: rgb(0, 175, 70);
}
.item-quadrado.selecionado {
  border: solid 5px rgb(0, 140, 196) !important;
  cursor: pointer;
}
.item-quadrado.selecionado h1,
.item-quadrado.selecionado h3 {
  color: rgb(0, 140, 196);
}
.item-quadrado.reservado {
  border-left: solid 5px rgb(255, 136, 0);
  cursor: not-allowed;
}
.item-quadrado.reservado h1 {
  color: rgb(235, 153, 60);
}
.item-quadrado.indisponivel {
  border-left: solid 5px rgb(100, 100, 100);
  background-color: #e6e0e0;
  cursor: not-allowed;
}
.item-quadrado.indisponivel h1 {
  color: rgb(100, 100, 100);
}
.item-quadrado.indisponivel h3 {
  color: rgb(151, 151, 151);
}
.item-quadrado.indisponivel .quadrado_checkbox, .item-quadrado.reservado .quadrado_checkbox {
  display: none;
}

.bt_fixed_mobile {
  display: none;
}

@media (max-width: 780px) {
  .show_bt_comprar {
    display: block !important;
  }
  .bt_fixed_mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 88px;
  }
}
.hero--rifas {
  background-image: var(--hero-image);
  --hero-image: url('/images/panela-daime-fade.jpg');
}
.hero--rifas .section-content {
  min-height: 626px;
}
@media (max-width: 1199px) {
  .hero--rifas .section-content {
    min-height: 552px;
  }
}
@media (max-width: 991px) {
  .hero--rifas .section-content {
    min-height: 511px;
  }
}
@media (max-width: 575px) {
  .hero--rifas .section-content {
    min-height: 628px;
  }
}
.hero--rifas__text {
  width: 725px;
  max-width: 100%;
  margin: 76px auto 60px 0;
}
@media (max-width: 1199px) {
  .hero--rifas__text {
    width: 598px;
    margin: 58px auto 55px 0;
  }
}
@media (max-width: 991px) {
  .hero--rifas__text {
    width: 555px;
    margin: 36px auto 50px 0;
  }
}
@media (max-width: 767px) {
  .hero--rifas__text {
    width: 429px;
  }
}
@media (max-width: 575px) {
  .hero--rifas__text {
    width: 340px;
    margin: 58px auto 60px 0;
  }
}
.hero--rifas .hero__title {
  font-weight: 400;
  font-size: 6rem;
  margin: 0;
}
@media (max-width: 1199px) {
  .hero--rifas .hero__title {
    font-size: 4.5rem;
  }
}
@media (max-width: 575px) {
  .hero--rifas .hero__title {
    font-size: 3rem;
  }
}
.hero--rifas .hero__lead {
  font-size: 1.5rem;
  margin: 20px 0 0;
}
@media (max-width: 991px) {
  .hero--rifas .hero__lead {
    font-size: 1.25rem;
  }
}
@media (max-width: 575px) {
  .hero--rifas .hero__lead {
    font-size: 1.5rem;
  }
}

.rifa-info-section {
  background-image: linear-gradient(rgb(51, 59, 53), rgb(155, 241, 148));
}
.rifa-info-section .section-content {
  min-height: 335px;
}
@media (max-width: 1199px) {
  .rifa-info-section .section-content {
    min-height: 273px;
  }
}
@media (max-width: 991px) {
  .rifa-info-section .section-content {
    min-height: 79px;
  }
}
@media (max-width: 767px) {
  .rifa-info-section .section-content {
    min-height: 179px;
  }
}

.rifa-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: -55px 0 81px;
}
@media (max-width: 767px) {
  .rifa-info-cards {
    grid-template-columns: 100%;
  }
}

.rifa-info-card {
  background-color: #f5fef4;
  text-align: center;
  min-height: 356px;
  padding: 0 30px;
}
@media (max-width: 1199px) {
  .rifa-info-card {
    padding: 0 25px;
  }
}
@media (max-width: 991px) {
  .rifa-info-card {
    padding: 0 19px;
  }
}
@media (max-width: 767px) {
  .rifa-info-card {
    padding: 0 50px;
  }
}
@media (max-width: 575px) {
  .rifa-info-card {
    padding: 0 9px;
  }
}
.rifa-info-card__icon {
  display: block;
  width: 77px;
  height: 77px;
  padding: 10px;
  margin: 43px auto 0;
  border-radius: 50%;
  background-color: #3ea855;
}
.rifa-info-card__icon img {
  width: 100%;
  height: 100%;
}
.rifa-info-card__title {
  color: #6ac17d;
  margin: 30px 0 0;
}
.rifa-info-card__text {
  font-style: italic;
  margin: 20px 0 30px;
}

.rifa-cta-band {
  min-height: 634px;
}
@media (max-width: 1199px) {
  .rifa-cta-band {
    min-height: 573px;
  }
}
@media (max-width: 991px) {
  .rifa-cta-band {
    min-height: 530px;
  }
}
@media (max-width: 767px) {
  .rifa-cta-band {
    min-height: auto;
  }
}
.rifa-cta-band__photo {
  min-height: 634px;
}
@media (max-width: 1199px) {
  .rifa-cta-band__photo {
    min-height: 573px;
  }
}
@media (max-width: 991px) {
  .rifa-cta-band__photo {
    min-height: 530px;
  }
}
@media (max-width: 767px) {
  .rifa-cta-band__photo {
    min-height: 516px;
  }
}
@media (max-width: 575px) {
  .rifa-cta-band__photo {
    min-height: 417px;
  }
}
.rifa-cta-band--uniao .rifa-cta-band__photo {
  background-image: url("/images/299739P7FMOO926.jpg");
}
.rifa-cta-band--premios .rifa-cta-band__photo {
  background-image: url("/images/TOdos640.png");
}
.rifa-cta-band__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px 81px;
  background-image: linear-gradient(#9bf194, #6ac17d);
}
@media (max-width: 1199px) {
  .rifa-cta-band__body {
    padding: 55px 67px;
  }
}
@media (max-width: 991px) {
  .rifa-cta-band__body {
    padding: 55px 51px;
  }
}
@media (max-width: 575px) {
  .rifa-cta-band__body {
    padding: 50px 52px 50px 49px;
  }
}
.rifa-cta-band--premios .rifa-cta-band__body {
  background-image: linear-gradient(45deg, #6ac17d, #9bf194);
}
.rifa-cta-band h2 {
  font-size: 3rem;
  margin: 0;
}
@media (max-width: 991px) {
  .rifa-cta-band h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .rifa-cta-band h2 {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .rifa-cta-band h2 {
    font-size: 2.25rem;
  }
}
.rifa-cta-band__subtitle {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 34px 0 0;
}
.rifa-cta-band p {
  margin: 44px 0 0;
}
@media (max-width: 1199px) {
  .rifa-cta-band p {
    margin-top: 34px;
  }
}
.rifa-cta-band .btn-cta {
  align-self: flex-start;
  margin: 44px 0 0;
}
@media (max-width: 1199px) {
  .rifa-cta-band .btn-cta {
    margin-top: 34px;
  }
}

.rifa-buy-section .section-content {
  min-height: 304px;
  text-align: center;
}
.rifa-buy-section .section-content h2 {
  font-size: 3rem;
  margin: 89px auto 0;
}
@media (max-width: 575px) {
  .rifa-buy-section .section-content h2 {
    font-size: 1.5rem;
  }
}
.rifa-buy-section .section-content .btn-cta {
  margin: 6px auto 44px;
  padding: 44px 97px 45px 95px;
}
@media (max-width: 575px) {
  .rifa-buy-section .section-content .btn-cta {
    padding: 30px 40px;
  }
}

.watches-section {
  background-size: cover;
  background-position: 50% 50%;
}
.watches-section--chacrona {
  background-image: url("/images/chacrona.png");
}
.watches-section--chacrona .section-content {
  padding: 200px 0 0;
}
@media (max-width: 1199px) {
  .watches-section--chacrona .section-content {
    padding-top: 60px;
  }
}
.watches-section--jagube {
  background-image: url("/images/jagube.jpg");
}
.watches-section--jagube .section-content {
  padding: 45px 0;
}

.watches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .watches-grid {
    grid-template-columns: 100%;
  }
}

.watch-card {
  background-color: #ffffff;
}
.watch-card__photo {
  min-height: 273px;
  background-size: cover;
  background-position: 50% 50%;
}
@media (max-width: 1199px) {
  .watch-card__photo {
    min-height: 225px;
  }
}
@media (max-width: 991px) {
  .watch-card__photo {
    min-height: 345px;
  }
}
.watch-card__body {
  padding: 30px;
}
@media (max-width: 767px) {
  .watch-card__body {
    padding: 30px 10px;
  }
}
.watch-card__body h3 {
  margin: 0;
}
.watch-card__body p {
  margin: 20px 0 0;
}

.rifa-end-band {
  background-image: linear-gradient(0deg, rgba(45, 45, 74, 0.9), rgba(45, 45, 74, 0.9)), url("/images/1.jpg");
  background-position: 50% 50%;
  background-size: cover;
  min-height: 100px;
}
@media (max-width: 1199px) {
  .rifa-end-band {
    min-height: 221px;
  }
}
@media (max-width: 991px) {
  .rifa-end-band {
    min-height: 189px;
  }
}
@media (max-width: 767px) {
  .rifa-end-band {
    min-height: 289px;
  }
}
