@import url("https://fonts.googleapis.com/css?family=Montserrat");

*,
:after,
:before,
::backdrop {
  box-sizing: border-box;
  border: 0 solid;
  margin: 0;
  padding: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  vertical-align: middle;
  display: block;
}

::-webkit-scrollbar {
  width: 5px;
  height: 50px;
}

::-webkit-scrollbar-track {
  background: #131314;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #888;
}

::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 2px;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #f0f0f0;
  background-color: #131313;
}

.overflow_hidden {
  overflow: hidden;
}

button {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

#main_header {
  position: fixed;
  display: flex;
  width: 100%;
  padding: 12px;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  transition: all 0.3s;

  backdrop-filter: blur(32px);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.3) 0px 10px 10px 0px, rgba(0, 0, 0, 0.15) 0px 8px 12px 6px;
}

#main_header .logo {
  width: 132px;
}

#main_header .centered_menu {
  color: #fff;
  font-weight: 600;
}

#main_header .centered_menu ul {
  list-style: none;
  cursor: pointer;
}

#main_header .centered_menu > ul {
  display: flex;
  gap: 32px;
}

#main_header .centered_menu > ul > li {
  position: relative;
  display: flex;
  gap: 8px;
  line-height: 24px;
  align-items: center;
}

#main_header .centered_menu > ul > li span {
  line-height: 24px;
}

#main_header .centered_menu > ul > li:hover span,
#main_header .centered_menu > ul > li:hover svg {
  color: #fb2c36;
}

#main_header .centered_menu > ul > li .icon svg {
  display: inline-block;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}

#main_header .centered_menu > ul > li:hover .icon {
  transform: rotate(180deg);
}

#main_header .centered_menu .submenu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 24px;
  padding-top: 12px;
  left: 0;
  transition: all 0.2s;
}

#main_header .centered_menu ul > li:hover .submenu {
  visibility: visible;
  opacity: 1;
}

#main_header .centered_menu .submenu ul {
  width: 192px;
  background: #101828;
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  transform: scale(0.9);
  transform-origin: top;
  transition: all 0.2s ease-in-out;
}

#main_header .centered_menu ul > li:hover .submenu ul {
  transform: scale(1);
}

.eternity_address {
  margin: 0 auto !important;
  color: #fff;
  max-width: 320px;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  background-color: #0c0c0c;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 24px 32px;
}

#main_header .centered_menu .submenu li {
  padding: 12px;
  line-height: 24px;
}

#main_header .right {
  display: flex;
  gap: 8px;
  align-items: center;
}

#main_header .right button {
  padding: 4px 24px;
  border-radius: 10px;
  background: linear-gradient(
    oklch(0.637 0.237 25.331) 0%,
    oklch(0.577 0.245 27.325) 100%
  );
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  transition: all 0.3s;
  cursor: pointer;
}

#main_header .right button:hover {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(229, 9, 20, 0.7) 0px 0px 20px 0px;
}

#burger_menu {
  color: #fff;
  cursor: pointer;
}

@keyframes shine {
  0% {
    background-position: -100%;
  }

  50% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

#side_menu {
  position: fixed;
  display: flex;
  justify-content: flex-end;
  backdrop-filter: blur(40px);
  inset: 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

#side_menu.open {
  visibility: visible;
  opacity: 1;
}

#side_menu .bar {
  width: 300px;
  height: 100%;
  background-image: linear-gradient(rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    oklab(0 0 0 / 0.5) 0px 10px 15px -3px, oklab(0 0 0 / 0.5) 0px 4px 6px -4px;
  transform: translateX(100%);
  transition: all 0.2s;
}

#side_menu.open .bar {
  transform: translateX(0);
}

#side_menu .inner {
  padding: 24px;
  color: #fff;
}

#side_menu .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 32px;
}

#side_menu .top h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

#side_menu #side_menu_close_button {
  padding: 8px;
  transition: all 0.2s;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

#side_menu #side_menu_close_button svg {
  width: 18px;
  height: 24px;
  line-height: 24px;
  overflow: visible;
  vertical-align: -0.125em;
}

#side_menu ul {
  list-style: none;
}

#side_menu li {
  margin: 0 0 16px;
  padding: 12px;
  font-size: 18px;
  line-height: 28px;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
  text-align: -webkit-match-parent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#side_menu li:hover {
  background-color: #101828;
}

#side_menu li span {
  position: absolute;
  padding: 0 8px;
  background-image: linear-gradient(
    to right,
    oklch(0.637 0.237 25.331) 0%,
    oklch(0.577 0.245 27.325) 50%,
    rgb(255, 255, 255) 100%
  );
  background-size: 150% 100%;
  background-position: 0% 0%;
  animation: 2.5s ease-in-out 0s infinite normal none running shine;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 0px 5px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  border-radius: 6px;
}

.content {
  /* height: 300px; */
  width: 100%;
}

#main_footer {
  padding: 60px 80px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
}

#main_footer ul {
  list-style: none;
}

#main_footer .title {
  margin-bottom: 32px;
  color: #fff;
  letter-spacing: 4px;
  font-size: 27px;
  font-weight: 700;
  line-height: 40.5px;
}

.social_items {
  margin: 0 0 32px;
}

.social_items ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.social_items ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 16px;
  padding: 4px 12px;
  cursor: pointer;
  border-radius: 32px;
  transition: all 0.9s;
}

.social_items ul li:hover {
  background: #fff;
}

.social_items ul li:last-child {
  margin: 0;
}

.social_items div {
  width: 20px;
}

