/* Estilos específicos para páginas individuais de fundos */
.fund-hero {
  background-color: #002b49;
  color: #ffffff;
  padding: 60px 0;
  position: relative;
}

.fund-hero .container {
  position: relative;
  z-index: 2;
}

.fund-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffffff;
}

.fund-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.fund-description {
  max-width: 700px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ffffff;
}

.fund-parameters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.parameter-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.parameter-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #002b49;
  margin-bottom: 10px;
}

.parameter-label {
  font-size: 0.9rem;
  color: #002b49;
}

.fund-details {
  padding: 60px 0;
}

.fund-details h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #002b49;
  position: relative;
  padding-bottom: 15px;
}

.fund-details h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #0056b3;
}

.fund-details p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333;
}

.fund-pillars {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pillar-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pillar-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0056b3;
  margin-bottom: 15px;
}

.pillar-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333333;
}

.fund-documents {
  background-color: #f8f9fa;
  padding: 60px 0;
}

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

.document-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.document-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.document-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.document-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #002b49;
  margin-bottom: 10px;
}

.document-description {
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 15px;
}

.document-link {
  display: inline-block;
  color: #0056b3;
  font-weight: 500;
  text-decoration: none;
}

.document-link:hover {
  text-decoration: underline;
}

.fund-performance {
  padding: 60px 0;
}

.performance-chart {
  margin-top: 30px;
}

.cta-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}

.cta-title {
  font-size: 1.8rem;
  color: #002b49;
  margin-bottom: 20px;
}

.cta-description {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #333333;
}

@media (max-width: 768px) {
  .fund-hero {
    padding: 40px 0;
  }
  
  .fund-hero h1 {
    font-size: 2rem;
  }
  
  .fund-parameters {
    grid-template-columns: 1fr;
  }
  
  .fund-details h2 {
    font-size: 1.8rem;
  }
}
