/* =====================================================
   SIGMA GLOBAL - CSS COMPLETO
   Versión Final con Contenido Real
   ===================================================== */

/* ===========================
   FUENTES LOCALES
=========================== */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('../fonts/Montserrat-Regular.woff') format('woff'),
    url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
    url('../fonts/Montserrat-SemiBold.woff') format('woff'),
    url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
    url('../fonts/Montserrat-Bold.woff') format('woff'),
    url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Black.woff2') format('woff2'),
    url('../fonts/Montserrat-Black.woff') format('woff'),
    url('../fonts/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'Quantify';
  src: url('../fonts/Quantify-Bold.woff2') format('woff2'),
    url('../fonts/Quantify-Bold.woff') format('woff'),
    url('../fonts/Quantify-Bold.ttf') format('truetype'),
    url('../fonts/Quantify.woff2') format('woff2'),
    url('../fonts/Quantify.woff') format('woff'),
    url('../fonts/Quantify.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

/* ===========================
   VARIABLES
=========================== */
:root {
  /* Colores Corporativos Sigma */
  --sigma-dark: #1A202C;
  --sigma-gray-dark: #4A5568;
  --sigma-blue: #209CFF;
  --sigma-blue-light: #42AEFF;
  --sigma-indigo: #0f4671;
  --sigma-indigo-dark: #0a3555;

  /* Neutrales */
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-light: #e5e7eb;
  --gray-50: #f9fafb;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-700: #374151;

  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #0f4671 0%, #209CFF 100%);
  --gradient-dark: linear-gradient(135deg, #1A202C 0%, #4A5568 100%);
  --gradient-blue: linear-gradient(135deg, #209CFF 0%, #42AEFF 100%);

  /* Sombras */
  --shadow-sm: 0 1px 3px 0 rgba(15, 70, 113, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(15, 70, 113, 0.15);
  --shadow-lg: 0 10px 15px -3px rgba(15, 70, 113, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(15, 70, 113, 0.25);
  --shadow-2xl: 0 25px 50px -12px rgba(15, 70, 113, 0.35);
  --shadow-glow-blue: 0 0 40px rgba(32, 156, 255, 0.3);

  /* Transiciones */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--sigma-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--sigma-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--sigma-gray-dark);
}

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(32, 156, 255, 0.1);
  transition: all var(--transition-base);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--sigma-gray-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-blue);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--sigma-blue);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-btn span {
  width: 25px;
  height: 2px;
  background: var(--sigma-dark);
  transition: all var(--transition-base);
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: var(--white);
  color: var(--sigma-indigo);
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--sigma-blue);
  color: var(--sigma-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-white {
  background: var(--white);
  color: var(--sigma-indigo);
  box-shadow: var(--shadow-xl);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2xl);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-arrow {
  font-size: 1.2em;
  transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 100px;
  padding-bottom: 4rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}

.hero .decoration-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(15, 70, 113, 0.4) 0%, transparent 70%);
  top: -250px;
  right: -250px;
}

.hero .decoration-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(32, 156, 255, 0.3) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation-delay: 3s;
}

.hero .decoration-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 85, 104, 0.2) 0%, transparent 70%);
  top: 40%;
  left: 60%;
  animation-delay: 6s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-family: 'Quantify', 'Montserrat', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--sigma-dark);
  margin-bottom: 1rem;
}

.gradient-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  color: var(--sigma-gray-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: var(--sigma-gray-dark);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(15, 70, 113, 0.15));
}

/* ===========================
   SECTIONS
=========================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(15, 70, 113, 0.08);
  color: var(--sigma-indigo);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--sigma-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.2rem;
  color: var(--sigma-gray-dark);
  line-height: 1.8;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-card {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: 24px;
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sigma-blue);
  background: var(--white);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about-card h3 {
  font-size: 1.5rem;
  color: var(--sigma-dark);
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--sigma-gray-dark);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   SERVICES SECTION
=========================== */
.services-section {
  background: var(--off-white);
}

.services-detailed-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detailed.reverse {
  direction: rtl;
}

.service-detailed.reverse>* {
  direction: ltr;
}

