/* Estilos globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Estilos de encabezado */
header {
    background: linear-gradient(to right, #333, #555);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Contenedor principal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

/* Estilos de secciones */
section {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

section h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 10px;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}

section p {
    font-size: 1.1em;
    color: #555;
    margin-top: 10px;
    line-height: 1.8;
}

/* Estilos de imágenes - excluyendo la sección Mercancía */
section:not(#mercancia) img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Estilos específicos para la sección "Mercancía" */
#mercancia .imagen-container {
    display: flex;
    gap: 10px; /* Espacio entre las imágenes */
}

#mercancia .no-estilos {
    width: 45%; /* Ajusta este valor según el tamaño que desees */
    height: auto;
    margin: 0;
}

/* Estilos de la tabla */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #000000;
}

th {
    background-color: #0077cc;
    color: rgb(0, 0, 0);
}

tr:hover {
    background-color: #f1f1f1;
}

.category {
    font-weight: bold;
    background-color: #e2e8f0;
}

.requirement-type {
    color: #0077cc;
    font-weight: bold;
    padding: 10px 0;
}




/* Estilos de pie de página */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    margin-top: 30px;
}

footer p {
    margin: 5px 0;
    color: #ddd;
}

footer a {
    color: #ddd;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.6em;
    }
    .container {
        width: 95%;
    }
    section h2 {
        font-size: 1.5em;
    }
    section p {
        font-size: 1em;
    }
}