.social_items div svg {
  width: 100%;
  height: 100%;
  font-size: 24px;
  height: 24px;
}

.social_items span {
  line-height: 28px;
  font-weight: 700;
  font-size: 20px;
}

.social_items .facebook {
  color: rgb(87, 110, 238);
}

.social_items .twitter div {
  color: #fff;
}

.social_items .twitter span {
  color: #51a2ff;
}

.social_items li.twitter:hover div {
  color: #111;
}

.social_items .youtube {
  color: #e7000b;
}

.social_items .instagram {
  color: #f8079a;
}

#main_footer .hr_break {
  width: 80%;
  height: 1px;
  margin: 0 0 40px;
  background: #555;
}

.two_main_columns {
  flex-wrap: wrap;
  display: flex;
  max-width: 1367px;
  margin: 0 auto;
  line-height: 24px;
  margin-bottom: 48px;
  gap: 80px;
}

.two_main_columns .left img {
  width: 192px;
  border-radius: 8px;
  overflow: clip;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.two_main_columns .left img:last-child {
  margin-top: 12px;
}

.footer_title {
  color: #33c3a5;
  letter-spacing: 0.01rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 16px;
}

.four_columns {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}

.four_columns ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.four_columns ul li {
  cursor: pointer;
  transition: all 0.15s;
}

.four_columns ul li:hover {
  color: #33c3a5;
}

.copyright_row {
  display: flex;
  justify-content: space-between;
  line-height: 24px;
  margin: 16px 0;
  gap: 208px;
  color: #ebe6e7;
  letter-spacing: 0.01rem;
  align-items: center;
  font-size: 15px;
}

.copyright_row img {
  width: 208px;
}

.overlay_1,
.overlay_2,
.overlay_3,
.overlay_4 {
  position: absolute;
  inset: 0;
  z-index: 20;
}

.overlay_1 {
  background: linear-gradient(
    to right,
    oklab(0 0 0 / 0.9) 0%,
    oklab(0 0 0 / 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}
.overlay_2 {
  background: linear-gradient(
    oklab(0 0 0 / 0.9) 0%,
    oklab(0 0 0 / 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}
.overlay_3 {
  background: linear-gradient(
    to right,
    oklab(0 0 0 / 0.2) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}
.overlay_4 {
  background: linear-gradient(
    to top in oklab,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.overlay_1 iframe {
  position: relative;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: scale(1.3);
  z-index: 21;
}

.swiper {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 100vh;
  margin: 0 0 60px;
}

.swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  overflow: hidden;
}

.swiper-slide .overlay_1 img {
  position: realative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 22;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #fff;
  border-radius: 4px;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  width: 24px;
  opacity: 1;
}

.swiper_content {
  position: absolute;
  display: flex;
  inset: 0;
  top: 80px;
  align-items: center;
  z-index: 30;
}

.swiper_content .container {
  max-width: 944px;
  padding: 0 24px;
}

.swiper_content .top_part {
  margin-bottom: 32px;
}

.swiper_content .container img {
  height: 128px;
  object-fit: contain;
  margin: 0 0 16px;
  transform: scale(0.95);
  transform-origin: bottom;
  transition-duration: 0.3s !important;
}

.swiper_content .container img.show {
  transform: scale(1);
}

.swiper_content .container .item {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.swiper_content .container .item.show {
  opacity: 1;
  visibility: visible;
}

.tags {
  display: flex;
  gap: 24px;
  line-height: 24px;
  margin: 0 0 16px;
}

.tags > span {
  color: #00d492;
  line-height: 28px;
  font-size: 18px;
  font-weight: 600;
}

.tags > div {
  display: flex;
  align-items: center;
  color: #fdc700;
  font-size: 16px;
  font-weight: 500;
  gap: 4px;
}

.tags > div svg {
  width: 16px;
  height: 16px;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.categories span {
  padding: 4px 12px;
  border-radius: 20px;
  line-height: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.1);
}

.the_text {
  width: 50%;
  margin: 0 0 32px;
  font-size: 20px;
  line-height: 32.5px;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: left;
}

.main_buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.main_buttons button {
  transition: all 0.3s;
}

.main_buttons button:hover {
  transform: scale(1.02);
}

.play_button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: oklch(0.577 0.245 27.325);
  color: #fff;
  border-radius: 10px;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
}

.play_button .gradient {
  position: absolute;
  opacity: 0;
  inset: 0;
  background: linear-gradient(
    to right,
    oklch(0.637 0.237 25.331) 0%,
    oklch(0.577 0.245 27.325) 100%
  );
  transition: all 0.3s;
}

.play_button:hover .gradient {
  opacity: 1;
}

.play_button span {
  line-height: 28px;
  z-index: 10;
}

.play_button svg {
  z-index: 10;
}

.round_button {
  padding: 12px;
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.2);
  border-width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  color: #fff;
}

.round_button svg {
  font-size: 24px;
  line-height: 32px;
}

.main_buttons .round_button:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.2);
}

#mute_button {
  position: absolute;
  padding: 12px;
  border-radius: 100%;
  top: 80px;
  right: 24px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  z-index: 49;
  border-width: 1px;
  transition: all 0.3s;
}

#mute_button:hover {
  background: rgba(0, 0, 0, 0.4);
}

#mute_button.off .mute {
  display: block;
}

#mute_button.off .loud {
  display: none;
}

#mute_button .loud {
  display: block;
}

#mute_button .mute {
  display: none;
}

