@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --color-background: #ffae00;

  --color-black: #282832;

  --color-white: #ffffff;

  --color-brown: #6e4e07;

  --color-brown-light: #fceac2;

  --color-red: #7b0000;
}

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;

  font-family: "Roboto", Helvetica, sans-serif;

  text-decoration: none;
}

video {
  height: 500px !important;
}

button:focus,
button:focus-visible {
  outline: none !important;

  box-shadow: none !important;
}

.btn-white {
  background-color: var(--color-white) !important;

  color: var(--color-black) !important;

  border-radius: 20px;

  padding: 15px 25px;

  font-size: 20px;

  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-sm {
  padding: 9px 15px !important;

  border-radius: 15px !important;

  font-size: 18px !important;
}

.btn-social {
  width: 50px;

  color: var(--color-black);
}

.btn-social:hover {
  background-color: var(--color-brown-light) !important;

  transition: 1s;
}

header {
  position: relative !important;

  top: 0 !important;

  left: 0 !important;

  right: 0 !important;

  background: var(--color-background) !important;

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;

  padding: 0px 10px !important;

  display: flex !important;

  align-items: center !important;

  justify-content: space-between !important;

  z-index: 1000 !important;
}

header .img-logo {
  height: 80px;
}

header .navbar ul {
  list-style: none !important;
}

header .navbar ul li {
  position: relative !important;

  float: left !important;
}

header .navbar ul li a {
  font-size: 14px !important;

  padding: 20px !important;

  color: var(--color-black) !important;

  display: block !important;
}

header .navbar ul li a:hover {
  background: #6e4e07 !important;

  color: #ffffff !important;

  transition: 1s !important;

  text-decoration: none !important;
}

header .navbar ul li ul {
  position: absolute !important;

  left: 0 !important;

  width: 200px !important;

  background: #fff !important;

  display: none !important;
}

header .navbar ul li ul li {
  width: 100% !important;

  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

header .navbar ul li ul li ul {
  left: 200px !important;

  top: 0 !important;
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul {
  display: initial !important;
}

#menu-bar {
  display: none !important;
}

header label {
  font-size: 20px !important;

  color: #333 !important;

  cursor: pointer !important;

  display: none !important;
}

@media screen and (max-width: 991px) {
  header {
    padding: 20px !important;
  }

  header label {
    display: initial !important;
  }

  header .navbar {
    position: absolute !important;

    top: 100% !important;

    left: 0 !important;

    right: 0 !important;

    background-color: #fff !important;

    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;

    display: none !important;

    padding: 0;
  }

  header .navbar ul li {
    width: 100% !important;
  }

  header .navbar ul li ul {
    position: relative !important;

    width: 100% !important;
  }

  header .navbar ul li ul li {
    background-color: #fceac2 !important;
  }

  header .navbar ul li ul li ul {
    width: 100% !important;

    left: 0 !important;
  }

  #menu-bar:checked ~ .navbar {
    display: initial !important;
  }
}

#top-button {
  display: none;

  position: fixed;

  bottom: 20px;

  left: 10px;

  background-color: var(--color-black);

  color: #fff;

  padding: 7px;

  cursor: pointer;

  border-radius: 5px;

  opacity: 80%;

  z-index: 1000;
}

.img-top-button {
  width: 25px;

  color: #ffffff;
}

.whoweare-container,
.history-container,
.message-priest-container,
.testimonials-container,
.social-media-container {
  margin-top: 100px;

  margin-bottom: 150px;
}

.h2-whoweare,
.h2-history,
.h2-social,
.h2-message-priest,
.h2-testimonials {
  margin-bottom: 60px;

  color: var(--color-brown);
}

.banner-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("../img/paroquia_sao_joao_batista_do_bras\ \(2\).jpg");

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  height: 700px;

  width: 100%;

  padding-top: 0;
}

.banner-text h1 {
  text-align: center;

  color: white;
}

