/* ============================================
   ChatFlow Legal Pages - Light Theme
   Paleta: Azul #0BB5E0 | Verde #00C896
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FC 100%);
  color: #1A1A2E;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========== NAVBAR ========== */
.cf-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 181, 224, 0.2);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cf-nav-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cf-nav-logo img {
  height: 42px;
  width: auto;
  transition: opacity 0.3s ease;
}

.cf-nav-logo:hover img {
  opacity: 0.8;
}

.cf-nav-title {
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #0BB5E0 0%, #00C896 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== MAIN CONTAINER ========== */
.cf-container {
  flex: 1;
  max-width: 900px;
  width: 100%;
  margin: 2rem auto;
  padding: 0 2rem;
}

.cf-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ========== SECTION CARDS ========== */
.cf-section-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 181, 224, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(11, 181, 224, 0.08);
}

.cf-section-card:hover {
  background: #FFFFFF;
  border-color: rgba(11, 181, 224, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 181, 224, 0.15);
}

.cf-section-card h2 {
  color: #0BB5E0;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cf-section-card h2::before {
  content: '▸';
  color: #00C896;
  font-size: 1.5rem;
}

.cf-section-card p {
  color: #555555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.cf-section-card ul,
.cf-section-card ol {
  margin-left: 1.5rem;
  margin-bottom: 0;
}

.cf-section-card li {
  color: #666666;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.cf-section-card a {
  color: #0BB5E0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(11, 181, 224, 0.3);
}

.cf-section-card a:hover {
  color: #00C896;
  border-bottom-color: #00C896;
}

strong {
  color: #0BB5E0;
  font-weight: 600;
}

/* ========== FORM STYLES ========== */
.cf-form-card {
  border: 2px solid rgba(11, 181, 224, 0.3);
}

.cf-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cf-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cf-form label {
  color: #0BB5E0;
  font-weight: 600;
  font-size: 0.95rem;
}

.cf-form input[type="email"] {
  padding: 0.75rem 1rem;
  background: #F8FBFC;
  border: 1px solid rgba(11, 181, 224, 0.3);
  border-radius: 8px;
  color: #1A1A2E;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cf-form input[type="email"]:focus {
  outline: none;
  background: #FFFFFF;
  border-color: #0BB5E0;
  box-shadow: 0 0 12px rgba(11, 181, 224, 0.2);
}

.cf-form input[type="email"]::placeholder {
  color: rgba(26, 26, 46, 0.4);
}

/* ========== BUTTONS ========== */
.cf-btn-delete {
  background: linear-gradient(90deg, #0BB5E0 0%, #00C896 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cf-btn-delete:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 181, 224, 0.3);
}

.cf-btn-delete:active {
  transform: translateY(0);
}

/* ========== SUCCESS MESSAGE ========== */
.cf-success-message {
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid #00C896;
  border-radius: 8px;
  padding: 1.2rem;
  margin-top: 1rem;
  animation: slideIn 0.3s ease;
}

.cf-success-message p {
  color: #00A578;
  font-weight: 500;
  margin: 0.25rem 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== FOOTER ========== */
.cf-footer {
  background: rgba(240, 249, 252, 0.6);
  border-top: 1px solid rgba(11, 181, 224, 0.2);
  padding: 2rem 0;
  margin-top: auto;
}

.cf-footer-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.cf-footer-content p {
  margin: 0.5rem 0;
}

.cf-footer-content a {
  color: #0BB5E0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cf-footer-content a:hover {
  color: #00C896;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .cf-nav-container {
    padding: 0 1rem;
    gap: 1rem;
  }

  .cf-nav-title {
    font-size: 0.95rem;
  }

  .cf-container {
    padding: 0 1rem;
    margin: 1.5rem auto;
  }

  .cf-section-card {
    padding: 1.5rem;
  }

  .cf-section-card h2 {
    font-size: 1.1rem;
  }

  .cf-section-card p,
  .cf-section-card li {
    font-size: 0.9rem;
  }

  .cf-footer-content {
    padding: 0 1rem;
  }
}
