/* ==========================================================================
   VISUALIZE MAX - PREMIUM STYLES
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Instagram Inspired Palette */
    --ig-pink: #E1306C;
    --ig-purple: #833AB4;
    --ig-magenta: #C13584;
    --ig-orange: #F56040;
    --ig-yellow: #FCAF45;
    --ig-blue: #405DE6;

    /* Base Colors */
    --bg-light: #FFFFFF;
    --bg-light-alt: #F8F9FA;
    --text-dark: #1A1C23;
    --text-muted: #5F6368;
    --border-color: rgba(0, 0, 0, 0.08);

    /* UI Colors */
    --success: #10B981;
    --brand-whatsapp: #25D366;
    --brand-pix: #32BCAD;

    /* Gradients */
    --gradient-brand: linear-gradient(45deg, var(--ig-yellow), var(--ig-orange), var(--ig-pink), var(--ig-magenta), var(--ig-purple), var(--ig-blue));
    --gradient-hover: linear-gradient(45deg, var(--ig-orange), var(--ig-pink), var(--ig-purple));
    --gradient-btn: linear-gradient(90deg, var(--ig-magenta), var(--ig-purple));

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 8px 30px rgba(193, 53, 132, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Resets & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 800px;
}

.section {
    padding: 100px 0;
}

.bg-light-alt {
    background-color: var(--bg-light-alt);
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-pix {
    color: var(--brand-pix);
}

.text-success {
    color: var(--success);
}

.text-brand {
    color: var(--ig-magenta);
}

.text-pink {
    color: var(--ig-pink);
}

.text-blue {
    color: var(--ig-blue);
}

.text-warning {
    color: #F59E0B;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.p-5 {
    padding: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-md {
    max-width: 600px;
}

/* --- Glassmorphism --- */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: 0 4px 15px rgba(193, 53, 132, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 53, 132, 0.4);
    background: var(--gradient-hover);
}

.btn-glow {
    box-shadow: var(--shadow-glow);
    animation: glow-pulse 2s infinite alternate;
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--ig-magenta);
    border: 2px solid var(--ig-magenta);
}

.btn-outline:hover {
    background: var(--ig-magenta);
    color: white;
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 5px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.logo-accent {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ig-magenta);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: 140px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.4;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(225, 48, 108, 0.3);
    /* Pink */
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(64, 93, 230, 0.2);
    /* Blue */
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(193, 53, 132, 0.1);
    color: var(--ig-magenta);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--ig-pink);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    font-size: 1.2rem;
}

/* Mockup CSS */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.mockup-card {
    padding: 24px;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-card:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.mockup-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-brand);
    padding: 3px;
    position: relative;
}

.mockup-avatar::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    border: 2px solid white;
}

.mockup-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.mockup-handle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mockup-stats {
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.m-stat {
    text-align: center;
}

.m-stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.m-stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-1 {
    top: -20px;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.badge-2 {
    bottom: -20px;
    left: -20px;
    animation: float 4s ease-in-out infinite reverse;
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Benefits --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(193, 53, 132, 0.3);
}

.b-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(193, 53, 132, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--ig-magenta);
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-box {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.service-box:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.service-box i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Pricing (Pacotes) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: flex-end;
    /* Align bottoms */
}

.pricing-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--ig-magenta);
    padding: 50px 32px;
    /* Taller */
}

.card-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.tag-blue {
    background: var(--ig-blue);
}

.tag-purple {
    background: var(--ig-purple);
}

.tag-pink {
    background: var(--ig-pink);
}

.tag-gradient {
    background: var(--gradient-brand);
}

.pkg-name {
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-align: center;
}

.pkg-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.pkg-bonus {
    background: rgba(225, 48, 108, 0.05);
    border: 1px dashed var(--ig-pink);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--ig-pink);
    margin-bottom: 24px;
}

.pkg-bonus i {
    font-size: 1.2rem;
    vertical-align: middle;
}

.pkg-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pkg-features li i {
    color: var(--success);
    font-size: 1.2rem;
}

.bonus-box-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* --- Formulario --- */
.form-container {
    max-width: 800px;
    padding: 50px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.input-group input,
.input-group textarea {
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--ig-magenta);
    box-shadow: 0 0 0 4px rgba(193, 53, 132, 0.1);
}

