/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  color: var(--white);
  padding: 3rem 1rem;
  text-align: center;
  margin: -1.5rem -1rem 2rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn {
  font-size: 1rem;
  padding: 0.75rem 2rem;
}

.hero .btn-white {
  background: var(--white);
  color: var(--primary);
}

.hero .btn-white:hover {
  background: var(--gray-100);
}

.hero .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ========== SECTIONS ========== */
.home-section {
  margin-bottom: 2.5rem;
}

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

.section-header h2 {
  font-size: 1.35rem;
  color: var(--gray-800);
}

.section-header a {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ========== DESTAQUES GRID ========== */
.destaques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

/* ========== BLOG PREVIEW ========== */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-card-image {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

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

.blog-card-image svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.blog-card-body {
  padding: 1rem;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 0.35rem;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.blog-card-title a {
  color: inherit;
}

.blog-card-title a:hover {
  color: var(--primary);
  text-decoration: none;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== PARCEIROS ========== */
.parceiros-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.parceiro-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 180px;
}

.parceiro-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}

.parceiro-card .parceiro-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.parceiro-card .parceiro-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.parceiro-card.cobasi .parceiro-name { color: #00a651; }
.parceiro-card.petlove .parceiro-name { color: #ff6b35; }
.parceiro-card.petz .parceiro-name { color: #0077c8; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
}
