/* 
  TEAMWORK LOGISTICA - STITCH ARCHITECTURE v1.0
  Design by ALE | Style: Futurista-Fluido
*/

:root {
  --bg: #050608;
  --bg-module: #0a0c12;
  --accent: #0db9f2;
  --accent-glow: rgba(13, 185, 242, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --border: rgba(255, 255, 255, 0.05);
  --border-active: rgba(13, 185, 242, 0.3);
  
  --font-main: 'Inter', sans-serif;
  --round: 2rem;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.6;
  /* Ocultar barra de desplazamiento manteniendo funcionalidad */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE y Edge */
}

/* Ocultar barra en Chrome, Safari y Opera */
::-webkit-scrollbar {
  display: none;
}

/* GLOBAL STRUCTURE (THE STITCH GRID) */
.main-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* MODULE SYSTEM */
.stitch-section {
  width: 100%;
  margin: 4rem 0;
  background: var(--bg-module);
  border: 1px solid var(--border);
  border-radius: var(--round);
  overflow: hidden;
  position: relative;
  transition: border 0.4s var(--ease);
}

.stitch-section:hover {
  border-color: var(--border-active);
}

.stitch-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, var(--accent-glow) 0%, transparent 50%);
  pointer-events: none;
}

/* SECTION HEADER */
.section-head {
  padding: 3rem 3rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.section-body {
  padding: 3rem;
}

/* BUTTONS */
.btn-stitch {
  display: inline-flex;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 30px rgba(13, 185, 242, 0.2);
}

.btn-stitch:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(13, 185, 242, 0.4);
}

/* UTILITIES */
.text-gradient {
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
