/*
Theme Name: HP Theme Premium
Theme URI: https://seusite.com/hp-theme-premium
Author: Seu Nome
Author URI: https://seusite.com
Description: Tema premium estilo streaming, rápido, SEO otimizado, UX moderna.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hp-theme-premium
Tags: streaming, premium, seo, ux, moderno
*/

@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700&display=swap');

:root {
  --primary-color: #1a73e8;
  --primary-color-rgb: 26, 115, 232;
  --secondary-color: #e91e63;
}

body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
}

/* Container Global */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ...estilos base... */

/* Streaming Header */
.streaming-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: none;
  height: 64px;
  display: flex;
  align-items: center;
}
.streaming-header.scrolled {
  /* Header com fundo dinâmico via customizer - ver inc/customizer.php */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}
.streaming-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 2rem;
}

.header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Custom Logo Styles */
.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo {
  height: 55px; /* Tamanho maior quando no topo */
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: all 0.4s ease;
}

/* Logo menor quando header está com scroll */
.streaming-header.scrolled .custom-logo {
  height: 40px;
  max-width: 200px;
}

.custom-logo:hover {
  transform: scale(1.05);
}

/* Site Title (fallback when no logo) */
.site-title {
  color: #fff;
  font-size: 28px; /* Tamanho maior quando no topo */
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* Site title menor quando header está com scroll */
.streaming-header.scrolled .site-title {
  font-size: 22px;
}

.site-title:hover {
  color: var(--secondary-color);
}
#main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

#main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 600px;
}

#main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

#main-nav a:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.1);
}

/* Search Container estilo streaming */
.search-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.streaming-search {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 25px;
  padding: 0;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.streaming-search:focus-within {
  background: rgba(255,255,255,0.25);
  border-color: var(--secondary-color);
  transform: scale(1.02);
}
.search-input {
  background: none;
  border: none;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  width: 280px;
  border-radius: 25px;
  outline: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  transition: width 0.3s ease;
}
.search-input::placeholder {
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.search-btn {
  background: none;
  border: none;
  color: #fff;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 0 25px 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.search-btn:hover {
  color: var(--secondary-color);
  background: rgba(255,255,255,0.1);
}
.search-btn svg {
  transition: transform 0.2s ease;
}
.search-btn:hover svg {
  transform: scale(1.1);
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 101;
  position: relative;
}

/* Garantir que menu toggle não apareça no desktop */
@media (min-width: 901px) {
  #menu-toggle {
    display: none !important;
  }
  
  #main-nav {
    display: flex !important;
  }
}
#menu-toggle span {
  display: block;
  width: 28px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}

/* Header Desktop Enhancements */
@media (min-width: 1200px) {
  .streaming-header {
    height: 72px;
  }
  
  .streaming-header .container {
    height: 72px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .header-left {
    min-width: 280px;
  }
  
  .custom-logo {
    height: 60px;
    max-width: 280px;
  }
  
  .streaming-header.scrolled .custom-logo {
    height: 45px;
    max-width: 240px;
  }
  
  .site-title {
    font-size: 32px;
  }
  
  .streaming-header.scrolled .site-title {
    font-size: 26px;
  }
  
  #main-nav {
    max-width: 700px;
  }
  
  #main-nav ul {
    gap: 2.5rem;
  }
  
  #main-nav a {
    font-size: 1.15rem;
    padding: 0.6rem 1.2rem;
  }
  
  .search-container {
    min-width: 320px;
  }
  
  .search-input {
    width: 320px;
    padding: 14px 22px;
    font-size: 1.05rem;
  }
  
  .search-btn {
    padding: 14px 18px;
  }
}

@media (min-width: 1440px) {
  .streaming-header .container {
    gap: 4rem;
    padding: 0 3rem;
  }
  
  .header-left {
    min-width: 320px;
  }
  
  #main-nav ul {
    gap: 3rem;
  }
  
  .search-container {
    min-width: 360px;
  }
  
  .search-input {
    width: 360px;
  }
}

