/* ==========================================================================
   TEASER ALL STYLE - CONFIGURAÇÕES GERAIS E DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-color: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.07);
    --text-primary: #ffffff;
    --text-secondary: #8e8e93;
    --accent-gold: #e5c158;
    --accent-whatsapp: #25d366;
    --accent-instagram: #e1306c;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glow-shadow: 0 0 15px rgba(255, 255, 255, 0.05);

    /* Cores Birdsystem */
    --bird-light: 203 84% 59%;   /* #42A0ED */
    --bird-medium: 207 69% 45%;  /* #267CC1 */
    --bird-purple: 258 80% 59%;  /* #7544EA */
    --bird-dark: 0 0% 9%;        /* #161616 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Ocultar barra de rolagem lateral (scroll) sem desabilitar o scroll */
html, body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera, Edge */
}


body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(10, 10, 12, 0.35), rgba(10, 10, 12, 0.35)), url('img/bg-graphic.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    pointer-events: none;
}


/* Efeito de brilho de fundo (Glow radial) */
.bg-glow {
    position: fixed;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Container Centralizador Mobile-First */
.container {
    width: 100%;
    max-width: 480px;
    padding: calc(40px + env(safe-area-inset-top, 0px)) 24px calc(60px + env(safe-area-inset-bottom, 0px)) 24px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ==========================================================================
   HEADER / PERFIL
   ========================================================================== */

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.logo-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.profile-logo {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    background-color: #000;
    object-fit: cover;
    padding: 2px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.logo-wrapper:hover .profile-logo {
    transform: scale(1.05);
    border-color: var(--text-primary);
}

/* Badge de Status Atendimento */
.status-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 12, 0.85);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-whatsapp);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-whatsapp);
    animation: pulseGlow 1.8s infinite;
}

/* Classe dinâmica para quando a loja estiver fechada */
.status-badge.offline {
    border-color: rgba(255, 59, 48, 0.3);
}

.status-badge.offline .status-dot {
    background-color: #ff3b30;
    box-shadow: 0 0 8px #ff3b30;
    animation: none;
}

.status-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #dfdfdf;
}

.profile-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.profile-bio {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 90%;
}

/* ==========================================================================
   LISTA DE LINKS
   ========================================================================== */

.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 1s ease-out;
}

/* Estilo Base dos Cards de Links */
.link-card {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

/* Efeito de luz sutil interna */
.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.link-card:hover::before {
    left: 125%;
}

.link-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.link-card:active {
    transform: translateY(0);
}

/* Ícone Lateral Limpo (Sem quadrado de fundo) */
.link-icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 24px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.link-card:hover .link-icon-bg {
    color: var(--accent-gold);
}

/* Textos do Link */
.link-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 2px;
}

.link-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.link-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
}

.link-arrow {
    font-size: 16px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.link-card:hover .link-arrow {
    transform: translateX(4px);
    color: var(--text-primary);
}

/* Específicos e Destaques */



/* Destaque Brilhante (Compre no Site) */
.store-card.highlight-glow {
    border-color: rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
}

.store-card.highlight-glow:hover {
    border-color: var(--text-primary);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.12);
}

.badge-new {
    background: var(--text-primary);
    color: #000;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 30px;
    margin-right: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}



/* ==========================================================================
   CARROSSEL DE PRODUTOS
   ========================================================================== */

.carousel-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 1.2s ease-out;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-fire {
    color: #ff5500;
    animation: firePulse 1.5s infinite alternate;
}

.section-tag {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Wrapper do Carrossel com botões laterais (visíveis em hover/desktop) */
.carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    padding: 8px 4px 16px 4px;
    scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Item do Carrossel */
.carousel-item {
    flex: 0 0 70%; /* Exibe 1.3 items na tela para indicar scroll */
    scroll-snap-align: start;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.carousel-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5; /* Padrão Streetwear / E-commerce */
    overflow: hidden;
    background-color: #111;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-item:hover .product-image {
    transform: scale(1.06);
}

.product-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}

