body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: #333; /* Color de texto oscuro para el fondo blanco del contenedor */
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container-vibrant {
    max-width: 700px;
    padding: 40px;
    background: #fff; /* Fondo del contenedor blanco */
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2); /* Sombra para dar profundidad */
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.logo-vibrant {
    max-width: 180px;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
}

.logo-vibrant:hover {
    transform: rotate(5deg) scale(1.05);
}

.main-heading-vibrant {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: none; /* Elimina la sombra para mejor legibilidad */
    margin-bottom: 10px;
    color: #2c3e50; /* Color oscuro que combina con el degradado */
}

.sub-description-vibrant {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #6c757d; /* Color gris para la descripción */
}

.social-icons-vibrant {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vibrant-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.vibrant-fb {
    background-color: #3b5998;
}
.vibrant-pinterest {
    background-color: #bd081c;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.contact-info-vibrant {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #495057;
}

.contact-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-info-vibrant p {
    margin: 5px 0;
    font-size: 1rem;
}