.service-tag {
  display: inline-block;
  color: var(--sigma-blue);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-detailed-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--sigma-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-detailed-description {
  color: var(--sigma-gray-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-detailed-visual {
  position: relative;
}

.service-detailed-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-slow);
}

.service-detailed-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.service-detailed-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Service Types Grid */
.service-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-type-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
}

.service-type-card:hover {
  border-color: var(--sigma-blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-type-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-type-card h4 {
  font-size: 1.1rem;
  color: var(--sigma-dark);
  margin-bottom: 0.5rem;
}

.service-type-card p {
  font-size: 0.9rem;
  color: var(--sigma-gray-dark);
  line-height: 1.6;
  margin: 0;
}

/* Service Benefits */
.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--sigma-blue);
  transition: all var(--transition-base);
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
}

.benefit-item span:last-child {
  color: var(--sigma-gray-dark);
  font-weight: 500;
  line-height: 1.5;
}

/* ===========================
   CLIENTS SECTION MEJORADA
=========================== */
.clients-section {
  background: var(--off-white);
  padding: 8rem 0;
}

.clients-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.ecosystem-category {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
  position: relative;
}

.ecosystem-category:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sigma-blue);
}

/* Centro especial */
.ecosystem-center {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-blue);
  border-color: var(--sigma-indigo);
  position: relative;
  overflow: hidden;
}

.ecosystem-center::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(15, 70, 113, 0.3) 0%, transparent 50%);
  animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.category-center-circle {
  text-align: center;
  position: relative;
  z-index: 1;
}

.category-logo {
  width: 100px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1);
  animation: float-smooth 3s ease-in-out infinite;
}

@keyframes float-smooth {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.category-center-label {
  display: block;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Headers de categorías */
.category-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition-base);
}

.ecosystem-category:hover .category-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: var(--shadow-glow-blue);
}

.category-header h3 {
  font-size: 1.1rem;
  color: var(--sigma-dark);
  margin: 0;
  font-weight: 700;
}

/* Items de categorías */
.category-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-items li {
  padding: 0.75rem 0;
  color: var(--sigma-gray-dark);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.category-items li:last-child {
  border-bottom: none;
}

.category-items li::before {
  content: '→';
  color: var(--sigma-blue);
  font-weight: bold;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-base);
}

.ecosystem-category:hover .category-items li::before {
  opacity: 1;
  transform: translateX(0);
}

/* Descripción de red */
.network-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid var(--sigma-blue);
  position: relative;
}

.network-description::before {
  content: '🤝';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  background: var(--white);
  padding: 0 1rem;
}

.network-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--sigma-gray-dark);
  margin: 0;
}

.network-description strong {
  color: var(--sigma-blue);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .clients-ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-center {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .clients-ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-center {
    grid-column: 1;
  }

  .clients-section {
    padding: 4rem 0;
  }
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(32, 156, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(15, 70, 113, 0.2) 0%, transparent 50%);
}

.cta-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 4rem;
  text-align: center;
  box-shadow: var(--shadow-2xl);
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-form {
  background: var(--off-white);
  padding: 3rem;
  border-radius: 24px;
  border: 2px solid var(--gray-200);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  transition: all var(--transition-base);
  color: var(--sigma-dark);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sigma-blue);
  box-shadow: 0 0 0 4px rgba(32, 156, 255, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-700);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--sigma-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--sigma-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-description {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--sigma-blue);
  transform: translateY(-3px);
  color: white;
  border-color: var(--sigma-blue);
  box-shadow: var(--shadow-glow-blue);
}

.footer-title {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
}