.product-badge {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.product-meta {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-meta h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 4px;
}

.price-original {
    font-size: 11px;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.price-pix {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
}

.price-pix small {
    font-size: 9px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 2px;
}

.buy-now-btn {
    display: block;
    width: 100%;
    background: transparent;
    border: 1.5px solid var(--text-primary);
    color: var(--text-primary);
    text-align: center;
    padding: 10px 0;
    border-radius: 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.buy-now-btn:hover {
    background: var(--text-primary);
    color: #000;
}

/* Botões de Navegação (ocultos em mobile para priorizar gesto touch) */
.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

@media (min-width: 480px) {
    .carousel-wrapper:hover .carousel-btn {
        opacity: 1;
        pointer-events: auto;
    }
}

.prev-btn { left: -18px; }
.next-btn { right: -18px; }

.carousel-btn:hover {
    background: var(--text-primary);
    color: #000;
    border-color: var(--text-primary);
}

/* ==========================================================================
   SEÇÃO EXPANDIDA DE INFORMAÇÕES (GPS / HORÁRIO)
   ========================================================================== */

.info-section {
    animation: fadeInUp 1.4s ease-out;
}

.map-card-expanded {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(8px);
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.map-info h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.map-info h3 i {
    color: #ff3b30;
}

.map-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.hours-tag {
    font-size: 11px;
    color: var(--accent-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.primary-btn {
    background: var(--text-primary);
    color: #000;
    border: 1px solid var(--text-primary);
}

.primary-btn:hover {
    background: transparent;
    color: var(--text-primary);
}

/* ==========================================================================
   RODAPÉ E SHARE
   ========================================================================== */

.profile-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-top: 10px;
    animation: fadeInUp 1.6s ease-out;
}

.social-icons {
    display: flex;
    gap: 24px;
}

.social-icons a {
    font-size: 22px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.share-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.copyright {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.2px;
}

/* ==========================================================================
   ANIMAÇÕES E KEYFRAMES
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(0, 230, 118, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

@keyframes firePulse {
    from {
        transform: scale(1);
        filter: drop-shadow(0 0 2px rgba(255, 85, 0, 0.3));
    }
    to {
        transform: scale(1.15);
        filter: drop-shadow(0 0 8px rgba(255, 85, 0, 0.8));
    }
}

/* ==========================================================================
   MODAL DE CUPOM (POPUP)
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: #121214;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px 24px;
    width: 100%;
    max-width: 400px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--text-primary);
}

.modal-icon-header {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(229, 193, 88, 0.1);
    border: 1px solid rgba(229, 193, 88, 0.2);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 8px;
    animation: iconBounce 1s infinite alternate;
}

.modal-card h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.modal-card p strong {
    color: var(--text-primary);
}

.coupon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    margin: 8px 0;
}

.coupon-code {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.copy-coupon-btn {
    background: var(--text-primary);
    color: #000;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.copy-coupon-btn:hover {
    background: var(--accent-gold);
}

.modal-redirect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--text-primary);
    color: #000;
    border: 1px solid var(--text-primary);
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    margin-top: 8px;
}

.modal-redirect-btn:hover {
    background: transparent;
    color: var(--text-primary);
}

@keyframes iconBounce {
    from { transform: translateY(0); }
    to { transform: translateY(-6px); }
}

/* ==========================================================================
   MODAL DE LOCALIZAÇÃO (Nossa Loja Física)
   ========================================================================== */

.store-modal-card {
    max-width: 400px;
    background: #121214;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.store-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 8px;
    animation: iconBounce 1s infinite alternate;
}

.store-address {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hours-tag {
    font-size: 11px;
    color: var(--accent-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.map-actions-row {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 8px;
}

.map-actions-row .btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.maps-btn {
    background: transparent;
    color: #4285F4;
    border: 1.5px solid #4285F4;
}

.maps-btn:hover {
    background: #4285F4;
    color: #fff;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.waze-btn {
    background: transparent;
    color: #33CCFF;
    border: 1.5px solid #33CCFF;
}

.waze-btn:hover {
    background: #33CCFF;
    color: #fff;
    box-shadow: 0 4px 12px rgba(51, 204, 255, 0.3);
}

/* ==========================================================================
   ANIMAÇÕES EXTRA E ESTILOS COMPONENTES BIRDSYSTEM
   ========================================================================== */

@keyframes bird-magic {
  0% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(66, 160, 237, 0); }
  25% { transform: scale(1.3) rotate(5deg); box-shadow: 0 0 20px 10px rgba(66, 160, 237, 0.4); }
  50% { transform: scale(1.1) rotate(-3deg); box-shadow: 0 0 30px 15px rgba(117, 68, 234, 0.3); }
  75% { transform: scale(1.2) rotate(2deg); box-shadow: 0 0 25px 12px rgba(66, 160, 237, 0.35); }
  100% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(66, 160, 237, 0); }
}

@keyframes slide-up-bounce {
  0% { transform: translateY(100%); opacity: 0; }
  60% { transform: translateY(-10px); opacity: 1; }
  80% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* BOTÃO FLUTUANTE BIRDSYSTEM & COMPARTILHAMENTO NO TOPO */
.bird-floating-btn {
    position: fixed;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 99;
    transition: var(--transition-smooth);
}

.bird-floating-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.bird-floating-btn:active {
    transform: scale(0.95);
}

.bird-floating-btn.animating {
    animation: bird-magic 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bird-btn-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.bird-floating-btn:hover .bird-btn-logo {
    transform: scale(1.1) rotate(10deg);
}

.bird-floating-btn.animating .bird-btn-logo {
    transform: scale(1.15) rotate(12deg);
}

.pulse-effect {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    pointer-events: none;
}

.bird-floating-btn.animating .pulse-effect {
    animation: ping 1s ease-out;
    opacity: 1;
}

@keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.share-top-btn {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 99;
    transition: var(--transition-smooth);
    color: var(--text-primary);
    font-size: 20px;
}

.share-top-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.share-top-btn:active {
    transform: scale(0.95);
}

/* Responsividade para centralização em telas maiores */
@media (min-width: 528px) {
    .bird-floating-btn {
        left: calc(50% - 240px + 24px);
    }
    .share-top-btn {
        right: calc(50% - 240px + 24px);
    }
}

/* PAINEL PROMOCIONAL BIRDSYSTEM */
.bird-promo-panel {
    background: linear-gradient(135deg, hsl(var(--bird-light)) 0%, hsl(var(--bird-medium)) 50%, hsl(var(--bird-purple)) 100%);
    width: 100%;
    max-width: 400px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .bird-promo-panel {
    transform: scale(1);
    animation: slide-up-bounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bird-glow-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 128px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.bird-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsl(var(--bird-medium));
    border: none;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    z-index: 10;
}

.bird-close-btn:hover {
    background: hsl(var(--bird-light));
    transform: scale(1.1);
}

.bird-panel-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.bird-logo-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: bounce-subtle 3s infinite ease-in-out;
}

.bird-panel-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.bird-promo-panel h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.bird-promo-panel p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 280px;
}

.bird-example-link-box {
    width: 100%;
    max-width: 280px;
    background: #ffffff;
    border-radius: 30px;
    padding: 14px 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.bird-example-link-box span {
    color: #161616;
    font-weight: 600;
    font-size: 14px;
}

.bird-cta-btn {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    background: #161616;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.bird-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(66, 160, 237, 0.4);
    border-color: rgba(66, 160, 237, 0.3);
}

.bird-cta-btn:active {
    transform: scale(0.98);
}

.shimmer-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2.5s infinite linear;
}

.bird-sec-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.bird-sec-link {
    color: #42A0ED;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bird-sec-link:hover {
    color: #ffffff;
}

.sparkle-1, .sparkle-2 {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite alternate;
}

.sparkle-1 {
    top: 24px;
    left: 32px;
    font-size: 24px;
}

.sparkle-2 {
    top: 56px;
    right: 56px;
    font-size: 16px;
}

/* MODAL COMPARTILHAR BIRDSYSTEM */
.share-modal-card {
    background: linear-gradient(135deg, hsl(var(--bird-light)) 0%, hsl(var(--bird-medium)) 50%, hsl(var(--bird-purple)) 100%) !important;
    border: none !important;
    padding: 0 !important;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.share-modal-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.profile-preview-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 16px;
}

.preview-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #000;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.preview-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.preview-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.share-option-item {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.share-option-item:hover {
    transform: translateY(-2px);
}

.share-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.share-option-item:hover .share-icon-circle {
    transform: scale(1.1);
}

.bg-copy {
    background: linear-gradient(135deg, hsl(var(--bird-light)) 0%, hsl(var(--bird-medium)) 100%);
}

.bg-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.bg-facebook {
    background: #1877F2;
}

.bg-whatsapp {
    background: #25D366;
}

.share-option-item span {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
}

.share-modal-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
}

.share-promo-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.share-promo-block h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.share-promo-block p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 8px !important;
}

.share-promo-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

.share-promo-cta {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: 280px;
    background: #161616;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
}

.share-promo-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(66, 160, 237, 0.3);
}

.share-promo-info-link {
    font-size: 12px;
    color: #42A0ED;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.share-promo-info-link:hover {
    color: #ffffff;
}

/* ==========================================================================
   TOAST NOTIFICATION (BIRD SYSTEM / TEASER FEEDBACK)
   ========================================================================== */
.toast-notification {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-notification.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--accent-gold);
    font-size: 18px;
}
