/* Single Post Styles - Intercalado (Navy Hero & Clean Content) */
.single-post-hero-light {
  background: linear-gradient(135deg, #0B1F2F 0%, #06121C 100%);
  padding: 170px 0 75px 0;
  color: white;
}

.single-post-breadcrumbs {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.single-post-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.single-post-breadcrumbs a:hover {
  color: var(--dourado-claro);
}

.single-post-category-tag {
  display: inline-block;
  background: var(--dourado-claro);
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.single-post-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 25px;
  max-width: 900px;
}

.single-post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.single-post-meta-row .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Article Container */
.single-post-main-container {
  padding: 60px 0 100px 0;
  background: #ffffff;
}

.article-wrapper-light {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-post-featured-thumb {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(11, 31, 47, 0.08);
  margin-bottom: 50px;
}

.single-post-featured-thumb img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* Body Content */
.single-post-entry-content {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #2d3748;
}

.single-post-entry-content p {
  margin-bottom: 28px;
}

.single-post-entry-content h2, 
.single-post-entry-content h3 {
  color: var(--azul-marinho);
  font-weight: 700;
  margin: 45px 0 20px 0;
  line-height: 1.3;
}

.single-post-entry-content ul, 
.single-post-entry-content ol {
  margin-bottom: 30px;
  padding-left: 25px;
}

.single-post-entry-content li {
  margin-bottom: 12px;
}

/* ACF Texto de Destaque / Citação Box */
.acf-texto-destaque-box {
  margin: 45px 0;
  padding: 35px 40px;
  background: #fdfbf7;
  border-left: 5px solid var(--dourado-claro);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 10px 30px rgba(200, 169, 120, 0.1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.destaque-quote-icon {
  color: var(--dourado-claro);
  flex-shrink: 0;
  margin-top: 4px;
}

.destaque-quote-content {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: var(--azul-noite);
  line-height: 1.7;
}

/* ACF Galeria de Imagens Grid */
.acf-galeria-section {
  margin: 50px 0;
}

.galeria-title {
  font-size: 1.5rem;
  color: var(--azul-marinho);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.galeria-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--dourado-claro);
  border-radius: 2px;
}

.acf-galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.galeria-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  background: #eaeaea;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.galeria-item:hover img {
  transform: scale(1.08);
}

.galeria-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 31, 47, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-hover-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(11, 31, 47, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-modal .lightbox-content {
  margin: auto;
  display: block;
  max-width: 85%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--dourado-claro);
}

#lightbox-caption {
  margin: 15px auto;
  text-align: center;
  color: #ccc;
  font-size: 1rem;
}

/* Footer Nav Single Post */
.single-post-footer-nav {
  margin-top: 60px;
  padding-top: 35px;
  border-top: 1px solid rgba(11, 31, 47, 0.08);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.btn-back-blog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cinza-gelo);
  color: var(--azul-marinho);
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-back-blog:hover {
  background: var(--azul-marinho);
  color: white;
}

.post-prev-next-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 600;
}

.post-prev-next-links a {
  color: var(--azul-aco);
  text-decoration: none;
  transition: color 0.3s;
}

.post-prev-next-links a:hover {
  color: var(--dourado-claro);
}

/* Comments Section - Clean Light Style */
.single-post-comments-container {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(11, 31, 47, 0.08);
}

.comments-title, #reply-title {
  font-size: 1.75rem;
  color: var(--azul-marinho);
  font-weight: 700;
  margin-bottom: 30px;
}

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

.comment-list li {
  margin-bottom: 25px;
  background: var(--cinza-gelo);
  padding: 20px 25px;
  border-radius: 12px;
}

.comment-list .comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--azul-marinho);
  margin-bottom: 10px;
}

.comment-list .comment-author img {
  border-radius: 50%;
}

.comment-list .comment-meta {
  font-size: 0.85rem;
  color: var(--azul-acinz);
  margin-bottom: 12px;
}

.comment-list .comment-content p {
  margin-bottom: 10px;
  color: #4a5568;
}

.comment-list .reply a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dourado-claro);
  text-decoration: none;
}

/* Form de Comentário */
.comment-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.comment-form p {
  margin-bottom: 20px;
}

.comment-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--azul-marinho);
  margin-bottom: 8px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(11, 31, 47, 0.15);
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--dourado-claro);
}

.btn-submit-comment-gold {
  background: var(--dourado-claro);
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-comment-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 169, 120, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
  .single-post-title {
    font-size: 2rem;
  }
  .acf-galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .comment-form-grid {
    grid-template-columns: 1fr;
  }
  .acf-texto-destaque-box {
    padding: 25px 20px;
    flex-direction: column;
  }
}