#mobile_fixed_menu {
  display: none;
  width: 100%;
  position: fixed;
  padding: 12px 16px;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 50;
  background-color: #000;
}

#mobile_fixed_menu .inner {
  display: flex;
  width: 100%;
  max-width: 512px;
  margin-inline: auto;
  justify-content: space-between;
  align-items: center;
}

#mobile_fixed_menu .item {
  display: flex;
  width: 64px;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.2s;
  background-color: transparent;
  color: #6a7282;
}

#mobile_fixed_menu .item.selected {
  transform: translateY(-5.74065px) scale(1.1);
}

#mobile_fixed_menu .item:active {
  transform: scale(0.9);
}

#mobile_fixed_menu .text {
  font-size: 12px;
  font-weight: 500;
  color: #99a1af;
}

#mobile_fixed_menu .item.selected .icon,
#mobile_fixed_menu .item.selected .text {
  color: #fff;
}

.columns_section {
  max-width: 1152px;
  margin: 0 auto 64px;
  padding: 40px 24px;
}

.columns_section .four_columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.columns_section .three_columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.columns_section .two_columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-card .role {
  font-weight: bold;
  color: #0077cc;
  margin-bottom: 0.5rem;
}

.social-icons a {
  margin: 0 0.3rem;
  font-size: 1.2rem;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .centered_menu {
    display: none;
  }

  #main_header .right button {
    padding: 4px 20px;
    font-size: 16px;
    line-height: 24px;
  }

  .the_text {
    display: none;
  }

  .play_button svg,
  .play_button span,
  .round_button svg {
    font-size: 14px;
    line-height: 20px;
  }

  .round_button.info svg {
    width: 16px;
    height: 16px;
  }

  #main_footer {
    padding: 40px 20px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
  }

  #main_footer .hr_break {
    margin: 0 0 16px;
  }

  .two_main_columns {
    margin-bottom: 16px;
    gap: 40px;
  }

  .two_main_columns .left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .four_columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .copyright_row {
    margin: 16px auto 88px;
    flex-direction: column;
    gap: 9px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .swiper_content .container {
    width: 100%;
    max-width: initial;
    padding: 0 16px;
  }

  .swiper_content .container img {
    height: 64px;
  }

  .tags {
    gap: 16px;
  }

  .tags > span {
    font-size: 16px;
    line-height: 24px;
  }

  .tags > div svg {
    width: 12px;
  }

  .categories span {
    font-size: 16px;
    line-height: 24px;
  }

  .swiper {
    height: 380px;
    aspect-ratio: initial;
  }

  .swiper_content {
    top: 72px;
  }

  .align_center_element iframe {
    width: auto;
    max-width: 390px !important;
    min-width: 320px !important;
  }

  .play_button {
    padding: 8px 12px;
    font-size: 16px;
  }

  .swiper_content .top_part {
    margin-bottom: 24px;
  }

  .section_title {
    line-height: 36px;
    font-size: 30px;
  }

  .columns_section {
    padding: 32px 16px;
  }

  .columns_section .columns {
    display: block;
  }

  #donations .columns > div {
    max-width: 320px;
  }

  #donations .columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }

  .columns_section .columns > div {
    margin: 0 auto 32px;
  }

  .columns_section .columns > div:last-child {
    margin-bottom: 0;
  }

  .columns_section .columns .outer_wrapper {
    margin-bottom: 0 !important;
  }

  .columns_section .columns .qr_code {
    max-width: 240px;
    margin: 0 auto 24px;
  }
}

@media (max-width: 640px) {
  #mobile_fixed_menu {
    display: flex;
  }

  .two_main_columns {
    justify-content: center;
  }
}

.hero {
  height: 98vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(public/ocean.jpg);
  background-size: cover;
  background-position: center;
  animation: subtle-move 45s infinite alternate linear;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 -100px 100px rgba(19, 19, 19, 0.4);
  z-index: 1;
}

@keyframes subtle-move {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-family: "Orbitron", sans-serif;
  color: #ff3c3c;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  text-align: center;
}

.hero-subtitle {
  font-size: 1.4rem;
  text-align: center;
}

.hero-buttons {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
}

@media (max-width: 720px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    gap: 0.5rem;
    font-size: 1rem;
  }
}

.banner {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2em;
  font-weight: bold;
  text-shadow: 0 0 5px #000;
}

.section_title {
  text-align: center;
  font-size: 2rem;
  margin: 60px 0 10px;
  color: #ffffff;
}

.section_dunga {
  width: 60px;
  height: 4px;
  background: #662323;
  margin: 10px auto 30px;
}

.section_paragraph {
  max-width: 800px;
  margin: auto;
  text-align: center;
  line-height: 1.7;
  padding: 0 20px;
  color: #cccccc;
}

.faith-verse {
  background: #1b202720;
  padding: 30px;
  font-style: italic;
  text-align: center;
  margin: 50px 0;
  border-left: 5px solid #662323;
  color: #e0e0e0;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 50px 0;
  text-align: center;
}

.stats .count {
  font-size: 3rem;
  font-weight: bold;
  color: #662323;
}

.cta {
  text-align: center;
  padding: 60px 20px;
  background: #662323;
  color: #fff;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta button {
  background: #121212;
  color: #662323;
  border: 2px solid #662323;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.cta button:hover {
  background: #662323;
  color: #fff;
}

.our-journey-section {
  padding: 5rem 0;
  text-align: center;
}

.ceo-section {
  display: flex;
  flex-wrap: wrap;
}

