/* ===== LGPD PAGE ===== */

/* Hero Section */
.lgpd-hero {
  background: #121928;
  padding: 5rem 0 4rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lgpd-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.05)" width="50" height="50"/></svg>');
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.hero-icon i {
  font-size: 4rem;
  color: white;
}

.lgpd-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

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

/* Content Section */
.lgpd-content {
  padding: 5rem 0;
  background: white;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #f3f4f6;
}

.content-section:last-child {
  border-bottom: none;
}

.content-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.content-section h2::before {
  content: "";
  width: 5px;
  height: 30px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border-radius: 3px;
}

.content-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #374151;
  margin: 2rem 0 1rem;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

.content-section ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.content-section li {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.content-section li::before {
  content: "•";
  position: absolute;
  left: 0.75rem;
  color: #f97316;
  font-size: 1.5rem;
  font-weight: 700;
}

.content-section strong {
  color: #1f2937;
  font-weight: 600;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid #f97316;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
}

.highlight-box i {
  font-size: 3rem;
  color: #f97316;
  flex-shrink: 0;
}

.highlight-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 1rem;
}

.highlight-box p {
  font-size: 0.95rem;
  color: #78350f;
  margin-bottom: 0.5rem;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* Info Box */
.info-box {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-item i {
  font-size: 2.5rem;
  color: #f97316;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.info-item p {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

/* Retention Table */
.retention-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.retention-table thead tr {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.retention-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.retention-table tbody tr {
  background: white;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s;
}

.retention-table tbody tr:last-child {
  border-bottom: none;
}

.retention-table tbody tr:hover {
  background: #fef9f5;
}

.retention-table td {
  padding: 1rem 1.5rem;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.retention-table td:first-child {
  font-weight: 600;
  color: #1f2937;
}

@media (max-width: 576px) {
  .retention-table th,
  .retention-table td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* CTA Section */
.lgpd-cta {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 4rem 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(249, 115, 22, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon i {
  font-size: 3rem;
  color: #f97316;
}

.cta-content {
  flex: 1;
  color: white;
}

.cta-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin: 0;
}

.btn-cta {
  padding: 1rem 2rem;
  background: #f97316;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  color: white;
}

.btn-cta i {
  font-size: 1.5rem;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .lgpd-hero h1 {
    font-size: 2.5rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .lgpd-hero {
    padding: 4rem 0 3rem;
  }

  .lgpd-hero h1 {
    font-size: 2rem;
  }

  .hero-icon {
    width: 80px;
    height: 80px;
  }

  .hero-icon i {
    font-size: 3rem;
  }

  .lgpd-content {
    padding: 3rem 0;
  }

  .content-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .content-section h2 {
    font-size: 1.35rem;
  }

  .content-section h3 {
    font-size: 1.1rem;
  }

  .highlight-box {
    flex-direction: column;
    padding: 1.5rem;
  }

  .highlight-box i {
    font-size: 2.5rem;
  }

  .info-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-content {
    order: 2;
  }

  .cta-icon {
    order: 1;
  }

  .btn-cta {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .lgpd-hero h1 {
    font-size: 1.75rem;
  }

  .lgpd-hero p {
    font-size: 1rem;
  }

  .content-section h2 {
    font-size: 1.25rem;
  }

  .content-section h2::before {
    width: 4px;
    height: 25px;
  }

  .content-section p,
  .content-section li {
    font-size: 0.95rem;
  }

  .content-section li {
    padding-left: 1.5rem;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }
}
