
/*  Estilos Generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

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

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.logo img {
    max-width: 150px;
}

.telefono {
    color: #fff;
}

.telefono a {
    color: #fff;
    text-decoration: none;
}

/* Estilos de la Sección Hero */
#hero {
    background-color: #eee;
    padding: 50px 0;
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-image img {
    max-width: 400px;
}

.cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

/* Estilos de la Sección Servicios */
#servicios {
    padding: 50px 0;
    text-align: center;
}

.servicios-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.servicio {
    width: 300px;
    padding: 20px;
    margin: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.servicio i {
    font-size: 3em;
    margin-bottom: 10px;
    color: #007bff;
}

/* Estilos de la Sección Nosotros */
#nosotros {
    padding: 50px 0;
    background-color: #eee;
}

.nosotros-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

.nosotros-image img {
    max-width: 400px;
}

.nosotros-text {
    max-width: 600px;
}

/* Estilos de la Sección Contacto */
#contacto {
    padding: 50px 0;
    text-align: center;
}

.contacto-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contacto-form label {
    display: block;
    margin-bottom: 5px;
}

.contacto-form input[type="text"],
.contacto-form input[type="email"],
.contacto-form input[type="tel"],
.contacto-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contacto-form button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contacto-info {
    margin-top: 20px;
}

.contacto-info p {
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Media Queries (Responsive Design) */
@media (max-width: 768px) {
    #hero {
        flex-direction: column;
    }

    .hero-image img {
        max-width: 100%;
    }

    .nosotros-content {
        flex-direction: column;
    }

    .nosotros-image img {
        max-width: 100%;
    }

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

    .servicio {
        width: 80%;
    }
}