/*
Theme Name: Hotelier Digital
Theme URI: https://hotelierdigital.com.br
Author: Hotelier Digital
Author URI: https://hotelierdigital.com.br
Description: Tema premium para reviews de hotéis de luxo e 5 estrelas. Design minimalista, elegante e sofisticado.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hotelierdigital
Tags: blog, hotel, luxury, responsive, gold, minimal, premium
*/

/* ========================================
   RESET E CONFIGURAÇÕES GLOBAIS
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta de Cores - Identidade de Luxo */
  --color-gold: #C5A059;
  --color-gold-light: #D4B87A;
  --color-gold-dark: #A08243;
  --color-champagne: #F7E7CE;
  --color-snow: #FAFAFA;
  --color-ice: #F5F5F5;
  --color-white: #FFFFFF;
  --color-graphite: #2C2C2C;
  --color-graphite-light: #3D3D3D;
  --color-charcoal: #1A1A1A;
  --color-text-primary: #333333;
  --color-text-secondary: #666666;
  --color-text-muted: #888888;
  --color-border: #E8E8E8;
  --color-border-light: #F0F0F0;
  --shadow-soft: rgba(0, 0, 0, 0.06);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --shadow-luxury: rgba(0, 0, 0, 0.15);
  
  /* Tipografia */
  --font-serif: 'Playfair Display', 'Lora', Georgia, serif;
  --font-sans: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Espaçamento - Regra do 1.5x */
  --spacing-xs: 0.75rem;
  --spacing-sm: 1.125rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.25rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4.5rem;
  
  /* Transições */
  --transition-fast: 0.2s ease-in-out;
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-primary);
  background-color: var(--color-snow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TIPOGRAFIA
======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-charcoal);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p {
  margin-bottom: var(--spacing-lg);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.9;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

a:hover {
  color: var(--color-gold-dark);
}

/* ========================================
   LAYOUT PRINCIPAL
======================================== */

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
}

/* ========================================
   HEADER
======================================== */

.site-header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-base);
  border-bottom: 1px solid var(--color-border);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px var(--shadow-soft);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-link {
  display: flex;
  align-items: center;
}

.default-logo,
.custom-logo {
  max-height: 50px;
  width: auto;
  display: block;
}

.site-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  color: var(--color-charcoal);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.site-title a {
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-title a:hover {
  color: var(--color-gold);
}

.site-description {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Menu de Navegação - Categorias */
.header-actions {
  display: none;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 25px;
}

.hamburger-icon span {
  display: block;
  height: 3px;
  background: #161616;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.menu-toggle.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.menu-toggle.active .main-navigation {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  position: relative;
}

.categories-menu {
  list-style: none;
  display: flex;
  gap: var(--spacing-lg);
  margin: 0;
  align-items: center;
}

.categories-menu .category-item a {
  color: var(--color-text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-base);
}

.categories-menu .category-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.categories-menu .category-item a:hover,
.categories-menu .category-item a:focus {
  color: var(--color-gold);
}

.categories-menu .category-item a:hover::after,
.categories-menu .category-item a:focus::after {
  width: 100%;
}

.search-toggle {
  background: transparent;
  border: none;
  color: var(--color-graphite);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), color var(--transition-base);
}

.search-toggle:hover,
.search-toggle:focus {
  color: var(--color-gold);
  transform: scale(1.1);
}

.header-search[hidden] {
  display: none;
}

.header-search {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--spacing-sm);
  width: min(400px, calc(100vw - 3rem));
  z-index: 1100;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
  box-shadow: 0 20px 60px var(--shadow-medium);
}

.header-search.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-search-form {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.header-search-fieldset {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--color-snow);
  border-radius: 999px;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.header-search-fieldset:focus-within {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.header-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  line-height: 1.5;
  font-family: inherit;
  color: var(--color-graphite);
}

.header-search-input::placeholder {
  color: var(--color-text-muted);
}

.header-search-input:focus {
  outline: none;
}

.header-search-submit {
  background: var(--color-gold);
  border: none;
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.header-search-submit:hover,
.header-search-submit:focus {
  transform: translateX(3px);
  background: var(--color-gold-dark);
}

.search-close {
  display: none;
  background: transparent;
  border: none;
  color: #161616;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 5S8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  position: absolute;
  right: 0;
  top: 0;
}

/* ========================================
   HERO SECTION IMERSIVA (80vh)
======================================== */

.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-charcoal);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--spacing-xl);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-champagne);
  margin-bottom: var(--spacing-lg);
}

