:root {
    /* === CORES PRINCIPAIS (ESTILO PRIME VIDEO) === */
    --primary: #0F79AF;
    --primary-dark: #0A5E8A;
    --primary-light: #1E96D4;
    --primary-rgb: 15, 121, 175;

    --accent: #FF9900;
    --accent-dark: #E68A00;
    --yellow-star: #FF9900;

    /* === ESCALA DE AZUIS === */
    --blue-darkest: #0B1A2A;
    --blue-darker: #1A2C3E;
    --blue-dark: #0F79AF;
    --blue-medium: #1E96D4;
    --blue-light: #6AB0DE;
    --blue-lighter: #AAD0F0;

    /* === ESCALA DE CINZAS === */
    --black: #000000;
    --gray-900: #0B1A2A;
    --gray-850: #1A2C3E;
    --gray-800: #2C3E50;
    --dark-blue: #1A2C3E;
    --medium-blue: #2C3E50;

    --white: #FFFFFF;
    --gray-300: #BDC3C7;
    --gray-200: #E5E7E9;
    --gray-100: #F4F6F7;
    --gray-500: #7F8C8D;

    --light-text: var(--white);
    --accent-color: var(--accent);

    /* === GRADIENTES === */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --gradient-blue: linear-gradient(135deg, #0F79AF 0%, #0A5E8A 100%);

    /* === TIPOGRAFIA === */
    --font-primary: 'Amazon Ember', 'Poppins', sans-serif;
    --font-secondary: 'Amazon Ember', 'Poppins', sans-serif;
    --font-size-sm: 0.9rem;
    --font-size-base: 1rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.3rem;
    --font-size-2xl: 1.6rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.8rem;
    --font-size-5xl: 3.5rem;

    /* === ESPAÇAMENTO === */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* === BORDAS === */
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    /* === SOMBRAS === */
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 30px rgba(0,0,0,0.18);
    --shadow-2xl: 0 25px 50px -10px rgba(0,0,0,0.25);
    --shadow-glow-primary: 0 0 35px rgba(15, 121, 175, 0.4);
    --shadow-glow-accent: 0 0 35px rgba(255, 153, 0, 0.4);
    --shadow-soft: 0 2px 20px rgba(0,0,0,0.08);
    --text-shadow: 0px 2px 8px rgba(0,0,0,0.7);

    /* === TRANSIÇÕES === */
    --transition-fast: 0.2s ease-out;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* === Z-INDEX === */
    --z-fixed: 1030;
    --z-bottom-nav: 1020;
    --z-modal: 2000;
    --z-toast: 3000;
}

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: var(--font-primary);
    background-color: var(--gray-900);
    background-image: linear-gradient(rgba(11,26,42,0.7), rgba(11,26,42,0.8)), url('https://i.postimg.cc/ry5M4cjB/Imagem-do-Whats-App-de-2025-07-26-s-08-57-44-bd99e54a.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 80px;
}

/* === HEADER (GLASS) === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--space-3) 0;
    background: rgba(11, 26, 42, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 3px 15px rgba(15, 121, 175, 0.3));
    transition: all var(--transition-bounce);
}
.logo:hover { transform: scale(1.05); }

.header-right-side {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-grow: 1;
    justify-content: flex-end;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}
.main-nav a, .main-nav .icon-btn {
    color: var(--gray-200);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: color var(--transition-fast);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}
.main-nav a:hover, .main-nav .icon-btn:hover { color: var(--white); }
.main-nav .icon-btn { font-size: 1.2rem; }
.main-nav .nav-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.main-nav .nav-cta:hover {
    background-color: var(--primary-light);
    transform: scale(1.05);
}

/* === SECTIONS === */
.section {
    padding: var(--space-20) 0;
    position: relative;
    background: transparent;
    transition: opacity 0.5s ease-out, max-height 0.7s ease-in-out, padding 0.7s ease-in-out;
    overflow: hidden;
    max-height: 5000px;
}
.section[hidden] {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    max-height: 0 !important;
    opacity: 0;
}
.section-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}
.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
    font-weight: 800;
    margin-bottom: var(--space-5);
    color: var(--white);
    letter-spacing: -0.02em;
    transition: text-shadow 0.3s ease;
}
.section-title:hover {
    text-shadow: 0 0 8px var(--primary);
}
.section-title span.highlight-primary {
    color: var(--primary);
    filter: drop-shadow(0 0 15px rgba(15, 121, 175, 0.3));
}
.section-title span.highlight-accent {
    color: var(--accent);
    filter: drop-shadow(0 0 15px rgba(255, 153, 0, 0.4));
}
.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-300);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* === VISIBILITY CONTROL === */
.for-clients { display: none !important; }
body.is-client-view .for-visitors { display: none !important; }
body.is-client-view .main-nav a.for-clients,
body.is-client-view .main-nav button.for-clients,
body.is-client-view .mobile-nav a.for-clients,
body.is-client-view .mobile-nav button.for-clients,
body.is-client-view button.for-clients,
body.is-client-view section.for-clients {
    display: block !important;
}
body.is-client-view .mobile-nav a.for-clients,
body.is-client-view .mobile-nav button.for-clients {
    display: flex !important;
}

