/* ==========================================
 * PÁGINA TERMOS DE USO - LITHO PLANT
 * ========================================== */

.termos-page {
  min-height: 100vh;
  background-color: #f5f7fb;
}

/* HERO */

.hero-page {
  background: radial-gradient(circle at top left, #1f5bb3 0%, #174283 35%, #0b1b33 80%);
  color: #ffffff;
}

.hero-page.hero-page-slim {
  padding: 7.5rem 0 3.2rem;
}

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

.hero-page-container-slim {
  justify-content: center;
}

.hero-page-text {
  max-width: 540px;
}

.hero-page-text-centered {
  text-align: center;
  max-width: 680px;
}

.hero-badge-termos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
}

.page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin: 1.1rem 0 0.75rem;
}

.page-subtitle {
  font-size: 1.1rem;
  opacity: 0.96;
  max-width: 580px;
}

.hero-page-text-centered .page-subtitle {
  margin: 0 auto;
}

/* TITLES */

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #174283;
}

/* CONTEÚDO */

.termos-content-section {
  padding: 3.5rem 0 4.5rem;
  background: #f5f7fb;
}

.termos-layout {
  display: block;
  max-width: 100%;
}

/* remove qualquer resquício de sidebar/lateral */
.termos-layout > aside,
.termos-sidebar,
.termos-content-section .sidebar,
.termos-page .sidebar {
  display: none !important;
}

.termos-card {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 14px 38px rgba(15, 46, 76, 0.10);
  border: 1px solid rgba(23, 66, 131, 0.06);
}

.termos-header {
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(23, 66, 131, 0.08);
}

.termos-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(23, 66, 131, 0.08);
  color: #174283;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.termos-intro {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-top: 0.75rem;
  max-width: 760px;
}

.termos-block {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(23, 66, 131, 0.08);
}

.termos-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.termos-block h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.6rem;
}

.termos-block p {
  font-size: 0.98rem;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 0.7rem;
  max-width: 100%;
}

.termos-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 0.2rem;
}

.termos-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.97rem;
  color: #4b5563;
  line-height: 1.75;
}

.termos-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #174283;
}

.termos-block-highlight {
  margin-top: 0.4rem;
  background: linear-gradient(135deg, rgba(23, 66, 131, 0.04), rgba(31, 91, 179, 0.07));
  border: 1px solid rgba(23, 66, 131, 0.08);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
}

/* WHATSAPP FLUTUANTE */

.whatsapp-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 6px;
}

.whatsapp-floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  font-size: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-floating-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  background-color: #1ebe5b;
}

.whatsapp-floating-message {
  position: relative;
  max-width: 220px;
  background: linear-gradient(135deg, #e0ebff 0%, #c7dafc 100%);
  color: #111827;
  border-radius: 18px;
  padding: 8px 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: left;
  word-break: break-word;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.whatsapp-floating-message span {
  display: block;
}

.whatsapp-floating-message::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: -6px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #e0ebff 0%, #c7dafc 100%);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.whatsapp-floating-message::before {
  content: '';
  position: absolute;
  right: 12px;
  bottom: -18px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #e0ebff 0%, #c7dafc 100%);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.whatsapp-floating-message.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* RESPONSIVO */

@media (max-width: 992px) {
  .hero-page-container-slim {
    padding: 0 16px;
  }

  .termos-card {
    padding: 2rem 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero-page.hero-page-slim {
    padding: 6rem 0 2.8rem;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .termos-content-section {
    padding: 3.2rem 0 3.6rem;
  }

  .termos-card {
    padding: 1.8rem 1.3rem;
    border-radius: 20px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .whatsapp-floating {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-floating-button {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .whatsapp-floating-message {
    max-width: 190px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .termos-card {
    padding: 1.5rem 1rem;
  }

  .termos-block-highlight {
    padding: 1.1rem 1rem;
  }

  .whatsapp-floating-message {
    display: none;
  }
}