* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

/* Container Sobre */

.container_sobre {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 2rem 0;
}

.sobre_txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sobre_txt h2 {
  margin-bottom: 2rem;
  color: var(--blue-dark);
  font-family: var(--primary-font);
}

.sobre_txt p {
  width: 85%;
  text-align: justify;
  line-height: 1.75rem;
  font-family: var(--secondary-font);
}

.sobre_img {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sobre_img img {
  width: 50%;
  border: 5px outset var(--blue-medium);
}

/* Objetivo */

.container_objetivo {
  margin: 2rem 0;
  text-align: center;
}

.container_objetivo h2 {
  color: var(--blue-dark);
  font-size: 1.5em;
  font-family: var(--primary-font);
}


.card-container {
  display: flex;
  justify-content: space-around;
  margin-top: 2em;
  flex-wrap: wrap;
  gap: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 275px;
  height: 25rem;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.card img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.card h3 {
  font-family: var(--primary-font);
  text-align: center;
}

.card p {
  text-align: center;
  line-height: 1.75rem;
  font-family: var(--secondary-font);
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.card button {
  width: fit-content;
  margin: 0 auto;
  padding: .45rem;
  cursor: pointer;
  font-family: var(--secondary-font);
}

.card button:hover {
  scale: 1.15;
  transition: all 0.3s ease;
}

/* Terapia Holística */

.container_holistica {
  text-align: center;
  margin: 2rem 0;
}

.container_holistica h2 {
  color: var(--blue-dark);
  font-size: 1.5em;
  font-family: var(--primary-font);
}

.container_holistica p {
  text-align: center;
  line-height: 1.75rem;
  font-family: var(--secondary-font);
}

.container_holistica ul {
  width: 75%;
}

.container_holistica ul li {
  text-align: left;
  line-height: 1.75rem;
  font-family: var(--secondary-font);
}

.box_holistica {
  display: flex;
  justify-content: space-around;
  margin-top: 4em;
}


.holistica_txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.holistica_txt h3 {
  width: 75%;
  margin-bottom: 2rem;
  line-height: 1.5rem;
  font-family: var(--primary-font);
}

.holistica_txt p {
  width: 75%;
  line-height: 1.75rem;
  text-align: justify;
  font-family: var(--secondary-font);
}

.holistica_img {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.holistica_img img {
  width: 50%;
  border: 5px outset var(--blue-medium);
}


/* Oração */

.container_oracao {
  text-align: center;
  margin: 2rem 0;
}

.container_oracao h2 {
  color: var(--blue-dark);
  font-size: 1.5em;
  font-family: var(--primary-font);
}

.oracao {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--blue-dark);
  margin: 1rem 0;
}

.oracao_txt {
  /* position: relative; */
  width: 50%;
  font-family: "Arial", sans-serif;
  font-size: 1.5rem;
  text-align: justify;
  line-height: 2rem;
}

.oracao_txt p {
  font-family: var(--secondary-font);
  font-size: 1.2rem;
}

.oracao_img {
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.oracao_img img {
  width: 40%;
  border-radius: 10px;
}

.oracao_img h2 {
  margin-top: 1.5rem;
  font-size: 1.5em;
  font-family: var(--primary-font);
}

/* Animação para cada linha */
@keyframes slideLine {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blog */
.full_blog {
  text-align: center;
  margin: 2rem 0;
}

.full_blog h2 {
  color: var(--blue-dark);
  font-family: var(--primary-font);
  margin: 2rem 0;
}

.container_blog {
  width: 100%;
}

.row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  width: 85%;
}

.col-md-4 {
  width: 250px;
}

.blog-card-blog {
  margin-top: 30px;
}

.blog-card {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 6px;
  color: rgba(0, 0, 0, 0.87);
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.blog-card .blog-card-image {
  height: 60%;
  position: relative;
  overflow: hidden;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -30px;
  border-radius: 6px;
  box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  pointer-events: none;
}

.blog-card .blog-table {
  padding: 15px 30px;
}

.blog-table {
  margin-bottom: 0px;
}

.blog-category {
  position: relative;
  line-height: 0;
  margin: 15px 0;
}

.blog-text-success {
  color: var(--blue-medium) !important;
}

.blog-card-blog .blog-card-caption {
  margin-top: 5px;
}

.blog-card-caption {
  font-weight: 700;
  font-family: "Roboto Slab", "Times New Roman", serif;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

i.fas.fa-phone-alt {
  transform: rotate(90deg);
}

.blog-card-caption,
.blog-card-caption a {

  text-decoration: none;
}

.blog-table h4 {
  margin: 1rem 0;
  font-family: var(--primary-font);
  color: var(--blue-dark);
}

.blog-table p {
  color: #333;
  margin: 1rem 0;
  font-family: var(--secondary-font);
}

.blog-card .ftr {
  margin-top: 15px;
}

.blog-card .ftr button {
  width: fit-content;
  margin: 0 auto;
  padding: .45rem;
  cursor: pointer;
}


.blog-card .ftr div {
  display: inline-block;
}

.blog-card .ftr .stats {
  position: relative;
  top: 1px;
  font-size: 14px;
}

.blog-card .ftr .stats {
  float: right;
  line-height: 30px;
}

/* Blog */

.pag_blog h2 {
  text-align: center;
  color: var(--blue-dark);
  font-family: var(--primary-font);
  margin: 1.5rem 0;
}




.card_blog {
  display: flex;
  justify-content: start;
  background-color: #fff;
  gap: 3rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 65%;
  padding: 16px;
  text-align: start;
  transition: all 0.3s ease;
  margin: 2rem auto;
}

.card_blog h2 {
  text-align: start;
  color: var(--blue-dark);
  font-family: var(--primary-font);
  margin: 1rem 0;
}

.card_blog img {
  width: 25%;
  border-radius: 8px;
}

.column_blog {
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card_blog p {
  margin-bottom: .8rem;
}

.card_blog a {
  width: fit-content;
  /* margin: 0 auto; */
  padding: .45rem;
  cursor: pointer;
  font-family: var(--secondary-font);
}


/* Mapa Astral */


.container__astral {
  margin: 2rem 0 0 0;
  text-align: center;
}

.container__astral h1{
  margin: 2rem 1rem;
  font-family: var(--primary-font);
  color: var(--blue-dark);
}

.box__astral {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin: 1rem 0 2rem 0;
}

#mapaAstralForm{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: var(--blue-light);
  padding: 2rem;
  width: 25%;
  text-align: left;
  border-radius: 10px;
}

#mapaAstralForm label{
  font-family: var(--secondary-font);
  color: var(--blue-dark);
  font-weight: bold;
}
#mapaAstralForm input{
  padding: .5rem;
  width: 50%;
}

#mapaAstralForm button{
  width: fit-content;
  margin: 0 auto;
  padding: .45rem;
  cursor: pointer;
  font-family: var(--secondary-font);
}

#resultado{
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}

#resultado p{
  margin: .8rem 0;
  font-family: var(--secondary-font);
}

.lua__img{
  width: 50%;
}





























/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: var(--blue-dark) #ffffff;
}

/* Chrome, Edge, and Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background-color: var(--blue-dark);
}