/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

.innerbox-link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  flex: 1 1 30%;
  min-width: 280px;
  padding: 3rem 2rem 2rem 2rem;
  border-radius: 2rem;
}

.innerbox {
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.innerbox:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-innerbox {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #090b3c; /* ajuste para sua paleta */
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.2s;
}

.innerbox:hover .btn-innerbox {
  background-color: #3730a3;
}
/* =====================
   BASE
===================== */
body {
  font-family: Arial, sans-serif;
  background: #f8fafc;
  margin: 0;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SEÇÕES */
.section {
  padding: 60px 0;
}

.section h2 {
  text-align: left;
  margin-bottom: 30px;
  color: #0f172a;
}

/* =====================
   HERO
===================== */
.hero-servico {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.hero-servico h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-servico p {
  max-width: 600px;
  margin: auto;
  color: #cbd5f5;
}

/* =====================
   GRID (SERVIÇOS)
===================== */
.grid {
  display: grid;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 10px;
  color: #1e293b;
}

.card p {
  color: #475569;
}

/* =====================
   BENEFÍCIOS
===================== */
.benefits {
  list-style: none;
  max-width: 500px;
  margin: auto;
  padding: 0;
}

.benefits li {
  background: #e2e8f0;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
}

/* =====================
   CTA
===================== */
.cta {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

/* =====================
   RESPONSIVO
===================== */
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== BLOG LAYOUT ===== */

.blog-content {
  padding: 60px 20px;
}

.blog-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== TÍTULO ===== */

.blog-title {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #0a2540;
}

/* ===== INTRO ===== */

.blog-intro {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #333;
}

/* ===== PARÁGRAFOS ===== */

.blog-content .dif-p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
}

/* ===== SUBTÍTULOS ===== */

.blog-content .dif-h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #0a2540;
  border-left: 4px solid #007bff;
  padding-left: 10px;
}

/* ===== LISTAS ===== */

.blog-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===== LINKS ===== */

.blog-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.blog-content a:hover {
  text-decoration: underline;
}

/* ===== CTA ===== */

.blog-cta {
  margin-top: 40px;
  padding: 25px;
  background: #f5f9ff;
  border-radius: 10px;
  text-align: center;
}

.blog-cta .btn-innerbox {
  margin-top: 10px;
  display: inline-block;
}

/* ===== RESPONSIVO ===== */

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

  .blog-content {
    padding: 40px 15px;
  }
}
/* LISTA DE POSTS */

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* CARD DO BLOG */

.blog-card {
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}
