/* IDEIAData — Public Site Styles
   Carregado em: index, blog, blog-post, termos-uso, politica-privacidade
   Depende de: base.css (tokens)
*/

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

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
/* Dashboard e login têm tema próprio definido em .dashboard-body */

/* Typography */
h1,
h2,
h3,
h4,
.logo,
.nav-link {
  font-family: var(--font-heading);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.highlight {
  color: var(--primary);
}

.section {
  padding: var(--section-gap) 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--primary-hover, #8f5400);
}

.btn-primary:focus,
.btn-primary:focus-visible {
  outline: 2px solid var(--primary-hover, #8f5400);
  outline-offset: 2px;
  background: var(--primary) !important;
  color: #fff !important;
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-secondary);
  margin-left: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(167, 98, 0, 0.15);
  transform: translateY(-2px);
}

.btn-outline:hover::before {
  left: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition:
    background 0.3s ease,
    padding 0.3s ease,
    backdrop-filter 0.3s ease;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex; /* Aligns image if flex is needed, though 'logo' is usually an anchor */
  align-items: center;
}

.logo img {
  height: 26px;
  width: auto;
}

.header .logo img {
  height: 22px;
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.btn-prominent {
  padding: 0.5rem 1.25rem;
  background: var(--primary-dim);
  color: var(--primary);
  border-radius: 4px;
  border: 1px solid var(--primary-dim);
}

.btn-prominent:hover {
  background: var(--primary);
  color: #ffffff;
}

.mobile-menu-btn {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}



.hero-container {
  width: 100%;
  position: relative;
  z-index: 2; /* In front of grid */
}

.hero-content {
  max-width: 900px; /* Wider to allow big text */
}

/* Typography Overrides for Hero */
.hero-title {
  font-size: 3.25rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.text-white {
  color: #fff;
}

.text-highlight {
  color: var(--primary);
}

.hero-description {
  font-size: 1.25rem;
  max-width: 500px;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
}

.eyebrow {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Outline Button Style (formerly Link Button) */
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  background: transparent;
  text-decoration: none;
}

.btn-link:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* Hero stats (inside hero section) */
.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 2.5rem;
}

/* Services */
/* ── Services section: vertical center ───────────────────────── */
.services {
  flex-direction: column;
  justify-content: center;
}

.services .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  flex: 1;
}

/* ── Services grid ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 4px;
  padding: 2rem 1.75rem;
}

.service-card-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--primary);
  opacity: .5;
  margin-bottom: 0.75rem;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border-color: rgba(167, 98, 0, 0.25);
}

.card-icon {
  width: 50px;
  height: 50px;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Service List inside Cards */
.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* About Section */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--primary);
  font-weight: 600;
}

.segments-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.segment-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.segment-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border-radius: 4px;
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.highlight-item .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--primary);
}

