/* ======= TECH DETAILS STYLES ======= */
:root {
  /* Colores primarios - coherentes con el sitio principal */
  --color-background-light: #ffffff;
  --color-background-dark: #0B1B09;
  --color-text-light: #ffffff;
  --color-text-dark: #222222;
  
  /* Acentos de color */
  --color-accent-primary: #0B1B09; /* Verde oscuro */
  --color-accent-secondary: #F2B950; /* Dorado/Amarillo */
  --color-accent-tertiary: #4D7C8A; /* Azul/Turquesa */
  
  /* Gradientes */
  --gradient-light: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.9));
  --gradient-dark: linear-gradient(180deg, #0B1B09 0%, #132E10 100%);
  --gradient-accent: linear-gradient(135deg, #F2B950, #F29050);
  
  /* Sombras */
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
  
  /* Bordes */
  --border-radius-small: 8px;
  --border-radius-medium: 16px;
  --border-radius-large: 24px;
  
  /* Espaciado */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 64px;
  
  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Hero específico para Tech Details */
.tech-hero {
  background-color: var(--color-background-dark);
  color: var(--color-text-light);
  padding: calc(var(--spacing-xl) * 2) var(--spacing-lg) var(--spacing-xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tech-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(242, 185, 80, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.tech-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.tech-hero h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--color-text-light) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tech-hero p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Secciones de detalles técnicos */
.tech-details {
  background-color: var(--color-background-light);
  padding: var(--spacing-xl) 0;
}

.tech-section {
  margin-bottom: var(--spacing-xl);
}

.tech-details .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.tech-details .section-tag {
  display: inline-block;
  background-color: rgba(11, 27, 9, 0.1);
  color: var(--color-accent-primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-small);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-details .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-dark);
}

.section-description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(34, 34, 34, 0.7);
}

/* Variantes del producto */
.product-variants {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.variant-card {
  background-color: var(--color-background-light);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  width: 100%;
  max-width: 400px;
}

.variant-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.variant-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.variant-image img {
  height: 80%;
  object-fit: contain;
  transition: var(--transition-medium);
}

.variant-card:hover .variant-image img {
  transform: scale(1.05);
}

.variant-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
  color: var(--color-text-dark);
}

/* Dimensiones del dispositivo */
.dimensions-showcase {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.device-specs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.weight-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-md);
  background-color: #f9f9f9;
  border-radius: var(--border-radius-medium);
  min-width: 150px;
}

.spec-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-primary);
}

.spec-label {
  font-size: 0.9rem;
  color: rgba(34, 34, 34, 0.6);
}

.dimensions-views {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-sm);
}

.view {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.view img {
  height: 250px;
  object-fit: contain;
  margin-bottom: var(--spacing-sm);
}

.dimension-labels {
  display: flex;
  gap: var(--spacing-md);
  font-size: 0.9rem;
  color: rgba(34, 34, 34, 0.7);
}

/* Grid de características */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature-block {
  background-color: var(--color-background-light);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-medium);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-header {
  padding: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-header .section-tag {
  display: inline-block;
  background-color: rgba(11, 27, 9, 0.1);
  color: var(--color-accent-primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-small);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-dark);
}

.feature-header p {
  font-size: 1rem;
  color: rgba(34, 34, 34, 0.7);
  margin-bottom: 0;
}

.feature-specs {
  padding: var(--spacing-md);
}

/* Lista de especificaciones */
.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-list li:last-child {
  border-bottom: none;
}

.spec-title {
  font-weight: 600;
  color: var(--color-text-dark);
}

.spec-detail {
  color: rgba(34, 34, 34, 0.7);
  text-align: right;
}

/* Responsive */
@media (max-width: 992px) {
  .tech-hero h1 {
    font-size: 4rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .dimensions-views {
    flex-direction: column;
    align-items: center;
  }

  .tech-details .section-header h2 {
    font-size: 2.6rem;
  }

  .section-description {
    font-size: 1.1rem;
  }

  .feature-header h3 {
    font-size: 1.6rem;
  }

  .feature-header p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .tech-hero h1 {
    font-size: 3.4rem;
  }
  
  .tech-hero p {
    font-size: 1.6rem;
  }
  
  .tech-details .section-header h2 {
    font-size: 2.4rem;
  }
  
  .variant-card {
    max-width: 100%;
  }
  
  .variant-image {
    height: 250px;
  }

  .variant-card h3 {
    font-size: 2rem;
  }

  .spec-title {
    font-size: 1.2rem;
  }

  .spec-detail {
    font-size: 1.1rem;
  }

  .feature-header h3 {
    font-size: 1.8rem;
  }

  .feature-header p {
    font-size: 1.1rem;
  }

  .spec-value {
    font-size: 2.4rem;
  }

  .spec-label {
    font-size: 1.1rem;
  }

  .dimension-labels span {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .tech-hero h1 {
    font-size: 2.8rem;
  }
  
  .tech-hero p {
    font-size: 1.5rem;
  }

  .tech-details .section-header h2 {
    font-size: 2.2rem;
  }

  .section-description {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .feature-block {
    width: 100%;
  }
  
  .specs-list li {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .spec-detail {
    text-align: left;
  }

  .feature-header .section-tag {
    font-size: 0.9rem;
  }

  .specs-list li {
    padding: var(--spacing-md) 0;
  }

  .spec-title {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .spec-detail {
    font-size: 1.2rem;
    line-height: 1.4;
  }
} 