.ceo-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  margin: auto;
  flex-direction: column;
  justify-content: center;
  background-color: #f0f0f0;
  background: url("public/ceo.jpg") no-repeat;
  background-size: cover;
  position: relative;

  align-items: center;
  color: #f0f0f0;
}

.ceo-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #101010;
}

.ceo-content h1 span {
  color: rgba(229, 9, 20, 1);
}

.ceo-content p {
  font-size: 18px;
  color: #000;
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.read-button {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.read-button:hover {
  background-color: #333;
}

.testimonials {
  padding: 10px 30px;
  width: 100vw;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.testimonials .testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 5rem;
}

.testimonials .testimonial-card {
  background-color: #1e1e1e;
  border-radius: 8px;
  padding: 25px;
  width: 300px;
  position: relative;
  text-align: left;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.05);
}

.testimonials .logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
  position: absolute;
  top: -42px;
  border-radius: 50%;
}

.testimonials .testimonial-text {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #dddddd;
  margin-bottom: 20px;
  height: 8rem;
}

.testimonials hr {
  border: 0;
  border-top: 1px solid #8b0000; /* dark red accent */
  margin: 15px 0;
}

.testimonials .client-info {
  font-size: 0.85rem;
}

.testimonials .rating {
  color: gold;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: right;
}

.testimonials .client-name {
  font-weight: bold;
  font-size: 1rem;
  color: #ffffff;
}

.testimonials .client-location {
  color: #aaaaaa;
}

.info-sections {
  padding: 80px 30px;
  max-width: 1200px;
  margin: auto;
}

/* Glass Section Container */
.glass-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 60px 30px;
  background: #0b0b0b;
  align-items: center;
}

/* Card Styling */
.glass-card {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 1000px;
  transition: transform 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
}

/* Awards Section */
.awards h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #ff4d4d;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  letter-spacing: 1px;
}

.badge-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 24px;
  border-radius: 16px;
  width: 180px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
}
.badge:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.badge img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ff4d4d;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.badge span {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 12px;
  color: #f0f0f0;
}

/* Info Section */
.info-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.location,
.hours {
  flex: 1;
  min-width: 250px;
}

.location h3,
.hours h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff4d4d;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
}

.location p,
.hours ul,
.timezone {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

.hours-grid {
  /* display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px; */
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}
.hours-grid .line {
  display: flex;
}

.hours-grid div:nth-child(odd) {
  font-weight: bold;
}

.hours-grid .line div:nth-child(2) {
  margin-left: 1rem;
}

.hours {
  flex: 1;
  min-width: 250px;
}

.hours h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff4d4d;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
}

.timezone {
  margin-top: 10px;
  font-style: italic;
  font-size: 0.9rem;
  color: #aaa;
}

.contact-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-method {
  background: rgba(25, 25, 25, 0.9);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 60, 60, 0.3);
  box-shadow: 0 4px 30px rgba(255, 60, 60, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 40px rgba(255, 60, 60, 0.25);
  border-color: rgba(255, 60, 60, 0.5);
}

.contact-method::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.7), #bf1212);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-method:hover::before {
  opacity: 1;
}

.contact-method .head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-method .icon {
  width: 32px;
  height: 32px;
  color: #eee;
}

.contact-method h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.contact-method p {
  font-size: 1rem;
  color: #d1d1d1;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  height: 4.5rem;
}

.contact-method a {
  display: inline-block;
  color: #ff3c3c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #ff3c3c;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-method a:hover {
  background: #ff3c3c;
  color: #fff;
  transform: scale(1.05);
}

/* Animations */
.contact-method.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.contact-method:nth-child(1) {
  animation-delay: 0.2s;
}
.contact-method:nth-child(2) {
  animation-delay: 0.3s;
}
.contact-method:nth-child(3) {
  animation-delay: 0.4s;
}
.contact-method:nth-child(4) {
  animation-delay: 0.5s;
}
.contact-method:nth-child(5) {
  animation-delay: 0.6s;
}
.contact-method:nth-child(6) {
  animation-delay: 0.7s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 1rem;
  }

  .contact-container {
    max-width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-method {
    padding: 1.5rem;
  }

  .contact-method h2 {
    font-size: 1.3rem;
  }

  .contact-method p {
    font-size: 0.95rem;
  }

  .contact-method a {
    font-size: 1rem;
  }
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #151516;
  border: 1px solid rgba(255, 60, 60, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 30px rgba(255, 60, 60, 0.1);
  position: relative;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(255, 60, 60, 0.2);
  border-color: rgba(255, 60, 60, 0.5);
}

.faq-question {
  width: 100%;
  background: linear-gradient(90deg, #151516, #1b1b1c);
  border: none;
  padding: 1.5rem 2rem;
  color: #eee;
  font-size: 1.25rem;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  position: relative;
  transition: background 0.3s ease;
  font-family: "Segoe UI", sans-serif;
}

.faq-question:hover {
  background: linear-gradient(90deg, #bf1212 0%, #1b1b1c 100%);
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #662323;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover .faq-question::before {
  opacity: 1;
}

.faq-answer {
  color: #d1d1d1;
  background: #1b1b1c;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  line-height: 1.8;
  display: none;
  border-top: 1px solid rgba(255, 60, 60, 0.2);
}

.faq-item.open .faq-answer {
  display: block;
  animation: slideDown 0.4s ease;
}

.faq-item .icon {
  width: 24px;
  height: 24px;
  color: #ff3c3c;
  transition: transform 0.4s ease;
}

.faq-item.open .icon {
  transform: rotate(180deg);
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
  }
}

.hq-card {
  background: rgba(25, 25, 25, 0.9);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 60, 60, 0.3);
  box-shadow: 0 8px 40px rgba(255, 60, 60, 0.15);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(255, 60, 60, 0.25);
  border-color: rgba(255, 60, 60, 0.5);
}

.hq-section {
  position: relative;
  padding-left: 1rem;
}

.hq-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff3c3c, #ff6b6b);
  border-radius: 2px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hq-card:hover .hq-section::before {
  opacity: 1;
}

/* Animations */
@keyframes mapPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.4;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hq-card {
    padding: 1.5rem;
  }

  .hq-section h3 {
    font-size: 1.5rem;
  }

  .hq-section p,
  .hq-section ul {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .hq-card {
    flex-direction: row;
    gap: 4rem;
  }

  .hq-section {
    flex: 1;
  }
}

#contact-form .form-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #0b0b0c 0%, #1a1a1b 100%);
  position: relative;
  overflow: hidden;
  font-family: Montserrat, sans-serif;
}