@media (max-width: 900px) {
  .streaming-header .container {
    gap: 1rem;
  }
  .container {
    padding: 0 1rem;
  }
  .custom-logo {
    height: 48px; /* Tamanho maior no topo para tablet */
    max-width: 220px;
  }
  
  .streaming-header.scrolled .custom-logo {
    height: 38px;
    max-width: 190px;
  }
  
  .site-title {
    font-size: 24px; /* Tamanho maior no topo para tablet */
  }
  
  .streaming-header.scrolled .site-title {
    font-size: 20px;
  }
  .search-container {
    order: 3;
    margin-left: auto;
    margin-right: 1rem;
  }
  .search-input {
    width: 180px;
    padding: 8px 14px;
    font-size: 0.9rem;
  }
  .search-btn {
    padding: 8px 10px;
  }
  #main-nav {
    order: 4;
  }
  #main-nav ul {
    flex-direction: column;
    gap: 0;
    background: rgba(26, 115, 232, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: absolute;
    top: 64px;
    left: 0;
    width: 100vw;
    padding: 0;
    display: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  #main-nav ul li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  #main-nav ul li:last-child {
    border-bottom: none;
  }
  #main-nav ul li a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
  }
  #main-nav ul li a:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: var(--secondary-color);
    color: #fff;
  }
  #main-nav.open ul {
    display: flex;
    animation: slideDownMenu 0.3s ease;
  }
  #menu-toggle {
    display: flex;
    order: 5;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  #menu-toggle:hover {
    background: rgba(255,255,255,0.1);
  }
  #menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  #menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  #menu-toggle span {
    transition: all 0.3s ease;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 0.75rem;
  }
  .custom-logo {
    height: 42px; /* Tamanho maior no topo para mobile */
    max-width: 200px;
  }
  
  .streaming-header.scrolled .custom-logo {
    height: 36px;
    max-width: 180px;
  }
  
  .site-title {
    font-size: 22px; /* Tamanho maior no topo para mobile */
  }
  
  .streaming-header.scrolled .site-title {
    font-size: 18px;
  }
  .search-container {
    margin-right: 0.75rem;
  }
  .search-input {
    width: 140px;
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  .search-btn {
    padding: 6px 8px;
  }
  .search-btn svg {
    width: 18px;
    height: 18px;
  }
  #main-nav ul li a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  #menu-toggle {
    padding: 6px;
  }
  #menu-toggle span {
    width: 24px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .streaming-header {
    height: 56px;
  }
  .streaming-header .container {
    height: 56px;
  }
  .container {
    padding: 0 0.5rem;
  }
  .custom-logo {
    height: 38px; /* Tamanho maior no topo para mobile pequeno */
    max-width: 170px;
  }
  
  .streaming-header.scrolled .custom-logo {
    height: 32px;
    max-width: 150px;
  }
  
  .site-title {
    font-size: 20px; /* Tamanho maior no topo para mobile pequeno */
  }
  
  .streaming-header.scrolled .site-title {
    font-size: 16px;
  }
  .search-input {
    width: 120px;
    padding: 5px 10px;
    font-size: 0.8rem;
  }
  .search-btn {
    padding: 5px 6px;
  }
  .search-btn svg {
    width: 16px;
    height: 16px;
  }
  #main-nav ul {
    top: 56px;
  }
  #main-nav ul li a {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  .post-hero {
    padding-top: 56px;
  }
}