.hero-location svg {
  stroke: var(--color-gold);
}

/* ========================================
   COMPONENTE DE AVALIAÇÃO PREMIUM
======================================== */

.hotel-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.hotel-rating--hero {
  position: relative;
  bottom: auto;
  right: auto;
  margin: 1.5rem auto 0;
  width: fit-content;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transform: scale(0.85);
  transform-origin: center top;
}

.rating-score {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.rating-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
}

.rating-max {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.rating-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.rating-star {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

.rating-star.empty {
  color: var(--color-border);
}

/* ========================================
   FEATURED POST
======================================== */

.featured-post-section {
  margin-bottom: 3rem;
  background: var(--light-blue);
  border-radius: 0;
  overflow: hidden;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
  align-items: center;
}

.featured-post-thumbnail {
  height: auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.featured-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.featured-post-content {
  padding: 6.125rem 1.5rem 6.125rem 0rem;
  color: var(--alt-black);
}

.featured-label a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--secondary-blue);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.featured-post-title {
  font-size: clamp(1.75rem, 3.5vw + 1rem, 3rem);
  color: var(--alt-black);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}
.featured-post-title a {
  color: var(--alt-black);
  transition: opacity 0.3s ease;
}

.featured-post-title a:hover {
  opacity: 0.9;
}

.featured-post-excerpt {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.featured-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary-blue);
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-blue);
}

.featured-read-more:hover {
  background: var(--light-blue);
  color: var(--white);
  transform: translateX(5px);
}

.featured-read-more svg,
.featured-read-more svg * {
  transition: all 0.3s ease;
}

.featured-read-more:hover svg {
  transform: translateX(5px);
}

.featured-read-more:hover svg * {
  fill: var(--white);
}

.section-title {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  font-weight: 700;
}

.footer-category-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.footer-category-item a {
  color: var(--soft-blue);
  font-weight: 300;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-category-item a:hover {
  color: var(--white);
}

.archive-page {
  padding: 3rem 0 4rem;
  flex: 1;
}

.archive-header {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}

.archive-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: rgba(50, 97, 105, 0.1);
  color: var(--secondary-blue);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.archive-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
  color: var(--alt-black);
}

h1.archive-title {
  color: var(--alt-black);
}

.archive-title mark {
  background: transparent;
  color: var(--alt-black);
}

.archive-description {
  color: var(--text-gray);
  font-size: 1.05rem;
}

.archive-search-form {
  margin: 2rem auto 0;
  max-width: 520px;
}

.archive-search-fieldset {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid rgba(22, 22, 22, 0.1);
  padding: 0.65rem 0.75rem 0.65rem 1.25rem;
  box-shadow: 0 15px 35px rgba(22, 22, 22, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.archive-search-fieldset input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  line-height: 1.5;
  font-family: inherit;
  color: #161616;
}

.archive-search-fieldset input[type="search"]:focus {
  outline: none;
}

.archive-search-fieldset input[type="search"]::placeholder {
  color: rgba(22, 22, 22, 0.45);
}

.archive-search-fieldset button {
  background: var(--light-blue);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.archive-search-fieldset button:hover,
.archive-search-fieldset button:focus {
  transform: translateX(2px);
  background: var(--secondary-blue);
}

.archive-empty {
  text-align: center;
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(22, 22, 22, 0.08);
  max-width: 620px;
  margin: 0 auto;
}

.archive-empty h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.archive-empty p {
  color: var(--text-gray);
  margin-bottom: 1.75rem;
}

.archive-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--secondary-blue);
}

.archive-back::after {
  content: "↗";
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.archive-back:hover::after {
  transform: translate(2px, -2px);
}

/* ========================================
   POSTS GRID
======================================== */

.posts-container {
  padding: 0 0 3rem;
  flex: 1;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.posts-grid.is-loading {
  position: relative;
  opacity: 0.45;
  pointer-events: none;
}

.posts-grid.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0)
  );
  animation: posts-grid-pulse 1.2s ease-in-out infinite;
}