#contact-form .form-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#contact-form .contact-form {
  background: rgba(25, 25, 25, 0.9);
  backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 60, 60, 0.3);
  box-shadow: 0 4px 30px rgba(255, 60, 60, 0.1);
  transition: all 0.4s ease;
}

#contact-form .contact-form:hover {
  box-shadow: 0 8px 40px rgba(255, 60, 60, 0.25);
  border-color: rgba(255, 60, 60, 0.5);
}

#contact-form .form-label {
  display: block;
  margin-bottom: 1.5rem;
  position: relative;
}

#contact-form .form-label span {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#contact-form .form-label input,
#contact-form .form-label textarea {
  width: 100%;
  background: #1b1b1c;
  border: 1px solid rgba(255, 60, 60, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #d1d1d1;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

#contact-form .form-label input:focus,
#contact-form .form-label textarea:focus {
  border-color: #ff3c3c;
  box-shadow: 0 0 10px rgba(255, 60, 60, 0.5);
}

#contact-form .form-label input::placeholder,
#contact-form .form-label textarea::placeholder {
  color: #666;
}

#contact-form .form-label textarea {
  resize: vertical;
  min-height: 120px;
}

#contact-form .submit-button {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.7), #bf1212);
  border: none;
  border-radius: 8px;
  padding: 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#contact-form .submit-button:hover {
  background: linear-gradient(90deg, #662323, #bf1212);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 60, 60, 0.5);
}

#contact-form .submit-button:active {
  transform: translateY(0);
}

#contact-form .contact-form {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  #contact-form .form-section {
    padding: 4rem 1rem;
  }

  #contact-form .form-container {
    max-width: 100%;
  }

  #contact-form .contact-form {
    padding: 1.5rem;
  }

  #contact-form h2 {
    font-size: 2rem;
  }

  #contact-form .form-label span {
    font-size: 1rem;
  }

  #contact-form .form-label input,
  #contact-form .form-label textarea {
    font-size: 0.95rem;
  }

  #contact-form .submit-button {
    font-size: 1rem;
  }
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ff3c3c;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin: -2rem 2rem 2rem 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

section {
  padding: 5rem 0;
}

/* Gospel Presentation Styles */
#gospel-presentation {
  background-color: rgba(20, 20, 20, 0.8);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  padding: auto 2rem;
}

.gospel-message h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
}

.gospel-message {
  width: 40%;
  height: auto;
  border-radius: 12px;
  background-color: #272727;
  padding: 24px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 3px red solid;
}

.gospel-message > div > blockquote {
  margin: 1rem 0;
}

.gospel-video {
  text-align: center;
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
  color: #cecece;
}

.gospel-video > div > h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
}

.gospel-video > div {
  margin-bottom: 20px;
}

@media (max-width: 1350px) {
  #gospel-presentation {
    background-color: rgba(20, 20, 20, 0.8);
    display: flex;
    flex-direction: column;
    margin: 0 2rem;
    gap: 0;
  }
  .gospel-message {
    width: auto;
    margin: 2.2rem auto 0 auto;
  }
  .gospel-video {
    width: 100%;
  }
}

.gospel-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.gospel-card {
  border: 1px solid #ff3c3c;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
  padding: 2rem;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.gospel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.gospel-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.bible-verse {
  font-style: italic;
  margin: 1rem 0;
  color: #e0e0e0;
}

.reference {
  font-weight: bold;
  color: #ff3c3c;
  margin-bottom: 1rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
  border: 1px solid rgba(255, 0, 0, 0.5);
  background-color: rgba(0, 255, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 100;
  pointer-events: auto;
  display: block;
}

/* Checklist Styles */
#eternity-checklist {
  background-color: rgba(30, 30, 30, 0.8);
  color: #f0f0f0;
  padding: 2rem 0;
}

#eternity-checklist .section-title,
#eternity-checklist .section-subtitle {
  color: #f0f0f0;
}

.checklist-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(40, 40, 40, 0.9);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 0, 0, 0.5);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.checklist-item {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
}

.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block; /* garante que não ocupe 100% do container */
  width: 24px !important; /* força 24px apesar de outras regras */
  height: 24px !important;
  background-color: rgba(50, 50, 50, 0.8);
  border: 2px solid #ff3c3c;
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  vertical-align: middle; /* alinha bem com o label */
}

.custom-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #ff3c3c;
}

.checklist-result {
  margin-top: 2rem;
  text-align: center;
}

.btn {
  background-color: #333;
  color: #fff;
  border: 1px solid #ff3c3c;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.4);
  background-color: #444;
  transform: scale(1.1);
}

