/* Estilos específicos para páginas de estratégia */

/* Page Hero - mesmo espaçamento do insights */
.page-hero {
  background-color: var(--fundo-claro);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--borda);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0 30px;
  }
  
  .page-title {
    font-size: 2rem;
  }
}
.strategy-section {
  padding: 80px 0;
}

.strategy-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-top: 40px;
}

.strategy-text {
  flex: 1;
  max-width: 50%;
}

.strategy-text p {
  margin-bottom: 24px;
  line-height: 1.8;
  color: #333;
}

.strategy-features {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.feature-box {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  flex: 1;
  max-width: 30%;
}

.feature-icon {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.feature-icon img {
  width: 60px;
  height: 60px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0056b3;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.feature-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #0056b3;
}

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

.funds-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.funds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.fund-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.fund-header {
  background-color: #002b49;
  color: #ffffff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fund-title {
  font-size: 1.3rem;
  margin-bottom: 0;
  color: #ffffff;
}

.fund-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #ffffff;
}

.fund-content {
  padding: 20px;
}

.fund-description {
  margin-bottom: 20px;
  line-height: 1.5;
  color: #444;
}

.fund-details {
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.detail-item:last-child {
  border-bottom: none;
}

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

.detail-value {
  font-weight: 600;
  color: #002b49;
}

.fund-performance {
  margin-bottom: 20px;
}

.fund-performance h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #002b49;
}

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

.performance-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.performance-label {
  width: 60px;
  font-size: 0.9rem;
  color: #002b49;
}

.performance-bar {
  flex: 1;
  height: 24px;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.performance-bar span {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
}

.fund-bar {
  background-color: #0056b3;
}

.benchmark-bar {
  background-color: #6c757d;
}

.fund-actions {
  display: flex;
  gap: 10px;
}

.fund-actions a {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.btn-details {
  background-color: transparent;
  color: #0056b3;
  border: 1px solid #0056b3;
}

.btn-details:hover {
  background-color: rgba(0, 86, 179, 0.1);
}

@media (max-width: 992px) {
  .strategy-content {
    flex-direction: column;
  }
  
  .strategy-text {
    max-width: 100%;
  }
  
  .strategy-features {
    flex-direction: column;
    width: 100%;
  }
  
  .feature-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .funds-grid {
    grid-template-columns: 1fr;
  }
}
