 /* Estilos generales */
 body {
     margin: 0;
     font-family: Arial, sans-serif;
     background-color: #f4f4f4;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     padding-top: 70px;
     margin: 0;
     height: 100%;
 }

 /* Banner fijo */
 #main-header {
     background: #691C32;
     color: white;
     height: 80px;
     width: 100%;
     position: fixed;
     top: 0;
     left: 0;
     z-index: 1000;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 10px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
 }

 #main-sec {
     background: #310411;
     color: white;
     height: 40px;
     width: 100%;
     position: fixed;
     top: 20;
     left: 0;
     z-index: 1000;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 10px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
 }

 /* Logo */
 #logo-header {
     display: flex;
     align-items: center;
     text-decoration: none;
     color: white;
 }

 #logo-header img {
     height: 50px;
     margin-right: 100px;
 }

 #logo1-header img {
     height: 40px;
     margin-left: 10px;
 }

 #logo-header .site-name {
     font-size: 1.5em;
     font-weight: bold;
 }

 /* Menú de navegación */
 nav ul {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     gap: 10px;
     padding-right: 30px;
 }

 nav ul li a {
     color: white;
     text-decoration: none;
     font-weight: 500;
     padding: 10px 15px;
     border-radius: 5px;
     transition: 0.3s;
 }

 nav ul li a:hover {
     background: #bc955c;
 }

 section {
     padding: 40px 20px;
     text-align: center;
     height: 30px;
 }


 footer {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background-color: #691C32;
     color: #eeeded;
     text-align: center;
     padding: 10px 0;
     z-index: 1000;
 }

 .cuadro {
     width: 100%;
     /* Ancho fijo del cuadro */
     height: 30px;
     /* Alto fijo del cuadro */
     border: 2px solid #333;
     /* Borde visible */
     overflow: hidden;
     /* Oculta el texto que se salga */
     text-overflow: ellipsis;
     /*Muestra "..." si el texto es muy largo */
     white-space: nowrap;
     /* Evita que el texto salte de línea */
     box-sizing: border-box;
     /* Incluye padding y borde en el tamaño total */

 }