/* === HERO (COM MOVIMENTO) === */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-16) 0;
    transition: background-image 1s ease-in-out;
    background-color: var(--black);
}
.hero::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('https://i.postimg.cc/ry5M4cjB/Imagem-do-Whats-App-de-2025-07-26-s-08-57-44-bd99e54a.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroZoom 20s ease-in-out infinite alternate;
    filter: brightness(0.7);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--gray-900) 20%, rgba(11, 26, 42, 0.7) 50%, rgba(11, 26, 42, 0) 80%);
    z-index: 1;
}
.hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--space-5);
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hero-content {
    background: transparent;
    backdrop-filter: none;
    border: none;
    max-width: 45%;
    text-align: left;
    margin: 0;
    padding: 0;
}
.greeting-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-3);
}
.hero-greeting {
    color: var(--primary-light);
    font-weight: 600;
    font-size: var(--font-size-lg);
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    margin: 0;
}
.hero-greeting .plan-name {
    color: var(--gray-200);
    font-weight: 400;
}
.btn-change-plan {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 600;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    align-items: center;
    gap: var(--space-2);
}
.btn-change-plan:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
}
.btn-change-plan i { font-size: 0.9em; }
.hero-title {
    font-family: var(--font-secondary);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: var(--space-6);
    color: var(--white);
    text-shadow: var(--text-shadow);
    letter-spacing: -0.025em;
    font-size: clamp(var(--font-size-3xl), 5.5vw, 4.2rem);
}
.hero-title .highlight-accent,
.hero-title .highlight-primary {
    text-shadow: 0 0 8px currentColor;
}
.hero-subtitle {
    color: var(--gray-200);
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin-bottom: var(--space-10);
    max-width: 550px;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--accent);
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
    padding: var(--space-5) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow-accent);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}
