/* ================= GOOGLE REVIEW FLOAT (Top-Right) ================= */
.google-review-float {
    position: fixed;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #FFF8E1, #FFFFFF);
    border: 2px solid #FFB703;
    border-radius: 50px;
    color: #333;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 18px rgba(255, 183, 3, 0.35), 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    animation: googleShimmer 3s ease-in-out infinite;
    overflow: hidden;
}

.google-review-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.25), transparent);
    animation: shimmerSlide 3s ease-in-out infinite;
}

.google-review-float .google-star {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.google-review-float .google-review-text {
    letter-spacing: 0.3px;
}

.google-review-float:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 24px rgba(255, 183, 3, 0.5), 0 3px 8px rgba(0,0,0,0.2);
}

@keyframes shimmerSlide {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes googleShimmer {
    0%, 100% { box-shadow: 0 4px 18px rgba(255, 183, 3, 0.35), 0 2px 6px rgba(0,0,0,0.15); }
    50% { box-shadow: 0 4px 22px rgba(255, 183, 3, 0.55), 0 2px 8px rgba(0,0,0,0.2); }
}

/* Ajuste móvil */
@media (max-width: 480px) {
    .google-review-float {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
        gap: 4px;
    }

    .google-review-float .google-star {
        font-size: 0.95rem;
    }
}

/* ================= SOCIAL FLOAT ================= */
.instagram-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-border 2s infinite;
}

.instagram-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(214, 36, 159, 0.6);
}

.instagram-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 89, 73, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(253, 89, 73, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 89, 73, 0);
    }
}

/* Ajuste móvil para que no estorbe */
@media (max-width: 480px) {
    .instagram-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .instagram-float svg {
        width: 26px;
        height: 26px;
    }
}