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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Estilos específicos da variante */

      .carrier-card, .faq-item, .tracking-card {
        border: 2px solid #e5e7eb;
        border-radius: 6px;
      }
      

.header {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  padding: 60px 0;
}

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

.header-text h1 {
  font-size: 48px;
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  background: #06b6d4;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 500;
}

.subtitle {
  opacity: 0.9;
  font-size: 18px;
}

.cnpj-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 300px;
}

.info-item {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-item strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.info-item span {
  font-size: 16px;
}

main {
  padding: 60px 0;
}

section {
  margin-bottom: 60px;
}

h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

.tracking-card {
  background: white;
  padding: 32px;
  margin: 32px 0;
}

.tracking-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.tracking-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
}

.tracking-card .card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.tracking-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #ef4444;
}

.tracking-card p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.steps-list {
  margin: 16px 0;
  padding-left: 24px;
}

.steps-list li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.steps-list code {
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
}

.status-section {
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin-top: 40px;
}

.status-section h3 {
  font-size: 28px;
  margin-bottom: 32px;
  color: #1a1a1a;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.status-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.status-dot.active {
  background-color: #ef4444;
  animation: pulse 2s infinite;
}

.status-dot.success {
  background-color: #10b981;
}

.status-dot.warning {
  background-color: #f59e0b;
}

.status-item strong {
  display: block;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.status-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.cta-button {
  display: inline-block;
  background-color: #ef4444;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-button:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carriers-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.carrier-card, .faq-item {
  background: white;
  padding: 24px;
  transition: transform 0.3s;
}

.carrier-card:hover, .faq-item:hover {
  transform: translateY(-4px);
}

.carrier-card h3, .faq-item h3 {
  color: #ef4444;
  margin-bottom: 8px;
}

.carrier-card p, .faq-item p {
  color: #666;
  line-height: 1.6;
}

.carrier-card a {
  color: #ef4444;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.carrier-card a:hover {
  color: #dc2626;
  text-decoration: underline;
}

.carrier-url {
  background: #f5f5f5;
  padding: 12px;
  border-radius: 8px;
  font-family: monospace;
  color: #ef4444;
  font-weight: 600;
  margin: 16px 0;
  font-size: 14px;
}

.carrier-tip {
  background: rgba(#ef4444, 0.05);
  padding: 16px;
  border-radius: 8px;
  border-left: 3px solid #ef4444;
}

.carrier-tip strong {
  display: block;
  color: #ef4444;
  margin-bottom: 8px;
  font-size: 12px;
}

.carrier-tip p {
  font-size: 14px;
  margin: 0;
}

.general-tips {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  padding: 48px;
  border-radius: 16px;
  margin-top: 40px;
  color: white;
}

.general-tips h3 {
  font-size: 28px;
  margin-bottom: 24px;
  color: white;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.tip-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer {
  background: #1a1a1a;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer p {
  margin-bottom: 8px;
}

.disclaimer {
  font-size: 14px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cnpj-info {
    width: 100%;
  }
  
  .header-text h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .carriers-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
}