/* ===================================
   JurAI Overrides - complementar ao CSS principal
   =================================== */

/* 1️⃣ Fonte global */
body, html {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* 2️⃣ HERO */
.hero {
  background: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}

.hero .logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.hero .access-btn {
  padding: 12px 28px;
  background: #c4a97a;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* 3️⃣ Swiper Cards */
.cards-carousel-section {
  padding: 60px 20px;
}

.swiper {
  width: 100%;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  min-height: 350px;
}

.swiper-slide.card img {
  width: 100%;
  height: auto;
}

.swiper-slide.card h3 {
  margin: 20px;
  font-size: 18px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

/* 4️⃣ Seção AI no Direito */
.ai-law {
  background: #fafafa;
  padding: 60px 20px;
}

.ai-law .container {
  max-width: 1200px;
  margin: 0 auto;
}

.ai-law h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.ai-law .ai-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.ai-law .ai-content p {
  flex: 1 1 500px;
}

.ai-law .ai-content .ai-image {
  flex: 1 1 400px;
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
}

/* 5️⃣ Footer adaptado */
.footer {
  background: #333;
  color: #fff;
  padding: 60px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-brand img.logo-footer {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
  color: #fff;
  text-decoration: none;
}

.footer-social a {
  margin-right: 10px;
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
}

/* 6️⃣ Seção invertida harmonizada */
.custom-section {
  padding: 80px 0;
}

.custom-section .row {
  align-items: center;
}

.custom-section .section-name {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #999;
}

.custom-section h3 {
  font-weight: 700;
  font-size: 3rem;  /* Tamanho confortável */
  line-height: 1.3;
  margin-bottom: 20px;
  color: #333;
}

.custom-section p {
  font-size: 1.3rem;  /* Mesma base do bloco acima */
  line-height: 1.8;
  color: #444;
}

.custom-section .image-left-side img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* 7️⃣ Responsivo */
@media (max-width: 768px) {
  .ai-law .ai-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    margin-top: 20px;
  }

  .custom-section {
    padding: 50px 0;
  }
  .custom-section .section-name,
  .custom-section h3,
  .custom-section p {
    text-align: center;
  }
  .custom-section .image-left-side {
    text-align: center;
    margin-bottom: 30px;
  }
}
