@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  --bg-dark: #f8fbfb;
  --bg-card: rgba(255, 255, 255, 0.86);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  
  --neon-cyan: #0fa7a0;      /* Light Teal from logo */
  --neon-blue: #087b75;      /* Deep Teal from logo */
  --neon-purple: #c94f12;    /* Vibrant Orange from logo */
  --neon-pink: #a93f0d;      /* Dark Orange/Rust from logo */
  
  --text-primary: #102a27;    /* Deep Tech-Teal Black */
  --text-secondary: #4a6b67;  /* Slate/Teal Gray */
  --text-muted: #7fa19d;
  
  --border-glow: rgba(15, 167, 160, 0.18);
  --border-glass: rgba(8, 123, 117, 0.14);
  --border-neon: rgba(8, 123, 117, 0.4);
  
  --shadow-neon: 0 10px 30px rgba(15, 167, 160, 0.12), 0 0 60px rgba(15, 167, 160, 0.1);
  --shadow-neon-pink: 0 10px 30px rgba(201, 79, 18, 0.15);
  --shadow-neon-purple: 0 10px 30px rgba(8, 123, 117, 0.15);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.08), 0 0 50px rgba(15, 167, 160, 0.08);
  
  --font-title: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-cyan) var(--bg-dark);
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  font-family: var(--font-body);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
}

/* Background Canvas & Grid overlay */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: all;
}

.bg-grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,123,117,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,123,117,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  pointer-events: none;
  z-index: -1;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-blue));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
}

/* Selection highlight */
::selection {
  background: var(--neon-cyan);
  color: #fff;
}

/* Utility Layout Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.glow-text {
  text-shadow: 0 5px 15px rgba(8, 123, 117, 0.15);
}

.gradient-text {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-pink {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Reveal on Scroll styling */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(248, 251, 251, 0.85);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 5px 0;
  border-bottom: 1px solid rgba(8, 123, 117, 0.22);
  box-shadow: 0 10px 30px rgba(8, 123, 117, 0.05);
  background: rgba(248, 251, 251, 0.92);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logos {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 38px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 10px rgba(8, 123, 117, 0.2));
}

.logo-divider {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 4px;
  animation: pulse-glow 2s infinite alternate;
}

/* Header Actions Container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  padding: 10px 22px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(201, 79, 18, 0.2);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(201, 79, 18, 0.3);
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
}

.nav-cta:active {
  transform: translateY(0);
}

.nav-cta-secondary {
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--neon-blue);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border-glass);
  padding: 9px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--neon-cyan);
  box-shadow: 0 8px 25px rgba(15, 167, 160, 0.12);
}

.nav-cta-secondary:active {
  transform: translateY(0);
}

/* Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hamburger Active / Open State Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--neon-purple);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--neon-purple);
}

/* Side Navigation Drawer Menu */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1050;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-menu.active {
  pointer-events: auto;
  opacity: 1;
}

.nav-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 123, 117, 0.12);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.nav-menu-inner {
  position: absolute;
  top: 0;
  right: -360px;
  width: 360px;
  max-width: 90%;
  height: 100%;
  background: rgba(248, 251, 251, 0.96);
  backdrop-filter: blur(30px);
  border-left: 1px solid var(--border-glass);
  box-shadow: -10px 0 40px rgba(8, 123, 117, 0.08);
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu.active .nav-menu-inner {
  right: 0;
}

/* Drawer Links */
.nav-menu .nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu .nav-link {
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-smooth);
  display: inline-block;
  padding: 8px 0;
  position: relative;
}

.nav-menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
  transition: var(--transition-smooth);
}

.nav-menu .nav-link:hover {
  color: var(--text-primary);
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(15, 167, 160, 0.15);
}

.nav-menu .nav-link:hover::after {
  width: 100%;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
}

.drawer-cta {
  width: 100%;
  text-align: center;
  display: block;
}

/* Mobile Sticky Footer CTA */
.mobile-sticky-footer-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  background: rgba(248, 251, 251, 0.9);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-glass);
  box-shadow: 0 -8px 24px rgba(8, 123, 117, 0.08);
  z-index: 1001;
}




/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,167,160,.12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -2;
}

.hero-glow-2 {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,79,18,.07), transparent 60%);
  filter: blur(45px);
  pointer-events: none;
  z-index: -2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(8, 123, 117, 0.05);
  border: 1px solid rgba(8, 123, 117, 0.18);
  border-radius: 30px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--neon-blue);
  margin-bottom: 25px;
  text-transform: uppercase;
  animation: float-slow 4s ease-in-out infinite;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--neon-blue);
  box-shadow: 0 0 8px var(--neon-blue);
  animation: pulse-dot 1.5s infinite;
}

