/* ===========================
   DEMO PROJECTS - ESTILOS
   =========================== */

/* Banner de Demonstração */
.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
  color: white;
  padding: 12px 20px;
  z-index: 10000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.demo-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.demo-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.demo-back-btn {
  background: white;
  color: #1e40af;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  margin-left: 10px;
}

.demo-back-btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

/* Offset para o banner fixo */
body {
  padding-top: 60px;
}

/* ===========================
   E-COMMERCE DE MODA
   =========================== */
.ecommerce-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 60px;
  z-index: 100;
}

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

.ecommerce-header .ecommerce-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.ecommerce-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.logo-icon {
  font-size: 28px;
}

.ecommerce-nav {
  display: flex;
  gap: 30px;
}

.ecommerce-nav a,
.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.ecommerce-nav a:hover {
  color: #e91e63;
}

.ecommerce-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 8px;
}

.action-btn svg {
  width: 24px;
  height: 24px;
  color: #333;
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #e91e63;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

/* Hero E-commerce */
.ecommerce-hero {
  background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
  padding: 60px 0;
}

.hero-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  max-width: 500px;
}

.hero-tag {
  display: inline-block;
  background: #e91e63;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.ecommerce-hero h1 {
  font-size: 48px;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ecommerce-hero h1 .highlight {
  color: #e91e63;
}

.ecommerce-hero p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #e91e63;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #c2185b;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #1a1a1a;
  transition: all 0.3s;
}

.hero-image img {
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Categories */
.categories-section {
  padding: 60px 0;
  background: white;
}

.categories-section h2,
.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  color: white;
}

.category-overlay h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.category-overlay span {
  font-size: 14px;
  opacity: 0.8;
}

/* Products */
.products-section {
  padding: 60px 0;
  background: #fafafa;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.view-all {
  color: #e91e63;
  text-decoration: none;
  font-weight: 600;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
}

.product-badge.sale {
  background: #e91e63;
  color: white;
}

.product-badge.new {
  background: #4caf50;
  color: white;
}

.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.95);
  transition: bottom 0.3s;
}

.product-card:hover .product-actions {
  bottom: 0;
}

.product-actions button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
}

.quick-view {
  background: #f5f5f5;
  color: #333;
}

.add-cart {
  background: #e91e63;
  color: white;
}

.product-info {
  padding: 20px;
}

.product-category {
  color: #999;
  font-size: 12px;
  text-transform: uppercase;
}

.product-name {
  font-size: 16px;
  color: #1a1a1a;
  margin: 8px 0;
}

.product-rating {
  font-size: 13px;
  margin-bottom: 10px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-old {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
}

.price-current {
  color: #e91e63;
  font-size: 18px;
  font-weight: 700;
}

/* Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.promo-banner h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.promo-banner p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-promo {
  display: inline-block;
  background: white;
  color: #1a1a1a;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-promo:hover {
  transform: scale(1.05);
}

/* Newsletter */
.newsletter-section {
  padding: 60px 0;
  background: white;
}

.newsletter-box {
  background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
}

.newsletter-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.newsletter-box p {
  color: #666;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
}

.newsletter-form button {
  background: #e91e63;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background: #c2185b;
}

/* E-commerce Footer */
.ecommerce-footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #e91e63;
}

.footer-grid a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-grid a:hover {
  color: white;
}

.footer-grid p {
  color: #aaa;
  line-height: 1.6;
}

.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icons span {
  background: #333;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #666;
}

/* ===========================
   DASHBOARD ANALYTICS
   =========================== */
.dashboard-body {
  background: #f0f2f5;
}

.dashboard-layout {
  display: flex;
  min-height: calc(100vh - 60px);
}

