 * {
  box-sizing: border-box;
}

a {
  color: #c5a3ff;
}

 body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #1b1b2f;
      color: #fff;
    }
    header {
      background: #2a0161;
      text-align: center;
    }
    .header-mobile img {
      margin-bottom: -8px;
    }
    @media (max-width:750px){
          .header-mobile img {
             margin-bottom: -8px;
             width: 100%;
             height: auto;
          }
    }


    header h1 {
      margin: 0;
      color: #c5a3ff;
    }
    nav {
      background: #3a1c6e;
      padding: 10px;
      text-align: center;
    }
    nav a {
      color: #fff;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
    }
    .banner {
      background: linear-gradient(rgba(0,0,0,0.5), #1b1b2f), url('https://source.unsplash.com/featured/?spiritual');
      background-size: cover;
      background-position: center;
      padding: 10px;
      text-align: center;
    }
    .banner h2 {
      font-size: 36px;
      color: #e0c3fc;
    }
    .section {
      max-width: 1200px;
      margin: auto;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
      gap: 20px;
    }
    .card {
      background: #2d2d44;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      transition: 0.3s;
    }
    .card:hover {
      background: #3d2c61;
    }
    .card h3 {
      color: #c5a3ff;
	  text-transform: uppercase;	
    }
    .card a {
      display: inline-block;
      margin-top: 10px;
      color: #ffd700;
      text-decoration: none;
      font-weight: bold;
    }
    footer {
      background: #2a0161;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }

    .menu ol, ul {
     box-sizing: border-box;
    display: flex;
    list-style: none;
    text-align: center;
    justify-content: center;
    padding: 0;
    }

    /*menu*/


    .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: auto;
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: #fff;
}
.menu-content-mobile {
  display: none;
}

@media (max-width: 768px) {
  .main-navigation {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 55px;
  }

  .menu-content-desktop {
    display: none;
  }

  .menu-content-mobile {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #3a1c6e;
    padding: 10px 0;
    margin-top: 49px;
  }

  .menu-content-mobile.active {
    display: flex;
  }

  .menu-content-mobile ul {
    list-style: none;
    padding-left: 0;
    width: 100%;
    display: contents;
  }

  .menu-content-mobile li {
    text-align: center;
    margin: 10px 0;
  }

  .menu-content-mobile a {
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
    display: block;
  }

  .menu-toggle {
    display: flex;
    width: auto;
    position: absolute;
    right: 0;
  }
}

.menusocial {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: auto;
}

.socialsidebar a{
  margin-right: 15px;
}

@media (max-width:750px){
  .menusocial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    position: absolute;
    top: 17px;
    left: 0;
}
}
.copyright {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

@media (max-width:800px){
  .copyright {
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
   }
}

.footer-menu {
      background: #3a1c6e00!important;
}

/* === Seção de Blog Responsivo === */

.cards-blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.card-blog {
  background-color: #2d2d44;
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card-blog:hover {
  background-color: #3d2c61;
}

.card-blog a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-blog-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.card-blog h3 {
padding: 15px 15px 0px 15px;
    font-size: 1.2rem;
    color: #c5a3ff;
    margin: 0;
}

.card-blog p {
  padding: 0 20px 20px;
  flex-grow: 1;
  font-size: 0.95rem;
}


/* === Layout: Conteúdo + Sidebar === */

.content-and-sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.post-content {
  flex: 2;
  min-width: 280px;
}

.sidebar {
  flex: 1;
  min-width: 250px;
  background-color: #2d2d44;
  padding: 20px;
  border-radius: 8px;
}

.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar h5,
.sidebar h6 {
  color: #c5a3ff;
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  color: #fff;
  text-decoration: none;
}

.sidebar a:hover {
  text-decoration: underline;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.wp-block-latest-posts.wp-block-latest-posts__list {
    list-style: none;
    display: contents;
    text-align: left;
}
.section-inner {
  padding: 0 10px;
}

@media (max-width:750px){
  .cards-blog {
    padding: 0 10px;
  }
  .cursos {
     padding: 0 10px;
  }
  #paginas {
    padding: 0 10px;
  }
}


.divider {
  height: 4px;
  background: linear-gradient(to right, #faa5d2, #a8efdb);
}

/* === Seção de Comentários === */

.comments-area {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #c5a3ff;
}

.comment-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.comment {
  background-color: #2d2d44;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
}

.comment .fn {
  font-weight: bold;
  color: #e0c3fc;
  display: block;
  margin-bottom: 5px;
}

.comment time {
  font-size: 12px;
  color: #999;
}

.comment-text {
  margin-top: 10px;
  color: #ccc;
}

.reply {
  font-size: 14px;
  margin-top: 10px;
}

.reply a {
  color: #c5a3ff;
  text-decoration: underline;
}

/* Formulário de Comentário */
.comment-form {
  background-color: #2d2d44;
  padding: 20px;
  border-radius: 8px;
}

.comment-form label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #333;
  color: #fff;
  margin-bottom: 15px;
  font-family: inherit;
}

.comment-form textarea {
    resize: vertical;
    min-height: 100px;
    background: #1b1b2f;
    border: 1px solid #eeeeee42;
}

.comment-form input[type="submit"] {
  background-color: #c5a3ff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.comment-form input[type="submit"]:hover {
  background-color: #a892d6;
}

.social i {
   color: #faa5d2;
   font-size: 22px;
}
.social i:hover {
   color: #a8efdb;
}