.banner-text h2 {
  text-align: center;

  color: white;

  font-size: 20px;
}

.social-section {
  background-color: #f8f9fa;

  padding: 60px 0;

  text-align: center;
}

.social-title {
  color: #ffc107;

  font-weight: bold;

  text-transform: uppercase;
}

.social-card {
  background: white;

  border-radius: 10px;

  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);

  padding: 20px;

  text-align: center;

  transition: transform 0.3s ease-in-out;
}

.social-card:hover {
  transform: scale(1.05);
}

.social-icon {
  font-size: 40px;

  color: #ffc107;

  margin-bottom: 15px;
}

.btn-social-social {
  background-color: #ffc107;

  border: none;

  color: var(--color-black);

  padding: 10px 20px;

  border-radius: 5px;

  text-decoration: none;

  display: inline-block;

  margin-top: 10px;

  transition: 0.3s ease;
}

.btn-social-social:hover {
  background-color: #e0a800;
}

.timeline {
  position: relative;

  padding: 50px 0;
}

.timeline::before {
  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  left: 50%;

  width: 4px;

  background: #ffc107;

  transform: translateX(-50%);
}

.timeline-item {
  position: relative;

  width: 50%;

  padding: 20px;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item::before {
  content: "";

  position: absolute;

  top: 30px;

  right: -10px;

  width: 20px;

  height: 20px;

  background: #ffc107;

  border-radius: 50%;
}

.timeline-item:nth-child(even)::before {
  left: -10px;

  right: auto;
}

.timeline-content {
  background: white;

  padding: 20px;

  border-radius: 10px;

  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);

  transition: 0.3s ease-in-out;
}

.timeline-content:hover {
  transform: scale(1.05);
}

.timeline img {
  width: 100%;

  border-radius: 10px;

  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;

    left: 0 !important;

    padding-left: 40px;

    margin-bottom: 60px;
  }

  .timeline-item::before {
    left: 10px !important;
  }
}

.highlight-section {
  background-color: #f8f9fa;

  padding: 60px 0;

  text-align: center;
}

.highlight-card {
  margin-top: 100px;

  background: white;

  border-radius: 10px;

  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);

  overflow: hidden;

  transition: transform 0.3s ease-in-out;
}

.highlight-card:hover {
  transform: scale(1.05);
}

.highlight-card img {
  width: 100%;

  height: 250px;

  object-fit: cover;
}

.highlight-content {
  padding: 20px;
}

.highlight-content h4 {
  color: #ffc107;
}

.btn-highlight {
  background-color: #ffc107;

  border: none;

  color: white;

  padding: 10px 20px;

  border-radius: 5px;

  text-decoration: none;

  display: inline-block;

  margin-top: 10px;

  transition: 0.3s ease;
}

.btn-highlight:hover {
  background-color: #e0a800;
}

.btnSocialMedia {
  border: none;

  border-radius: 20px;

  padding: 10px 20px;

  text-decoration: none;
}

.btnSocialMedia:hover {
  background: (rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));

  color: white;

  transition: 1s;
}

.btnInstagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );

  color: white;
}

