@charset "UTF-8";
/*
  Importamos los archivos
*/
/* Imports */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
/* 
  Variables 
*/
/*
  Funciones
*/
/* Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: white;
  color: #222;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  padding: 0;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
}

/* Glassy styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

p {
  line-height: 1.6;
  color: #333;
}

/* Header */
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.header-nav a {
  position: relative;
  text-decoration: none;
  color: #111;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: color 0.3s ease;
}
.header-nav a:hover {
  color: #000;
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #111;
  transition: width 0.3s ease;
}
.header-nav a:hover::after {
  width: 100%;
}

/**/
.section-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#render-list-content {
  margin-top: 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}
#render-list-content .card {
  position: relative;
  width: 100%;
  background: rgb(255, 255, 255);
  border-radius: 1.5rem;
  backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(56, 56, 56, 0.3);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#render-list-content .card:hover {
  background: rgb(255, 255, 255);
  box-shadow: 0 12px 36px rgba(223, 173, 9, 0.466);
}
#render-list-content .card .card-title {
  font-size: 1.2rem;
  text-transform: capitalize;
}
#render-list-content .card .card-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
#render-list-content .card .card-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.3s ease;
  mix-blend-mode: multiply;
  background: transparent;
}
#render-list-content .card .card-types-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}
#render-list-content .card .card-types-container .card-type {
  font-size: 0.8rem;
  text-transform: capitalize;
  padding: 2px 5px;
  border-radius: 7px;
  color: black;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#render-list-content .card .card-button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(160, 62, 5, 0.3);
  background: rgba(252, 134, 0, 0.4);
  color: rgba(1, 1, 29, 0.8);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}
#render-list-content .card .card-button:hover {
  background: rgba(252, 193, 0, 0.6);
  color: rgb(1, 1, 29);
}
#render-list-content .card-button {
  background: rgba(255, 217, 0, 0.3);
  backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 187, 0, 0.5);
  border-radius: 0.75rem;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(1, 29, 59, 0.9);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}
#render-list-content .card-button:hover {
  background: rgba(255, 187, 0, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
#render-list-content .card-button:active {
  background: rgba(255, 166, 0, 0.7);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.detail-card {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px) saturate(180%);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.detail-card .name {
  text-transform: capitalize;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.detail-card .images {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.detail-card .images img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.detail-card .info p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #222;
}
.detail-card .info p strong {
  color: #111;
}

footer {
  position: relative;
  margin-top: 2rem;
  padding: 20px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 -2px 4px rgba(248, 191, 33, 0.3);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px) saturate(180%);
  z-index: 0;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(248, 130, 33, 0.6);
}
footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: rgba(255, 255, 255, 0.6);
}
footer > * {
  position: relative;
  z-index: 1;
  color: #000;
  top: 10px;
}

/* Detalle individual */
.render-detail-card {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e2e5;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #222;
}

/* Nombre */
.render-detail-card .render-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: #333;
}

/* Imagen principal */
.render-detail-card .render-images {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.render-detail-card .render-images img {
  max-width: 220px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Información */
.render-detail-card .render-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.render-detail-card .render-info strong {
  color: #444;
}

/* Familias o fields (api) */
.render-detail-card .render-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.render-detail-card .field-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f7;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #e0e0e5;
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.render-detail-card .field-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/*# sourceMappingURL=main.css.map */
