@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* General Body and Container */
body {
    background-color: #fdfdfc;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
nav {
  color: #7d6908;
  z-index: 9999;
  width: 100%;
  background: #faf8eb;
}
nav .wrapper {
  position: relative;
  max-width: 1360px;
  padding: 0px 29px;
  height: 90px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a {
  color: #f2f2f2;

  font-weight: 0;
  text-decoration: none;
}
.wrapper .logo {
  height: 80px;
  padding-top: 10px;
}
.wrapper .nav-links {
  display: inline-flex;
}
.nav-links li {
  list-style: none;
}
li.sepador {
  padding-left: 15px;
}
.nav-links li a {
  color: #7d6908;
  text-decoration: none;

  font-weight: 600;
  padding: 9px 2px 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  content: "";
}
.nav-links li a:hover {
  background: none;
}
.nav-links .mobile-item {
  display: none;
}
.nav-links .drop-menu {
  position: absolute;
  background: #faf8eb;
  width: 300px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;

  border-radius: 0px;
}
.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content {
  background: #faf8eb;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}
.row .mega-links li {
  padding: 0 20px;
}
.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover {
  color: #f2f2f2;
}
.wrapper .btn {
  color: #861111;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}
.arrow {
  border: solid;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 2px;
  margin: 10px 0 3px 7px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.container-imagem-versiculo img {max-width: 100%;}

@media screen and (max-width: 970px) {
  .header {
    display: none;
  }
  li.sepador {
    display: none;
  }
  .wrapper .btn {
    display: block;
  }
  .wrapper .logo,
  .wrapper .logo img {
    height: 49px;
  }
  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: -100%;
    background: #faf8eb;
    display: block;
    padding: 50px 10px;
    line-height: 30px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.8s ease;
    z-index:9999
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3a3b3c;
  }
  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }
  .nav-links li {
    margin: 15px 10px;
  }
  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 16px;
  }
  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 0;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: 100%;
  }
  .nav-links .desktop-item {
    display: none;
  }
  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;

    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover {
  }
  .drop-menu li {
    margin: 0;
  }
  .drop-menu li a {
  }
  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }
  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li {
    margin: 0;
  }
  .content .row header {
    font-size: 19px;
  }
}
nav input {
  display: none;
}

/* Main Content */
.salmo-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.salmo-main-content {
    flex: 3;
}

.salmo-main-content h1 {
    font-size: 2.8em;
    color: #7d6908;
    margin-bottom: 20px;
}