.highlight-item span:last-child {
  font-weight: 500;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Contact */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.glass-panel {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(167, 98, 0, 0.1);
}

.full-width {
  width: 100%;
}

button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.form-feedback {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.form-feedback[data-state="success"] {
  color: #7ce0a0;
}

.form-feedback[data-state="error"] {
  color: #ff8f8f;
}

.form-feedback[data-state="neutral"] {
  color: var(--text-secondary);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form {
  position: relative;
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  background: #ffffff;
  border-top: 1px solid var(--border);
  margin-top: 0;
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.brand-col {
  padding-right: 2rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.footer-desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.contact-li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.icon-small {
  color: var(--primary);
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--border-soft);
  border-radius: 4px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  border: 1px solid var(--border-soft);
}

.social-link:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px var(--primary-dim);
}

.badge-new {
  font-size: 0.7rem;
  background: var(--primary);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.legal-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Google Material Icons Adjustment */
.icon-adjust {
  vertical-align: middle;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  color: var(--primary); /* Brand highlight color */
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.06);
  padding: 2rem 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--primary-hover);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-outline-cookie {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-cookie:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Footer Responsive */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .brand-col {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .header-container {
    padding: 0 1.5rem;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 3rem;
    height: 100%;
    justify-content: center;
  }

  .nav-link {
    font-size: 1.5rem;
  }

  .mobile-menu-btn {
    display: block;
    height: 24px;
    width: 30px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 100; /* Above nav overlay */
  }

  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    transition: all 0.3s ease;
  }

  .mobile-menu-btn span:nth-child(1) {
    top: 0;
  }
  .mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-menu-btn span:nth-child(3) {
    bottom: 0;
  }

  /* Hamburger Animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
    bottom: auto;
  }

  /* Layout Adjustments */
  .hero-title {
    font-size: 3rem; /* Smaller than desktop 5rem */
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-slide {
    padding: 2rem 1.5rem;
  }

}

/* Login Button */
.btn-login {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  /* Subtle background */
  color: var(--text-secondary);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-login:hover {
  background: var(--bg-card);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-login svg {
  transition: transform 0.3s ease;
}

.btn-login:hover svg {
  transform: translateX(2px);
}
/* Blog Page Styles */
.blog-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 4rem;
}

.blog-header {
  max-width: 800px;
  margin: 0 auto;
}

.blog-header h1 {
  font-size: 3rem;
  margin-top: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 0;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.blog-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

.obj-top {
  object-position: 50% 15% !important;
}

.banner-obj-top {
  object-position: 50% 15% !important; /* Matching the card alignment */
}

.obj-center {
  object-position: center !important;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.blog-read-time {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.blog-empty-state {
  grid-column: 1 / -1;
  text-align: center;
}

.blog-list-feedback,
.blog-post-feedback {
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.blog-category {
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}

.read-more .material-symbols-outlined {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.blog-card:hover .read-more .material-symbols-outlined {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 2.25rem;
  }
}

/* Single Blog Post Styles */
.blog-post-section {
  padding-top: 120px;
  padding-bottom: 80px;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.post-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 1rem 0;
  color: var(--text-primary);
}

.post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.post-container {
  max-width: 800px; /* Limits width for better reading experience */
}

.post-image-featured {
  margin-bottom: 3rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-height: 400px;
}

.post-image-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}

.post-content h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
}

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

.post-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  border-left: 4px solid var(--primary);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.post-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  transition: transform 0.2s;
}

.btn-back:hover {
  transform: translateX(-4px);
}


@media (max-width: 768px) {
  .post-title {
    font-size: 2rem;
  }
}



/* Breadcrumb and Back Button Strip */
.post-nav-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
  /* font-family: var(--font-body); Inherit properly */
}

.breadcrumb-strip {
  background-color: var(--bg-card); /* Darker card background */
  padding: 0.75rem 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb-strip .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.breadcrumb-strip a {
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.breadcrumb-strip a:hover {
  color: var(--primary); /* Orange */
}

.breadcrumb-strip .home-icon {
  font-size: 1rem;
  margin-bottom: 2px;
}

.breadcrumb-strip .divider {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
}

.breadcrumb-strip .current {
  color: var(--primary); /* Orange */
  font-weight: 700;
}

/* Action Bar */
.action-bar {
  background-color: var(--bg-dark); /* Match body background */
  padding: 1.25rem 0;
  margin-top: -1px;
}

.btn-back-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-family: var(--font-heading); /* Space Grotesk */
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-back-pill:hover {
  transform: translateX(-4px);
  background: var(--bg-card);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-back-pill .material-symbols-outlined {
  font-size: 1.1rem;
  font-weight: 700;
}

.header-dark-force {
  background: rgba(49, 56, 65, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
}

.nav-static {
  display: flex;
}

/* ─── Curvas decorativas (hero + login) ─────────────────── */
.hero-bg-curves,
.auth-bg-curves {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-curves svg,
.auth-bg-curves svg {
  width: 100%;
  height: 100%;
}

/* ─── Auth Brand (logo no painel esquerdo do login) ──────── */
.auth-brand {
  margin-bottom: 2.5rem;
}

.auth-brand img {
  height: 26px;
  width: auto;
}

/* ─── Melhora cards do login ─────────────────────────────── */
body[data-page="login"] .auth-card-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

body[data-page="login"] label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--text-muted);
}

body[data-page="login"] input {
  border-radius: 4px;
  background: #f9f9f9;
}

body[data-page="login"] input:focus {
  background: #ffffff;
}

body[data-page="login"] .btn {
  border-radius: 4px;
}

body[data-page="login"] .auth-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

body[data-page="login"] .auth-description {
  font-size: 1.05rem;
  max-width: 440px;
  line-height: 1.7;
}
