/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #ff5722;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.acciones a {
  margin-left: 10px;
}

/* BOTONES */
.btn-primary {
  background: #ff5722;
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #ff5722;
  color: #ff5722;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  background: #fff6f2;
}

.hero-texto {
  max-width: 50%;
}

.hero-texto h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-texto p {
  margin-bottom: 1.5rem;
}

.hero-botones {
  display: flex;
  gap: 1rem;
}

.hero-imagen img {
  width: 400px;
  border-radius: 10px;
}

/* QUIENES SOMOS */
.quienes-somos {
  text-align: center;
  padding: 3rem 2rem;
  background: #fafafa;
}

.quienes-somos h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.quienes-somos p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 2rem;
}

.quienes-somos img {
  width: 350px;
  border-radius: 10px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #333;
  color: #fff;
  margin-top: 2rem;
}

/* CHATBOT */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 260px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
}

.chatbot-header {
  background: #ff5722;
  color: #fff;
  padding: 0.8rem;
  font-weight: bold;
  text-align: center;
}

.chatbot-body {
  padding: 1rem;
  text-align: center;
}


