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;
}


/* 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;
}