.footer-links a:hover {
  transform: translateX(5px);
  display: inline-block;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.9rem;
}

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
  box-shadow: var(--shadow-xl);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow-blue);
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out both;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {

  .hero-grid,
  .service-detailed,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-detailed.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .clients-diagram {
    height: 500px;
  }

  @keyframes orbit-rotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg) translateX(220px) rotate(0deg);
    }

    to {
      transform: translate(-50%, -50%) rotate(360deg) translateX(220px) rotate(-360deg);
    }
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-xl);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .burger-btn {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 3rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 4rem 0;
  }

  .cta-content {
    padding: 2.5rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .service-types {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }

  .clients-diagram {
    height: 400px;
  }

  @keyframes orbit-rotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg) translateX(160px) rotate(0deg);
    }

    to {
      transform: translate(-50%, -50%) rotate(360deg) translateX(160px) rotate(-360deg);
    }
  }

  .client-node {
    width: 60px;
    height: 60px;
  }

  .client-icon {
    font-size: 1.5rem;
  }

  .clients-center-circle {
    width: 120px;
    height: 120px;
  }

  .clients-logo {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .logo-img {
    height: 38px;
  }

  .clients-diagram {
    height: 350px;
  }

  @keyframes orbit-rotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg) translateX(130px) rotate(0deg);
    }

    to {
      transform: translate(-50%, -50%) rotate(360deg) translateX(130px) rotate(-360deg);
    }
  }
}

/* ===========================
   HERO CENTRADO CON GLOBO GRANDE
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 100px;
  padding-bottom: 4rem;
}

.hero-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  max-width: 1400px;
  max-height: 1400px;
  z-index: 0;
}

.hero-globe canvas {
  width: 100% !important;
  height: 100% !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(248, 250, 252, 0.7) 50%,
      rgba(248, 250, 252, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content-centered {
  max-width: 800px;
  text-align: center;
}

.hero-title {
  font-family: 'Quantify', 'Montserrat', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--sigma-dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--sigma-gray-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: var(--sigma-gray-dark);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-globe {
    width: 200%;
    height: 200%;
  }

  .hero {
    padding: 120px 0 3rem;
  }
}

/* =====================================================
   LOGIN PAGE
   ===================================================== */

/* ===========================
   LOGIN SECTION
=========================== */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  padding: 120px 2rem 4rem;
}

/* Fondo animado */
.login-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.login-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(248, 250, 252, 0.85) 70%,
      rgba(248, 250, 252, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.login-section .container {
  position: relative;
  z-index: 2;
}

.login-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ===========================
   LOGIN CARD
=========================== */
.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(32, 156, 255, 0.1);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: var(--shadow-2xl);
  max-width: 500px;
  margin: 0 auto;
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 1.5rem;
}

.login-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: var(--sigma-dark);
  margin-bottom: 0.5rem;
}

.login-subtitle {
  color: var(--sigma-gray-dark);
  font-size: 1rem;
}

/* ===========================
   LOGIN FORM
=========================== */
.login-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--sigma-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  transition: all var(--transition-base);
  color: var(--sigma-dark);
}

.form-input:focus {
  outline: none;
  border-color: var(--sigma-blue);
  box-shadow: 0 0 0 4px rgba(32, 156, 255, 0.1);
}

.form-input::placeholder {
  color: var(--gray-700);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--sigma-blue);
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--sigma-gray-dark);
  user-select: none;
}

.forgot-link {
  font-size: 0.9rem;
  color: var(--sigma-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.forgot-link:hover {
  color: var(--sigma-indigo);
  text-decoration: underline;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ===========================
   DIVIDER
=========================== */
.login-divider {
  position: relative;
  text-align: center;
  margin: 2rem 0;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-200);
}

.login-divider span {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  padding: 0 1rem;
  color: var(--sigma-gray-dark);
  font-size: 0.9rem;
}

/* ===========================
   SOCIAL LOGIN
=========================== */
.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--sigma-gray-dark);
}