.pagination.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

@keyframes posts-grid-pulse {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.7;
  }
}

.post-card {
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-card:hover {
  transform: translateY(-8px);
}

.post-thumbnail {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--soft-blue) 0%,
    var(--light-blue) 100%
  );
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.1);
}

.post-thumbnail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-gray);
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.post-meta span::before {
  content: "•";
  color: var(--accent-blue);
  font-weight: bold;
}

.post-meta span:first-child::before {
  content: "";
  display: none;
}

.post-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--primary-blue);
  text-transform: uppercase;
  margin-top: 1.5rem;
}

.post-date {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--light-gray);
  margin-top: auto;
  padding-top: 0rem;
  text-transform: uppercase;
}

.post-title {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem); /* ≈ 20px → 28px */
  line-height: 1.5;
}

.post-title a {
  color: var(--alt-black);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-title a:hover {
  color: var(--light-blue);
}

.post-excerpt {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem); /* ≈ 14px → 16px */
  line-height: clamp(1.25rem, 1.5vw + 0.25rem, 1.5rem); /* ≈ 20px → 24px */
}

.post-excerpt a {
  color: var(--text-gray);
  text-decoration: none;
}

.post-excerpt p {
  font-weight: 400;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem); /* ≈ 14px → 16px */
  line-height: clamp(1.25rem, 1.5vw + 0.25rem, 1.5rem); /* ≈ 20px → 24px */
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.read-more:hover {
  background: var(--light-blue);
  color: var(--white);
  transform: translateX(5px);
}

.read-more::after {
  content: "→";
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* ========================================
   SINGLE POST
======================================== */

.single-post-container {
  padding: 3rem 0;
  flex: 1;
}

.single-post {
  margin: 0 auto;
}

.single-post-header {
  padding: 1.5rem 0rem;
  background: transparent;
}

.single-post-header .posted-author {
  display: none;
}

.single-post-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary-blue);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.single-post-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: var(--text-gray);
  font-size: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.single-post-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.single-post-meta span svg {
  flex-shrink: 0;
}

.single-post-meta a {
  color: var(--secondary-blue);
  font-weight: 600;
}

.single-post-meta a:hover {
  color: var(--light-blue);
}

.single-post-footer {
  padding: 2rem 3rem;
  background: var(--bg-light);
  border-top: 2px solid var(--border-color);
}

.post-tags {
  color: var(--text-gray);
  line-height: 1.8;
}

.post-tags a {
  display: inline-block;
  background: var(--soft-blue);
  color: var(--primary-blue);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: var(--accent-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.single-post-thumbnail {
  width: 100%;
  height: auto;
  max-height: 500px;
  overflow: hidden;
}

.single-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-content {
  padding: 2.4rem 0rem;
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-dark);
}

.single-post-content figure {
  width: 100%;
}
.single-post-content figure img {
  width: 100%;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--primary-blue);
}

.single-post-content p {
  margin-bottom: 1.75rem;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 15px var(--shadow);
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 1.75rem;
  padding-left: 2rem;
}

.single-post-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.single-post-content blockquote {
  border-left: 4px solid var(--accent-blue);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--bg-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-gray);
}