.btn-primary {
  background-color: #ff3c3c;
  color: white;
  border: none;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #d40000;
}

.hidden {
  display: none;
}

#result-message {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: rgba(40, 40, 40, 0.95);
  color: #f0f0f0;
  border-radius: 8px;
  border: 1px solid rgba(255, 0, 0, 0.5);
}

#result-message > p {
  padding-bottom: 1rem;
}

#testimonials {
  padding: 0 0;
}

@media (max-width: 780px) {
  .swiper-pagination {
    opacity: 0;
  }

  #testimonials {
    padding-bottom: 12rem;
  }
}

@media (max-width: 420px) {
  #testimonials {
    padding-bottom: 6rem;
  }
}

@media (max-width: 580px) {
  #testimonials {
    padding-bottom: 5rem;
  }
}

.section-title {
  color: #ff3c3c;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

/* Swiper container */
.testimonial-swiper {
  width: 100%;
  padding-bottom: 60px; /* Add padding for pagination */
  overflow: visible !important; /* Important to show slides properly */
}

.testimonial-swiper::before,
.testimonial-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none; /* Permite clicar através do gradiente */
}

/* Slide styles */
.testimonial-slide {
  height: auto !important; /* Override Swiper's default height settings */
  display: flex;
  justify-content: center;
}

.testimonial-content {
  background-color: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 25px rgba(255, 0, 0, 0.15);
  position: relative;
}

.testimonial-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 2px; /* Espessura do gradiente */
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.6) 0%,
    rgba(255, 0, 0, 0.2) 50%,
    rgba(255, 0, 0, 0.05) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Video container with proper aspect ratio */
.video-container {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #000 80%, #1e1e1e 100%);
  z-index: 1;
  pointer-events: none;
}

.video-container iframe {
  top: 0;
  left: 0;
  width: 100% !important; /* Override inline styles */
  height: 100% !important; /* Override inline styles */
  border: none;
}

/* Testimonial text */
.testimonial-text {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.testimonial-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(50, 0, 0, 0.1) 0%,
    rgba(30, 30, 30, 0) 70%
  );
  z-index: -1;
}

.btn-watch {
  margin: auto auto;
  padding: 12px 18px;
  background-color: red;
  border-radius: 10px;
  font-weight: 800;
  transition: all 0.3s;
  margin-bottom: 12px;
}

.btn-watch:hover {
  background-color: rgb(194, 0, 0);
  transform: scale(1.1) translateY(-5px);
  color: #eee;
}

.testimonial-text h3 {
  color: #ff3c3c;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial-text p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Stats styling */
.testimonial-stat {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #444;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.testimonial-stat::before {
  content: "";
  position: absolute;
  top: -1px; /* Alinha com a borda */
  left: 25%;
  right: 25%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(68, 68, 68, 0),
    rgba(255, 0, 0, 0.5),
    rgba(68, 68, 68, 0)
  );
}

.stat-number {
  color: #ff3c3c;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  position: relative;
}

.stat-number::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  background: linear-gradient(
    to right,
    rgba(255, 0, 0, 0),
    rgba(255, 0, 0, 0.7),
    rgba(255, 0, 0, 0)
  );
  border-radius: 50%;
  filter: blur(1px);
}

.stat-label {
  color: #ddd;
  font-size: 1rem;
}

/* Swiper navigation styling */
.swiper-button-next,
.swiper-button-prev {
  color: #ff3c3c !important;
  background: rgba(0, 0, 0, 0.4);
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}

@media (min-width: 1500px) {
  .swiper-button-next,
  .swiper-button-prev {
    margin: 0 -10rem;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #a50000 !important;
  background: rgba(0, 0, 0, 0.4);
}

.swiper-button-next:active,
.swiper-button-prev:active {
  color: #6b0000 !important;
  background: rgba(0, 0, 0, 0.4);
}

/* Swiper pagination styling */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #444;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #ff3c3c;
  width: 25px;
  border-radius: 5px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .testimonial-content {
    max-width: 90%;
  }

  .testimonial-text {
    padding: 15px;
  }

  .testimonial-text h3 {
    font-size: 1.3rem;
  }

  .testimonial-text p {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .btn-watch {
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 6px;
  }

  /* Adjust navigation buttons for mobile */
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 16px !important;
  }

  .testimonial-swiper::before,
  .testimonial-swiper::after {
    width: 40px;
  }
}

/* Make sure slides have equal heights in each row */
.swiper-wrapper {
  align-items: stretch;
}

/* Prayer Form Styles */
#prayer-form {
  background-color: #1c1c1c;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #272727;
  border-radius: 8px;
  border: 1px solid rgba(255, 0, 0, 0.5);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #e0e0e0;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 0, 0, 0.3);
  background-color: rgba(50, 50, 50, 0.8);
  color: #f0f0f0;
  border-radius: 4px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff3c3c;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.form-group.checkbox {
  display: flex;
  align-items: center;
}