.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-2xl), 0 0 50px rgba(255, 153, 0, 0.6);
    border-color: rgba(255,255,255,0.2);
    background: var(--accent-dark);
}
.hero-cta:active {
    transform: translateY(2px);
    transition: transform 0.05s linear;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* === CARDS (GLASS) === */
.card-base {
    backdrop-filter: blur(15px) saturate(120%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xl);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.card-base:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(15, 121, 175, 0.5);
    z-index: 10;
}
.offering-card {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.offering-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.offering-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
    margin-top: var(--space-5);
    padding: 0 var(--space-4);
}
.offering-card p {
    color: var(--gray-200);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    padding: var(--space-2) var(--space-4) var(--space-5);
    flex-grow: 1;
}
.pricing-card .pricing-card-content,
.offering-card,
.referral-card,
.showcase-card {
    backdrop-filter: blur(25px);
    background: rgba(26, 44, 62, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}
.pricing-card .pricing-card-content {
    background-color: transparent;
}
.modal-content {
    backdrop-filter: blur(30px) saturate(180%);
    background-color: rgba(26, 44, 62, 0.75);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.whatsapp-float {
    background-color: #25d366;
    backdrop-filter: none;
}
.card-base { background: transparent; }

/* === SWIPER === */
.swiper-container {
    width: 100%;
    padding-bottom: var(--space-12);
}
.swiper-slide {
    text-align: center;
    background: transparent;
    height: auto;
}
.media-item-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.media-item-wrapper .card-base-content { cursor: pointer; }
.media-card {
    background-color: var(--gray-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 2 / 3;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.media-card-social {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-3);
    font-size: 0.8rem;
    color: var(--gray-200);
    display: flex;
    gap: var(--space-3);
}
.media-card-social i {
    color: var(--accent);
    margin-right: 4px;
}
.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-grow: 1;
}
.media-title {
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-top: var(--space-3);
    padding: 0 var(--space-2) var(--space-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.action-buttons-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}
.media-item-wrapper:hover .action-buttons-overlay {
    opacity: 1;
    visibility: visible;
}
.action-buttons-overlay .icon-action-btn {
    background: rgba(0,0,0,0.7);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.action-buttons-overlay .icon-action-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}
.icon-action-btn.added {
    background: var(--primary);
    color: var(--white);
}
.icon-action-btn.add-to-list-btn.added .fa-plus-circle::before { content: "\f058"; }
.icon-action-btn.add-to-reminders-btn.added .fa-bell::before { content: "\f0f3"; }
.swiper-button-next, .swiper-button-prev { color: var(--primary-light); }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* === LIVE CHANNELS === */
#live-channels .section-container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-8);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-xl);
}
#channels-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}
.pricing-card {
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: var(--dark-blue);
    display: flex;
    flex-direction: column;
    min-height: 450px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--shadow-glow-primary);
}
.pricing-card::before {
    content: 'PLANO';
    position: absolute;
    top: 18px;
    right: -45px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 40px;
    font-weight: 700;
    font-size: 0.8rem;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.giftcard-body {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.giftcard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-6);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: var(--space-5);
}
.giftcard-header .pricing-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}
.giftcard-header .price-tag {
    background: var(--accent);
    color: var(--black);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 800;
    margin: 0;
    text-align: center;
    min-width: 100px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.giftcard-header .price-amount {
    font-size: 1.5rem;
    line-height: 1;
}
.giftcard-header .price-currency,
.giftcard-header .price-cents,
.giftcard-header .price-period { display: none; }
.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-6);
    flex-grow: 1;
    padding: 0;
}
.features-list li {
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-base);
    color: var(--gray-200);
}
.features-list .fa-check-circle { color: var(--primary); }
.pricing-cta {
    display: block;
    width: 100%;
    font-weight: 700;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: var(--primary);
    color: var(--white);
    transition: all var(--transition-fast);
    text-align: center;
    margin-top: auto;
    text-decoration: none;
    box-shadow: var(--shadow-glow-primary);
    font-size: var(--font-size-lg);
}
.pricing-cta:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}
.included-services-strip p {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-4) 0;
}

