*{
  margin: 0;
  padding: 0;
}
body{
  min-height: 100vh;
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  font-size: 22px;
  font-weight: bold;
}
.logo img{
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}
.btn{
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
}
.btn ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
nav{
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav li{
  height: 50px;
}
nav a{
  height: 100%;
  padding: 0 7px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}
nav a:hover{
background-color: #f0f0f0;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 40vw;
  z-index: 999;
  background-color: rgba(200, 200, 200, 0.8);
  backdrop-filter: blur 10px;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
}
.sidebar ul{
  list-style: none;
  padding: 0;
  margin: 0;
  top: 20%;
}
.sidebar ul li a{
  text-decoration: none;
}
.sidebar{
  padding: 18px;
}

.header{
  padding-top: 60px;
  background-image: url(/img/d9d8f8ec3b3279589addd60ee9191934.webp);
  width: auto;
  height: 200px;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.text {
  padding-top: 60px;
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #ccc;
}
.text h3{
  padding: 20px;
  padding-bottom: 0;
  line-height: 1.8;
  color: cornflowerblue;
}
.text b{
  padding-bottom : 0;
}
.text p{
  font-size: 2rem;
  padding: 18px;
}
.header a{
  border: 2px solid blue;
  border-radius: 15px;
  margin-top: 16px;
  padding: 10px 20px;
  display: inline-block;
  font-family: 2rem;
  background: white;
  text-decoration: none;
  font-size: 20px;
  
}
.header ul{
  padding: 18px;
}
.text p{
  font-size: 18px;
  line-height: 1.8;
  color: #2c2c2c;
  margin-bottom: 0;
  text-align: left;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.text ul{
  margin-bottom: 18px;
  list-style: none;
  padding: 10px;
  font-size: 17px;
  line-height: 1.7;
  font-family: Georgia, 'Times New Roman', Times, serif
}
.text a{
  background: white;
  border: 2px solid aquamarine;
  border-radius: 100px;
  padding: 12px 20px;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.text a{
  padding: 12px;
}

.dailyverse h2{
  margin-top: 12px;
}
.dailyverse p{
  margin-top: 12px;
}
.dailyverse{
  border: 2px solid wheat;
  border-radius: 12px;
  padding: 15px;
  font-size: 18px;
  line-height: 1.7;
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin-bottom: 16px;
}

/* Container principal */
.spiritual-life-guide {
  max-width: 900px;       /* largura confortável para leitura */
  margin: 40px auto;      /* centraliza a div */
  padding: 30px;          /* espaço interno */
  background-color: #f9f9f9; /* fundo leve */
  border-radius: 12px;    /* cantos arredondados */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* sombra suave */
  font-family: 'Georgia', serif; /* fonte elegante para leitura */
  line-height: 1.7;       /* espaçamento entre linhas */
  color: #333;            /* texto escuro para contraste */
}

/* Título principal */
.spiritual-life-guide h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

/* Subtítulos */
.spiritual-life-guide h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #34495e;
  border-left: 5px solid #3498db; /* destaque visual */
  padding-left: 10px;
}

/* Parágrafos */
.spiritual-life-guide p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* Listas */
.spiritual-life-guide ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc; /* bolinhas */
}

.spiritual-life-guide ul li {
  margin-bottom: 10px;
}

/* Versículos e explicações em itálico */
.spiritual-life-guide em {
  font-style: italic;
  color: #555;
}

/* Palavras importantes em negrito */
.spiritual-life-guide strong {
  color: #2c3e50;
}

/* Dica final / destaque */
.spiritual-life-guide p strong:last-child {
  background-color: #eaf2f8;
  padding: 4px 6px;
  border-radius: 4px;
}

/* Responsividade */
@media screen and (max-width: 768px) {
  .spiritual-life-guide {
    padding: 20px;
  }

  .spiritual-life-guide h1 {
    font-size: 2rem;
  }

  .spiritual-life-guide h2 {
    font-size: 1.5rem;
  }

  .spiritual-life-guide p {
    font-size: 1rem;
  }
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #ecf0f1;
  border-radius: 12px;
  font-family: 'Georgia', serif;
}

.faq-section h2 {
  text-align: center;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 25px;
}

/* Cada FAQ */
.faq-item {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 12px 15px;
  border-radius: 8px;
  transition: 0.3s;
  border: 1px solid #dcdcdc;
}

/* Quando estiver aberto */
.faq-item[open] {
  background: #d6eaf8;
  border-color: #3498db;
}

/* Título da FAQ (Summary) */
.faq-item summary {
  font-size: 1.2rem;
  font-weight: bold;
  color: #34495e;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-left: 25px; /* espaço para a seta */
}

/* Remove seta padrão */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Setinha fechada ➤ */
.faq-item summary::before {
  content: "➤";
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 2px;
  color: #34495e;
  transition: transform 0.3s ease;
}

/* Setinha aberta ▼ */
.faq-item[open] summary::before {
  content: "▼";
  transform: rotate(0deg);
}

/* Texto da resposta */
.faq-item p {
  margin-top: 10px;
  padding-left: 10px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 600px) {
  .faq-section {
    padding: 15px;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }
  
  .faq-item summary {
    font-size: 1.1rem;
  }

  .faq-item p {
    font-size: 1rem;
  }
}
/* ====== GENERAL RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

#featured-products {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* ====== PRODUCT CARD ====== */
.product-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

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

/* ====== PRODUCT IMAGE ====== */
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* ====== TITLES ====== */
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

/* ====== PRICE ====== */
.product-card .price {
  font-size: 1rem;
  color: #1a7b32;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ====== DESCRIPTION ====== */
.product-card .desc,
.product-card .verse,
.product-card .use {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}

.product-card .verse em {
  color: #555;
}

/* ====== BUY BUTTON ====== */
.buy-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  background: #0077ff;
  color: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.buy-btn:hover {
  background: #0059c9;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 450px) {
  .product-card h3 {
    font-size: 1rem;
  }

  .buy-btn {
    font-size: 0.9rem;
  }
}

/* ====== FOOTER SECTION ====== */
.shop-footer {
  background: #1a1a1a;
  color: #ddd;
  padding: 40px 20px;
  margin-top: 50px;
}

.footer-grid {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.footer-box h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #fff;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li a {
  color: #ddd;
  text-decoration: none;
  line-height: 1.8;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #fff;
}

.footer-box p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.shop-footer .copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #bbb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.main-footer {
  background: #0d0f21;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.main-footer h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.main-footer p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 16px;
}

.footer-links {
  margin: 15px 0;
}

.footer-links a {
  color: #c9d4ff;
  margin: 0 12px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.copy {
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.7;
}
.private{
  padding: 15px;
  margin-bottom: 18px;
}
.private p{
  font-size:17px;
  line-height: 1.7;
  margin-bottom: 18px;
  font-family : Georgia, 'Times New Roman', Times, serif;
}
.disclaimer{
  padding: 15px;
}
.disclaimer p{
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  font-family : Georgia, 'Times New Roman', Times, serif;
}