:root {
  --bg: #0a0c0e;
  --panel: #111418;
  --panel2: #161a20;
  --text: #f5f7fa;
  --muted: #9aa5b1;
  --line: #222831;
  --accent: #fb9c33; /* Naranja principal */
  --accent-hover: #ff771a;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(92%, var(--max));
  margin: auto;
}

/* Header & Navegación */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 12, 14, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}















/* Configuración del enlace Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Contenedor naranja de la imagen del logo */
.logo-box {
  background: #fb9c33; /* Color naranja */
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0; /* Evita que la caja se deforme */
}

/* Imagen dentro de la caja */
.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* O 'cover' según prefieras */
  display: block;
}

/* Texto 'onuq' al lado del logo */
.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}























.links {
  display: flex;
  gap: 28px;
  color: #c3cad3;
  font-size: 0.95rem;
}

.links a:hover {
  color: var(--accent);
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}



.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #fb9c33;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 100;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  background-color: #ff771a;
}




/* Hero Section */
.hero {
  padding: 105px 0 90px;
  background: 
    radial-gradient(circle at 75% 25%, rgba(255, 102, 0, 0.12), transparent 35%),
    radial-gradient(circle at 20% 15%, rgba(255, 102, 0, 0.05), transparent 25%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 25px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 32px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Visual Terminal */
.visual {
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #151a21, #0c0f13);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.visual:before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.15);
  filter: blur(50px);
  right: -50px;
  top: -60px;
}

.terminal {
  position: relative;
  border: 1px solid #252c36;
  border-radius: 16px;
  background: #080a0c;
  padding: 20px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #aab6c3;
}

.dots {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39424d;
}

.code {
  font-size: 0.85rem;
  line-height: 2;
}

.orange {
  color: var(--accent);
}

.string {
  color: #ffaa66;
}

/* Secciones Generales */
section {
  padding: 90px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: 2.4rem;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
}

/* Tarjetas */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 25px;
  min-height: 210px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 102, 0, 0.3);
}

.icon {
  font-size: 1.7rem;
  margin-bottom: 22px;
  color: var(--accent);
}

.card h3 {
  margin-bottom: 9px;
}

.card p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Nosotros */
.about {
  background: #0d1014;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about h2 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.about p {
  color: var(--muted);
  margin-bottom: 18px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
  color: var(--accent);
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Call To Action / Contacto */
.cta {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #151a21, #0a0c0e);
  border-radius: 22px;
  padding: 55px;
  text-align: center;
}

.cta h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.cta p {
  color: var(--muted);
  margin: 0 auto 20px;
  max-width: 650px;
}

.email-display {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 25px;
  font-weight: 600;
}

.email-display span {
  color: var(--accent);
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: #7f8a97;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Responsivo */
@media (max-width: 850px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .links {
    display: none;
  }
  .visual {
    min-height: 300px;
  }
}

@media (max-width: 520px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 70px;
  }
  .cta {
    padding: 35px 22px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