/* Animações para mobile */
@keyframes slideDownMenu {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero {
  margin-top: 64px;
  background: linear-gradient(135deg, var(--primary-color) 60%, var(--secondary-color) 100%);
  color: #fff;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.hero .container {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-slider {
  position: relative;
  max-width: 700px;
  margin: 2rem auto 0 auto;
  overflow: hidden;
}
.hero-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.hero-slide.active {
  display: flex;
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.hero-slide h2 {
  font-size: 1.4rem;
  margin: 0;
}
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.hero-prev {
  left: 10px;
}
.hero-next {
  right: 10px;
}
@media (max-width: 700px) {
  .hero-slider {
    max-width: 98vw;
  }
  .hero-slide img {
    max-width: 98vw;
  }
}

/* Hero Streaming Carrossel */
.hero-streaming {
  margin-top: 0; /* Remove margem para ficar no topo */
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh; /* Altura total da tela */
  height: 100vh !important;
  background: #181818;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
  position: relative;
  transition: background-image 0.8s ease-in-out;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, 
      rgba(0,0,0,0.85) 0%, 
      rgba(0,0,0,0.4) 40%, 
      rgba(0,0,0,0.2) 60%, 
      rgba(0,0,0,0.7) 100%
    ),
    radial-gradient(ellipse at center left, 
      rgba(0,0,0,0.8) 0%, 
      rgba(0,0,0,0.4) 50%, 
      transparent 70%
    );
  z-index: 1;
}
.hero-streaming .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4rem 2rem 2rem 2rem; /* padding-top para não sobrepor o header */
}
.streaming-slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.streaming-slide {
  display: none;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100vh !important;
  height: 100vh !important;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.streaming-slide.active {
  display: flex;
  opacity: 1;
  position: relative;
  align-items: center;
  justify-content: flex-start;
}

/* Slide Content com imagem ao lado do título */
.slide-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: auto;
  gap: 1.5rem;
  z-index: 2;
  position: relative;
  max-width: 600px;
  padding: 2.5rem 3rem;
  background: 
    linear-gradient(135deg, 
      rgba(0, 0, 0, 0.7) 0%, 
      rgba(0, 0, 0, 0.4) 50%, 
      rgba(0, 0, 0, 0.6) 100%
    );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.slide-category {
  background: var(--primary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInContent 0.8s ease 0.1s forwards;
}
.slide-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
  text-shadow: 
    3px 3px 0px rgba(0,0,0,1),
    2px 2px 15px rgba(0,0,0,0.9),
    0 0 30px rgba(0,0,0,0.7);
  line-height: 1.05;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInContent 0.8s ease 0.3s forwards;
}
.slide-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.5s ease;
}
.slide-title a:hover {
  color: var(--secondary-color);
  text-shadow: 
    3px 3px 0px rgba(0,0,0,1),
    2px 2px 15px rgba(0,0,0,0.95),
    0 0 35px rgba(233, 30, 99, 0.5);
}
.slide-excerpt {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 
    2px 2px 0px rgba(0,0,0,0.9),
    1px 1px 10px rgba(0,0,0,0.8),
    0 0 20px rgba(0,0,0,0.6);
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInContent 0.8s ease 0.5s forwards;
}
.slide-button {
  background: var(--secondary-color);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInContent 0.8s ease 0.7s forwards;
}
.slide-button:hover {
  background: var(--primary-color);
  transform: scale(1.05) translateY(0);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  z-index: 10;
  justify-content: center;
  align-items: center;
  width: max-content;
}
.dot {
  width: 12px;
  height: 12px;
  background: rgba(180,180,180,0.25);
  border-radius: 50%;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s, border 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dot.active {
  background: var(--primary-color);
  opacity: 1;
  transform: scale(1.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  border-color: var(--secondary-color);
}

/* Animações estilo streaming */
@keyframes slideInContent {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.streaming-slide.active .slide-category,
.streaming-slide.active .slide-title,
.streaming-slide.active .slide-excerpt,
.streaming-slide.active .slide-button {
  animation-play-state: running;
}

@media (max-width: 900px) {
  .hero-streaming {
    min-height: 100vh;
    height: 100vh !important;
    margin-top: 0;
    padding: 0;
    touch-action: pan-y; /* Permite scroll vertical, impede horizontal */
    user-select: none; /* Impede seleção de texto durante swipe */
  }
  .hero-streaming .container {
    padding: 4rem 1rem 2rem 1rem;
  }
  .streaming-slider {
    cursor: grab;
  }
  .streaming-slider:active {
    cursor: grabbing;
  }
  .slide-content {
    padding: 2rem 1.5rem;
    max-width: 90%;
    background: 
      linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.8) 100%
      );
  }
  .slide-title {
    font-size: 2.8rem;
  }
  .slide-category {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  .slide-excerpt {
    font-size: 1rem;
  }
  .slider-dots {
    bottom: 4vh;
    left: 50%;
    transform: translateX(-50%);
    gap: 0.5rem;
    width: auto;
    right: auto;
    margin: 0;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 600px) {
  .hero-streaming {
    min-height: 95vh;
    height: 95vh !important;
    margin-top: 0;
    padding: 0;
    touch-action: pan-y;
    user-select: none;
  }
  .hero-streaming .container {
    padding: 4rem 1rem 2rem 1rem;
  }
  .streaming-slider {
    cursor: grab;
    position: relative;
  }
  .streaming-slider:active {
    cursor: grabbing;
  }
  .slide-content {
    padding: 1.5rem 1rem;
    background: 
      linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        rgba(0, 0, 0, 0.85) 100%
      );
    border-radius: 15px;
    position: relative;
    z-index: 2;
  }
  .slide-button {
    position: relative;
    z-index: 20;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    min-height: 28px; /* Área mínima de toque recomendada */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .slide-button:active {
    transform: scale(0.98);
  }
  .slide-title {
    font-size: 2rem;
  }
  .slide-category {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
  .slide-excerpt {
    font-size: 0.9rem;
  }
  /* Indicador visual para swipe */
  .streaming-slider::after {
    content: "← Arraste para navegar →";
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    z-index: 3;
    animation: fadeInOut 4s ease-in-out infinite;
    pointer-events: none;
  }
}

/* Animação para indicador de swipe */
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
}

/* Article Header Section */
.article-header {
  padding: 80px 0 40px 0;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.breadcrumb-separator {
  color: #999;
  font-weight: 300;
}

.current-page {
  color: #999;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Botão Voltar */
.back-button {
  margin-bottom: 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--primary-color);
}

/* Categoria Destacada */
.article-category {
  margin-bottom: 1.5rem;
}

.article-category span {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Título Principal */
.article-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  color: #2c2c2c;
}

/* Meta Informações */
.article-meta-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.meta-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.95rem;
}

.meta-date svg {
  color: #999;
}

/* Botão Compartilhar */
.share-button-top {
  margin-bottom: 2rem;
}

.share-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-btn-main:hover {
  background: var(--primary-color);
  color: white;
}

/* Imagem do Artigo */
.article-image {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.featured-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Post Hero Section - Manter para compatibilidade */
.post-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 64px;
}
.post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.4) 70%);
  z-index: 1;
}
.post-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.post-category {
  background: var(--secondary-color);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}