/* === MODALS === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: var(--space-4);
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}
.modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-8) var(--space-6);
}
.modal-overlay.active .modal-content { transform: scale(1); }
.modal-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
    line-height: 1;
}
.modal-close:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}
.modal-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: var(--space-6);
    border-radius: var(--radius-lg);
    background-color: var(--black);
}
.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.modal-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
    text-align: center;
}
.modal-overview {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: var(--space-6);
    text-align: center;
}
.modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}
.modal-body { text-align: center; }
#share-btn, #watch-together-btn {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
#share-btn:hover, #watch-together-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* === PLAN SELECTION === */
.plan-selection-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}
.plan-option {
    background: var(--gray-800);
    border: 2px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.plan-option:hover { border-color: var(--primary); }
.plan-option.selected {
    border-color: var(--primary);
    background: rgba(15, 121, 175, 0.1);
}
.plan-option input[type="radio"] { display: none; }
.plan-option-title {
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--white);
    margin-bottom: var(--space-2);
}
.plan-option-desc {
    font-size: var(--font-size-sm);
    color: var(--gray-300);
}
.plan-item-view {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.plan-item-view .plan-details { text-align: left; }
.plan-item-view .plan-details h4 {
    margin: 0;
    font-size: var(--font-size-lg);
}
.plan-item-view .plan-details p {
    margin: 0;
    color: var(--gray-300);
    font-size: var(--font-size-sm);
}
.plan-item-view .plan-status {
    font-weight: 700;
    font-size: var(--font-size-sm);
}
.plan-item-view.current .plan-status { color: var(--accent); }
.plan-item-view:not(.current) .plan-status {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}
.plan-item-view:not(.current) .plan-status:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* === LOADER (DEFAULT) === */
.loader {
    display: none;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: var(--space-12) auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === SKELETON LOADER (NOVO) === */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite linear;
    border-radius: var(--radius-md);
}
.skeleton-text {
    height: 1em;
    width: 100%;
    margin-bottom: 0.5em;
}
.skeleton-title {
    height: 1.5rem;
    width: 60%;
    margin-bottom: 1rem;
}
.skeleton-card {
    aspect-ratio: 2 / 3;
    width: 100%;
    border-radius: var(--radius-lg);
}
.skeleton-card-text {
    height: 0.8rem;
    width: 80%;
    margin-top: 0.5rem;
}
.skeleton-circle {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}
.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-5);
}
.skeleton-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === ANIMATIONS === */
.slide-up-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.slide-up-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === FOOTER === */
.footer {
    padding: var(--space-12) 0;
    background: var(--black);
    text-align: center;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}
.footer-logo {
    height: 60px;
    margin-bottom: var(--space-6);
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}
.footer-social-link {
    color: var(--gray-300);
    font-size: var(--font-size-2xl);
    transition: all var(--transition-fast);
}
.footer-social-link:hover {
    color: var(--primary);
    transform: scale(1.2);
}
.footer-bottom {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
}

/* === SHOWCASE === */
.showcase-container {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-top: var(--space-12);
    background-color: transparent;
}
.showcase-image {
    flex: 1 1 55%;
    min-height: 450px;
    height: 100%;
}
.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-2xl);
}
.showcase-card {
    flex: 1 1 45%;
    padding: var(--space-8) var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--radius-2xl);
}
.showcase-card-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}
.showcase-card-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-300);
    margin-bottom: var(--space-8);
}
.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-10);
}
.benefits-list li {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* === ENGAGEMENT POPUP === */
.engagement-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: rgba(26, 44, 62, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    flex-direction: column;
    max-width: 280px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.engagement-popup.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.engagement-popup p {
    margin: 0 0 10px 0;
    font-size: var(--font-size-md);
    line-height: 1.4;
}
.engagement-popup .popup-cta {
    background-color: #25d366;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}
.engagement-popup .popup-cta:hover { background-color: #1da851; }
.engagement-popup .popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

/* === TESTIMONIALS === */
.testimonial-card {
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 320px;
    background: rgba(26,44,62,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
}
.testimonial-card .author-info {
    font-weight: 600;
    color: var(--gray-300);
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: var(--space-4);
    width: 100%;
}
.testimonial-card .author-info .author-location {
    font-weight: 400;
    color: var(--gray-500);
}
.quote-testimonial { justify-content: center; }
.quote-testimonial blockquote {
    font-size: 1.1rem;
    margin: 0;
    color: var(--white);
    font-style: italic;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.quote-avatar {
    font-size: 2.5rem;
    background-color: var(--gray-800);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    flex-shrink: 0;
}
.feature-testimonial { justify-content: center; }
.feature-testimonial .feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    flex-shrink: 0;
}
.feature-testimonial .feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.feature-testimonial .feature-text {
    font-size: 1rem;
    color: var(--gray-200);
    line-height: 1.6;
    flex-grow: 1;
}
.short-testimonial { justify-content: center; }
.short-testimonial .short-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}
.trending-testimonial { justify-content: center; }
.trending-testimonial .trending-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    flex-shrink: 0;
}
.trending-testimonial .trending-text {
    font-size: 1.1rem;
    color: var(--gray-200);
    font-style: italic;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dm-testimonial {
    padding: 0;
    overflow: hidden;
    text-align: left;
    justify-content: flex-start;
}
.dm-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--dark-blue);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dm-avatar {
    font-size: 1.5rem;
    background: var(--gray-800);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dm-author {
    font-weight: 700;
    color: var(--white);
}
.dm-body {
    padding: 20px;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}
.poll-testimonial {
    text-align: left;
    justify-content: space-between;
}
.poll-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.poll-option { margin-bottom: 12px; }
.poll-option-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--gray-200);
}
.poll-bar {
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    height: 10px;
    overflow: hidden;
}
.poll-bar-fill {
    background: var(--primary);
    height: 100%;
    border-radius: 5px;
}
.top-pick-testimonial {
    padding: 0;
    overflow: hidden;
    position: relative;
    justify-content: flex-end;
    align-items: flex-start;
}
.top-pick-banner {
    position: absolute;
    top: 20px;
    left: -40px;
    background: var(--accent);
    color: var(--black);
    padding: 5px 40px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    transform: rotate(-45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.top-pick-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
    transition: transform 0.4s ease;
}
.top-pick-testimonial:hover .top-pick-cover { transform: scale(1.1); }
.top-pick-content {
    padding: 20px;
    z-index: 1;
    background: linear-gradient(to top, rgba(11,26,42,1) 20%, rgba(11,26,42,0) 100%);
    width: 100%;
    margin-top: auto;
}
.top-pick-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
}
#testimonials-swiper { padding-bottom: 60px; }
#testimonials .swiper-slide {
    width: 320px;
    height: 380px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.7;
}
#testimonials .swiper-slide-active,
#testimonials .swiper-slide-next,
#testimonials .swiper-slide-prev { opacity: 1; }
#testimonials .swiper-slide-active {
    transform: scale(1.05);
    z-index: 1;
}

