/* Import de fuentes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Great+Vibes&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #FFFFFF 0%, #F2C9B8 60%, #D3D3D3 100%);
    color: #000000;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Añadido margen superior para separar del navbar */
.profile_wrapper {
    padding: 15px 20px 20px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 60px; /* Ajusta este valor para el espacio sobre el contenido */
}

/* Si quieres que el margen superior sea menor en pantallas pequeñas */
@media (max-width: 640px) {
    .profile_wrapper {
        margin-top: 40px; /* Menor margen en móviles */
    }
}

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

.thumb {
    margin-top: 15px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #F2C9B8;
    box-shadow: 0 4px 12px rgba(242, 201, 184, 0.6);
}

.brand-calligraphy {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(242, 201, 184, 0.5);
    margin: 10px 0 8px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.profile_head_bio {
    margin-top: 6px;
}

.profile_head_bio p {
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 580px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

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

.SocialLink {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    background-color: #FFFFFF;
    padding: 11px 18px;
    border-radius: 10px;
    width: 100%;
    justify-content: center;
    max-width: 520px;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border: 1px solid #F2C9B8;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(242, 201, 184, 0.3);
}

.SocialLink:hover {
    background-color: #F2C9B8;
    color: #000000;
    border-color: #e5b39c;
    box-shadow: 0 5px 14px rgba(229, 179, 156, 0.4);
}

.asset-logo {
    width: 26px;
    height: 26px;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
    border-radius: 50%;
    transition: transform 0.25s ease;
    box-shadow: 0 0 0 2px rgba(242, 201, 184, 0.5);
}

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

.SocialLink_body h3 {
    margin: 0;
    font-size: 15px;
    color: #000000;
}

/* CTA Consulta */
.SocialLink.vibrar {
    background-color: #F2C9B8;
    color: #000000;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(242, 201, 184, 0.6);
    cursor: pointer;
    border-color: #F2C9B8;
    margin-bottom: 8px;
}

.SocialLink.vibrar:hover {
    background-color: #e5b39c;
    transform: scale(1.02);
}

.reserva-link .SocialLink_body h3 {
    font-size: 18px;
}

/* Toast */
.toast-welcome {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F2C9B8;
    color: #000000;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(242, 201, 184, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, top 0.4s ease, visibility 0.4s;
    pointer-events: none;
    z-index: 9999;
    border: 1px solid #D3D3D3;
    max-width: 90%;
}

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

/* Animaciones */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@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;
}

/* Responsive para pantallas más pequeñas */
@media (max-height: 700px) {
    .thumb {
        width: 85px;
        height: 85px;
        margin-top: 10px;
    }
    
    /* CAMBIO: ajuste responsivo del título por clase */
    .brand-calligraphy {
        font-size: 1.9rem;
        margin: 8px 0 6px;
    }
    
    .profile_head_bio p {
        font-size: 0.88rem;
    }
    
    .SocialLink {
        padding: 9px 16px;
    }
}

@media (min-height: 900px) {
    .profile_wrapper {
        margin-top: 80px; /* Más espacio en pantallas altas */
    }
}

.install-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #F2C9B8;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(242, 201, 184, 0.3);
    max-width: 520px;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    user-select: none;
    text-align: center;
}

.install-btn:hover {
    background-color: #F2C9B8;
    color: #000000;
    border-color: #e5b39c;
    box-shadow: 0 5px 14px rgba(229, 179, 156, 0.4);
    transform: scale(1.02);
}