/* Estilos heredados de alfredograf.com */
/* Estos estilos mantienen consistencia con el sitio principal */

/* Reset básico */
* {
  box-sizing: border-box;
}

/* Tipografía base */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

/* Headers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}

/* Links */
a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Párrafos y texto */
p {
  margin-bottom: 1rem;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* Listas */
ul,
ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.25rem;
}

/* Tablas */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

th,
td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* Formularios base */
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* Utilidades */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

/* Footer base */
.site-footer {
  background-color: #00809e;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h3 {
  color: #ecf0f1;
  margin-bottom: 1rem;
}

.site-footer a {
  color: #bdc3c7;
}

.site-footer a:hover {
  color: white;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.term {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 5px;
  border-left: 3px solid #fff;
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f5f8fa;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .glossary-grid {
    grid-template-columns: 1fr;
  }
}

/* Print styles */
@media print {
  .site-footer {
    background: none !important;
    color: black !important;
  }

  a {
    color: black !important;
    text-decoration: underline !important;
  }
}