.btnFacebook {
  background: linear-gradient(45deg, #1877f2, #0e5a8a);

  color: white;
}

.btnYoutube {
  background: linear-gradient(45deg, #ff0000, #cc0000);

  color: white;
}

.btnWhatsapp {
  background: linear-gradient(45deg, #25d366, #128c7e);

  color: white;
}

footer {
  background-color: var(--color-red);

  color: white;

  padding: 40px 0;
}

footer a {
  color: var(--color-white);
}

footer a:hover {
  color: var(--color-background);
}

.social-icons a {
  font-size: 24px;

  margin: 0 10px;

  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.linksFooter ul {
  margin-top: 10px;
}

.linksFooter ul li a:hover {
  color: var(--color-background);

  text-decoration: none;

  transition: 0.6s;
}

.titleFooter {
  font-weight: bold;
}

.a-special:hover {
  color: var(--color-background);

  text-decoration: none;

  transition: 0.6s;
}

.btnContribua {
  margin-top: 50px;

  margin-bottom: 50px;
}

.contribua {
  background-color: var(--color-brown-light);

  color: var(--color-black);

  border: none;

  border-radius: 20px;

  padding: 10px 20px;
}

.contribua:hover {
  color: var(--color-brown-light);

  background-color: var(--color-brown);

  text-decoration: none;

  transition: 1s;
}

.name-dev-footer {
  color: var(--color-background);
}

.name-dev-footer:hover {
  color: var(--color-brown-light);

  transition: 1s;
}

/* Estilos para os cards numerados */

.card {
  border: none;

  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  padding: 10px;

  border-radius: 10px;

  margin-bottom: 30px;

  background-color: var(--color-brown-light);
}

.card:hover {
  transform: translateY(-5px);

  box-shadow: 0px 6px 15px var(--color-brown);

  transition: 1s;
}

.card-body h3 {
  font-size: 2rem;

  margin-bottom: 20px;

  color: var(--color-red);
}

.card-body p {
  font-size: 1rem;

  color: #333;

  text-align: justify;
}

.card-body p .strong-title {
  color: var(--color-brown);
}

/* Responsividade */

@media (max-width: 768px) {
  .col-md-4 {
    margin-bottom: 20px;
  }
}

.important-text p {
  line-height: 1.7 !important;

  font-weight: normal !important;
}

.important-text blockquote {
  margin-top: 30px;

  padding: 20px;

  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

  font-weight: bold;

  border-radius: 20px;

  background-color: var(--color-brown-light);
}

.important-text blockquote:hover {
  transform: translateY(-5px);

  box-shadow: 0px 6px 15px var(--color-brown);

  transition: 1s ease-in-out;
}

.testimonial-card {
  text-align: center;

  background: #fff;

  padding: 20px;

  border-radius: 10px;

  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

  margin-bottom: 50px;

  height: 300px;
}

.testimonial-card img {
  width: 80px;

  border-radius: 50%;

  margin-bottom: 10px;
}

.events-card {
  text-align: center;

  background: #fff;

  padding: 20px;

  border-radius: 10px;

  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

  margin-bottom: 50px;

  height: 450px;
}

.events-card .principal-events {
  width: 100%;
}

.stars {
  color: gold;

  font-size: 18px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 25px;
}

.swiper-button-prev::after {
  margin-right: 30px;
}

.swiper-button-next::after {
  margin-left: 30px;
}

.swiper-pagination {
  margin-top: 150px;
}

.swiper-pagination-bullet {
  width: 24px;

  height: 24px;

  background-color: var(--color-brown);
}

.btnDoar a {
  display: inline-block;

  color: var(--color-white);

  background-color: var(--color-red);

  text-transform: uppercase;

  font-weight: 500;

  padding: 15px;

  border-radius: 15px;

  margin-top: 20px;

  width: 150px;
}

.btnDoar a:hover {
  text-decoration: none;

  border: 1px solid var(--color-red);

  background-color: var(--color-brown-light);

  color: var(--color-red);

  transition: 1s;
}

.btnInscrever a {
  display: inline-block;

  color: var(--color-white);

  background-color: var(--color-brown);

  text-transform: uppercase;

  font-weight: 500;

  padding: 15px;

  border-radius: 8px;

  margin-top: 20px;

  width: 180px;
}

.btnInscrever a:hover {
  text-decoration: none;

  border: 1px solid var(--color-brown);

  background-color: var(--color-brown-light);

  color: var(--color-brown);

  transition: 1s;
}

/* Botão Copiar PIX */

button {
  padding: 10px 20px;

  border-radius: 15px;

  font-size: 16px;

  cursor: pointer;

  border: none;

  background-color: var(--color-background);
}
