/*
 Theme Name:   Alma de Priscila
 Theme URI:    https://almadepriscila.com.br
 Description:  Tema próprio da plataforma Alma de Priscila
 Author:       Kika Magalhães
 Author URI:   https://almadepriscila.com.br
 Version:      2.0
*/

/* ===============================
   Reset e Base
   =============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: #FCFCFF;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

/* ===============================
   Bloco Conteúdo (Home)
   =============================== */

.content-hub {
  margin: 32px auto 56px;
  max-width: 800px;
  padding: 0 16px;
}

.content-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.content-hub__card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.content-hub__card:hover { transform: translateY(-4px); }

.content-hub__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.content-hub__label {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #6c4a7e;
  background: #fff;
  text-align: center;
}

@media (max-width: 600px) {
  .content-hub__grid { grid-template-columns: 1fr; }
}

/* ===============================
   Botão Bíblia
   =============================== */

.btn-biblia {
  display: inline-block;
  background: #7c3aed;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin: 5px;
}

/* ===============================
   Navbar
   =============================== */

.alma-nav {
  background: #fff;
  border-bottom: 2px solid #f3e8ff;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(124,58,237,0.06);
}

.alma-nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.alma-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.alma-nav__links a {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6c4a7e;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.alma-nav__links a:hover { background: #f3e8ff; color: #4c1d95; }

.alma-nav__links .nav-btn {
  background: #b76ddc;
  color: #fff;
  padding: 7px 16px;
  border-radius: 8px;
}

.alma-nav__links .nav-btn:hover { background: #9333ea; color: #fff; }

.alma-nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: #6c4a7e;
}

@media (max-width: 680px) {
  .alma-nav__links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 2px solid #f3e8ff; padding: 16px; gap: 4px; }
  .alma-nav__links.open { display: flex; }
  .alma-nav__burger { display: block; }
}

/* ===============================
   Footer
   =============================== */

.alma-footer {
  background: #f9f0ff;
  border-top: 2px solid #e9d5ff;
  text-align: center;
  padding: 28px 20px;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 40px;
}

.alma-footer a { color: #9333ea; text-decoration: none; }
.alma-footer a:hover { text-decoration: underline; }