.btn-social:hover {
  border-color: var(--sigma-blue);
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-social svg {
  width: 20px;
  height: 20px;
}

/* ===========================
   LOGIN FOOTER
=========================== */
.login-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.login-footer p {
  color: var(--sigma-gray-dark);
  font-size: 0.95rem;
  margin: 0;
}

.signup-link {
  color: var(--sigma-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.signup-link:hover {
  color: var(--sigma-indigo);
  text-decoration: underline;
}

/* ===========================
   INFO SIDE
=========================== */
.login-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(32, 156, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all var(--transition-base);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sigma-blue);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.25rem;
  color: var(--sigma-dark);
  margin-bottom: 0.75rem;
}

.info-card p {
  color: var(--sigma-gray-dark);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   FOOTER SIMPLE
=========================== */
.footer-simple {
  background: var(--sigma-dark);
  padding: 2rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-simple p {
  margin-bottom: 1rem;
}

.footer-links-simple {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links-simple a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links-simple a:hover {
  color: var(--sigma-blue);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .login-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .login-card {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .login-section {
    padding: 100px 1.5rem 3rem;
  }

  .login-card {
    padding: 2rem;
  }

  .social-login {
    grid-template-columns: 1fr;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ===========================
   LOGIN DROPDOWN - MINIMALISTA
=========================== */
.nav-login-dropdown {
  position: relative;
}

.nav-login-dropdown .btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-login-dropdown .btn svg {
  transition: transform var(--transition-base);
}

.nav-login-dropdown.active .btn svg {
  transform: rotate(180deg);
}

/* Menu dropdown - IMPORTANTE: oculto por defecto */
.login-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(15, 70, 113, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  z-index: 1000;

  /* CLAVE: Oculto por defecto */
  display: none;
}

/* Cuando está activo */
.nav-login-dropdown.active .login-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

/* Estilos minimalistas */
.login-dropdown-minimal {
  min-width: 340px;
  padding: 0;
}

.dropdown-header {
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.dropdown-header-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sigma-gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.login-dropdown-item-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem;
  text-decoration: none;
  color: var(--sigma-dark);
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.login-dropdown-item-minimal:hover {
  background: var(--gray-50);
  border-left-color: var(--sigma-blue);
}

.item-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.item-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sigma-blue);
  flex-shrink: 0;
}

.item-indicator-secondary {
  background: var(--sigma-indigo);
}

.item-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sigma-dark);
  line-height: 1.2;
}

.item-subtitle {
  font-size: 0.8rem;
  color: var(--sigma-gray-dark);
  line-height: 1.3;
}

.login-dropdown-item-minimal svg {
  color: var(--gray-300);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.login-dropdown-item-minimal:hover svg {
  color: var(--sigma-blue);
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
  .login-dropdown-menu {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 300px;
  }

  .nav-login-dropdown.active .login-dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }

  .nav-menu.active .nav-login-dropdown {
    width: 100%;
  }

  .nav-menu.active .login-dropdown-menu {
    left: 0;
    transform: translateY(-10px);
    width: 100%;
  }

  .nav-menu.active .nav-login-dropdown.active .login-dropdown-menu {
    transform: translateY(0);
  }
}

/* ===========================
   LOGIN CLIENTES - CENTERED
=========================== */
.login-wrapper-centered {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.login-card-client {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(32, 156, 255, 0.1);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: var(--shadow-2xl);
}

.client-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-blue);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.badge-icon {
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .login-wrapper-centered {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   DASHBOARD CLIENTE
   ===================================================== */

.dashboard-section {
  min-height: 100vh;
  background: var(--off-white);
  padding: 120px 0 4rem;
}

/* Header del dashboard */
.dashboard-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.client-info-card,
.advisor-info-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
}

.client-info-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.client-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.client-details-large h1 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem 0;
  color: var(--sigma-dark);
}

.client-email {
  color: var(--sigma-gray-dark);
  margin: 0;
}

/* Advisor card */
.advisor-info-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.advisor-badge {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sigma-indigo);
}

.advisor-label {
  font-size: 0.85rem;
  color: var(--sigma-gray-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.advisor-details h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
  color: var(--sigma-dark);
}

.advisor-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sigma-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
}

.advisor-contact:hover {
  color: var(--sigma-indigo);
  transform: translateX(3px);
}

/* Productos */
.products-title {
  text-align: center;
  margin-bottom: 3rem;
}

.products-title h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.products-title p {
  color: var(--sigma-gray-dark);
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sigma-blue);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-badge {
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-active {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.status-inactive {
  background: rgba(156, 163, 175, 0.1);
  color: #6b7280;
}

.product-name {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

.product-desc {
  color: var(--sigma-gray-dark);
  margin: 0 0 1.5rem 0;
}

.product-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--gradient-blue);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.product-btn-disabled {
  background: var(--gray-200);
  color: var(--sigma-gray-dark);
}

.product-btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .dashboard-header {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   MODAL STYLES
=========================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.open {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #111827;
}

.modal-close {
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #111827;
}

.modal-body {
  padding: 2rem;
}