.salmo-main-content h2 {
    font-size: 2em;
    color: #7d6908;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.salmo-main-content h4 {
    font-size: 1.5em;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.salmo-main-content p {
    margin-bottom: 20px;
}

.salmo-main-content blockquote {
    background-color: #faf8eb;
    border-left: 5px solid #bfa003;
    padding: 20px;
    margin: 30px 0;
    font-size: 1.1em;
    font-style: italic;
}

/* Sidebar */
.salmo-sidebar {
    flex: 1;
}

.sidebar-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.sidebar-card h2 {
    font-size: 1.6em;
    color: #7d6908;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.audio-player audio {
    width: 100%;
}

.links-salmos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.tags-salmos {
    display: flex;
    align-items: center;
    background-color: #bfa003;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.tags-salmos:hover {
    background-color: #a08602;
}

.tags-salmos a {
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    width: 100%;
}

.tags-salmos i {
    font-size: 1.2em;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.faq-section h3 {
    font-size: 1.2em;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.salmos-list-section .sc-salmos.interna ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.salmos-list-section .sc-salmos.interna li {
    background-color: #7d6908;
    border-radius: 5px;
    margin: 0;
    font-size: 0.8em;
    flex-basis: calc(33% - 10px); /* Adjust the width of the buttons */
}

.salmos-list-section .sc-salmos.interna li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    height: 40px; /* Set a fixed height */
    text-align: center; /* Center text */
    transition: background-color 0.3s;
}

.salmos-list-section .sc-salmos.interna li a:hover {
    background-color: #a08602;
}


.sc-estudos ul,
.sc-parceiros ul {
    list-style: none;
    padding: 0;
}

.sc-estudos li,
.sc-parceiros li {
    margin-bottom: 10px;
}

.sc-estudos a,
.sc-parceiros a {
    color: #7d6908;
    text-decoration: none;
    transition: color 0.3s;
}

.sc-estudos a:hover,
.sc-parceiros a:hover {
    color: #bfa003;
}

/* Footer */
footer {
  background: #7d6908;
  color: #fff;
  margin-top: 60px;
}
footer a {
  color: #fff;
}
footer ul {
  padding: 25px 0;
}
footer li {
  display: inline-block;
  margin-right: 33px;
}
footer p {
  background: ;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #e5e4e1;
}

/* Responsive */
@media (max-width: 970px) {
    .salmo-container {
        flex-direction: column;
    }
}
/* Imprimir Button */
.imprimir-btn-container {
    text-align: center;
    margin: 30px 0;
}

.imprimir-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c; /* Red color for eye-catching */
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.imprimir-btn:hover {
    background-color: #c0392b;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.imprimir-btn i {
    margin-right: 10px;
    font-size: 1.5em;
}
/* Wrapper for main content sections */
.main-content-wrapper {
    max-width: 1360px; /* Match container width */
    margin: 0 auto;   /* Center it */
    display: flex;
    flex-direction: column;
    gap: 30px;
    
}



.main-intro-salmos p {
    font-size: 1.1rem;
    color: #495057;
    text-align: justify;
    margin-bottom: 15px;
}

/* Section Artigos (Studies) */
.main-artigos-salmos {
    /* No specific background, let it inherit from body or container */
}
.main-artigos-salmos h2 {
    font-size: 2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin-top: 0; /* Reset margin as it's handled by gap in wrapper */
    margin-bottom: 30px;
    color: #0056b3;
}
.main-artigos-salmos .estudos { /* Original container for articles */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Adjusted for better fit */
    gap: 20px;
}
.main-artigos-salmos .ls-estudos { /* Original article item */
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.main-artigos-salmos .ls-estudos:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.main-artigos-salmos .img-estudo {
    width: 100%;
    height: 160px; /* Slightly smaller image height */
    overflow: hidden;
}
.main-artigos-salmos .img-estudo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.main-artigos-salmos .ls-estudos:hover .img-estudo img {
    transform: scale(1.05);
}
.main-artigos-salmos .desc-estudo {
    padding: 15px; /* Slightly less padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.main-artigos-salmos .desc-estudo h3 {
    font-size: 1.2rem; /* Slightly smaller font */
    margin-top: 0;
    margin-bottom: 8px;
    color: #007bff;
}
.main-artigos-salmos .desc-estudo p {
    font-size: 0.9rem; /* Slightly smaller font */
    color: #6c757d;
    flex-grow: 1;
    margin-bottom: 10px;
}
.main-artigos-salmos .desc-estudo a {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start; /* Align button to start */
}
.main-artigos-salmos .desc-estudo a:hover {
    text-decoration: underline;
}

/* Section Versiculos */
.main-versiculos-salmos {
    /* No specific background, let it inherit from body or container */
}
.main-versiculos-salmos h2 {
    font-size: 2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin-top: 0; /* Reset margin as it's handled by gap in wrapper */
    margin-bottom: 30px;
    color: #0056b3;
}

/* Section Perguntas Frequentes (FAQ - Styled list) */
.main-faq-salmos {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.main-faq-salmos h2 {
    font-size: 2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin-top: 0; /* Reset margin as it's handled by gap in wrapper */
    margin-bottom: 30px;
    color: #0056b3;
}
.main-faq-salmos h3 {
    color: #007bff; /* Blue for questions */
    margin-top: 25px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}
.main-faq-salmos h3:hover {
    color: #0056b3;
}
.main-faq-salmos h3::before {
    content: 'Q: ';
    color: #28a745; /* Green for 'Question' */
    font-weight: normal;
}
.main-faq-salmos p {
    padding-left: 20px; /* Indent answers */
    margin-bottom: 20px;
    color: #495057;
}
.main-faq-salmos p a {
    color: #007bff;
    text-decoration: none;
}
.main-faq-salmos p a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for new classes */
@media (max-width: 768px) {
    .main-content-wrapper {
        padding: 15px 0;
        gap: 20px;
    }
    .main-intro-salmos,
    .main-artigos-salmos .estudos,
    .main-faq-salmos {
        padding: 20px;
    }
    .main-intro-salmos h1 {
        font-size: 2.2rem;
    }
    .main-artigos-salmos .estudos {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
}

/* Styles for inc-salmo.php links */
.main-intro-salmos ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); /* Adjust for more columns */
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
}

.main-intro-salmos ul li {
    background-color: #e9f7ef; /* Light green background */
    border: 1px solid #d4edda;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.main-intro-salmos ul li:hover {
    background-color: #d4edda;
    transform: translateY(-2px);
}

.main-intro-salmos ul li a {
    display: block;
    padding: 10px 5px;
    text-decoration: none;
    color: #28a745; /* Green text */
    font-weight: bold;
    font-size: 1rem;
}

.main-intro-salmos ul li a:hover {
    color: #1e7e34; /* Darker green on hover */
}

/* Styles for inc-versiculos.php links */
.main-versiculos-salmos ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Two columns on larger screens */
    gap: 10px;
    margin-top: 20px;
}

.main-versiculos-salmos ul li {
    background-color: #f0f8ff; /* Light blue background */
    border: 1px solid #cce5ff;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.main-versiculos-salmos ul li:hover {
    background-color: #e0f0ff;
    transform: translateY(-2px);
}

.main-versiculos-salmos ul li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #007bff; /* Blue text */
    font-size: 1rem;
}

.main-versiculos-salmos ul li a:hover {
    color: #0056b3; /* Darker blue on hover */
}

@media (max-width: 768px) {
    .main-intro-salmos ul {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); /* More compact on small screens */
    }
    .main-versiculos-salmos ul {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
}
/* --- Styles for Daily Verse Page --- */
.daily-verse-wrapper {
    max-width: 1200px; /* Match container width */
    margin: 0 auto;   /* Center it */
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px; /* Add some internal padding for content within the wrapper */
}

.main-daily-verse-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center; /* Center content for the verse */
}
.main-daily-verse-section h1 {
    color: #28a745; /* Green for spiritual theme */
    font-size: 3rem; /* Larger for prominence */
    margin-bottom: 15px;
}
.main-daily-verse-section .data {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 25px;
    font-style: italic;
}
.main-daily-verse-section .verse-text {
    font-size: 1.8rem; /* Prominent verse text */
    font-weight: 600;
    color: #343a40;
    margin-bottom: 20px;
    line-height: 1.4;
}
.main-daily-verse-section .verse-reference {
    font-size: 1.2rem;
    color: #007bff; /* Blue for reference */
    margin-bottom: 30px;
    font-weight: bold;
}
.main-daily-verse-section .reflection-title {
    font-size: 1.8rem;
    color: #0056b3;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}
.main-daily-verse-section .reflection-text {
    font-size: 1.1rem;
    color: #495057;
    text-align: justify;
    line-height: 1.6;
}

.main-verse-list-section {
    /* No specific background, let it inherit from body or wrapper */
}
.main-verse-list-section h2 {
    font-size: 2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin-top: 0; /* Reset margin as it's handled by gap in wrapper */
    margin-bottom: 30px;
    color: #0056b3;
}

@media (max-width: 768px) {
    .daily-verse-wrapper {
        padding: 15px 0;
        gap: 20px;
    }
    .main-daily-verse-section {
        padding: 20px;
    }
    .main-daily-verse-section h1 {
        font-size: 2.5rem;
    }
    .main-daily-verse-section .verse-text {
        font-size: 1.5rem;
    }
    .main-daily-verse-section .reflection-title {
        font-size: 1.5rem;
    }
}

/* --- Styles for Verse Category Pages (e.g., versiculos-para-amor.php) --- */
.verse-category-page-wrapper {
    max-width: 1200px; /* Match container width */
    margin: 0 auto;   /* Center it */
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px; /* Add some internal padding for content within the wrapper */
}


.verse-category-intro-section p {
    font-size: 1.1rem;
    color: #495057;
    
}

.verse-reflection-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border-left: 5px solid #28a745; /* Green accent */
    position: relative; /* For positioning share button */
}
.verse-reflection-item .verse-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 10px;
    line-height: 1.4;
}
.verse-reflection-item .verse-reference {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
    font-style: italic;
}
.verse-reflection-item .reflection-title {
    font-size: 1.2rem;
    color: #007bff;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 5px;
}
.verse-reflection-item .reflection-text {
    font-size: 1rem;
    color: #495057;
    text-align: justify;
    line-height: 1.6;
}

