

:root {
  --orange: #d74028;
  --card-bg: #ffffff;
  --border: #e6e6e6;
  --radius: 8px;
}

@media (max-width: 768px) {
  #bannerini * {
    display: block;
  }
}


#excelencia-title {
  font-size: 22px;
  color: var(--orange);
  line-height: 1.05;
  font-weight: 700;
}

#excelencia-title span {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  color: #333;
}

.section--excellence {
  padding: 32px 0;
  background: #fff;
}

.section--excellence .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px;
}



.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 20px 0;
  list-style: none;
}


.section--excellence .card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: none;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.section--excellence .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(215, 64, 40, 0.1);
}

.section--excellence .card-title {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.section--excellence .card-body {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.section--excellence .card-body p {
  margin: 0 0 12px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.section--excellence .card-body p:last-child {
  margin-bottom: 0;
}

.section--excellence .card-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.section--excellence .card-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.section--excellence .card-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  #excelencia-title {
    width: 100%;
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .section--excellence {
    padding: 24px 0;
  }

  .section--excellence .container {
    padding: 20px;
  }

  #excelencia-title {
    width: 100%;
    font-size: 14px;
  }

  #excelencia-title span {
    font-size: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 10px 0;
  }

  .section--excellence .card {
    padding: 20px;
  }

  .section--excellence .card-title {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  #excelencia-title {
    font-size: 24px;
  }

  .section--excellence .card {
    padding: 18px;
  }

  .section--excellence .card-title {
    font-size: 16px;
  }

  .section--excellence .card-body,
  .section--excellence .card-list {
    font-size: 13.5px;
  }
}