/* === REFERRAL === */
.referral-container {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-top: var(--space-12);
}
.referral-image {
    flex: 1 1 50%;
    min-height: 450px;
}
.referral-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-2xl);
}
.referral-card {
    flex: 1 1 50%;
    padding: var(--space-8) var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--radius-2xl);
}
.referral-card .invite-option {
    background: transparent;
    padding: 0;
}
.referral-card .invite-option:first-of-type { margin-bottom: var(--space-8); }
.referral-card .or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--gray-500);
    font-weight: 600;
    margin: var(--space-6) 0;
}
.referral-card .or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--gray-800);
}
.referral-card .or-divider:not(:empty)::before { margin-right: .25em; }
.referral-card .or-divider:not(:empty)::after { margin-left: .25em; }

/* === TOAST === */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--black);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-toast);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    opacity: 0;
    transform: translate(-50%, 20px);
    transition: all 0.4s ease-out;
}
.toast-notification.show {
    opacity: 1;
    transform: translate(-50%, 0);
}
.toast-notification .fas { font-size: 1.5rem; }
.toast-text strong { display: block; font-weight: 700; }
.toast-text span { font-size: var(--font-size-sm); }

/* === SHARE MODAL === */
#share-modal .share-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}
#share-modal .share-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--white);
    text-decoration: none;
}
#share-modal .share-link i {
    font-size: 2.5rem;
    transition: color 0.2s;
}
#share-modal .share-link:hover i.fa-whatsapp { color: #25D366; }
#share-modal .share-link:hover i.fa-twitter { color: #1DA1F2; }
#share-modal .share-link:hover i.fa-copy { color: var(--primary); }

/* === INVITE === */
.invite-option {
    background: rgba(255,255,255,0.05);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    text-align: center;
}
.invite-option h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
    color: var(--white);
}
.invite-option p {
    font-size: var(--font-size-sm);
    color: var(--gray-300);
    margin-bottom: var(--space-4);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.whatsapp-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: var(--space-4);
    transition: border-color var(--transition-fast);
}
.whatsapp-input-group span {
    font-weight: 600;
    color: var(--gray-300);
}
.whatsapp-input-group input {
    border: none;
    background: transparent;
    width: 100%;
    padding: var(--space-3);
    color: var(--white);
    font-size: var(--font-size-base);
    outline: none;
}
.whatsapp-input-group:focus-within { border-color: var(--primary); }
.invite-option .hero-cta {
    width:100%;
    margin-top: var(--space-4);
    font-size: var(--font-size-base);
    padding: var(--space-3) var(--space-6);
    justify-content: center;
}
#copy-invite-link-btn, #copy-referral-link-btn { background: var(--primary); }
.contact-picker-btn {
    background: var(--primary);
    color: var(--white);
    padding: 0 var(--space-3);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-left: -1px;
    height: 100%;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}