.dashboard-sidebar {
  width: 260px;
  background: #1a1f2e;
  color: white;
  padding: 20px 0;
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  overflow-y: auto;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.sidebar-logo .logo-icon {
  font-size: 28px;
}

.sidebar-logo .logo-text {
  font-size: 20px;
  font-weight: 700;
}

.sidebar-nav {
  padding: 0 15px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #8a8f98;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 5px;
  transition: all 0.3s;
}

.nav-item svg {
  width: 20px;
  height: 20px;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.dashboard-main {
  flex: 1;
  margin-left: 260px;
  padding: 0;
}

.dashboard-header {
  background: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 60px;
  z-index: 10;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f5;
  padding: 10px 20px;
  border-radius: 10px;
  width: 300px;
}

.header-search svg {
  width: 20px;
  height: 20px;
  color: #999;
}

.header-search input {
  border: none;
  background: none;
  width: 100%;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.notification-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.notification-btn svg {
  width: 24px;
  height: 24px;
  color: #666;
}

.notification-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #ef4444;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.user-profile span {
  font-weight: 500;
  color: #333;
}

.dashboard-content {
  padding: 30px;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.content-header h1 {
  font-size: 28px;
  color: #1a1a1a;
}

.date-filter {
  display: flex;
  gap: 10px;
}

.date-filter .filter-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.date-filter .filter-btn.active,
.date-filter .filter-btn:hover {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.stat-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.stat-icon.green {
  background: linear-gradient(135deg, #10b981, #34d399);
}
.stat-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}
.stat-icon.orange {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.stat-change {
  font-size: 13px;
  margin-top: 5px;
}

.stat-change.positive {
  color: #10b981;
}
.stat-change.negative {
  color: #ef4444;
}

/* Charts */
.charts-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.chart-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.chart-card.large {
  grid-column: span 1;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.chart-header h3 {
  font-size: 18px;
  color: #1a1a1a;
}

.chart-select {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  font-size: 13px;
}

.chart-area {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chart-placeholder {
  position: relative;
  height: 200px;
  background: linear-gradient(to top, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
  border-radius: 10px;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #3b82f6 100%);
  border-radius: 3px;
  animation: wave 3s ease-in-out infinite;
}

.chart-line.secondary {
  bottom: 40%;
  background: linear-gradient(90deg, #10b981 0%, #34d399 50%, #10b981 100%);
  animation-delay: 0.5s;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }
  50% {
    transform: translateY(-10px) scaleY(1.2);
  }
}

.chart-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 12px;
  color: #999;
}

/* Donut Chart */
.donut-chart {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(#3b82f6 0deg 162deg, #10b981 162deg 262deg, #f59e0b 262deg 323deg, #8b5cf6 323deg 360deg);
  position: relative;
  margin: 0 auto 20px;
}

.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donut-value {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.donut-label {
  font-size: 12px;
  color: #999;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.blue {
  background: #3b82f6;
}
.dot.green {
  background: #10b981;
}
.dot.orange {
  background: #f59e0b;
}
.dot.purple {
  background: #8b5cf6;
}

/* Table */
.table-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.table-header h3 {
  font-size: 18px;
  color: #1a1a1a;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.data-table th {
  color: #999;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-info img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.status.completed {
  background: #d1fae5;
  color: #059669;
}
.status.pending {
  background: #fef3c7;
  color: #d97706;
}
.status.cancelled {
  background: #fee2e2;
  color: #dc2626;
}

/* ===========================
   SITE CORPORATIVO
   =========================== */
.corporate-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 60px;
  z-index: 100;
}

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

.corporate-header .corporate-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.corporate-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
}

.corporate-logo .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.corporate-nav {
  display: flex;
  gap: 30px;
}

.corporate-nav a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.corporate-nav a:hover {
  color: #1e40af;
}

.corporate-cta {
  background: #1e40af;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.corporate-cta:hover {
  background: #1e3a8a;
}

/* Corporate Hero */
.corporate-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 80px 0;
}

.corporate-hero .corporate-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.corporate-hero .hero-content {
  max-width: 550px;
}

.hero-badge {
  display: inline-block;
  background: #1e40af;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.corporate-hero h1 {
  font-size: 48px;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.corporate-hero h1 .highlight {
  color: #1e40af;
}

.corporate-hero p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-corp-primary {
  background: #1e40af;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-corp-primary:hover {
  background: #1e3a8a;
}

.btn-corp-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #1a1a1a;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-corp-secondary svg {
  width: 16px;
  height: 16px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #1e40af;
}

.stat-label {
  font-size: 14px;
  color: #666;
}

.hero-visual img {
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Corporate Services */
.corporate-services {
  padding: 80px 0;
  background: white;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

.section-intro h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-intro p {
  color: #666;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #f8fafc;
  padding: 35px 25px;
  border-radius: 15px;
  transition: all 0.3s;
}

.service-card:hover {
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.service-card h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-link {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* Corporate About */
.corporate-about {
  padding: 80px 0;
  background: #f8fafc;
}

.corporate-about .corporate-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image img {
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-content {
  max-width: 500px;
}

.about-content h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #444;
}

.about-features svg {
  width: 20px;
  height: 20px;
  color: #10b981;
}

/* Corporate Clients */
.corporate-clients {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.corporate-clients h3 {
  color: #999;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.clients-logos {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.client-logo {
  font-size: 24px;
  font-weight: 700;
  color: #ccc;
  transition: color 0.3s;
}

.client-logo:hover {
  color: #1e40af;
}

/* Corporate CTA */
.corporate-cta-section {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-corp-white {
  display: inline-block;
  background: white;
  color: #1e40af;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-corp-white:hover {
  transform: scale(1.05);
}

/* Corporate Footer */
.corporate-footer {
  background: #0f172a;
  color: white;
  padding: 60px 0 30px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand p {
  color: #94a3b8;
  margin-top: 15px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

/* ===========================
   APP GESTÃO DE PROJETOS
   =========================== */
.app-body {
  background: #f5f7fa;
}

.app-layout {
  display: flex;
  min-height: calc(100vh - 60px);
}

.app-sidebar {
  width: 260px;
  background: white;
  border-right: 1px solid #e5e7eb;
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  padding: 20px 0;
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 20px;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.app-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
}

.workspace-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  margin: 0 15px 20px;
  background: #f5f7fa;
  border-radius: 10px;
  cursor: pointer;
}

.workspace-selector img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.workspace-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.workspace-name {
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
}

.workspace-plan {
  font-size: 12px;
  color: #999;
}

.workspace-selector .chevron {
  width: 16px;
  height: 16px;
  color: #999;
}

.app-nav {
  padding: 0 15px;
  margin-bottom: 30px;
}

.app-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  color: #666;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 5px;
  transition: all 0.3s;
  position: relative;
}

.app-nav-item svg {
  width: 20px;
  height: 20px;
}

.app-nav-item:hover,
.app-nav-item.active {
  background: #ecfdf5;
  color: #10b981;
}

.nav-badge {
  position: absolute;
  right: 15px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
}

.sidebar-projects {
  padding: 0 15px;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 10px;
}

.projects-header span {
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}

.add-project-btn {
  width: 24px;
  height: 24px;
  background: #f5f7fa;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #666;
  font-size: 16px;
}

.project-list {
  display: flex;
  flex-direction: column;
}

.project-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #666;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
}

.project-item:hover,
.project-item.active {
  background: #f5f7fa;
  color: #1a1a1a;
}

.project-color {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.app-main {
  flex: 1;
  margin-left: 260px;
}

.app-header {
  background: white;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 60px;
  z-index: 10;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-left h1 {
  font-size: 24px;
  color: #1a1a1a;
}

.project-status {
  background: #ecfdf5;
  color: #10b981;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-avatars {
  display: flex;
}

.team-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}

.team-avatars img:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 32px;
  height: 32px;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #666;
  margin-left: -8px;
  border: 2px solid white;
}

.btn-share {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #e5e7eb;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.btn-share svg {
  width: 16px;
  height: 16px;
}

.btn-app-primary {
  background: #10b981;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-app-primary:hover {
  background: #059669;
}

/* Board Tabs */
.board-tabs {
  display: flex;
  gap: 5px;
  padding: 15px 30px;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.tab {
  padding: 8px 20px;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  transition: all 0.3s;
}

.tab.active,
.tab:hover {
  background: #f5f7fa;
  color: #1a1a1a;
}

/* Kanban Board */
.kanban-board {
  display: flex;
  gap: 20px;
  padding: 30px;
  overflow-x: auto;
}

.kanban-column {
  min-width: 300px;
  background: #f5f7fa;
  border-radius: 12px;
  padding: 15px;
}

.column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.column-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1a1a1a;
}

.column-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.column-dot.todo {
  background: #94a3b8;
}
.column-dot.progress {
  background: #3b82f6;
}
.column-dot.review {
  background: #f59e0b;
}
.column-dot.done {
  background: #10b981;
}

.task-count {
  background: #e5e7eb;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
  color: #666;
}

.column-menu {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #999;
}

.column-tasks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.task-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s;
}

.task-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.task-card.highlight {
  border-left: 3px solid #3b82f6;
}

.task-card.completed {
  opacity: 0.7;
}

.task-labels {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.label {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.label.design {
  background: #fce7f3;
  color: #db2777;
}
.label.dev {
  background: #dbeafe;
  color: #2563eb;
}
.label.urgent {
  background: #fee2e2;
  color: #dc2626;
}
.label.research {
  background: #fef3c7;
  color: #d97706;
}

.task-title {
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.task-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

.task-progress {
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
}

.task-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.task-assignees {
  display: flex;
}

.task-assignees img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -6px;
}

.task-assignees img:first-child {
  margin-left: 0;
}

.task-info {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #999;
}

.add-task-btn {
  background: none;
  border: 2px dashed #ddd;
  padding: 12px;
  border-radius: 8px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s;
}

.add-task-btn:hover {
  border-color: #10b981;
  color: #10b981;
}

/* ===========================
   LOJA DE ARTESANATO
   =========================== */
.artesanato-body {
  background: #faf8f5;
  font-family: "Inter", sans-serif;
}

.artesanato-header {
  background: white;
  position: sticky;
  top: 60px;
  z-index: 100;
}

.header-top {
  background: #2d2a26;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 13px;
}

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

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.artesanato-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.artesanato-logo .logo-icon {
  font-size: 28px;
}

.artesanato-logo .logo-text {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  color: #2d2a26;
}

.artesanato-nav {
  display: flex;
  gap: 30px;
}

.artesanato-nav a {
  color: #2d2a26;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.artesanato-nav a:hover {
  color: #c9a87c;
}

.artesanato-header .header-actions {
  display: flex;
  gap: 15px;
}

.artesanato-header .action-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.artesanato-header .action-btn svg {
  width: 24px;
  height: 24px;
  color: #2d2a26;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #c9a87c;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

/* Artesanato Hero */
.artesanato-hero {
  padding: 60px 0;
}

.artesanato-hero .artesanato-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.artesanato-hero .hero-content {
  max-width: 500px;
}

.artesanato-hero .hero-tag {
  display: inline-block;
  color: #c9a87c;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}

.artesanato-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #2d2a26;
  margin-bottom: 20px;
  line-height: 1.2;
}

.artesanato-hero h1 .highlight {
  color: #c9a87c;
}

.artesanato-hero p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.btn-artesanato {
  background: #2d2a26;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-artesanato:hover {
  background: #c9a87c;
}

.btn-artesanato-outline {
  background: transparent;
  color: #2d2a26;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #2d2a26;
  transition: all 0.3s;
}

.btn-artesanato-outline:hover {
  background: #2d2a26;
  color: white;
}

.hero-images {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.hero-img img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-img.main img {
  max-width: 350px;
}

.hero-img.secondary img {
  max-width: 200px;
}

/* Artesanato Categories */
.artesanato-categories {
  padding: 60px 0;
}

.artesanato-categories h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #2d2a26;
  margin-bottom: 30px;
}

.categories-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.category-item {
  text-align: center;
  text-decoration: none;
  flex-shrink: 0;
}

.category-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 3px solid transparent;
  transition: all 0.3s;
}

.category-item:hover .category-img {
  border-color: #c9a87c;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item span {
  color: #2d2a26;
  font-weight: 500;
}

/* Artesanato Products */
.artesanato-products {
  padding: 60px 0;
  background: white;
}

.artesanato-products .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.artesanato-products .section-tag {
  color: #c9a87c;
}

.artesanato-products h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #2d2a26;
}

.artesanato-products .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.artesanato-products .product-card {
  background: #faf8f5;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.artesanato-products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.artesanato-products .product-img {
  position: relative;
  overflow: hidden;
}

.artesanato-products .product-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #2d2a26;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.product-tag.sale {
  background: #c9a87c;
}

.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}

.wishlist-btn.active {
  color: #e91e63;
}

.artesanato-products .product-info {
  padding: 20px;
}

.artisan-name {
  color: #c9a87c;
  font-size: 12px;
  font-weight: 600;
}

.artesanato-products .product-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #2d2a26;
  margin: 8px 0;
}

.product-origin {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.artesanato-products .price {
  font-size: 18px;
  font-weight: 700;
  color: #2d2a26;
}

.price-group {
  display: flex;
  flex-direction: column;
}

.price-group .price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.add-to-cart {
  background: #2d2a26;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart:hover {
  background: #c9a87c;
}

/* Artisan Spotlight */
.artisan-spotlight {
  padding: 80px 0;
  background: #2d2a26;
}

.spotlight-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.spotlight-info {
  color: white;
  max-width: 500px;
}

.spotlight-info .section-tag {
  color: #c9a87c;
}

.spotlight-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.spotlight-info p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
  font-style: italic;
}

.artisan-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.artisan-stats .stat {
  display: flex;
  flex-direction: column;
}

.artisan-stats .stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #c9a87c;
}

.artisan-stats .stat-label {
  font-size: 14px;
  opacity: 0.8;
}

.spotlight-info .btn-artesanato {
  background: #c9a87c;
}

.spotlight-info .btn-artesanato:hover {
  background: white;
  color: #2d2a26;
}

.spotlight-image img {
  max-width: 350px;
  border-radius: 20px;
}

/* Artesanato Newsletter */
.artesanato-newsletter {
  padding: 60px 0;
}

.artesanato-newsletter .newsletter-box {
  background: white;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.artesanato-newsletter h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #2d2a26;
  margin-bottom: 10px;
}

.artesanato-newsletter p {
  color: #666;
  margin-bottom: 25px;
}

.artesanato-newsletter .newsletter-form {
  display: flex;
  max-width: 450px;
  margin: 0 auto;
  gap: 10px;
}

.artesanato-newsletter input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 30px;
  font-size: 15px;
}

.artesanato-newsletter button {
  background: #2d2a26;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* Artesanato Footer */
.artesanato-footer {
  background: #2d2a26;
  color: white;
  padding: 60px 0 30px;
}

.artesanato-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.artesanato-footer .artesanato-logo .logo-text {
  color: white;
}

.artesanato-footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  line-height: 1.6;
}

.artesanato-footer h4 {
  color: #c9a87c;
  margin-bottom: 20px;
}

.artesanato-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.artesanato-footer a:hover {
  color: white;
}

.artesanato-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   BLOG DE TECNOLOGIA
   =========================== */
.blog-tech-body {
  background: #f8fafc;
}

.blog-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 60px;
  z-index: 100;
}

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

.blog-header .blog-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.blog-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-logo .logo-icon {
  font-size: 28px;
}

.blog-logo .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.blog-nav {
  display: flex;
  gap: 25px;
}

.blog-nav a {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.blog-nav a:hover,
.blog-nav a.active {
  color: #3b82f6;
}

.blog-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn,
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.search-btn svg {
  width: 20px;
  height: 20px;
  color: #666;
}

.subscribe-btn {
  background: #3b82f6;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.subscribe-btn:hover {
  background: #2563eb;
}

/* Featured Post */
.featured-section {
  padding: 40px 0;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.featured-image {
  position: relative;
}

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

.category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #3b82f6;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.post-meta span {
  color: #999;
  font-size: 13px;
}

.featured-content h1 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.author-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.author-name {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
}

.author-role {
  font-size: 13px;
  color: #999;
}

.read-more-btn {
  display: inline-block;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.read-more-btn:hover {
  color: #2563eb;
}

/* Latest Posts */
.latest-section {
  padding: 40px 0 80px;
}

.latest-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.latest-section h2 {
  font-size: 28px;
  color: #1a1a1a;
}

.filter-tabs {
  display: flex;
  gap: 10px;
}

.filter-tab {
  padding: 8px 16px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
}

.filter-tab.active,
.filter-tab:hover {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.post-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.post-image {
  position: relative;
}

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

.post-image .category-badge {
  top: 15px;
  left: 15px;
}

.post-content {
  padding: 20px;
}

.post-content .post-meta {
  margin-bottom: 10px;
}

.post-content h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.post-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-mini {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-mini img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.author-mini span {
  font-size: 13px;
  color: #666;
}

.post-stats {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #999;
}

.load-more {
  text-align: center;
}

.load-more-btn {
  background: white;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.load-more-btn:hover {
  background: #3b82f6;
  color: white;
}

/* Blog Newsletter */
.blog-newsletter {
  padding: 0 0 80px;
}

.newsletter-card {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 50px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.newsletter-content h3 {
  font-size: 28px;
  color: white;
  margin-bottom: 10px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.blog-newsletter .newsletter-form {
  display: flex;
  gap: 10px;
}

.blog-newsletter input {
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  width: 280px;
}

.blog-newsletter button {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 14px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.blog-newsletter button:hover {
  background: #333;
}

/* Blog Footer */
.blog-footer {
  background: #0f172a;
  color: white;
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .blog-logo .logo-text {
  color: white;
}

.footer-brand p {
  color: #94a3b8;
  margin-top: 15px;
  line-height: 1.6;
}

.blog-footer .footer-links {
  display: flex;
  gap: 60px;
}

.blog-footer .footer-col h4 {
  color: white;
  margin-bottom: 20px;
}

.blog-footer .footer-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.blog-footer .footer-col a:hover {
  color: white;
}

.blog-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1e293b;
  padding-top: 20px;
}

.blog-footer .footer-bottom p {
  color: #64748b;
}

.blog-footer .social-links {
  display: flex;
  gap: 20px;
}

.blog-footer .social-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-footer .social-links a:hover {
  color: white;
}

/* ===========================
   RESPONSIVO - MOBILE
   =========================== */
@media (max-width: 768px) {
  .demo-banner-content {
    flex-direction: column;
    gap: 10px;
  }

  .demo-back-btn {
    margin-left: 0;
  }

  /* E-commerce */
  .ecommerce-header .ecommerce-container {
    flex-wrap: wrap;
    gap: 15px;
  }

  .ecommerce-nav {
    display: none;
  }

  .hero-slide {
    flex-direction: column;
    text-align: center;
  }

  .ecommerce-hero h1 {
    font-size: 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    max-width: 100%;
  }

  .categories-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Dashboard */
  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    margin-left: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .charts-row {
    grid-template-columns: 1fr;
  }

  .data-table {
    font-size: 12px;
  }

  /* Corporate */
  .corporate-nav {
    display: none;
  }

  .corporate-hero .corporate-container {
    flex-direction: column;
    text-align: center;
  }

  .corporate-hero h1 {
    font-size: 32px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual img {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .corporate-about .corporate-container {
    flex-direction: column;
  }

  .about-image img {
    max-width: 100%;
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 30px;
  }

  /* App Gestão */
  .app-sidebar {
    display: none;
  }

  .app-main {
    margin-left: 0;
  }

  .app-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .kanban-board {
    padding: 15px;
  }

  .kanban-column {
    min-width: 280px;
  }

  /* Artesanato */
  .artesanato-nav {
    display: none;
  }

  .artesanato-hero .artesanato-container {
    flex-direction: column;
    text-align: center;
  }

  .artesanato-hero h1 {
    font-size: 32px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-images {
    justify-content: center;
  }

  .hero-img.main img {
    max-width: 250px;
  }

  .hero-img.secondary {
    display: none;
  }

  .artesanato-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-content {
    flex-direction: column;
    text-align: center;
  }

  .artisan-stats {
    justify-content: center;
  }

  .spotlight-image img {
    max-width: 100%;
  }

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

  /* Blog */
  .blog-nav {
    display: none;
  }

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

  .featured-content {
    padding: 25px;
  }

  .featured-content h1 {
    font-size: 24px;
  }

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

  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .blog-newsletter .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .blog-newsletter input {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .blog-footer .footer-links {
    flex-wrap: wrap;
    gap: 30px;
  }

  .blog-footer .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
