/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f4f4f4;
  color: #333;
}

/* HEADER: HERO BOT */
.hero-bot {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #0e1a2b, #111827);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-title .typed-text {
  color: #5aa8dc;
}

.hero-subtext {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.cta-button {
  background: #5aa8dc;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #428cb7;
}

/* Consola visual */
.bot-console {
  margin-top: 3rem;
  background: #1f2937;
  color: #a0aec0;
  font-family: 'Courier New', Courier, monospace;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  max-width: 700px;
  font-size: 0.95rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  z-index: 1;
}

/* SECCIÓN: PRODUCT PRESENTATION */
.product-presentation {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem;
  background: #ffffff;
  flex-wrap: wrap;
}

.presentation-text {
  flex: 1;
  max-width: 50%;
}

.presentation-text h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #222;
  font-weight: 700;
}

.presentation-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.product-features li {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: #444;
  line-height: 1.5;
}

/* Terminal de código simulada */
.terminal-sample {
  background-color: #1e1e1e;
  color: #b5f4a5;
  font-family: 'Courier New', Courier, monospace;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Imagen técnica (ahora convertida en simulador) */
.presentation-image {
  flex: 1;
  max-width: 50%;
  text-align: center;
}

.demo-bot-interface {
  background-color: #f7f7f7;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.demo-bot-interface h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.demo-bot-form input,
.demo-bot-form select {
  padding: 0.6rem 1rem;
  margin-bottom: 0.8rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
}

.demo-bot-form button {
  background: #5aa8dc;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.demo-bot-form button:hover {
  background: #428cb7;
}

.bot-output {
  background: #1e1e1e;
  color: #b5f4a5;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 6px;
  min-height: 60px;
}

/* Responsive */
@media (max-width: 992px) {
  .product-presentation {
    flex-direction: column-reverse;
    text-align: center;
  }

  .presentation-text, .presentation-image {
    max-width: 100%;
  }

  .presentation-text h2 {
    font-size: 2rem;
  }
}

/* SECCIÓN: SOLUCIONES DE AUTOMATIZACIÓN */
.bot-solutions {
  background: #f9fbfd;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 2px solid #dbe5f0;
}

.bot-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.bot-solutions h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #222;
  font-weight: 700;
}

.bot-intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.solution-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.solution-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  text-align: left;
  transition: transform 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
}

.solution-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.solution-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.bot-cta {
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
}

.bot-cta:hover {
  background-color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .solution-grid {
    flex-direction: column;
    align-items: center;
  }
}


/* WHY WE DO IT */
.why-we-do-it {
  background: #fff;
  padding: 4rem 2rem;
  border-top: 2px solid #e0e0e0;
  text-align: center;
}

.why-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.why-we-do-it h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.why-we-do-it p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.2rem;
}

/* FINAL CTA */
.final-cta {
  background: #5aa8dc;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
}

.final-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #f4f4f4;
}

.final-cta .cta-button {
  background: #fff;
  color: #5aa8dc;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
}

.final-cta .cta-button:hover {
  background: #e4e4e4;
}

/* QUICK SUMMARY */
.quick-summary {
  background: #f2f8fc;
  padding: 3rem 2rem;
  text-align: center;
}

.quick-summary h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 700;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.summary-list li {
  font-size: 1.1rem;
  line-height: 2;
  color: #555;
  text-align: left;
  padding-left: 1.5rem;
  position: relative;
}



/* RESPONSIVE */
@media (max-width: 992px) {
  .levels-container {
    flex-direction: column;
    align-items: center;
  }
  .level-card {
    width: 80%;
  }
  .product-presentation {
    flex-direction: column;
  }
  .presentation-image, .presentation-text {
    max-width: 100%;
  }
}
