body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

header {
    background-color: white;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
    background-color: white; /* Establece el fondo blanco */
    padding: 10px; /* Opcional: agrega un poco de espacio alrededor del logo */
    border-radius: 5px; /* Opcional: agrega bordes redondeados */
}

.logo img {
    max-height: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero {
    background: linear-gradient(135deg, #e0f7fa, #b3e5fc);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #333;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

.whatsapp-button i {
    margin-right: 10px;
}

.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #007bff;
}

.card p {
    color: #666;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        max-width: 400px;
    }
}