.single-post-content a {
  color: var(--secondary-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--accent-blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.single-post-content a:hover {
  color: var(--light-blue);
}

/* Post Navigation */
.post-navigation {
  background: transparent;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links {
  width: 100%;
  display: flex;
  gap: 2.4rem;
  margin-top: 40px;
}

.nav-previous,
.nav-next {
  flex: 1;
  min-width: 200px;
}

.nav-previous a,
.nav-next a {
  display: flex;
  align-items: safe;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  color: var(--alt-black);
  font-weight: 600;
  flex-direction: row;
  flex-wrap: wrap;
  max-height: 150px;
  overflow: hidden;
  height: 150px;
}

.nav-previous .nav-title,
.nav-next .nav-title {
  font-size: 0.75rem;
  flex-basis: 100%;
}

.nav-previous a:hover,
.nav-next a:hover {
  transform: translateX(-5px);
}

.nav-next a:hover {
  transform: translateX(5px);
}

.nav-previous a::before {
  content: "←";
}

.nav-next a {
  justify-content: flex-end;
}

.nav-next a .nav-subtitle::after {
  content: " →";
}

/* ========================================
   PAGINAÇÃO
======================================== */

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 0.25rem 0.25rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--black);
  font-weight: 400;
  transition: all 0.3s ease;
  min-width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination a:hover {
  background: var(--alt-black);
  color: var(--white);
  border-color: var(--alt-black);
  transform: translateY(0px);
  font-weight: 500;
}

.pagination .current {
  background: var(--alt-black);
  color: var(--white);
  border-color: var(--alt-black);
  font-weight: 500;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
  background: linear-gradient(
    135deg,
    #4a4a4a 0%,
    #3d3d3d 100%
  );
  color: var(--color-white);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-section h3 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-family: var(--font-serif);
  font-weight: 500;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-gold);
}

.footer-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-category-list li {
  margin-bottom: 0.5rem;
}

.footer-category-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-category-list a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-developer {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-developer .heart {
  color: #e74c3c;
  font-size: 1rem;
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-developer a {
  color: var(--color-gold) !important;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.footer-developer a:hover {
  color: #fff !important;
  border-bottom-color: var(--color-gold);
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ========================================
   UTILITÁRIOS
======================================== */

.no-posts {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
}

.no-posts h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.no-posts p {
  color: var(--text-gray);
}

/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .featured-post {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .post-faq h3[itemprop="name"] {
    font-size: 1.125rem !important;
  }

  .single-post-container {
    padding: 1.5rem 1rem;
  }
  .single-post-container .container,
  .single-post-container .single-post-header,
  .single-post-container .single-post-content {
    padding: 0;
  }

  .single-post-container .single-post-content {
    padding-top: 2.4rem;
  }

  /*clamop 2rem, 2vw + 0.5rem, 1.25rem*/
  .featured-post-title {
    font-size: clamp(2rem, 2vw + 0.5rem, 2rem);
  }

  .featured-post-excerpt {
    font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
    line-height: clamp(1.25rem, 1.5vw + 0.25rem, 1.5rem);
  }

  .featured-read-more {
    font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
    padding: 0.5rem 1rem;
  }

  .featured-post-thumbnail {
    margin-top: 2.5rem;
  }

  .featured-post-section .container {
    padding: 0;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    order: 3;
  }

  .search-toggle-mobile {
    background: transparent;
    border: none;
    color: #161616;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-icon-item {
    display: none;
  }

  .header-content {
    flex-wrap: nowrap;
    display: flex;
    flex-direction: row;
  }

  .header-actions {
    order: 1;
  }

  .header-content .growmobile {
    flex-grow: 1;
  }

  .menu-toggle {
    display: block;
    order: 1;
  }

  .main-navigation {
    position: relative;
    order: 2;
  }

  .categories-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    gap: 0;
    margin-top: 1rem;
    background: var(--primary-blue);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
  }

  .categories-menu.active {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    min-height: 100vh;
    height: 100%;
    overflow-y: auto;
    width: 100vw;
    margin: 0 auto;
    border-radius: 0px;
    background: var(--color-white);
    padding-top: 5rem;
  }

  .categories-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--color-white);
    z-index: 1002;
    border-bottom: 1px solid var(--color-border);
  }

  .categories-menu .category-item {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }
}

/* Esconder botão de fechar no desktop - só mostrar no mobile */
.categories-menu .menu-close-item {
  display: none;
}

@media (max-width: 768px) {
  .categories-menu .menu-close-item {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1003;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    margin: -1rem -1rem 1rem -1rem;
    padding: 1rem;
  }

  .categories-menu .menu-close {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
  }

  .categories-menu .menu-close:hover {
    color: var(--color-gold);
  }

  .categories-menu .menu-close svg {
    width: 24px;
    height: 24px;
  }

  .categories-menu .category-item a {
    display: block;
    padding: 1rem;
    width: 100%;
  }

  .search-icon-item {
    margin-left: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-post-thumbnail {
    order: -1;
  }

  .featured-post-thumbnail img {
    min-height: 250px;
  }

  .featured-post-content {
    padding: 2rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .single-post-header,
  .single-post-content {
    padding: 2rem 1.5rem;
  }

  .post-navigation {
    padding: 1.5rem;
    flex-direction: column;
  }

  .hero-section {
    padding: 2.5rem 0;
  }

  /* Nota de avaliação em mobile */
  .hotel-rating--hero {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 1.5rem auto 0;
    width: fit-content;
    transform: scale(0.75);
    transform-origin: center top;
  }

  .hero-content {
    padding: var(--spacing-lg);
  }

  .hotel-rating {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .rating-number {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 15px;
  }

  .single-post-header,
  .single-post-content {
    padding: 1.5rem 1rem;
  }

  .pagination a,
  .pagination span {
    padding: 0.5rem 0.75rem;
    min-width: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .container,
  .container-wide {
    padding: 0 10px;
  }
  
  .site-branding svg {
    width: 180px;
    height: 36px;
  }
  
  .featured-post-content,
  .single-post-header,
  .single-post-content {
    padding: 1rem 0.75rem;
  }
  
  .posts-grid {
    gap: 1rem;
  }
  
  .hotel-card__title {
    font-size: 1.25rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* ========================================
   TABELAS
======================================== */

.single-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
}

.single-post-content table thead {
  background: linear-gradient(
    135deg,
    var(--secondary-blue) 0%,
    var(--light-blue) 100%
  );
  color: var(--white);
}

.single-post-content table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 2px solid var(--primary-blue);
}

.single-post-content table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.single-post-content table tbody tr {
  transition: background-color 0.3s ease;
}

.single-post-content table tbody tr:hover {
  background-color: var(--bg-light);
}

.single-post-content table tbody tr:last-child td {
  border-bottom: none;
}

.single-post-content table tbody tr:nth-child(even) {
  background-color: rgba(214, 232, 247, 0.3);
}

/* Tabelas responsivas */
@media (max-width: 768px) {
  .single-post-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .single-post-content table th,
  .single-post-content table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

/* ========================================
   ACESSIBILIDADE
======================================== */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: var(--bg-light);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: var(--primary-blue);
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ========================================
   ANIMAÇÕES
======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-card,
.single-post {
  animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .post-navigation,
  .pagination,
  .read-more {
    display: none;
  }

  .single-post {
    box-shadow: none;
  }
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: end;
}

/*Estilos de Tabela*/
.single-post-content table {
  border-collapse: collapse;
  width: 100%;
}

.single-post-content table td,
.single-post-content table th {
  padding: 8px;
}

.single-post-content table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.single-post-content table th {
  background-color: var(--primary-blue);
  color: white;
}

.single-post-content table td {
  border-bottom: 1px solid #ddd;
}

.single-post-content table tbody tr:last-child td {
  margin-bottom: 0;
}

#outros-destaques h2.section-title {
  margin-top: 3rem;
  color: var(--alt-black);
  margin-bottom: 3rem;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem); /* ≈ de 24px a 40px */
  line-height: clamp(2rem, 4vw + 0.5rem, 3rem); /* ≈ de 32px a 48px */
  word-wrap: break-word;
}

.pagination {
  margin-top: 6rem;
}

.pagination .container {
  padding: 0px;
  display: flex;
  gap: 0.5rem;
}

.logoMobile svg * {
  fill: var(--white);
}

.logoMobile {
  margin-bottom: 2rem;
}

/* ========================================
   FAQ Accordion
======================================== */

.post-faq div[itemprop="mainEntity"] {
  border-bottom: 1px solid var(--border-color);
}

.post-faq div[itemprop="mainEntity"]:last-child {
  border-bottom: none;
}

.post-faq h3[itemprop="name"] {
  cursor: pointer;
  padding: 0.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-blue);
  transition: color 0.3s ease;
  font-size: 1.25rem;
}
.post-faq h3[itemprop="name"]:hover {
  color: var(--light-blue);
}

.post-faq h3[itemprop="name"]::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.post-faq div[itemprop="mainEntity"].active h3[itemprop="name"]::after {
  transform: rotate(45deg);
}

.post-faq div[itemprop="acceptedAnswer"] {
  overflow: hidden;
  transition: max-height 0.5s ease, padding-bottom 0.5s ease;
  max-height: 0;
  padding-bottom: 0;
}

.post-faq div[itemprop="mainEntity"].active div[itemprop="acceptedAnswer"] {
  max-height: 1000px; /* Adjust as needed */
  padding-bottom: 1.5rem;
}

.post-faq div[itemprop="acceptedAnswer"][hidden] {
  display: none;
}

.comment-respond {
  display: none;
}

.single-post-content h1 {
  font-size: clamp(1.75rem, 3.5vw + 1rem, 3rem);
  color: var(--alt-black);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

.single-post-content ul {
  list-style-type: disc;
}

.single-post-content ol {
  list-style-type: decimal;
}

.single-post-content p,
.single-post-content li,
.single-post-content td,
.single-post-content th {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1rem);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.single-post-content p strong {
  font-weight: 700;
}

.single-post-content h2 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 1.75rem);
  color: var(--alt-black);
  font-weight: 700;
}

/* 1.5 rem */
.single-post-content h3 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 1.5rem);
  color: var(--alt-black);
  font-weight: 700;
}

/* 1.25 rem */
.single-post-content h4 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.25rem);
  color: var(--alt-black);
  font-weight: 700;
}
/* 1 rem */
.single-post-content h5 {
  font-size: clamp(1rem, 2vw + 0.5rem, 1rem);
  color: var(--alt-black);
  font-weight: 700;
}

