:root {
  --verde: #0F624A;
  --azul-osc: #011F26;
  --verde-osc: #10403B;
  --borde: #D9E2DC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #f4fdf9, #e8f5f1);
  color: #333;
  line-height: 1.6;
  padding-top: 40px;
}

header {
  font-family: "Candara", serif;
  position: fixed;
  top: 0;
  width: 100%;
  background: #10403B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.logo img {
  color: white;
  width: 120px;
  height: auto;
  display: block;
}

.logo-link {
  cursor: pointer;
  display: inline-block;
}

.nav {
  color: white;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
}

.nav a:hover {
  color: #8FBC8F;
}

main {
  flex: 1;
}

.tabla-wrap {
  max-width: 900px;
  margin: 35px auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  overflow: hidden;
  border: 1px solid var(--borde);
}

.tabla-wrap-1 {
  max-width: 900px;
  margin: 10px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  overflow: hidden;
  border: 1px solid var(--borde);
}

.titulo-impresora {
  text-align: center;
  font-family: "Calisto MT", serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--verde);
  margin: 25px 0 10px;
}

.imagen-impresora {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background: #f9fafb;
  padding: 20px;
  border-bottom: 1px solid var(--borde);
}

.imagen-impresora img {
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  transition: transform .3s ease;
}

.imagen-impresora img:hover {
  transform: scale(1.01)
}

.tabla-titulo {
  background: linear-gradient(90deg, var(--azul-osc), var(--verde-osc));
  color: #fff;
  padding: 16px 20px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .3px;
}

.tabla {
  width: 100%;
  border-collapse: collapse;
}

.tabla thead th {
  text-align: left;
  padding: 14px 16px;
  background: #e6f4f0;
  color: var(--verde-osc);
  font-weight: 700;
  border-bottom: 2px solid var(--verde);
}

.tabla thead th:last-child {
  padding-left: 100px;
}

.tabla tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--borde);
}

.tabla tbody tr:nth-child(odd) {
  background: #f2fbf7;
}

.tabla tbody tr:nth-child(even) {
  background: #edf7f5;
}

.tabla tbody tr:hover {
  background: #e0f5ef;
}

.precio {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-weight: bold;
  color: transparent;
}

.chip {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: #e6f9f3;
  color: var(--verde-osc);
  font-size: .8rem;
  margin-left: .4rem;
  border: 1px solid #c0e8da;
}

.scroll {
  overflow-x: auto;
}

.btn-cotización {
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
  max-width: 900px;
  margin: 10px auto;
}

.btn {
  padding: 12px 24px;
  background: #127369;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #008F8C;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

a {
  text-decoration: none;
}

.dirección {
  display: flex;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: white;
}

.dirección a {
  text-decoration: none;
  color: lightseagreen;
}

.footer {
  background: #011F26;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 5px;
}

.footer p {
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
}