.post-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 2rem 0;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.7);
  color: white;
}
.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.meta-item svg {
  opacity: 0.8;
}
.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  animation: bounce 2s infinite;
}
.scroll-indicator svg {
  animation: bounce 2s infinite 0.5s;
}

/* Single Post Content */
.single-post {
  background: white;
}
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  line-height: 1.8;
  color: #333;
}
.content-wrapper {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.content-wrapper p {
  margin-bottom: 1.5rem;
}
.content-wrapper h2,
.content-wrapper h3 {
  color: var(--primary-color);
  margin: 2.5rem 0 1rem 0;
  font-weight: 700;
}
.content-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Tags Section */
.post-tags {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid #eee;
}
.post-tags h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.tags-list a {
  display: inline-block;
  background: #f8f9fa;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  margin: 0 0.5rem 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.tags-list a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

/* Share Section */
.share-section {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid #eee;
}
.share-section h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  color: white;
}
.share-btn.twitter {
  background: #1da1f2;
}
.share-btn.facebook {
  background: #1877f2;
}
.share-btn.whatsapp {
  background: #25d366;
}
.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Author Box */
.author-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 800px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.author-avatar {
  flex-shrink: 0;
}
.author-avatar img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.2);
}
.author-info h4 {
  color: var(--primary-color);
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 700;
}
.author-info p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Related Posts */
.related-posts {
  background: #fff;
  padding: 4rem 0;
}

/* Related Header */
.related-header {
  text-align: center;
  margin-bottom: 3rem;
}

