body {
    margin: 0;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, #d99af2, #c77ee8, #b56bdc);
    color: #333;
}

.logo {
    width: 300px;
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.menu {
    background-color: white;
    text-align: center;
    padding: 15px;
    position: sticky;
    top: 0;
}

.menu a {
    color: #a64ac9;
    text-decoration: none;
    margin: 15px;
    font-weight: bold;
}

.menu a:hover {
    color: #7b2cbf;
}

main {
    padding: 20px;
}

.tarjeta {
    background-color: white;
    margin: 25px auto;
    padding: 25px;
    max-width: 900px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

h1, h2 {
    text-align: center;
    color: #a64ac9;
}

p {
    text-align: justify;
    line-height: 1.6;
}

button {
    display: block;
    margin: 20px auto;
    padding: 12px 25px;
    background-color: #c77ee8;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #a64ac9;
}

.mensaje {
    text-align: center;
    color: #a64ac9;
    font-weight: bold;
}

.contenedor-servicios {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.galeria {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.imagen {
    width: 220px;
    height: 160px;
    background-color: #f0c8ff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b2cbf;
    font-weight: bold;
}

.correo {
    display: block;
    text-align: center;
    color: #a64ac9;
    font-weight: bold;
    text-decoration: none;
}

footer {
    background-color: white;
    text-align: center;
    padding: 20px;
    color: #a64ac9;
}

footer p {
    text-align: center;
}
.correo {
    display: block;
    margin: 15px auto;
    padding: 10px 20px;
    background-color: #c77ee8;
    color: white;
    border-radius: 20px;
    width: fit-content;
}

.correo:hover {
    background-color: #a64ac9;
}

.servicio {
    background-color: #f7e6ff;
    padding: 15px;
    border-radius: 15px;
    width: 200px;
    text-align: center;
}

header {
    background: linear-gradiant(135deg, #d99af2, #b56bdc);
    text-algin: center;
    padding: 30px 0;
}

.logo {
    animation: aparecerLogo 1.5s ease;
}

.tarjeta {
    animation: subirSuave 1s ease;
}

.servicio {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

button, .correo {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

button:hover, .correo:hover {
    transform: scale(1.05);
}

@keyframes aparecerLogo {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes subirSuave {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}