.category-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  display: grid;
  gap: 18px;
  max-width: 1200px;
  margin: 30px auto;
}

.category-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.10);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.category-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.00));
}

.category-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  max-width: calc(100% - 92px);
  overflow: visible;
  white-space: normal;
  text-overflow: unset;
  line-height: 1.2;
}

.choose-btn {
  background: #1b8896;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.choose-btn:hover {
  background: #008fe0;
  transform: translateY(-1px);
  filter: brightness(1.02);
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .category-box img {
    height: 100%;
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    padding: 0 14px;
  }

  .category-box {
    border-radius: 18px;
  }

  .category-box img {
    height: 100%;
  }

  .category-content {
    padding: 12px 12px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0.00));
  }

  .category-title {
    font-size: 16px;
    max-width: calc(100% - 86px);
    white-space: normal;
    overflow: visible;
  }

  .choose-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* Pagina 2 (lista) */
.category-list {
  max-width: 1200px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.category-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.10);
  background: #fff;
}

.category-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.category-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.00));
  pointer-events: none;
}

.category-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 16px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.category-item-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  max-width: calc(100% - 92px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-item .choose-btn {
  background: #00a8ff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 16px;
  }

  .category-box img {
    height: 100%;
  }

  .category-content {
    padding: 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.25), rgba(0,0,0,0));
  }

  .category-title {
    font-size: 16px;
  }

  .choose-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 30px auto;
}

.qa-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 92px;
}

.qa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.qa-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f5f7;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qa-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qa-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  min-width: 0;
}

.qa-text .qa-sub {
  color: rgba(0,0,0,0.60);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qa-btn::after {
  content: "›";
  margin-left: auto;
  font-size: 22px;
  font-weight: 700;
  color: #00a8ff;
  line-height: 1;
}

@media (max-width: 900px) {
  .qa-grid {
    grid-template-columns: 1fr;
    padding: 0 14px;
    gap: 14px;
  }

  .qa-btn {
    padding: 14px 14px;
    border-radius: 18px;
  }

  .qa-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
  }

  .qa-text {
    font-size: 15px;
  }

  .qa-text .qa-sub {
    font-size: 13px;
  }
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  margin: 20px 0;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(229,57,53,0.35);
  transition: all 0.25s ease;
}

.back-btn:hover {
  background: #c62828;
  transform: translateX(-3px);
  box-shadow: 0 10px 24px rgba(198,40,40,0.45);
}

@media (max-width: 600px) {
  .back-btn {
    font-size: 13px;
    padding: 10px 18px;
  }
  .e-n-menu-title-text {
    color: #000000 !important;
  }
  .e-n-menu-heading {
    background: #ffffff !important;
  }
  #menubar-442 {
    padding-top: 24px;
  }
  .e-n-menu-title {
    border-bottom: solid #f3f3f3 1px !important;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 5px !important;
    }
}
#e-n-menu-title-4421 {
    background-color: #1b8896;
    border-radius: 10px;
}
ul.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.social-links li {
    list-style: none;
}

