/* @import "bootstrap"; */
/* @import "bootstrap.css"; */
/* @import url('/css/bootstrap'); */
/* @import url('/css/bootstrap.css'); */
/* Colores base */
:root {
  --color-principal: #7B2D26;     /* burdeos */
  --color-acento: #D9822B;        /* naranja */
  --color-fondo: #FDF6EC;         /* marfil */
  --color-texto: #2C2C2C;         /* gris carbón */
}

/* Reset básico */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: var(--color-fondo);
  color: var(--color-texto);
  line-height: 1.6;
}

/* Enlaces */
a {
  color: var(--color-principal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Botones por defecto */
button, 
input[type="button"], 
input[type="submit"], 
a.btn {
  background-color: var(--color-acento);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

button:hover, 
input[type="button"]:hover, 
input[type="submit"]:hover, 
a.btn:hover {
  background-color: #b6651f;
}