/* WhatsApp Share Button */
.whatsapp-share-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 15px; /* Space from reflection text */
    float: right; /* Position to the right */
}
.whatsapp-share-button:hover {
    background-color: #1DA851; /* Darker green on hover */
}
.whatsapp-share-button i {
    margin-right: 8px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .verse-category-page-wrapper {
        padding: 15px 0;
        gap: 20px;
    }
    .verse-category-intro-section,
    .verse-reflection-item {
        padding: 20px;
    }
    .verse-category-intro-section h1 {
        font-size: 2.2rem;
    }
    .verse-reflection-item .verse-text {
        font-size: 1.2rem;
    }
}
       /* CSS para o Perfil do Autor */
        .author-profile {
            background-color: #f9f9f9;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 25px;
            max-width: 100%;
            margin: 40px auto;
            display: flex;
            align-items: center;
            gap: 25px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }

        .author-profile .author-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #ccc;
        }

        .author-profile .author-info {
            flex: 1;
        }

        .author-profile .author-name {
            font-size: 1.5em;
            font-weight: bold;
            color: #333;
            margin: 0 0 10px;
        }

        .author-profile .author-description {
            font-size: 1.05em;
            line-height: 1.6;
            color: #555;
            margin: 0;
        }

        /* Responsividade para telas menores */
        @media (max-width: 600px) {
            .author-profile {
                flex-direction: column;
                text-align: center;
            }

            .author-profile .author-photo {
                margin-bottom: 20px;
                width: 100px;
                height: 100px;
            }
        }