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

:root {
  /* Color Palette (HSL for consistency) */
  --bg-primary: hsl(222, 24%, 7%);
  --bg-secondary: hsl(222, 24%, 12%);
  --bg-tertiary: hsl(222, 24%, 17%);
  --border-color: hsla(222, 15%, 25%, 0.4);
  
  --accent-cyan: hsl(217, 91%, 60%);
  --accent-cyan-hover: hsl(217, 91%, 70%);
  --accent-cyan-glow: hsla(217, 91%, 60%, 0.25);
  
  --accent-orange: hsl(25, 100%, 53%);
  --accent-orange-hover: hsl(25, 100%, 63%);
  --accent-orange-glow: hsla(25, 100%, 53%, 0.25);
  
  --text-main: hsl(210, 20%, 98%);
  --text-muted: hsl(210, 15%, 72%);
  --text-subtle: hsl(210, 10%, 48%);
  
  --glass-bg: hsla(222, 24%, 10%, 0.7);
  --glass-border: hsla(0, 0%, 100%, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.4);
  
  /* Fonts */
  --font-family-headings: 'Outfit', 'Inter', sans-serif;
  --font-family-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-family-headings);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Global Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background Glow Effects */
.glow-background {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 100, 48, 0.08) 0%, rgba(0,0,0,0) 70%);
  top: -200px;
  right: -100px;
  z-index: -1;
  pointer-events: none;
}

.glow-background-left {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 100, 53, 0.04) 0%, rgba(0,0,0,0) 70%);
  top: 800px;
  left: -300px;
  z-index: -1;
  pointer-events: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px var(--glass-shadow);
  transition: var(--transition-fast);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-headings);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent-cyan);
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-left: 5px;
  border: 1px solid var(--border-color);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-cyan);
  transition: var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-hover));
  color: var(--bg-primary);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px var(--accent-cyan-glow);
  transition: var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-cyan-glow);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-main);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: var(--transition-fast);
  cursor: pointer;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-hover));
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--accent-cyan-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-cyan-glow);
}

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

.btn-secondary:hover {
  background-color: var(--bg-tertiary);
  transform: translateY(-2px);
  border-color: var(--text-muted);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--accent-orange-glow);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-orange-glow);
}

/* Sections General */
section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  background-color: hsla(217, 91%, 60%, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid hsla(217, 91%, 60%, 0.2);
}

.section-tag-alt {
  color: var(--accent-orange);
  background-color: hsla(25, 100%, 53%, 0.1);
  border: 1px solid hsla(25, 100%, 53%, 0.2);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-main) 30%, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* Hero Section */
.hero {
  padding-top: 180px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  font-weight: 800;
}

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

.hero-title .alt-gradient {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--text-main);
}

.stat-item h3 span {
  color: var(--accent-cyan);
}

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

/* Hero Visual (Mockup) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 380px;
  border-radius: 40px;
  padding: 10px;
  background: linear-gradient(135deg, hsla(0, 0%, 100%, 0.1) 0%, hsla(0,0%,100%,0.02) 100%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  animation: floatApp 6s ease-in-out infinite;
}

.mockup-img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  display: block;
}

.glow-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--accent-cyan-glow);
  filter: blur(80px);
  z-index: 1;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-cyan-glow) 0%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 1;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 12px 30px -10px var(--accent-cyan-glow);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
  z-index: 2;
  position: relative;
}

.feature-card:hover .feature-icon {
  background-color: var(--accent-cyan);
  color: var(--bg-primary);
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 15px var(--accent-cyan-glow);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  z-index: 2;
  position: relative;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  z-index: 2;
  position: relative;
}

/* Interactive Calculator Section */
.calc-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
}

.form-group select, 
.form-group input {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-main);
  transition: var(--transition-fast);
  width: 100%;
}

.form-group select:focus, 
.form-group input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 2px var(--accent-cyan-glow);
}

.form-group select option {
  background-color: var(--bg-secondary);
}

.calc-results {
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  transition: var(--transition-smooth);
}

