@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* 
font-family: 'Poppins', sans-serif;  <-- For Titles
font-family: 'Lato', sans-serif;      <-- For Body Text
*/

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  margin-left: 200px;
  margin-right: 200px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://cdn.media-acidadeon.com.br/campinas/wp-content/uploads/sites/5/2023/08/fachada_do_1200x675_25022022200111.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.16;
}

.header {
  position: relative;
  /* Needed for absolute positioning of the pseudo-element */
  overflow: hidden;
  /* Ensures the background image respects the border-radius */
  max-width: 750px;
  display: flex;
  margin: 30px auto 40px auto;
  flex-direction: row;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
}

/* Pseudo-element to apply the background image with opacity without affecting content */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://cdn.media-acidadeon.com.br/campinas/wp-content/uploads/sites/5/2023/08/fachada_do_1200x675_25022022200111.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
   z-index: -1;
}

a {
  text-decoration: none;
  color: darkcyan;
}


a:hover {
  color: red;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  margin-top: 40px;
  margin-bottom: 0;
}

h1 {
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 25px;
  font-size: 1.6rem;
  padding-left: 40px;
  color: white;
  text-shadow:
    0 0 4px #000,
    0 0 8px #000,
    0 0 12px #000,
    2px 2px 4px rgba(0, 0, 0, 0.8);
}

.data {
  text-align: center;
  font-size: 1.3rem;
  color: darkred;
}

p {
  font-size: 1.07rem;
  font-weight: 450;
  margin-left: 28px;
  margin-top: 8px;
  text-align: justify;
}

ul {
  margin-top: 8px;
}

li {
  font-size: 1.07rem;
  font-weight: 450;
  text-align: justify;
  margin-left: 2px;
}

.logo-cotuca {
  height: 90px;
  width: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: white;
  padding: 6px 15px;
  border-radius: 10px;
}

.h2-pre {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 30px;
}

.h2-color-1 {
  width: 5px;
  height: 0.8rem;
  background-color: red;
}

.h2-color-2 {
  width: 10px;
  height: 0.8rem;
  background-color: red;
  border-radius: 0 60px 60px 0;
}

.h2-text {
  font-family: 'Poppins', sans-serif;
  margin-left: 10px;
  font-size: 1.5rem;
}

#fonte {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  body {
    margin-left: 10px;
    margin-right: 10px;
  }

  .header {
    max-width: 95%;
  }

  .logo-cotuca {
    height: 70px;
    width: auto;
    background-color: white;
    padding: 6px 10px;
    border-radius: 10px;
  }

  p {
    margin-right: 10px;
  }

  li {
    margin-right: 10px;
  }

  h1 {
    font-size: 1.3rem;
  }

}
