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

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

.header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #222;
    color: #fff;
    align-items: center;
}

.header .logo img {
    width: 150px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.hero {
    background: url('images/mixer.jpg') no-repeat center center/cover;
    background-color: rgba(0, 0, 0, 0.5); /* Añadir un filtro oscuro */
    color: white; /* Asegurarse de que el texto sea blanco */
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin: 20px 0;
}

.cta-button {
    background-color: #ff5733;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

.about, .services, .testimonials, .contact {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    margin: 20px 0;
}

.about-img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.service-item {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 30%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.testimonials p {
    font-style: italic;
    margin-top: 20px;
}


/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .navbar ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 18px;
    }

    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 80%;
        margin-bottom: 20px;
    }

    .about, .services, .testimonials, .contact {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 14px;
        padding: 8px 15px;
    }
}


.contact ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px; /* Espacio entre los elementos */
}

.contact ul li {
    margin-bottom: 10px; /* Espacio entre las líneas de contacto */
}

.contact .cta-button {
    margin-top: 20px; /* Separar el botón del texto */
}

/*Pie de Pagina*/
footer {
    background-color: #222; /* Fondo oscuro para mejor contraste */
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #fff; /* Texto blanco */
    border-top: 1px solid #444;
}

.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    text-decoration: none;
    color: #00b4d8; /* Color del enlace */
    font-weight: bold;
}

.footer-content a:hover {
    color: #0096c7; /* Color al pasar el cursor */
}