.result-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color: var(--text-muted);
  gap: 16px;
}

.result-placeholder i {
  font-size: 3rem;
  color: var(--text-subtle);
}

.result-data {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.result-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.result-header h4 {
  font-size: 1.25rem;
  color: var(--accent-cyan);
}

.result-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.result-saving {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.saving-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-orange);
  font-family: var(--font-family-headings);
}

.saving-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.result-tasks-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 12px;
}

.result-tasks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.result-tasks-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-tasks-list li::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: bold;
}

/* Workshop B2B Section */
.b2b {
  background-color: var(--bg-secondary);
}

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

.b2b-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-orange);
  font-family: var(--font-family-headings);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: hsla(25, 100%, 53%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid hsla(25, 100%, 53%, 0.2);
}

.benefit-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.benefit-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.b2b-visual {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.b2b-visual::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background-color: var(--accent-orange-glow);
  filter: blur(50px);
  border-radius: 50%;
}

.b2b-quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.5;
  color: var(--text-main);
  position: relative;
}

.b2b-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.b2b-author-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

.b2b-author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQs Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-header {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.faq-icon {
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  color: var(--accent-cyan);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  padding: 0 32px;
}

.faq-content p {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Active FAQ state */
.faq-item.active {
  border-color: var(--accent-cyan);
}

.faq-item.active .faq-header h3 {
  color: var(--accent-cyan);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Waitlist (Newsletter) Section */
.waitlist-section {
  text-align: center;
}

.waitlist-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.waitlist-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-color: var(--accent-cyan-glow);
  filter: blur(80px);
  border-radius: 50%;
}

.waitlist-card h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.waitlist-card p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px auto;
  font-size: 1rem;
}

.waitlist-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 12px;
  position: relative;
  z-index: 5;
}

.waitlist-form input {
  flex-grow: 1;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.waitlist-form input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 2px var(--accent-cyan-glow);
}

.waitlist-form button {
  flex-shrink: 0;
}

.form-success-msg {
  display: none;
  color: var(--accent-cyan);
  margin-top: 16px;
  font-weight: 500;
  animation: fadeIn 0.4s ease forwards;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  padding: 60px 0 30px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-brand p {
  margin-top: 12px;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--text-main);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--text-main);
}

/* Animations */
@keyframes floatApp {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .calc-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
  
  .b2b-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    gap: 20px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .hero-title {
    font-size: 2.4rem;
    letter-spacing: -1px;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    text-align: center;
    min-width: 80px;
  }

  .calc-card {
    padding: 24px 20px;
  }

  .waitlist-card {
    padding: 40px 20px;
  }

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

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

  .waitlist-form {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .waitlist-form input {
    border-radius: var(--radius-pill);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

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

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

  .hero-stats {
    gap: 16px;
  }

  .stat-item h3 {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 24px;
  }

  .calc-card {
    padding: 20px 16px;
  }
}

/* Talleres Section */
.talleres-section {
  border-top: 1px solid var(--border-color);
  background: linear-gradient(135deg, var(--bg-primary) 0%, hsla(25, 100%, 53%, 0.04) 100%);
}

.talleres-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.talleres-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.taller-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.taller-benefit-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: hsla(25, 100%, 53%, 0.1);
  border: 1px solid hsla(25, 100%, 53%, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.taller-benefit h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.taller-benefit p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.talleres-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.taller-stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-fast);
}

.taller-stat-card:hover {
  border-color: var(--accent-orange);
  transform: translateX(4px);
}

.taller-stat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.taller-stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.taller-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-orange);
}

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

@media (max-width: 992px) {
  .talleres-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Axiom Labs Additional Corporate Styles */
.about-section {
  position: relative;
}

#founder-mario:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 12px 30px -10px var(--accent-orange-glow);
}

#founder-mario::before {
  background: linear-gradient(180deg, var(--accent-orange-glow) 0%, rgba(0,0,0,0) 100%);
}

#founder-rodrigo:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 12px 30px -10px var(--accent-cyan-glow);
}

.webapp-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.rutag-section {
  position: relative;
}