.hero-title-container {
  max-width: 950px;
  margin-bottom: 25px;
  position: relative;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-shadow: 0 10px 30px rgba(5,11,31,.05);
}

.hero-title span {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 70px;
  z-index: 10;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  box-shadow: 0 10px 30px rgba(201,79,18,.26);
  border: 1px solid rgba(255,255,255,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201,79,18,.36);
}

.btn-secondary {
  color: var(--neon-blue);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--neon-cyan);
  box-shadow: 0 8px 25px rgba(15, 167, 160, 0.15);
}

/* Floating AI Chips Around Hero/Video Elements */
.ai-chips-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 5;
}

.ai-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(8, 123, 117, 0.18);
  color: var(--neon-blue);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 0 20px rgba(15, 167, 160, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: all;
  transition: var(--transition-fast);
  animation: float-slow 5s ease-in-out infinite;
}

.ai-chip:hover {
  background: #fff;
  border-color: var(--neon-purple);
  color: var(--neon-purple);
  box-shadow: 0 14px 35px rgba(201, 79, 18, 0.15);
  transform: scale(1.05);
}

.ai-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
}

.ai-chip:hover .ai-chip-dot {
  background: var(--neon-purple);
}

.chip-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.chip-2 {
  top: 38%;
  right: 5%;
  animation-delay: 1.5s;
}

.chip-3 {
  bottom: 8%;
  left: 12%;
  animation-delay: 0.8s;
}

.chip-4 {
  bottom: 22%;
  right: 10%;
  animation-delay: 2.2s;
}

/* Futuristic Video Placeholder */
.video-wrapper {
  width: 100%;
  max-width: 850px;
  aspect-ratio: 16/9;
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08), 0 0 50px rgba(15, 167, 160, 0.06);
  border: 1px solid var(--border-glass);
  padding: 8px;
  backdrop-filter: blur(18px);
}

.video-border-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  pointer-events: none;
  border: 1px solid rgba(8, 123, 117, 0.08);
  transition: var(--transition-smooth);
}

.video-wrapper:hover .video-border-effect {
  border-color: rgba(15, 167, 160, 0.3);
  box-shadow: inset 0 0 20px rgba(15, 167, 160, 0.05);
}

/* Tech Corners */
.tech-corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border-color: var(--neon-blue);
  border-style: solid;
  pointer-events: none;
}

.tc-tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.tc-tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.tc-bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.tc-br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.video-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: radial-gradient(circle at 50% 50%, rgba(248, 251, 251, 0.9) 0%, rgba(235, 242, 242, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(8, 123, 117, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 123, 117, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
}

.video-placeholder-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(8, 123, 117, 0.04);
  border: 1px solid rgba(8, 123, 117, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.video-placeholder-icon svg {
  fill: var(--neon-blue);
  width: 32px;
  height: 32px;
  transform: translateX(2px);
  transition: var(--transition-smooth);
}

.video-wrapper:hover .video-placeholder-icon {
  background: rgba(8, 123, 117, 0.1);
  border-color: var(--neon-blue);
  box-shadow: 0 0 25px rgba(15, 167, 160, 0.2);
  transform: scale(1.08);
}

.video-wrapper:hover .video-placeholder-icon svg {
  fill: var(--neon-purple);
  transform: scale(1.1) translateX(2px);
}

.video-placeholder-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
  z-index: 2;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.video-placeholder-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--neon-blue);
  z-index: 2;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pulse-glow 2s infinite alternate;
}

/* Scanner Laser Line Effect */
.laser-scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  box-shadow: 0 0 12px var(--neon-cyan);
  z-index: 3;
  pointer-events: none;
  animation: scan-vertical 6s linear infinite;
  opacity: 0.6;
}