.form-group.checkbox label {
  margin: 0 0 0 12px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .gospel-steps {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-slide {
    padding: 0.5rem;
  }
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glow Effects */
h3 {
  color: #ff3c3c;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 4rem 6rem;
}

.box {
  background-color: rgba(30, 30, 30, 0.9);
  border: #303030 solid 2px;
  color: #f0f0f0;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 720px) {
  .grid {
    margin: 4rem 2rem;
  }
}

.box h2 {
  margin-top: 0;
  color: #ff3c3c;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.box > p > span {
  color: #ff3c3c;
  font-weight: 700;
}

.box ul {
  padding-left: 20px;
  margin-top: 10px;
  line-height: 1.6;
}

.box ul li {
  list-style-type: upper-roman;
  color: #cecece;
}

.box ul li h3 {
  color: #ff3c3c;
  font-weight: 700;
  font-size: 18px;
}

blockquote {
  font-style: italic;
  margin: 10px 0 0;
  border-left: 3px solid #ff3c3c;
  padding-left: 15px;
  color: #cecece;
}

blockquote > span {
  font-weight: 700;
  color: #ff3c3c;
}

.prayer-section {
  padding: 30px;
  text-align: center;
  margin-top: 1rem;
}

.prayer-support > .container > h2 {
  font-size: 2.5rem;
}

.prayer-section a {
  display: inline-block;
  background-color: #ff3c3c;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 14px;
  font-size: 1.1rem;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.prayer-section a:hover {
  background-color: #ce0000;
  transform: scale(1.1);
}

.prayer-section a:active {
  background-color: #8f0000;
  transform: scale(1.05);
}

/* Pop-up de vídeo */
.popup {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: rgba(30, 30, 30, 0.9);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  max-width: 90%;
  max-height: 90%;
  width: 80vw;
  height: auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 proporção */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup-content .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100;
}

@media (max-width: 760px) {
  .popup-content {
    padding: 8px;
    width: 100vw;
  }

  .popup-content .close {
    top: 100%;
    background-color: rgba(30, 30, 30, 0.9);
    padding: 4px 16px;
    border-radius: 0px 0px 20px 20px;
  }
}

/* Recursos */
.resources-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 40px 0;
}

.resources-section > h2 {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.55);
  font-size: 2.8em;
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.resource-box {
  min-width: 360px;
  height: 320px;
  background: rgba(30, 30, 30, 0.9);
  border: 2px #2e2e2e solid;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  cursor: pointer;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-box:hover {
  background: #353535;
  border: 2px #4b4b4b solid;
  transform: translateY(-5px);
}

.resource-img {
  background-position: center;
  background-size: cover;
  height: 60%;
  background-image: url("/api/placeholder/360/192");
}

.resource-box > div:last-child {
  padding: 20px;
}

.resource-box p {
  font-weight: 600;
  margin: 0 0 10px 0;
}

.resource-box a {
  display: inline-block;
  margin-top: 10px;
  color: #ff3c3c;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-box a:hover {
  color: #ff5555;
  text-shadow: 0 0 10px rgba(255, 60, 60, 0.5);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.nav-btn {
  background: rgba(255, 60, 60, 0.2);
  border: 2px solid #ff3c3c;
  color: #ff3c3c;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255, 60, 60, 0.4);
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 60, 60, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ff3c3c;
  box-shadow: 0 0 10px rgba(255, 60, 60, 0.5);
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .resources-section > h2 {
    font-size: 2.2em;
  }

  .resource-box {
    min-width: 300px;
    height: 280px;
  }

  .carousel-container {
    margin: 0 20px;
  }
}

@media (max-width: 480px) {
  .resource-box {
    min-width: 280px;
    height: 250px;
  }

  .carousel-container {
    margin: 0 10px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Oração e Igreja */
.sinners-prayer,
.find-church {
  margin: 0 6rem;
  padding: 20px;
  background: rgba(30, 30, 30, 0.9);
  border-left: 6px solid #ff3c3c;
  border-radius: 12px;
}

.find-church {
  margin-top: 40px;
}

.find-church > h2,
.sinners-prayer > h2 {
  font-family: "Orbitron", sans-serif;
  color: #ff3c3c;
}

.find-church a.btn-link {
  margin-top: 10px;
  display: inline-block;
  background: #ff3c3c;
  color: white;
  padding: 12px 18px;
  border-radius: 5px;
  text-decoration: none;
}

.find-church a.btn-link:hover {
  background-color: #ce0000;
  transform: scale(1.1);
}

.find-church a.btn-link:active {
  background-color: #8f0000;
  transform: scale(1.05);
}

.find-church .find-map {
  width: 100%;
  height: 400px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
}

/* Container do mapa */
.find-church .find-map {
  width: 100%;
  height: 400px;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
}

/* Iframe do mapa */
.find-church .find-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.pray-column {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media (max-width: 640px) {
  .find-church {
    padding: 1rem;
    margin: 2rem 2rem;
  }
  .find-church h2 {
    font-size: 1.5rem; /* 24px */
  }
  .find-church .find-map {
    height: 300px;
  }
  .sinners-prayer {
    margin: -2rem 2rem;
  }
}

@media (max-width: 1024px) {
  .pray-column {
    flex-direction: column;
  }
  .prayer-section {
    margin-right: 0;
  }
}

.volunteer-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  background-image: url(public/volunteer.png);
  background-size: cover;
  background-position: center;
  margin: 2rem 0 0 0;
  box-shadow: inset 0 1px 0 rgba(19, 19, 19, 0.55);
}

.volunteer-section > * {
  position: relative;
  z-index: 2;
}

.volunteer-section::before {
  content: "";
  position: absolute;
  margin-top: 1px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 -100px 100px rgba(19, 19, 19, 0.8);
  z-index: 1;
}

.verse-section {
  background-color: #1e1e1e;
}

#verse-text {
  font-size: 1.2rem;
  text-align: center;
  padding: 0px 10rem;
}

#verse-ref {
  font-size: 1rem;
  padding-top: 0.8rem;
  text-align: center;
  color: #ff3c3c;
  font-weight: 600;
  margin: 0 auto;
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid #ff3c3c88;
}

@media (max-width: 780px) {
  #verse-text {
    padding: 0px;
  }
}

.history-timeline {
  display: grid;
  gap: 24px;
}

.way-tittle {
  margin: 0 auto -2rem auto;
}

.prayer-support {
  background-color: #131313;
  color: #fff;
  padding: 0 2rem;
  font-family: Arial, sans-serif;
  text-align: center;
}

.prayer-support h2 {
  font-size: 3em;
  font-family: "Orbitron", sans-serif;
  color: #ff3c3c;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  margin-bottom: 10px;
}

.prayer-support .subtitle {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.prayer-support .cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background-color: #1d1d1d;
  border: #303030 solid 2px;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.card h3 {
  color: #ff3c3c;
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
}

.card p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.card a {
  display: inline-block;
  margin-top: 12px;
  color: #ff3c3c;
  text-decoration: underline;
  font-size: 0.9em;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.accordion details {
  background-color: #1d1d1d;
  border: 2px solid #303030;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.accordion details:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.accordion summary {
  color: #ff3c3c;
  font-size: 20px;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: "Orbitron", sans-serif;
}

.accordion summary::marker {
  display: none;
}

.accordion summary::after {
  content: "➕";
  position: absolute;
  right: 0;
  transition: transform 0.3s;
}

.accordion details[open] summary::after {
  content: "➖";
}

.accordion p {
  margin-top: 10px;
  color: #ddd;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.card a:hover {
  color: #fca5a5;
}

.cta {
  margin-top: 60px;
}

.cta h4 {
  font-size: 1.2em;
  color: #eee;
  margin-bottom: 15px;
}

.btn-cta {
  background-color: #ef4444;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-cta:hover {
  background-color: #dc2626;
}

.verse {
  border-left: none;
}

.badge {
  position: absolute;
  top: 18px;
  left: -12px;
  background: var(--badge-bg);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.christian-growth {
  background-color: #1b1b1b;
  padding: 50px 0;
}

.growth-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.growth-card {
  background-color: #272727;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #303030;
  border-bottom: 4px solid #ff3333;
  transition: all 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  gap: 0.4rem;
}

.growth-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 51, 51, 0.2);
}

.growth-icon {
  font-size: 2rem;
  color: #ff3333;
  margin-bottom: 15px;
}

.commitment-form {
  background-color: #272727;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  margin: 30px auto 0;
  border: 2px solid #303030;
  border-bottom: 4px solid #ff3333;
}

.devotional-resources {
  margin-top: 40px;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header h2 {
    font-size: 1.2rem;
  }

  .header-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .growth-resources {
    margin: 0 8vw;
  }

  .container > .section-subtitle {
    margin: -2rem 2rem 2rem 2rem;
  }
}

.cep-search {
  margin-top: -2rem;
  padding: 0 0 24px 0;
  border-radius: 12px;
  text-align: center;
}

.cep-search h2 {
  font-family: "Orbitron", sans-serif;
  color: #ff3c3c;
  margin-bottom: 16px;
  font-size: 28px;
}

.cep-search input {
  padding: 10px;
  width: 250px;
  border: none;
  border-radius: 6px;
  margin-right: 10px;
  background-color: #1e1e1e;
  color: white;
  outline: none;
  border: 1px solid #444;
}

.cep-search button {
  padding: 10px 20px;
  background-color: #ff3c3c;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.cep-search button:hover {
  background-color: #ce0000;
  transform: scale(1.05);
}

/* ====== Gospel & Salvation Section Styles ====== */

#gospel,
#how-to-be-saved,
#what-is-gospel {
  background-color: #1b1b1b;
  border-radius: 10px;
  padding: 1rem 1rem;
  max-width: 100%;
}

#gospel h2,
#how-to-be-saved h2,
#what-is-gospel h2 {
  color: #ff0000;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
}

