/* Trust Badges and Security Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  font-size: 0.8em;
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}

.trust-badge.ssl {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.trust-badge.privacy {
  background: #cce7ff;
  border-color: #b3daff;
  color: #004085;
}

.trust-badge.brazilian {
  background: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}

.trust-badge.free {
  background: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

/* Security Status Indicators */
.security-status {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3); }
  50% { box-shadow: 0 2px 20px rgba(40, 167, 69, 0.6); }
  100% { box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3); }
}

/* Transparency Banner */
.transparency-banner {
  background: linear-gradient(135deg, #377dff, #2c5aa0);
  color: white;
  padding: 10px 0;
  text-align: center;
  font-size: 0.9em;
  position: relative;
}

.transparency-banner a {
  color: #ffeb3b;
  text-decoration: underline;
  font-weight: 500;
}

/* Contact Availability Indicator */
.contact-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  background: #d4edda;
  border-radius: 10px;
  font-size: 0.75em;
  color: #155724;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .trust-indicators {
    gap: 8px;
  }
  
  .trust-badge {
    font-size: 0.7em;
    padding: 3px 6px;
  }
  
  .security-status {
    bottom: 10px;
    right: 10px;
    font-size: 0.7em;
    padding: 6px 8px;
  }
}