@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    /* Fondo degradado: magenta suave hasta blanco */
    background: linear-gradient(180deg, #EAD1E6 0%, #FFFFFF 100%);
    color: #000000; /* Negro para texto */
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

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

.profile_head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thumb {
    margin-top: 25px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #E03B8B; /* Magenta acento */
}

.profile_head h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: #000000; /* Negro */
    margin-top: 0;
    margin-bottom: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
    .profile_head h1 { font-size: 2.4rem; }
}
@media (max-width: 480px) {
    .profile_head h1 { font-size: 1.8rem; }
}

.profile_head_bio {
    margin-top: 10px;
}

.profile_head_bio p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    font-style: italic;
    color: rgba(0, 0, 0, 0.7); /* Negro suavizado */
    line-height: 1.5;
}

.profile_links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.SocialLink {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000; /* Negro */
    background-color: #FFFFFF; /* Blanco */
    padding: 14px 20px;
    border-radius: 12px;
    width: 100%;
    justify-content: center;
    max-width: 560px;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border: 2px solid #E03B8B; /* Magenta */
    transition: all 0.3s ease;
}

.SocialLink:hover {
    background-color: #E03B8B; /* Hover magenta */
    color: #FFFFFF; /* Texto blanco */
    transform: scale(1.02);
}

.asset-logo {
    width: 28px;
    height: 28px;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.SocialLink:hover .asset-logo {
    transform: scale(1.2);
}

.SocialLink_body h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    color: #000000; /* Negro */
}

/* CTA */
.SocialLink.vibrar {
    background-color: #E03B8B; /* Magenta */
    color: #000000; /* Texto negro por defecto */
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(224,59,139,0.6);
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.SocialLink.vibrar:hover,
.SocialLink.vibrar:focus,
.SocialLink.vibrar:active {
    color: #FFFFFF; /* Texto blanco al hover, focus o active */
    background-color: #c62e74; /* Magenta más oscuro */
}

.reserva-link .SocialLink_body h3 {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: inherit; /* Hereda color del padre para que cambie con hover */
}

/* Toast */
.toast-welcome {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E03B8B; /* Magenta */
    color: #FFFFFF; /* Texto blanco */
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, top 0.4s ease, visibility 0.4s;
    pointer-events: none;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}

.toast-welcome.show {
    opacity: 1;
    visibility: visible;
    top: 20px;
    pointer-events: auto;
}

/* Animaciones */
@keyframes vibrar {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

.vibrar {
    animation: vibrar 0.2s linear infinite;
}

/* Responsivo */
@media (max-width: 768px) {
    .profile_head_bio p { font-size: 0.95rem; }
    .SocialLink { font-size: 0.95rem; }
    .SocialLink_body h3 { font-size: 15px; }
    .reserva-link .SocialLink_body h3 { font-size: 1.1rem; }
    .toast-welcome { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .profile_head_bio p { font-size: 0.9rem; }
    .SocialLink { font-size: 0.9rem; }
    .SocialLink_body h3 { font-size: 14px; }
    .reserva-link .SocialLink_body h3 { font-size: 1rem; }
    .toast-welcome { font-size: 0.8rem; }
}


body {
    background: linear-gradient(180deg, #FF66B3 0%, #FFFFFF 100%); /* Magenta suave a blanco */
    color: #2B2B2B;
}

.thumb {
    border: 3px solid #FF0099; /* Magenta intenso */
}

.SocialLink {
    border: 2px solid #FF0099;
    background-color: #FFFFFF;
    color: #2B2B2B;
}

.SocialLink:hover {
    background-color: #FF0099;
    color: #FFFFFF;
}

.SocialLink.vibrar {
    background-color: #FF0099;
    color: #2B2B2B;
    box-shadow: 0 4px 12px rgba(255,0,153,0.6);
}

.SocialLink.vibrar:hover,
.SocialLink.vibrar:focus,
.SocialLink.vibrar:active {
    background-color: #CC007A; /* Magenta más oscuro */
    color: #FFFFFF;
}

.toast-welcome {
    background-color: #FF0099;
    color: #FFFFFF;
}


