.tdatos-container {
  max-width: 900px;
  margin: 3rem auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.08);
  padding: 2.5rem 2rem;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.tdatos-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.1s;
}

.tdatos-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  flex: 1 1 60%;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.5rem;
}

.tdatos-download-btn {
  background: #ff8f8d;
  color: #222;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.tdatos-download-btn:hover {
  background: #ffabaa;
  color: #2c3e50;
  box-shadow: 0 4px 16px rgba(44,62,80,0.15);
}

.tdatos-section {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.tdatos-section:last-child {
  border-bottom: none;
}

.tdatos-section:nth-of-type(1) { animation-delay: 0.3s; }
.tdatos-section:nth-of-type(2) { animation-delay: 0.45s; }
.tdatos-section:nth-of-type(3) { animation-delay: 0.6s; }
.tdatos-section:nth-of-type(4) { animation-delay: 0.75s; }
.tdatos-section:nth-of-type(5) { animation-delay: 0.9s; }
.tdatos-section:nth-of-type(6) { animation-delay: 1.05s; }
.tdatos-section:nth-of-type(7) { animation-delay: 1.2s; }
.tdatos-section:nth-of-type(8) { animation-delay: 1.35s; }
.tdatos-section:nth-of-type(9) { animation-delay: 1.5s; }
.tdatos-section:nth-of-type(10) { animation-delay: 1.65s; }

.tdatos-section h2 {
  font-size: 1.4rem;
  color: #3498db;
  font-weight: 700;
  margin-bottom: 1.2rem;
  border-left: 4px solid #ffd700;
  padding-left: 0.7rem;
}

.tdatos-list {
  padding-left: 1.2rem;
  margin: 0;
  color: #34495e;
  font-size: 1.05rem;
}
.tdatos-list li {
  margin-bottom: 0.7rem;
  line-height: 1.7;
}

.tdatos-card {
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.04);
  padding: 1.5rem 1.2rem;
  margin-bottom: 2.5rem;
  border: 1px solid #e9ecef;
}

.tdatos-empresa {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.tdatos-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 1rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(44,62,80,0.05);
}
.tdatos-table th, .tdatos-table td {
  border: 1px solid #e9ecef;
  padding: 0.7rem 1rem;
  text-align: left;
  font-size: 1rem;
}
.tdatos-table th {
  background: #3498db;
  color: #fff;
  font-weight: 600;
}
.tdatos-table tr:nth-child(even) td {
  background: #f4f8fb;
}

@media (max-width: 900px) {
  .tdatos-container {
    padding: 1.2rem 0.5rem;
  }
  .tdatos-header h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .tdatos-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .tdatos-header h1 {
    font-size: 1.1rem;
    border-bottom-width: 2px;
    padding-bottom: 0.3rem;
  }
  .tdatos-download-btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  .tdatos-section h2 {
    font-size: 1.1rem;
    padding-left: 0.4rem;
  }
  .tdatos-card {
    padding: 1rem 0.5rem;
  }
  .tdatos-empresa {
    flex-direction: column;
    gap: 1rem;
  }
  .tdatos-table th, .tdatos-table td {
    font-size: 0.95rem;
    padding: 0.5rem 0.5rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 