.contact-picker-btn:hover { filter: brightness(1.1); }

/* === APP STORE BUTTON === */
.btn-app-store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
    transition: all var(--transition-bounce);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-app-store:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-2xl), 0 0 45px rgba(15, 121, 175, 0.5);
    background: var(--primary-dark);
    filter: brightness(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-app-store i { font-size: 1.2em; }

/* === PWA BANNER === */
#install-pwa-banner {
    position: fixed;
    bottom: -150px;
    left: 10px;
    right: 10px;
    background: rgba(26, 44, 62, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1025;
    display: none;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    gap: var(--space-4);
    border-radius: var(--radius-lg);
    transition: bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xl);
}
#install-pwa-banner.show { bottom: 85px; }
.pwa-logo {
    height: 44px;
    width: 44px;
    border-radius: var(--radius-md);
}
.pwa-text {
    flex-grow: 1;
    color: var(--white);
}
.pwa-text strong {
    font-size: var(--font-size-base);
    display: block;
}
.pwa-text span {
    font-size: var(--font-size-sm);
    color: var(--gray-300);
}
.pwa-install-btn {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-4);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.pwa-install-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}
.pwa-close-btn {
    background: none;
    border: none;
    color: var(--gray-300);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 var(--space-2);
    line-height: 1;
}

/* === SOCIAL PROOF === */
.social-proof-hub {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 2900;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}
.social-proof-popup {
    background: rgba(26, 44, 62, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.social-proof-popup.show {
    opacity: 1;
    transform: translateX(0);
}
.social-proof-popup.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}
.social-proof-popup.clickable:hover {
    transform: translateX(0) scale(1.05);
    border-color: var(--primary);
    background: rgba(40, 40, 50, 0.95);
}
.social-proof-popup i {
    font-size: 1.4rem;
    color: var(--primary-light);
    flex-shrink: 0;
}
.social-proof-popup p {
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.5;
}
.social-proof-popup b {
    font-weight: 700;
    color: var(--white);
}
.social-proof-popup .highlight { color: var(--accent); }

/* === ACHIEVEMENTS === */
.achievements-profile {
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
    text-align: left;
}
.achievements-profile-header {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    margin-bottom: var(--space-5);
}
.achievements-level-badge {
    background: var(--accent);
    color: var(--black);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    line-height: 1;
}
.achievements-level-badge span:first-child {
    font-size: 0.7rem;
    font-weight: 700;
}
.achievements-level-badge span:last-child { font-size: 1.5rem; }
.achievements-progress-info h4 {
    margin: 0;
    font-size: var(--font-size-xl);
}
.achievements-progress-info p {
    margin: 0;
    color: var(--gray-300);
    font-size: var(--font-size-sm);
}
.xp-progress-bar-container {
    background: rgba(0,0,0,0.4);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 10px;
}
.xp-progress-bar {
    background: var(--primary);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease-out;
}
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space-6);
}
.achievement-badge {
    text-align: center;
    cursor: pointer;
}
.achievement-icon-wrapper {
    background: var(--gray-800);
    border: 2px solid var(--gray-850);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.achievement-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--gray-500);
    transition: all var(--transition-fast);
}
.achievement-badge.unlocked .achievement-icon-wrapper {
    background: var(--accent-dark);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow-accent);
}
.achievement-badge.unlocked .achievement-icon-wrapper i { color: var(--accent); }
.achievement-badge:hover .achievement-icon-wrapper {
    transform: scale(1.1);
    border-color: var(--primary);
}
.achievement-title {
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--gray-300);
}
.achievement-badge.unlocked .achievement-title { color: var(--white); }

