/* ============================================
   SIMAX — simax.css
   ============================================ */

:root {
  --simax-orange: #E8500A;
  --simax-gray: #5a5a5a;
  --simax-dark: #1a1a1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.body-text {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
}
.accent-orange { color: var(--simax-orange); }

/* ══ HERO ══ */
#hero-simax {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-image: url('simax_portada.png');
  background-size: cover;
  background-position: center;
  background-color: #111111;
}
.hero-simax-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,10,8,0.35) 0%, rgba(15,10,8,0.75) 60%, rgba(15,10,8,0.97) 100%),
    linear-gradient(to right, rgba(15,10,8,0.75) 0%, transparent 60%);
  z-index: 0;
}
.hero-simax-inner {
  position: absolute;
  bottom: 80px;
  left: 0; right: 0;
  z-index: 2;
  padding: 0 60px;
  max-width: 760px;
}
.hero-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.hero-back-link:hover { color: rgba(255,255,255,0.8); }
.hero-simax-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.5s both;
}
.hero-simax-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.6s both;
}
.hero-simax-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.8s 0.7s both;
}
.btn-primary-simax {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--simax-orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary-simax:hover { background: #c94008; transform: translateY(-2px); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }
.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-wa-large:hover { background: #1db954; transform: translateY(-2px); }

/* ══ PARTNER HEADER ══ */
.partner-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.partner-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.partner-logo-dark {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.partner-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--simax-orange);
  border: 1px solid rgba(232,80,10,0.3);
  padding: 6px 14px;
  border-radius: 2px;
}
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--simax-orange);
  text-decoration: none;
  margin-top: 24px;
  transition: gap 0.2s;
  display: block;
}
.partner-link:hover { gap: 14px; }
.partner-link-light { color: rgba(255,255,255,0.6); }
.partner-link-light:hover { color: #fff; }

/* ══ STARA ══ */
#stara-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F4 100%);
  padding: 100px 0;
  border-bottom: 1px solid var(--border-light);
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.partner-grid-reverse { direction: rtl; }
.partner-grid-reverse > * { direction: ltr; }
.stara-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border-light);
}
.stara-card {
  background: #fff;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}
.stara-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.stara-card-icon {
  width: 52px;
  height: 52px;
  background: #fff3eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--simax-orange);
  flex-shrink: 0;
}
.stara-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.stara-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══ TEEJET ══ */
#teejet-section {
  background: linear-gradient(135deg, #181818 0%, #1E1410 60%, #221508 100%);
  padding: 100px 0;
}
.teejet-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.04);
}
.teejet-card {
  background: rgba(255,255,255,0.02);
  padding: 36px 40px;
  transition: background var(--transition);
}
.teejet-card:hover { background: rgba(255,255,255,0.05); }
.teejet-card-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--simax-orange);
  margin-bottom: 10px;
}
.teejet-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.teejet-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ══ CONTACTO ══ */
#contacto-simax {
  background: linear-gradient(135deg, #FFF8F4 0%, #FFFFFF 100%);
  padding: 120px 0;
  border-top: 1px solid var(--border-light);
}
.contacto-simax-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contacto-form-wrap {
  background: #fff;
  padding: 48px 44px;
  border: 1px solid var(--border-light);
}
.form-group { margin-bottom: 20px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-simax-inner { padding: 0 32px; }
  .partner-grid { grid-template-columns: 1fr; gap: 40px; }
  .partner-grid-reverse { direction: ltr; }
  .contacto-simax-grid { grid-template-columns: 1fr; gap: 48px; }
  #stara-section, #teejet-section, #contacto-simax { padding: 80px 0; }
  .hero-simax-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .contacto-form-wrap { padding: 32px 24px; }
}