.selected-package-info {
    background: rgba(64, 93, 230, 0.05);
    border-left: 4px solid var(--ig-blue);
    padding: 16px;
    border-radius: 4px;
    font-size: 1.1rem;
}

.form-footer-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-footer-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- Reviews --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.review-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.r-stars {
    color: var(--text-warning);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.r-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.r-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.r-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--text-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.r-avatar.bg-pink {
    background: var(--ig-pink);
}

.r-avatar.bg-blue {
    background: var(--ig-blue);
}

.r-avatar.bg-purple {
    background: var(--ig-purple);
}

.r-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.r-name {
    font-weight: 600;
    font-family: var(--font-heading);
}

.rating-display {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-top: 16px;
}

/* --- Diferenciais Tags --- */
.diff-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.diff-tag {
    background: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
}

.diff-tag i {
    color: var(--ig-magenta);
    font-size: 1.2rem;
}

/* --- FAQ Accordion --- */
.faq-wrapper {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    color: var(--text-dark);
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--ig-magenta);
}

.acc-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .acc-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    /* Arbitrary large value */
}

.accordion-content p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
}

/* --- Footer --- */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-color);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--brand-whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.wa-label {
    position: absolute;
    right: 80px;
    background: white;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.whatsapp-float:hover .wa-label {
    opacity: 1;
    visibility: visible;
}

/* --- Animations --- */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 10px rgba(193, 53, 132, 0.2);
    }

    100% {
        box-shadow: 0 0 25px rgba(193, 53, 132, 0.6);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Reveal Animations */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-signals {
        justify-content: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .mockup-card {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .pricing-card.popular {
        padding: 40px 32px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile Menu Active State */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

/* --- Verificar Perfil --- */
.verify-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    font-size: 1.2rem;
    color: var(--ig-magenta);
}

.verify-input-wrapper input.has-icon {
    padding-left: 48px;
}

.verify-input-wrapper input.has-button {
    padding-right: 140px;
    width: 100%;
}

.btn-verify {
    position: absolute;
    right: 8px;
    background: var(--bg-light-alt);
    color: var(--ig-magenta);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-verify:hover {
    background: var(--ig-magenta);
    color: white;
}

.btn-verify.verified {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

/* --- Bonus Box --- */
.bonus-box {
    background: white;
    border: 2px dashed var(--ig-pink);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.05);
}

.bonus-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.bonus-box-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.bonus-box-header i {
    font-size: 1.5rem;
}

.bonus-box-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* --- Modal Verificação --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.close-modal {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--ig-pink);
}

.modal-body {
    padding: 30px 24px;
}

.verify-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(193, 53, 132, 0.2);
    border-top-color: var(--ig-magenta);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.profile-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-brand) border-box;
}

.profile-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   INTERACTIVE PURCHASE COMPONENT (COMPONENT DE COMPRA)
   ========================================================================== */
.purchase-component {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pc-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Controls Box */
.pc-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-light-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-bottom: 24px;
}

.pc-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: none;
    background: white;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--ig-magenta);
    cursor: pointer;
    transition: var(--transition);
}

.pc-btn:hover {
    background: var(--ig-magenta);
    color: white;
    transform: scale(1.05);
}

.pc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: white !important;
    color: var(--text-muted) !important;
    transform: none;
}

.pc-quantity-input {
    flex: 1;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    -moz-appearance: textfield;
}

.pc-quantity-input::-webkit-outer-spin-button,
.pc-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Slider Custom Styling */
.pc-slider-container {
    margin-bottom: 32px;
    position: relative;
    padding: 10px 0;
}

.pc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    /* Updated dynamically via JS for progress fill */
    outline: none;
    margin: 0;
}

.pc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--ig-magenta);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(193, 53, 132, 0.3);
    transition: transform 0.1s;
}

.pc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.pc-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--ig-magenta);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(193, 53, 132, 0.3);
    transition: transform 0.1s;
}

.pc-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Summary Box */
.pc-summary-box {
    background: rgba(193, 53, 132, 0.03);
    border: 1px dashed rgba(193, 53, 132, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.pc-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-muted);
}

.pc-summary-row.discount-row {
    color: var(--success);
    font-weight: 600;
}

.pc-summary-row:last-child {
    margin-bottom: 0;
}

.pc-summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 16px 0;
}

.pc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.pc-total-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pc-total-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.discount-badge {
    background: var(--success);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 8px;
    vertical-align: middle;
}