.menu-toggle.active {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
}

.menu-toggle.active .hamburger-icon span {
  background: var(--alt-black);
}

/* ========================================
   HOTEL CARDS PREMIUM
======================================== */

.hotel-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-medium);
}

.hotel-card__thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hotel-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hotel-card:hover .hotel-card__image {
  transform: scale(1.08);
}

.hotel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.hotel-card:hover .hotel-card__overlay {
  opacity: 1;
}

.hotel-card__rating-badge {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hotel-card__rating-badge .rating-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
}

.rating-stars-mini {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.rating-stars-mini .rating-star {
  width: 12px;
  height: 12px;
}

.hotel-card__content {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hotel-card__category {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--spacing-xs);
}

.hotel-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}

.hotel-card__title a {
  color: var(--color-charcoal);
  transition: color var(--transition-base);
}

.hotel-card__title a:hover {
  color: var(--color-gold);
}

.hotel-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
  flex: 1;
}

.hotel-card__meta {
  margin-top: auto;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--color-border-light);
}

.hotel-card__date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.single-post-content.has-faq {
  margin-top: var(--spacing-xl);
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.faq-item h3,
.faq-item [itemprop="name"] {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-charcoal);
  padding: var(--spacing-md) var(--spacing-lg);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-cream);
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}

.faq-item h3:hover,
.faq-item [itemprop="name"]:hover {
  background: var(--color-gold-light);
  color: var(--color-charcoal);
}

