/* Tipografía y estilos generales */
body {
  font-family: 'Roboto Mono', monospace;
  margin: 0;
  padding: 0;
  background: white;
  color: black;
  box-sizing: border-box;
}

/* Header principal */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid black;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Navegación principal */
nav {
  display: flex;
  gap: 2rem;
}

nav a {
  position: relative;             /* necesario para ::before */
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

/* al hacer hover, mostramos una barra '|' encima */
nav a:hover::before {
  content: "|";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: black;
}

/* Dropdown general */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 0;
  background-color: white;
  border: 1px solid black;
  padding: 1rem;
  z-index: 10;
  width: 100vw;
  box-sizing: border-box;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content-inner {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.dropdown-column {
  transition: transform 0.3s ease-in-out;
}

.dropdown-column:hover {
  transform: translateY(-10px) scale(1.05);
}

.dropdown-column h4 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.dropdown-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-column li {
  margin-bottom: 0.25rem;
}

.dropdown-column a {
  color: black;
  text-decoration: none;
  font-size: 0.85rem;
}


.thank-you-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 2rem;
  font-size: 3.5rem;      /* tamaño grande */
  font-weight: bold;    /* negrita */
  box-sizing: border-box;
  z-index: 1000;
}

.thank-left,
.thank-middle,
.thank-right {
  flex: 1;
}

.thank-left {
  text-align: left;
}

.thank-middle {
  text-align: center;
}

.thank-right {
  text-align: right;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: inline-block;
}

/* Grid de productos */
.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  margin: 0 auto;
}

.product-card {
  width: 400px;
  height: 550px;
  background-color: #f2f2f2;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #ccc;
}

.product-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.product-name {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.price {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 0.5rem;
}

.price-symbol {
  font-weight: bold;
  margin-top: 0.2rem;
}

/* Sección destacados */
.section-alt {
  background-color: #f7f7f7;
  padding: 3rem 1rem;
  text-align: center;
}

.alt-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.alt-card {
  width: 400px;
  height: 550px;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #ccc;
}

.alt-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.alt-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}

.alt-card p {
  font-size: 0.9rem;
  color: #333;
}

/* Sección editorial */
.section-editorial {
  padding: 3rem 1rem;
}

.editorial-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.editorial-card {
  max-width: 500px;
}

.editorial-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #ccc;
  background-color: #f2f2f2;
}

.editorial-card h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.editorial-card p {
  font-size: 0.95rem;
  color: #444;
}