/* Sections Common Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-label {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon-purple);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 400;
}

/* Quiénes Somos Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-highlight-box {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-glass);
  border-left: 4px solid var(--neon-blue);
  padding: 24px;
  border-radius: 0 8px 8px 0;
  margin-top: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.about-highlight-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  backdrop-filter: blur(18px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.03);
}

.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 167, 160, 0.06), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 167, 160, 0.3);
  box-shadow: var(--shadow-neon);
}

.visual-card:hover::before {
  opacity: 1;
}

.visual-card-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  display: block;
}

.visual-card-title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.visual-card-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: var(--transition-smooth);
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 123, 117, 0.28);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-deep);
}

.team-card:hover::after {
  transform: scaleX(1);
}

.team-avatar-container {
  height: 270px;
  background: radial-gradient(circle at 50% 30%, rgba(8, 123, 117, 0.06), rgba(248, 251, 251, 0.6));
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--border-glass);
}

.team-cyber-ring {
  width: 236px;
  height: 236px;
  border-radius: 50%;
  border: 2px dashed rgba(8, 123, 117, 0.25);
  position: absolute;
  animation: rotate-clockwise 15s linear infinite;
}

.team-cyber-ring-inner {
  width: 218px;
  height: 218px;
  border-radius: 50%;
  border: 1px solid rgba(201, 79, 18, 0.2);
  position: absolute;
  animation: rotate-counter-clockwise 10s linear infinite;
}

.team-avatar-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
  border: 2.5px solid #fff;
  box-shadow: 0 6px 20px rgba(8, 123, 117, 0.2);
  transition: var(--transition-smooth);
}

.team-card:hover .team-avatar-img {
  transform: scale(1.08);
  border-color: var(--neon-purple);
  box-shadow: 0 8px 30px rgba(201, 79, 18, 0.35);
}

.team-avatar-placeholder {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(8, 123, 117, 0.8), rgba(15, 167, 160, 0.8));
  border: 2.5px solid #fff;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 20px rgba(8, 123, 117, 0.2);
}

.team-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(201, 79, 18, 0.08);
  border: 1px solid rgba(201, 79, 18, 0.25);
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--neon-purple);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.team-info {
  padding: 24px;
}

.team-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.team-role {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-quote {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-left: 2px solid var(--neon-purple);
  padding-left: 10px;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 48px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.team-profile {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  border-top: 1px solid rgba(8, 123, 117, 0.08);
  padding-top: 15px;
}

/* Services / Proposal Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(18px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent, rgba(15, 167, 160, 0.1));
  border-radius: 0 0 0 100%;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 167, 160, 0.4);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-neon);
}

.service-card:hover::before {
  width: 90px;
  height: 90px;
}

.service-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(8, 123, 117, 0.04);
  position: absolute;
  top: 10px;
  right: 15px;
  transition: var(--transition-smooth);
  user-select: none;
}

.service-card:hover .service-number {
  color: rgba(15, 167, 160, 0.08);
  transform: translateY(-2px) scale(1.05);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(8, 123, 117, 0.04);
  border: 1px solid rgba(8, 123, 117, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background: rgba(15, 167, 160, 0.1);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(15, 167, 160, 0.15);
  transform: rotate(5deg);
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
  fill: var(--neon-blue);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box svg {
  fill: var(--neon-purple);
}

.service-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-top: 5px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Conditions Section */
.conditions-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.conditions-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(8, 123, 117, 0.08);
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.td-red { background-color: #ff5f56; }
.td-yellow { background-color: #ffbd2e; }
.td-green { background-color: #27c93f; }

.terminal-title {
  font-family: var(--font-title);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.condition-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.condition-main-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.3;
}

.condition-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

.condition-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.condition-card {
  background: rgba(8, 123, 117, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.condition-card:hover {
  background: rgba(8, 123, 117, 0.04);
  border-color: rgba(201, 79, 18, 0.25);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.condition-card-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.condition-card-content h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.condition-card-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 35px 24px;
  text-align: center;
  backdrop-filter: blur(18px);
  transition: var(--transition-smooth);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--neon-blue);
  border-radius: 0 0 3px 3px;
  transition: var(--transition-smooth);
  opacity: 0.5;
}

.pillar-card:nth-child(2)::before { background: var(--neon-cyan); }
.pillar-card:nth-child(3)::before { background: var(--neon-purple); }
.pillar-card:nth-child(4)::before { background: var(--neon-pink); }

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(8, 123, 117, 0.08);
}

.pillar-card:hover::before {
  width: 70%;
  opacity: 1;
}

.pillar-card:nth-child(1):hover { border-color: rgba(8, 123, 117, 0.3); }
.pillar-card:nth-child(2):hover { border-color: rgba(15, 167, 160, 0.3); }
.pillar-card:nth-child(3):hover { border-color: rgba(201, 79, 18, 0.3); }
.pillar-card:nth-child(4):hover { border-color: rgba(169, 63, 13, 0.3); }

.pillar-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
  font-size: 1.8rem;
  background: rgba(8, 123, 117, 0.03);
  border: 1px solid rgba(8, 123, 117, 0.12);
}

.pillar-card:nth-child(1) .pillar-icon-box { border-color: rgba(8, 123, 117, 0.2); background: rgba(8, 123, 117, 0.04); color: var(--neon-blue); }
.pillar-card:nth-child(2) .pillar-icon-box { border-color: rgba(15, 167, 160, 0.2); background: rgba(15, 167, 160, 0.04); color: var(--neon-cyan); }
.pillar-card:nth-child(3) .pillar-icon-box { border-color: rgba(201, 79, 18, 0.2); background: rgba(201, 79, 18, 0.04); color: var(--neon-purple); }
.pillar-card:nth-child(4) .pillar-icon-box { border-color: rgba(169, 63, 13, 0.2); background: rgba(169, 63, 13, 0.04); color: var(--neon-pink); }

.pillar-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Call to Action (Cierre) */
.cta-box {
  background: radial-gradient(circle at 10% 10%, rgba(15, 167, 160, 0.06), transparent 40%),
              radial-gradient(circle at 90% 90%, rgba(201, 79, 18, 0.06), transparent 40%),
              var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v1H0zm10 10h1v1h-1z' fill='%23087b75' fill-opacity='.015' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: float-slow 4s ease-in-out infinite;
}

.cta-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.cta-desc {
  max-width: 650px;
  margin: 0 auto 35px auto;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Portfolio Section */
.portfolio-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.search-box-container {
  flex: 1;
  max-width: 400px;
  min-width: 280px;
}

#portfolio-search {
  width: 100%;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  outline: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

#portfolio-search:focus {
  border-color: var(--neon-blue);
  background: #fff;
  box-shadow: 0 8px 25px rgba(8, 123, 117, 0.08);
}

.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-blue);
  box-shadow: var(--shadow-neon);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(8, 123, 117, 0.2);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  transition: var(--transition-smooth);
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 26px;
  backdrop-filter: blur(18px);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 167, 160, 0.35);
  box-shadow: var(--shadow-deep);
}