.faq-item.active h3,
.faq-item.active [itemprop="name"] {
  background: var(--color-gold);
  color: var(--color-white);
}

.faq-answer,
.faq-item [itemprop="acceptedAnswer"] {
  padding: 0 var(--spacing-lg);
  background: var(--color-white);
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  max-height: 0;
}

.faq-item.active .faq-answer,
.faq-item.active [itemprop="acceptedAnswer"] {
  padding: var(--spacing-lg);
  max-height: 2000px;
}

.faq-answer [itemprop="text"] > *:first-child {
  margin-top: 0;
}

.faq-answer [itemprop="text"] > *:last-child {
  margin-bottom: 0;
}

/* FAQ com Schema.org markup */
.post-faq {
  margin: var(--spacing-xl) 0;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  overflow: hidden;
}

.post-faq [itemprop="mainEntity"] {
  border-bottom: 1px solid var(--color-border-light);
}

.post-faq [itemprop="mainEntity"]:last-child {
  border-bottom: none;
}

/* Responsividade FAQ */
@media (max-width: 768px) {
  .faq-item h3,
  .faq-item [itemprop="name"] {
    font-size: 1.1rem;
    padding: var(--spacing-md);
  }

  .faq-item.active .faq-answer,
  .faq-item.active [itemprop="acceptedAnswer"] {
    padding: var(--spacing-md);
  }
}

