/*--------------------------------------------------------------
  producto.css — Estilos compartidos para páginas de producto
  Se carga junto con style.css. Usa variables CSS por producto.
--------------------------------------------------------------*/

.product-page #header #logo img {
  height: auto;
  width: auto;
  max-width: 100%;
}

/* ── Hero de producto ── */
.product-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: var(--prod-accent) url('') center center / cover no-repeat;
  overflow: hidden;
  padding-top: 95px; /* header height */
}

.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.28) 100%
  );
}

.product-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 70px;
}

.product-hero .product-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--prod-accent);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.product-hero h1 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.product-hero .hero-tagline {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 32px;
}

.product-hero .btn-solicitar {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 32px;
  background: var(--prod-accent);
  color: #fff;
  border: 2px solid var(--prod-accent);
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.product-hero .btn-solicitar:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

/* ── Breadcrumb ── */
.product-breadcrumb {
  background: #f9f9f9;
  border-bottom: 1px solid #ebebeb;
  padding: 12px 0;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}

.product-breadcrumb a {
  color: var(--prod-accent);
  text-decoration: none;
}

.product-breadcrumb a:hover {
  color: var(--prod-accent-mid);
}

.product-breadcrumb .sep {
  margin: 0 8px;
  color: #bbb;
}

.product-breadcrumb .current {
  color: #999;
}

/* ── Sección Descripción ── */
.product-description {
  padding: 80px 0 60px;
  background: #fff;
}

.product-description .prod-tag {
  display: inline-block;
  background: var(--prod-accent-bg);
  color: var(--prod-accent-text);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.product-description h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.25;
}

.product-description .lead-text {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 0;
}

.product-description .stat-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  background: var(--prod-accent-bg);
  border-left: 3px solid var(--prod-accent);
  border-radius: 0 4px 4px 0;
  padding: 10px 10px;
  margin: 10px 10px 10px 0;
}

.product-description .stat-pill .stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--prod-accent);
  line-height: 1;
}

.product-description .stat-pill .stat-label {
  font-size: 12px;
  color: #666;
  line-height: 1.3;
  max-width: 110px;
}

.product-description .product-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.product-description .product-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ── Sección Especificaciones ── */
.product-specs {
  padding: 80px 0;
  background: #f7f9fa;
}

.product-specs .section-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--prod-accent);
  margin-bottom: 8px;
}

.product-specs h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.specs-table thead th {
  background: var(--prod-accent);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

.specs-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}

.specs-table tbody tr:last-child {
  border-bottom: none;
}

.specs-table tbody tr:hover {
  background: var(--prod-accent-bg);
}

.specs-table tbody td {
  padding: 13px 20px;
  font-size: 14px;
  color: #444;
  vertical-align: middle;
}

.specs-table tbody td:first-child {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #222;
  width: 40%;
}

.specs-table tbody td .spec-note {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 2px;
  font-weight: 400;
}

/* ── Sección Aplicaciones ── */
.product-applications {
  padding: 80px 0;
  background: #fff;
}

.product-applications .section-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--prod-accent);
  margin-bottom: 8px;
}

.product-applications h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 48px;
}

.app-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 32px 28px;
  height: 100%;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  background: #fff;
}

.app-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.09);
  border-color: var(--prod-accent-mid);
}

.app-card .app-icon {
  width: 52px;
  height: 52px;
  background: var(--prod-accent-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s;
}

.app-card:hover .app-icon {
  background: var(--prod-accent);
}

.app-card .app-icon i {
  font-size: 22px;
  color: var(--prod-accent);
  transition: color 0.25s;
}

.app-card:hover .app-icon i {
  color: #fff;
}

.app-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.app-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA banner ── */
.product-cta {
  background: linear-gradient(135deg, var(--prod-accent) 0%, var(--prod-accent-mid) 100%);
  padding: 70px 0;
  text-align: center;
}

.product-cta h3 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.product-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  margin-bottom: 30px;
}

.product-cta .btn-cta {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 36px;
  background: #fff;
  color: var(--prod-accent);
  border-radius: 50px;
  transition: all 0.3s;
  text-decoration: none;
}

.product-cta .btn-cta:hover {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 11px 34px;
}

/* ── WIP overlay en hero ── */
.product-hero .wip-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.product-hero .wip-banner i {
  font-size: 12px;
  opacity: 0.8;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .product-hero h1 { font-size: 36px; }
  .product-hero .hero-tagline { font-size: 15px; }
  .product-description { padding: 50px 0 40px; }
  .product-specs,
  .product-applications { padding: 50px 0; }
  .product-description .product-image-wrap { margin-top: 40px; }
  .specs-table tbody td:first-child { width: auto; }
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 70px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-btn:hover {
  background: #20ba5c;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}