:root {
  --chat--color-primary: #0076b6;
  --chat--color-primary-shade-50: #0099cc;
  --chat--color-primary-shade-100: #00bfff;
  --chat--color-secondary: #0a0a23;
  --chat--color-secondary-shade-50: #22223b;
  --chat--color-white: #ffffff;
  --chat--color-light: #f9f9f9;
  --chat--color-light-shade-50: #e6e9f1;
  --chat--color-light-shade-100: #c2c5cc;
  --chat--color-medium: #d2d4d9;
  --chat--color-dark: #0a0a23;
  --chat--color-disabled: #777980;
  --chat--color-typing: #404040;
  --chat--spacing: 1rem;
  --chat--border-radius: 8px;
  --chat--window--width: 400px;
  --chat--window--height: 600px;
  --chat--header--background: #0076b6;
  --chat--header--color: #fff;
  --chat--toggle--background: #0076b6;
  --chat--toggle--hover--background: #0099cc;
  --chat--toggle--active--background: #00bfff;
  --chat--toggle--color: #fff;
  --chat--message--user--background: #0076b6;
  --chat--message--user--color: #fff;
  --chat--message--bot--background: #fff;
  --chat--message--bot--color: #0a0a23;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #0a0a23;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  box-shadow: none;
  padding: 0;
  min-height: 80px;
}
.header-bg {
  background: url('header.webp') center center/cover no-repeat;
  min-height: 240px;
}
.header-content {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 32px 48px;
}
.logo {
  height: 60px;
}
.cta {
  background: #0076b6;
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
}
.cta:hover {
  background: #005a8c;
  color: #e0f4ff;
}
.hero-bg {
  background: url('header.webp') center center/cover no-repeat;
  min-height: 620px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.header-transparent {
  background: rgba(255,255,255,0.20);
  box-shadow: none;
}
.nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 32px 48px 0 48px;
}
.nav ul li {
  margin: 0;
}
.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav ul li a:hover {
  background: rgba(0,118,182,0.18);
  color: #b3e6ff;
}
.nav ul li .cta {
  background: #0076b6;
  color: #fff;
  border-radius: 8px;
  padding: 10px 24px;
  margin-left: 8px;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
}
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 320px;
  background: transparent;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0a0a23;
}
.hero .sub {
  font-size: 1.2em;
  color: #0076b6;
}
.hero-content {
  margin-left: auto;
  max-width: 520px;
  padding: 48px 48px 48px 0;
  border-radius: 16px;
  color: #fff;
  text-align: right;
}
.hero-content h1 {
  color: #fff;
}
.hero-content .sub {
  color: #b3e6ff;
}
.servicios, .chatbot, .vision, .quienes, .ejemplos, .cta-final {
  max-width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.section-inner {
  max-width: 65%;
  margin: 64px auto;
  padding: 32px 24px;
}
.section-inner, .section-inner p, .section-inner li {
  font-size: 1.18em;
  line-height: 1.7;
}
.servicios .section-inner {
  margin-top: 0;
}
main > section:nth-of-type(1) {
  background: #f9f9f9;
}
main > section:nth-of-type(2) {
  background: #ffffff;
}
main > section:nth-of-type(3) {
  background: #f9f9f9;
}
main > section:nth-of-type(4) {
  background: #ffffff;
}
main > section:nth-of-type(5) {
  background: #f9f9f9;
}
main > section:nth-of-type(6) {
  background: #ffffff;
}
.servicios h2, .chatbot h2, .vision h2, .quienes h2, .ejemplos h2, .cta-final h2 {
  color: #0076b6;
  margin-bottom: 18px;
}
.servicios ul, .ejemplos ul {
  list-style: none;
  padding: 0;
}
.servicios li, .ejemplos li {
  margin-bottom: 12px;
  font-size: 1.1em;
}
.fundadores {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.fundador {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  margin-bottom: 12px;
  color: #0a0a23;
}
.cta-final {
  text-align: center;
}
.contactos {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.contacto {
  background: #0076b6;
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
}
.contacto:hover {
  background: #005a8c;
  color: #e0f4ff;
}
.footer {
  text-align: center;
  padding: 18px 0 10px 0;
  color: #0076b6;
  font-size: 0.95em;
  background: transparent;
}
.ejemplos-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 32px 0 0 0;
  padding: 0;
  list-style: none;
}
.ejemplo-card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  background: none;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0 8px;
  font-size: 1.08em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .nav ul {
    padding: 24px 10px 0 10px;
  }
  .hero-content {
    padding: 32px 16px 32px 0;
    max-width: 100%;
  }
  .ejemplos-lista {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .ejemplo-card {
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }
}
@media (max-width: 700px) {
  .header-content {
    padding: 18px 10px;
  }
  .fundadores {
    flex-direction: column;
    gap: 12px;
  }
  .servicios, .chatbot, .vision, .quienes, .ejemplos, .cta-final {
    padding: 18px 6px;
  }
  .hero-bg {
    min-height: 220px;
  }
  .nav ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding: 12px 4px 0 4px;
  }
  .hero-content {
    padding: 18px 6px;
    border-radius: 10px;
    margin: 0 8px 18px auto;
    text-align: right;
  }
} 