body {
    font-family: Arial, sans-serif;
    cursor: url('imagenes/isotipo.png'), auto;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
}
.nav-cursor {
    width: 20px;
    height: 20px;
}
.header {
    background-color: #000000;
    padding: 10px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.nav-brand img {
    width: 200px; /* Ajusta el ancho según tus necesidades */
    height: auto; /* Mantiene la proporción de la imagen */
    max-height: 100px; /* Ajusta la altura máxima según tus necesidades */
}
.nav-left {
    display: flex;
    align-items: center;
}
.nav-right {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.nav-item {
    position: relative;
    margin-right: 20px;
}
.nav-link {
    text-decoration: none;
    color: #ffffff;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    min-width: 200px;
}
.nav-item:hover .dropdown-menu {
    display: block;
}
.dropdown-item {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}
.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Sección de Video */
.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilos para la sección de Empleos */
.job-section {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.job-card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    flex-direction: row;
    gap: 20px;
}

.job-content {
    padding: 20px;
    flex: 1;
}

.job-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.job-content p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.job-link {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    border: 1px solid #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

.job-link:hover {
    background-color: #007bff;
    color: white;
}

.job-card img {
    width: 300px;
    height: auto;
    border-radius: 0 8px 8px 0;
}

/* Sección de Productos */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
}
h1 {
    text-align: center;
    color: #333;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.grid-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(151, 70, 70, 0.1);
}
.grid-item img {
    max-width: 100%;
    height: auto;
}


/* Footer */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px 20px;
    position: relative;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-logo img {
    height: 50px;
    margin-bottom: 30px;
}
.footer-sections {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.footer-section {
    margin-right: 20px;
}
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}
.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.footer-social a {
    margin-left: 15px;
}
.footer-social img {
    width: 30px;
    height: 30px;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}
.scroll-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.scroll-top img {
    width: 20px;
    height: 20px;
}