.related-header h2 {
  color: #2c2c2c;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

/* Related Grid */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Archive Pages Styles */
.archive-page, .search-page {
  min-height: 80vh;
}

/* Archive Header */
.archive-header, .search-header {
  padding: 90px 0 40px 0;
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.archive-title-section, .search-title-section {
  text-align: center;
  margin-top: 2rem;
}

.archive-title, .search-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.archive-description {
  font-size: 1.1rem;
  color: #666;
  margin: 0 0 1.5rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.archive-meta, .search-meta {
  font-size: 0.9rem;
  color: #999;
  margin-top: 1rem;
}

.post-count, .search-count {
  background: var(--primary-color);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Search Form Large */
.search-form-wrapper {
  margin: 2rem 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.search-form-large {
  display: flex;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.search-input-large {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  outline: none;
}

.search-btn-large {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn-large:hover {
  background: var(--secondary-color);
}

/* Archive Content */
.archive-content, .search-content {
  padding: 4rem 0;
  background: white;
}

/* Posts Archive Grid */
.posts-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Archive Post Cards */
.archive-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.archive-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Archive Card Image */
.archive-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.archive-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.archive-post-card:hover .archive-card-img {
  transform: scale(1.04);
}

/* Archive Card Category */
.archive-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: white;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Archive Card Content */
.archive-card-content {
  padding: 1.5rem;
}

.archive-card-title {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}

.archive-card-title a {
  color: #2c2c2c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.archive-card-title a:hover {
  color: var(--primary-color);
}

.archive-card-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

/* Archive Card Meta */
.archive-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #999;
}

.archive-date {
  color: #666;
}

.meta-separator {
  color: #ccc;
}

.reading-time {
  color: #999;
}

.author-name {
  color: #666;
}

.archive-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.archive-read-more:hover {
  color: var(--secondary-color);
  gap: 0.75rem;
}

/* Archive Pagination */
.archive-pagination {
  text-align: center;
  margin-top: 3rem;
}

.archive-pagination .page-numbers {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  margin: 0 0.25rem;
  background: white;
  color: #666;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
  font-weight: 600;
}

/* No Posts Found */
.no-posts-found, .search-empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.no-results-icon {
  margin-bottom: 2rem;
  opacity: 0.5;
}

.no-posts-found h2, .search-empty-state h2 {
  font-size: 2rem;
  color: #666;
  margin: 0 0 1rem 0;
}

.no-posts-found p, .search-empty-state p {
  font-size: 1.1rem;
  color: #999;
  margin: 0 0 2rem 0;
}

.search-suggestions {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.search-suggestions h3 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.1rem;
}

.search-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-suggestions li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.search-suggestions li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.back-home-btn:hover {
  background: var(--secondary-color);
}

/* Single Page Related Cards */
.single-related-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.single-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Single Card Image */
.single-card-image {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.single-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.single-related-card:hover .single-card-img {
  transform: scale(1.04);
}

/* Single Card Category */
.single-card-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Single Card Content */
.single-card-content {
  padding: 1.25rem;
}

.single-card-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

.single-card-title a {
  color: #2c2c2c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-card-title a:hover {
  color: var(--primary-color);
}

.single-card-excerpt {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

/* Single Card Meta */
.single-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.single-card-meta time {
  color: #999;
}

.single-read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.single-read-more:hover {
  color: var(--secondary-color);
}

/* Home Related Cards (manter originais) */
.related-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}
.related-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.related-card:hover .related-image img {
  transform: scale(1.05);
}
.related-content {
  padding: 1.5rem;
}
.related-content h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.related-content h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.related-content h3 a:hover {
  color: var(--secondary-color);
}
.related-content p {
  color: #666;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
.read-more {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Animações */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Cards Section */
.cards {
  background: #fff;
  padding: 2rem 0;
}
.card-list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  width: 220px;
  padding: 1rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transform: translateY(-4px) scale(1.04);
}
.card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.7rem;
}
.card h3 {
  font-size: 1.1rem;
  margin: 0;
}

/* Home Cards Section */
.blog-home {
  padding: 4rem 0;
  background: #fff;
}
.blog-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.category-section {
  margin-bottom: 4rem;
}
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 1rem;
}
.category-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}
.view-all {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.view-all:hover {
  color: var(--primary-color);
}
.posts-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
}
.featured-post {
  grid-row: 1 / 3;
  grid-column: 1;
}
.regular-post {
  display: flex;
  flex-direction: column;
}
.blog-post {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.featured-post .post-image {
  height: 300px;
}
.regular-post .post-image {
  height: 150px;
}
.post-image {
  overflow: hidden;
  position: relative;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-post:hover .post-image img {
  transform: scale(1.05);
}
.no-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-image span {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}
.post-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  color: #666;
}
.post-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}
.featured-post .post-title {
  font-size: 1.6rem;
}
.post-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
.post-title a:hover {
  color: var(--primary-color);
}
.post-excerpt {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}
.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  align-self: flex-start;
  transition: color 0.2s;
}
.read-more:hover {
  color: var(--secondary-color);
}
@media (max-width: 900px) {
  .article-container {
    padding: 0 1rem;
  }
  .article-title {
    font-size: 2.2rem;
  }
  .breadcrumbs {
    font-size: 0.85rem;
  }
  .current-page {
    max-width: 200px;
  }
  .archive-header, .search-header {
    padding: 80px 0 30px 0;
  }
  .archive-title, .search-title {
    font-size: 2rem;
  }
  .posts-archive-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .archive-card-image {
    height: 200px;
  }
  .archive-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .search-form-wrapper {
    margin: 1.5rem 0;
  }
  .related-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .related-header h2 {
    font-size: 1.9rem;
  }
  .single-card-image {
    height: 160px;
  }
  .posts-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
  .featured-post {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 400px;
  }
  .regular-post {
    min-height: 300px;
  }
  .featured-post .post-image {
    height: 200px;
  }
  .regular-post .post-image {
    height: 140px;
  }
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .blog-home .container {
    padding: 0 1rem;
  }
}
@media (max-width: 600px) {
  .article-header, .archive-header, .search-header {
    padding: 30px 0 25px 0;
  }
  .article-container {
    padding: 0 0.75rem;
  }
  .article-title, .archive-title, .search-title {
    font-size: 1.7rem;
  }
  .breadcrumbs {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    margin-top: 30px;
  }
  .current-page {
    max-width: 150px;
  }
  .back-button {
    margin-bottom: 1.5rem;
  }
  .article-category {
    margin-bottom: 1rem;
  }
  .article-category span {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  .share-btn-main {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
  .related-posts {
    padding: 3rem 0;
  }
  .related-header h2 {
    font-size: 1.6rem;
  }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .single-card-image {
    height: 150px;
  }
  .single-card-content {
    padding: 1rem;
  }
  .single-card-title {
    font-size: 1rem;
  }
  .posts-archive-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .archive-card-image {
    height: 180px;
  }
  .archive-card-content {
    padding: 1.25rem;
  }
  .archive-card-title {
    font-size: 1.1rem;
  }
  .archive-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .search-form-large {
    border-radius: 25px;
  }
  .search-input-large {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
  .search-btn-large {
    padding: 0.8rem 1.2rem;
  }
  .no-posts-found, .search-empty-state {
    padding: 3rem 1rem;
  }
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .featured-post {
    grid-column: 1;
    grid-row: auto;
    min-height: 450px;
  }
  .regular-post {
    min-height: 320px;
  }
  .featured-post .post-image {
    height: 220px;
  }
  .regular-post .post-image {
    height: 160px;
  }
  .blog-home {
    padding: 2rem 0;
  }
  .category-section {
    margin-bottom: 3rem;
  }
}

/* Responsive para Single Post */
@media (max-width: 900px) {
  .post-hero {
    min-height: 70vh;
    padding-top: 64px;
    background-attachment: scroll;
  }
  .post-hero-content {
    padding: 0 1rem;
  }
  .post-title {
    font-size: 2.5rem;
  }
  .post-meta {
    gap: 1rem;
  }
  .post-content {
    padding: 0 1rem;
  }
  .author-box {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin: 3rem 1rem;
  }
  .share-buttons {
    justify-content: center;
  }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .post-hero {
    min-height: 60vh;
    padding: 64px 0 2rem 0;
  }
  .post-hero-content {
    padding: 0 0.75rem;
  }
  .post-title {
    font-size: 2rem;
  }
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .post-content {
    padding: 0 0.75rem;
  }
  .content-wrapper {
    font-size: 1rem;
  }
  .author-box {
    margin: 2rem 0.75rem;
    padding: 1.5rem;
  }
  .related-posts {
    padding: 2rem 0;
  }
  .related-posts h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 0 0.75rem;
  }
  .related-grid {
    padding: 0 0.75rem;
  }
  .card-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .card img {
    max-width: 98vw;
  }
}

/* Single Post */
.single-post-post {
  background: #fff;
  padding: 2rem 0;
}
.single-post-post {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
}
.single-post-post h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.single-post-post .meta {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.featured-img img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.2rem;
}
.single-post-post .content {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #222;
}

.tags {
  margin-top: 1.5rem;
}
.tags a {
  background: var(--secondary-color);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  margin-right: 0.5rem;
  text-decoration: none;
  font-size: 0.95rem;
}
.tags a:hover {
  background: var(--primary-color);
}

/* Related Posts */
.related-posts {
  background: #fff;
  padding: 1.5rem 0;
}
.related-posts h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.related-posts ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
}
.related-posts li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}
.related-posts li a:hover {
  color: var(--secondary-color);
}

/* ===================================
   MODERN FOOTER STYLES
   =================================== */

.modern-footer {
  background: var(--primary-color);
  color: #e4e4e7;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
}

/* Desktop Gradient Background */
@media (min-width: 1200px) {
  .modern-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
}

.footer-content {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Footer Brand Section */
.footer-brand {
  flex: 1;
  max-width: 350px;
  min-width: 280px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo .custom-logo {
  height: 45px;
  width: auto;
  max-width: 200px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo .custom-logo:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(26, 115, 232, 0.5));
}

.footer-site-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
  text-decoration: none;
}

.footer-description {
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  font-size: 0.95rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e6683c;
}

.social-link.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-link.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-link.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.social-link.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.social-link.telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
}

/* Footer Sections */
.footer-links,
.footer-categories,
.footer-newsletter {
  flex: 0 0 auto;
  min-width: 200px;
}

.footer-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

/* Footer Navigation */
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin: 0 0 0.8rem 0;
}

.footer-nav a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 1rem;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
  padding-left: 1.5rem;
}

.footer-nav a:hover::before {
  opacity: 1;
}

/* Desktop Hover Effects */
@media (min-width: 1200px) {
  .footer-nav a {
    padding: 0.4rem 0;
    border-radius: 6px;
    padding-left: 1rem;
  }
  
  .footer-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.5rem;
    padding-right: 1rem;
    transform: translateX(5px);
  }
  
  .footer-nav a::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
  }
  
  .footer-nav a:hover::after {
    width: 20px;
  }
}