#how-to-be-saved p,
#what-is-gospel p {
  padding-top: 1rem;
}

#gospel .section-subtitle,
#how-to-be-saved .section-subtitle,
#what-is-gospel .section-subtitle {
  color: #ccc;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.gospel-explanation p,
.salvation-steps p {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 20px;
}

.gospel-explanation blockquote,
.salvation-steps blockquote {
  border-left: 4px solid #ff0000;
  background-color: #1a1a1a;
  padding: 15px 20px;
  margin: 20px 0;
  color: #eee;
  font-style: italic;
}

.gospel-explanation blockquote span,
.salvation-steps blockquote span {
  display: block;
  margin-top: 8px;
  color: #ff0000;
  font-weight: bold;
}

.salvation-steps ol {
  list-style: none;
  counter-reset: steps;
  padding-left: 0;
}

.salvation-steps ol li {
  background-color: #272727;
  border-left: 4px solid #ff0000;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  counter-increment: steps;
  position: relative;
}

.salvation-steps ol li::before {
  content: counter(steps);
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ff0000;
  color: #111;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.salvation-steps ol li h3 {
  color: #ff0000;
  margin-bottom: 8px;
}

.call-to-action {
  text-align: center;
  margin-top: 30px;
}

.call-to-action p {
  color: #ccc;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.call-to-action .btn {
  background-color: #ff0000;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.call-to-action .btn:hover {
  background-color: #cc0000;
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1rem;

  background-position: center;
  background-size: cover;

  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}

.section-header > .section-title {
  color: #ddd;
}

.section-header > span {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 100%;
  background-color: #ff0000;
}
