body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9; /* Color de fondo general */
}

header {
    position: relative;
    text-align: center;
    background: linear-gradient(60deg, #543AB7 0%, #00ACC1 100%); /* Paleta de colores */
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logo {
    width: 80px;
    fill: white;
    padding-right: 15px;
}

.brand-info {
    text-align: left;
}

.inner-header {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
    .content {
        height: 30vh;
    }
    h1 {
        font-size: 24px;
    }
}

nav {
    margin: 20px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #543AB7; /* Color de texto del enlace */
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

section {
    padding: 20px;
    margin: 20px 0;
    background-color: #ffffff; /* Fondo blanco para las secciones */
    border-radius: 5px;
}

h1 {
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 36px;
}

h2 {
    font-size: 24px;
    margin-top: 0;
    color: #543AB7; /* Color de encabezados */
}

section h2 {
    text-align: center;
}

h3 {
    font-size: 20px;
    margin-top: 10px;
    color: #00ACC1; /* Color de sub-encabezados */
}

p {
    letter-spacing: 1px;
    font-size: 16px;
}

a {
    color: #00ACC1; /* Color de enlace */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

tfoot td {
    text-align: center;
    font-weight: bold;
    background-color: #f2f2f2;
}

footer {
    padding: 20px;
    background-color: #543AB7; /* Color de fondo del pie de página */
    color: white;
    text-align: center;
}

.works-list {
    list-style: none;
    padding: 0;
}

.works-list li {
    margin: 20px 0;
    text-align: center;
}

.works-list img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.video-container video {
    max-width: 100%;
    height: auto;
}

/* Añadido para centrar la imagen en la sección Acerca de Nosotros */
#about img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

footer h2  {
    color: #fff;
}

footer p  {
    color: #ccc;
}