.category-count {
  font-size: 0.8rem;
  color: #71717a;
  margin-left: 0.5rem;
}

/* Newsletter Section */
.newsletter-description {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
}

.newsletter-form {
  max-width: 280px;
}

.newsletter-input-group {
  position: relative;
  margin-bottom: 1rem;
}

.newsletter-input {
  width: 100%;
  padding: 0.875rem 3.5rem 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
  color: #a1a1aa;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-50%) scale(1.05);
}

/* Desktop Newsletter Enhancements */
@media (min-width: 1200px) {
  .newsletter-input-group {
    position: relative;
    margin-bottom: 1.2rem;
  }
  
  .newsletter-input {
    padding: 1rem 4rem 1rem 1.2rem;
    font-size: 0.95rem;
    border-radius: 12px;
  }
  
  .newsletter-input:focus {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.2);
  }
  
  .newsletter-btn {
    right: 0.6rem;
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  
  .newsletter-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
  }
}

.newsletter-terms {
  color: #71717a;
  font-size: 0.75rem;
  line-height: 1.4;
}

.newsletter-terms a {
  color: var(--primary-color);
  text-decoration: none;
}

.newsletter-terms a:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(26, 115, 232, 0.8);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  margin: 0;
  color: #a1a1aa;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Desktop Footer Bottom Enhancements */