/* Portfolio Browser Preview Frames */
.portfolio-preview-frame {
  width: 100%;
  height: 140px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(8, 123, 117, 0.12);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  box-shadow: inset 0 0 15px rgba(8, 123, 117, 0.02), 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-preview-frame {
  border-color: rgba(15, 167, 160, 0.35);
  box-shadow: 0 8px 25px rgba(15, 167, 160, 0.08);
  background: #fff;
}

.frame-browser-header {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(8, 123, 117, 0.04);
  border-bottom: 1px solid rgba(8, 123, 117, 0.08);
}

.frame-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.fd-1 { background-color: #ff5f56; }
.fd-2 { background-color: #ffbd2e; }
.fd-3 { background-color: #27c93f; }

.frame-address {
  flex-grow: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(8, 123, 117, 0.08);
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.frame-content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(248, 251, 251, 0.5);
  padding: 12px;
  position: relative;
  overflow: hidden;
}

/* Mock Visualizations */
.mock-social-feed {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-social-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--neon-blue);
}

.mock-username {
  width: 50px;
  height: 6px;
  background: rgba(8, 123, 117, 0.2);
  border-radius: 2px;
}

.mock-post-body {
  width: 100%;
  height: 48px;
  background: rgba(8, 123, 117, 0.05);
  border: 1px dashed rgba(8, 123, 117, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-post-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 80%;
}

.mock-post-line {
  height: 4px;
  background: rgba(8, 123, 117, 0.15);
  border-radius: 2px;
}

.mock-post-line-short {
  width: 60%;
}

/* Mock TikTok */
.mock-tiktok {
  width: 60px;
  height: 100%;
  border: 1px solid rgba(8, 123, 117, 0.2);
  border-radius: 4px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mock-tiktok-icon {
  width: 16px;
  height: 16px;
  fill: #fff;
  animation: pulse-glow 1.5s infinite alternate;
}

.mock-tiktok-sidebar {
  position: absolute;
  right: 4px;
  bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-tiktok-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.mock-tiktok-dot-red { background: #ff0050; }

/* Mock App Store */
.mock-app-store {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.mock-app-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 10px rgba(8, 123, 117, 0.2);
}

.mock-app-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.mock-app-name {
  width: 80px;
  height: 8px;
  background: var(--text-primary);
  border-radius: 2px;
}

.mock-app-stars {
  font-size: 0.65rem;
  color: #ffb300;
}

.mock-app-btn {
  padding: 6px 12px;
  font-family: var(--font-title);
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: #0f9d58;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Mock Web Shopping */
.mock-web-shopping {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-shop-hero {
  width: 100%;
  height: 28px;
  background: rgba(201, 79, 18, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(201, 79, 18, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-shop-badge {
  width: 40px;
  height: 6px;
  background: var(--neon-purple);
  border-radius: 2px;
}

.mock-shop-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.mock-shop-item {
  height: 32px;
  background: #fff;
  border: 1px solid rgba(8, 123, 117, 0.1);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 2px;
}

.mock-item-img {
  width: 10px;
  height: 10px;
  background: rgba(8, 123, 117, 0.15);
  border-radius: 2px;
}

.mock-item-price {
  width: 14px;
  height: 4px;
  background: rgba(8, 123, 117, 0.2);
  border-radius: 1px;
}

/* Mock Web Dashboard */
.mock-web-dashboard {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-dash-logo {
  width: 30px;
  height: 6px;
  background: var(--neon-blue);
  border-radius: 2px;
}

.mock-dash-dots {
  display: flex;
  gap: 3px;
}

.mock-dash-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(8, 123, 117, 0.3);
}

.mock-dash-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6px;
}

.mock-dash-main {
  height: 48px;
  background: #fff;
  border: 1px solid rgba(8, 123, 117, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 6px;
}

.mock-chart-bar {
  flex-grow: 1;
  background: rgba(15, 167, 160, 0.25);
  border-radius: 1px;
}

.mock-chart-bar:nth-child(1) { height: 40%; }
.mock-chart-bar:nth-child(2) { height: 75%; background: var(--neon-blue); }
.mock-chart-bar:nth-child(3) { height: 50%; }
.mock-chart-bar:nth-child(4) { height: 90%; background: var(--neon-purple); }
.mock-chart-bar:nth-child(5) { height: 60%; }

.mock-dash-side {
  height: 48px;
  background: #fff;
  border: 1px solid rgba(8, 123, 117, 0.1);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
}

.mock-dash-line {
  height: 4px;
  background: rgba(8, 123, 117, 0.15);
  border-radius: 2px;
}

/* Mock AI Chat */
.mock-ai-chat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-chat-bubble {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  max-width: 80%;
  font-family: var(--font-body);
  line-height: 1.3;
}

.mcb-user {
  align-self: flex-end;
  background: rgba(201, 79, 18, 0.08);
  border: 1px solid rgba(201, 79, 18, 0.15);
  color: var(--neon-purple);
  border-bottom-right-radius: 2px;
}

.mcb-ai {
  align-self: flex-start;
  background: rgba(8, 123, 117, 0.06);
  border: 1px solid rgba(8, 123, 117, 0.15);
  color: var(--neon-blue);
  border-bottom-left-radius: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mcb-ai-glow {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 5px var(--neon-cyan);
  animation: pulse-dot 1.2s infinite;
}

.portfolio-card-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.portfolio-card-badge {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.portfolio-card-badge.marketing {
  background: rgba(15, 167, 160, 0.08);
  border: 1px solid rgba(15, 167, 160, 0.2);
  color: var(--neon-blue);
}

.portfolio-card-badge.dev {
  background: rgba(8, 123, 117, 0.08);
  border: 1px solid rgba(8, 123, 117, 0.2);
  color: var(--neon-blue);
}

.portfolio-card-badge.ai {
  background: rgba(201, 79, 18, 0.08);
  border: 1px solid rgba(201, 79, 18, 0.2);
  color: var(--neon-purple);
}

.portfolio-card-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.portfolio-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.portfolio-link-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 123, 117, 0.03);
  border: 1px dashed rgba(8, 123, 117, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.portfolio-link-preview:hover {
  background: rgba(8, 123, 117, 0.06);
  border-style: solid;
  border-color: rgba(8, 123, 117, 0.3);
  transform: translateY(-1px);
}

.preview-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.preview-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 700;
}

.preview-url {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-blue);
  word-break: break-all;
}

.preview-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.portfolio-link-preview:hover .preview-arrow {
  color: var(--neon-purple);
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .portfolio-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-box-container {
    max-width: 100%;
  }
  
  .filter-buttons {
    justify-content: center;
  }
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 40px 0;
  background: rgba(248, 251, 251, 0.95);
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-copy strong {
  color: var(--neon-blue);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  height: 22px;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

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

/* KEYFRAMES ANIMATIONS */
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
  0% { filter: drop-shadow(0 0 2px rgba(8, 123, 117, 0.2)); }
  100% { filter: drop-shadow(0 0 8px rgba(8, 123, 117, 0.5)); }
}

@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(8, 123, 117, 0.5); }
  70% { transform: scale(1.1); opacity: 0.5; box-shadow: 0 0 0 8px rgba(8, 123, 117, 0); }
  100% { transform: scale(1); opacity: 0; box-shadow: 0 0 0 0 rgba(8, 123, 117, 0); }
}

@keyframes rotate-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotate-counter-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes scan-vertical {
  0% { top: 0; }
  50% { top: 100%; }
  100% { top: 0; }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .about-grid {
    gap: 30px;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .chip-1 { left: 2%; }
  .chip-2 { right: 2%; }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-cta,
  .nav-cta-secondary {
    display: none !important;
  }
  
  .nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 12px;
    gap: 12px;
  }
  
  .nav-actions {
    position: static;
    transform: none;
    order: -1;
    display: flex;
    align-items: center;
    margin: 0;
  }
  
  .logo-img {
    height: 26px;
  }
  
  .logo-divider {
    font-size: 0.85rem;
    padding: 0 1px;
  }
  
  .mobile-sticky-footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
  }
  
  .mobile-sticky-footer-cta .btn {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 12px 4px;
    font-size: 0.72rem;
    box-shadow: 0 4px 15px rgba(201, 79, 18, 0.2);
    white-space: nowrap;
    border-radius: 6px;
    letter-spacing: 0.5px;
  }
  
  .mobile-sticky-footer-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-glass);
    color: var(--neon-blue);
    box-shadow: none;
  }
  
  body {
    padding-bottom: 90px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }


  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-visual {
    order: -1;
  }
  
  .conditions-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .ai-chip {
    padding: 6px 12px;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
    letter-spacing: -1px;
  }
  
  .hero-actions,
  .cierre-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
  }
  
  .about-visual {
    grid-template-columns: 1fr;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .conditions-wrapper {
    padding: 25px 15px;
  }
  
  .cta-box {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .team-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Economic Proposal Breakdown */
.economic-proposal {
  margin-top: 90px;
}

.proposal-table-wrapper {
  overflow-x: auto;
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  margin-bottom: 40px;
}

.proposal-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.proposal-table th {
  padding: 16px;
  color: var(--text-primary);
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(8, 123, 117, 0.15);
}

.proposal-table td {
  padding: 18px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(8, 123, 117, 0.08);
  vertical-align: top;
  line-height: 1.6;
}

.proposal-table tr:last-child td {
  border-bottom: none;
}

.proposal-table td:first-child {
  color: var(--text-primary);
  font-weight: 700;
  width: 25%;
}

.proposal-table td.price-cell {
  color: var(--neon-cyan);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  width: 15%;
}

.investment-summary-card {
  background: linear-gradient(135deg, rgba(8, 123, 117, 0.03), rgba(201, 79, 18, 0.03));
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.summary-text-col h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.summary-text-col p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.summary-price-col {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(8, 123, 117, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-row .price-val {
  font-weight: 600;
  color: var(--text-primary);
}

.price-row.total-row {
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 4px;
}

.price-row .price-val.total-val {
  color: var(--neon-purple);
  font-weight: 900;
  font-size: 1.15rem;
}

/* Responsiveness for economic proposal */
@media (max-width: 768px) {
  .investment-summary-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
}

@media (max-width: 580px) {
  .proposal-table-wrapper {
    padding: 12px;
  }
  
  .proposal-table thead {
    display: none;
  }
  
  .proposal-table tr {
    display: block;
    border-bottom: 1.5px solid rgba(8, 123, 117, 0.15);
    padding: 15px 0;
  }
  
  .proposal-table tr:last-child {
    border-bottom: none;
  }
  
  .proposal-table td {
    display: block;
    width: 100% !important;
    text-align: left !important;
    padding: 6px 10px;
    border-bottom: none;
  }
  
  .proposal-table td::before {
    content: attr(data-label) ": ";
    font-weight: 700;
    color: var(--text-primary);
    display: inline-block;
    width: 120px;
  }
  
  .proposal-table td[data-label="Servicio"]::before {
    display: none;
  }
  
  .proposal-table td[data-label="Servicio"] {
    font-size: 1rem;
    color: var(--text-primary);
    padding-bottom: 8px;
  }
}
