body {
  font-family: 'Raleway', sans-serif; 
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9; 
  color: #1a1a49; 
}

a {
  text-decoration: none;
  color: inherit;        
}

img {
  max-width: 100%; 
  height: auto;
}

section {
  padding: 60px 20px;
  text-align: center;
}


#quienes-somos, #contacto-rapido {
  background-color: #ffffff;
  color: #1a1a49;
}

#productos .productos-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; 
}

#productos .producto {
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  width: 250px;
}

header {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 20px 40px;
  background-color: #ffffff; 
}

header .logo {
  height: 50px;
}

header nav a {
  margin-left: 20px;
  font-weight: 300;
  color: #1a1a49; 
  transition: color 0.3s; 
}

header nav a:hover {
  color: #5071ae; 
}

footer {
  text-align: center;      
  font-size: 0.9rem;       
  color: #1a1a49;           
  padding: 20px;           
  background-color: #f0f0f0; 
  border-top: 1px solid #1a1a49; 
}

.chatbot-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;      
  height: 400px;      
  display: none;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid color-mix(in oklab, var(--text) 12%, transparent);
  z-index: 999;
  overflow: hidden;
}

.chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
  background: #f9f9f9;
}

.chat-input {
  display: flex;
  border-top: 1px solid #ccc;
  padding: 6px;
}

.chat-input input {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.chat-input button {
  padding: 6px 10px;
  margin-left: 6px;
  background: #5071ae;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.msg {
  margin-bottom: 8px;
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 12px;
  clear: both;
  word-wrap: break-word;
}

.user {
  background: #645394;
  color: #fff;
  float: right;
  text-align: right;
}

.bot {
  background: #eeebea;
  color: #333;
  float: left;
  text-align: left;
}

.redes-sociales {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.red-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.red-link:hover {
  color: #0077b6;
}

.icono-red {
  width: 28px;
  height: 28px;
}
