/* ================================================================
   LINKTREE - Hero, Botones, Header flotante, Redes sociales
   ================================================================ */

/* ── Header flotante ────────────────────────────── */
.linktree-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 1.5rem;
}
.linktree-header-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.linktree-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s ease;
    cursor: pointer;
}
.linktree-icon-btn:hover {
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(125, 91, 166, 0.15);
    color: var(--color-primary);
}
.linktree-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.linktree-header .dropdown-menu {
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.linktree-header .dropdown-item-text {
    font-size: 0.8rem;
}

/* ── Hero Linktree ──────────────────────────────── */
.hero-linktree {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #E6E6FA 0%, #DFD7F0 40%, #FFFFFF 100%);
    padding: 5rem 1rem 3rem;
    overflow: hidden;
}

.hero-container {
    max-width: 480px;
    width: 100%;
    text-align: center;
}

/* ── Logo circular ──────────────────────────────── */
.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-primary-light);
    box-shadow: 0 4px 20px rgba(125, 91, 166, 0.2);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}
.hero-logo:hover {
    transform: scale(1.05);
}

/* ── Bio ─────────────────────────────────────────── */
.hero-brand {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.hero-bio {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 0 1rem;
}
.hero-bio strong {
    color: var(--color-primary);
}

/* ── Prueba social ──────────────────────────────── */
.hero-social-proof {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    flex-wrap: wrap;
}
.hero-social-proof span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.hero-stars {
    color: #D4A853;
    letter-spacing: 1px;
}

/* ── Botones Linktree ───────────────────────────── */
.linktree-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.btn-linktree {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--border-radius-pill);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    text-align: left;
}
.btn-linktree-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(125, 91, 166, 0.2);
}
.btn-linktree-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 91, 166, 0.3);
}
.btn-linktree-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-linktree-outline:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}
.btn-linktree-light {
    background: var(--color-white);
    color: var(--color-text);
    box-shadow: 0 2px 8px rgba(125, 91, 166, 0.08);
    border: 1px solid var(--color-border);
}
.btn-linktree-light:hover {
    background: var(--color-surface);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 91, 166, 0.12);
}
.btn-linktree-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.btn-linktree-primary .btn-linktree-icon {
    background: rgba(255, 255, 255, 0.2);
}
.btn-linktree-outline .btn-linktree-icon {
    background: rgba(125, 91, 166, 0.1);
}
.btn-linktree-light .btn-linktree-icon {
    background: rgba(125, 91, 166, 0.06);
}
.btn-linktree-text {
    flex: 1;
    line-height: 1.3;
}
.btn-linktree-text small {
    display: block;
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.75rem;
    margin-top: 2px;
}

/* ── Redes sociales ─────────────────────────────── */
.hero-social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.hero-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--color-text-light);
    transition: all 0.2s ease;
}
.hero-social-link:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* ── Footer info hero ───────────────────────────── */
.hero-footer-info {
    margin-top: 2rem;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.hero-footer-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.hero-footer-link {
    color: var(--color-text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hero-footer-link:hover {
    color: var(--color-primary);
}

/* ── Flor decorativa ────────────────────────────── */
.hero-flor-decorativa {
    position: absolute;
    top: -10px;
    right: -20px;
    width: 290px;
    height: auto;
    opacity: 0.60;
    pointer-events: none;
    z-index: 0;
    transform: rotate(1deg);
    transition: all 0.5s ease;
}
.hero-flor-decorativa:hover {
    opacity: 0.4;
    transform: rotate(20deg) scale(1.05);
}

@media (max-width: 768px) {
    .hero-flor-decorativa {
        width: 100px;
        top: -10px;
        right: -10px;
        opacity: 0.4;
    }
}

/* ── Flor decorativa izquierda ──────────────────── */
.hero-flor-izquierda {
    position: absolute;
    top: 50%;
    left: -7px;
    width: 120px;
    height: auto;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    transform: translateY(-50%) rotate(-15deg);
    transition: all 0.5s ease;
}
.hero-flor-izquierda:hover {
    opacity: 0.5;
    transform: translateY(-50%) rotate(-10deg) scale(1.05);
}

@media (max-width: 768px) {
    .hero-flor-izquierda {
        width: 70px;
        left: -5px;
        top: 260px;
        opacity: 0.3;
    }
}

/* ── Testimonios sutiles ────────────────────────── */
.testimonios-sutiles {
    background: var(--color-surface);
    padding: 1.5rem 0;
    overflow: hidden;
}

.testimonios-sutiles-track {
    display: flex;
    gap: 2.5rem;
    animation: deslizarTestimonios 35s linear infinite;
    width: max-content;
}

.testimonio-sutil-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 340px;
}

.testimonio-sutil-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary-light);
    flex-shrink: 0;
}

.testimonio-sutil-texto {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.testimonio-sutil-nombre {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 500;
}

@keyframes deslizarTestimonios {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonios-sutiles:hover .testimonios-sutiles-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .testimonio-sutil-card {
        max-width: 280px;
        gap: 0.5rem;
    }
    .testimonio-sutil-img {
        width: 36px;
        height: 36px;
    }
    .testimonio-sutil-texto {
        font-size: 0.75rem;
    }
}