/* Variables CSS */
:root {
  --main-font: 'Roboto', sans-serif;
  --main-bg-color: #f5f5f5;
  --main-text-color: #333;
}

/* Estilos generales */
body {
  font-size: 16px;
  font-family: var(--main-font);
  color: var(--main-text-color);
  background-color: var(--main-bg-color);
}

/* Estilos para enlaces */
a {
  color: #007bff;
}

a:hover {
  color: #0056b3;
}

/* Estilos para imágenes e iframes */
img,
iframe {
  max-width: 100%;
}

/* Estilos para tablas */
table {
  width: 100%;
}

/* Clases utilitarias */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.p-10 {
  padding: 10px;
}

.bg-primary {
  background-color: #007bff;
  color: white;
}

.bg-secondary {
  background-color: #6c757d;
  color: white;
}

.border {
  border: 1px solid #ccc;
}

.rounded {
  border-radius: 5px;
}

/* Fondo con degradado y relleno */
.bg-gradient {
  background: linear-gradient(to right, #f5f7fa, #c3cfe2);
  min-height: 100vh;
}

.section-padding {
  padding: 3rem 0;
}

/* Botón personalizado */
.btn-custom {
  background-color: #007bff;
  border: none;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-custom:hover {
  background-color: #0056b3;
}