@media (min-width: 1200px) {
  .footer-bottom {
    padding: 2rem 0;
    backdrop-filter: blur(10px);
  }
  
  .footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .copyright p {
    font-size: 0.9rem;
  }
  
  .footer-bottom-links {
    gap: 3rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
  }
  
  .footer-bottom-links a:hover::after {
    width: 70%;
  }
}

/* Footer Desktop Enhancements */
@media (min-width: 1200px) {
  .footer-content {
    padding: 5rem 0 2.5rem;
  }
  
  .footer-grid {
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .footer-brand {
    flex: 1.5;
    max-width: 400px;
    padding-right: 2rem;
  }
  
  .footer-links,
  .footer-categories {
    flex: 0 0 200px;
  }
  
  .footer-newsletter {
    flex: 0 0 320px;
  }
  
  .footer-description {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .social-links {
    gap: 1.2rem;
  }
  
  .social-link {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .footer-nav a {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .newsletter-form {
    max-width: 320px;
  }
  
  .newsletter-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1440px) {
  .footer-grid {
    gap: 5rem;
  }
  
  .footer-brand {
    flex: 2;
    max-width: 450px;
  }
  
  .footer-links,
  .footer-categories {
    flex: 0 0 220px;
  }
  
  .footer-newsletter {
    flex: 0 0 350px;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
  }
}

/* Footer Responsive */
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-brand {
    max-width: none;
    text-align: center;
    flex: 1;
  }
  
  .footer-links,
  .footer-categories,
  .footer-newsletter {
    flex: 1;
    min-width: auto;
    text-align: center;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-nav ul {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .newsletter-form {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .footer-content {
    padding: 3rem 0 1.5rem;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-brand {
    grid-column: 1;
    text-align: center;
    max-width: none;
  }
  
  .footer-brand .footer-logo {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-brand .footer-site-title {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-description {
    text-align: center;
    margin: 1rem auto 1.5rem;
    max-width: 300px;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-title {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-nav {
    text-align: center;
  }
  
  .footer-nav ul {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-nav li {
    text-align: center;
  }
  
  .footer-nav a {
    justify-content: center;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
    text-align: center;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center;
  }
  
  .copyright {
    text-align: center;
  }
  
  .footer-bottom-links {
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
  }
  
  .newsletter-input-group {
    max-width: 280px;
    margin: 0 auto 1rem;
  }
}

/* Responsividade */
@media (max-width: 900px) {
  .hero-posts, .card-list {
    flex-direction: column;
    align-items: center;
  }
  .hero-post, .card {
    width: 90vw;
    max-width: 350px;
  }
  .single-post .container {
    padding: 1rem;
  }
}

/* ===================================
   PAGE TEMPLATE STYLES
   =================================== */

/* Page Container */
.page-container {
  min-height: 100vh;
}

/* Page Hero Section */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-featured-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 115, 232, 0.8) 0%,
    rgba(233, 30, 99, 0.8) 100%
  );
}

.page-header {
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.page-excerpt {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 1.5rem 0;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.page-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.meta-item:hover,
.edit-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: #fff;
}

/* Content Wrapper */
.page-content-wrapper {
  background: #f8f9fa;
  min-height: 60vh;
  padding: 4rem 0;
}

.page-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Content */
.page-main-content {
  min-height: 500px;
}

.page-content-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.page-content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.content-body {
  padding: 3rem;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  color: var(--primary-color);
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.content-body h2 {
  font-size: 2rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.content-body h3 {
  font-size: 1.5rem;
}

.content-body p {
  margin: 1.5rem 0;
}

.content-body ul,
.content-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.content-body li {
  margin: 0.5rem 0;
}

.content-body blockquote {
  border-left: 4px solid var(--primary-color);
  margin: 2rem 0;
  padding: 1rem 2rem;
  background: #f8f9fa;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  position: relative;
}

.content-body blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  opacity: 0.3;
}

/* Page Links Pagination */
.page-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid #eee;
}

.page-links-title {
  font-weight: 600;
  color: var(--primary-color);
}

.page-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.page-link:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Child Pages Section */
.child-pages-section {
  margin: 3rem 0;
}

.child-pages-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 0 0 2rem;
  text-align: center;
}

.child-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.child-page-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.child-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.child-page-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.child-page-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.child-page-card:hover .child-page-thumb {
  transform: scale(1.05);
}

.child-page-content {
  padding: 1.5rem;
}

.child-page-title {
  margin: 0 0 1rem;
}

.child-page-title a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.child-page-title a:hover {
  color: var(--secondary-color);
}

.child-page-excerpt {
  color: #666;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.child-page-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.child-page-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* Comments Section */
.page-comments-section {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Sidebar Styles */
.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.widget-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin: 0 0 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

/* Table of Contents */
.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-item {
  margin: 0.5rem 0;
}

.toc-link {
  color: #555;
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.toc-link:hover {
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  background: rgba(26, 115, 232, 0.05);
  padding-left: 1.5rem;
}

/* Page Navigation */
.page-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-navigation li {
  margin: 0.5rem 0;
}

.page-navigation a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.page-navigation a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateX(5px);
}

.nav-sibling.current a {
  background: var(--secondary-color);
  color: #fff;
  font-weight: 600;
}

/* Contact CTA Widget */
.contact-cta-widget {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
}

.contact-cta-widget .widget-title {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-content h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.cta-content p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Page Responsive Styles */
@media (max-width: 900px) {
  .page-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .content-body {
    padding: 2rem;
  }
  
  .child-pages-grid {
    grid-template-columns: 1fr;
  }
  
  .page-meta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .page-header {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .page-title {
    font-size: 2rem;
  }
  
  .content-body {
    padding: 1.5rem;
  }
  
  .sidebar-widget {
    padding: 1.5rem;
  }
  
  .page-hero {
    min-height: 300px;
  }
}