/* === MOOD SELECTOR === */
.mood-selector-container {
    margin-bottom: var(--space-12);
}
.mood-selector-container h3 {
    font-size: var(--font-size-2xl);
    text-align: center;
    margin-bottom: var(--space-6);
}
.mood-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}
.mood-pill {
    background: var(--gray-800);
    color: var(--white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 600;
    border: 2px solid transparent;
}
.mood-pill:hover,
.mood-pill.active {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    border-color: var(--primary-light);
}
.mood-pill i { margin-right: var(--space-3); }

/* === SEARCH RESULTS === */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-5);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .discovery-hub-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    body { padding-bottom: 80px; }
    .social-proof-hub {
        left: 10px;
        right: 10px;
        bottom: 85px;
        align-items: center;
    }
    .social-proof-popup {
        width: 100%;
        max-width: none;
    }
    .header-right-side {
        gap: var(--space-3);
        flex-grow: initial;
    }
    .main-nav { display: none; }
    #install-pwa-banner { display: flex; }
    .hero { min-height: calc(80vh - 70px); }
    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(11, 26, 42, 0.85);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: var(--z-bottom-nav);
        justify-content: space-around;
        align-items: center;
        padding: 0 var(--space-2);
    }
    .mobile-nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        color: var(--gray-300);
        padding: var(--space-2);
        font-size: 0.7rem;
        transition: color var(--transition-fast);
    }
    .mobile-nav-link.active { color: var(--primary-light); }
    .mobile-nav-link .mobile-nav-icon { font-size: 1.25rem; }
    .hero-content {
        max-width: 90%;
        padding-right: 1rem;
    }
    .hero::after {
        background: linear-gradient(to right, var(--gray-900) 25%, rgba(11, 26, 42, 0.75) 65%, rgba(11, 26, 42, 0) 90%);
    }
    .hero-title { font-size: clamp(2rem, 7.5vw, 2.6rem); }
    .greeting-wrapper { flex-direction: column; align-items: flex-start; }
    .modal-overlay.active { padding: 16px; }
    .modal-content {
        padding: 24px 16px 20px;
        max-height: calc(100vh - 32px);
    }
    .modal-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        background-color: rgba(0, 0, 0, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 2050;
    }
    .modal-title { font-size: var(--font-size-2xl); }
    .modal-overview { max-height: 120px; }
    .search-results-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: var(--space-4);
    }
    .search-results-grid .media-title {
        font-size: 0.8rem;
        margin-top: var(--space-2);
    }
    .toast-notification {
        width: calc(100% - 40px);
        bottom: 90px;
    }
    .showcase-container,
    .referral-container { flex-direction: column; }
    .showcase-image,
    .showcase-card,
    .referral-image,
    .referral-card {
        flex-basis: auto;
        width: 100%;
    }
    .showcase-image,
    .referral-image { min-height: 300px; }
    .showcase-card,
    .referral-card { padding: var(--space-8) var(--space-6); }
    .main-nav { gap: var(--space-4); }
}

/* === EXTRA ANIMATIONS === */
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
.pricing-card:nth-child(2) {
    animation: floatAnimation 6s ease-in-out infinite;
}
.card-base,
.offering-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* === BUTTON RESET === */
.main-nav button,
.mobile-nav button.mobile-nav-link,
#share-modal button.share-link {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    cursor: pointer;
    text-align: inherit;
    line-height: inherit;
    transition: color var(--transition-fast);
}
.main-nav button {
    color: var(--gray-200);
    font-weight: 500;
    font-size: var(--font-size-base);
}
.main-nav button:hover { color: var(--white); }
.mobile-nav button.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gray-300);
    padding: var(--space-2);
    font-size: 0.7rem;
    font-weight: normal;
}
.mobile-nav button.mobile-nav-link .mobile-nav-icon { font-size: 1.25rem; }
.mobile-nav button.mobile-nav-link:hover,
.mobile-nav button.mobile-nav-link.active { color: var(--primary-light); }
#share-modal button.share-link {
    font-size: 1rem;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--white);
    text-decoration: none;
}
#share-modal button.share-link i {
    font-size: 2.5rem;
    transition: color 0.2s;
}
#share-modal button.share-link:hover i { color: var(--primary); }