/* ============================================
   LOJINHA LOVABLE - Complete Styles
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #0f0a1e;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-active: rgba(168, 85, 247, 0.6);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --purple: #a855f7;
    --purple-dark: #7c3aed;
    --pink: #ec4899;
    --green: #22c55e;
    --blue: #3b82f6;
    --yellow: #f59e0b;
    --red: #ef4444;
    --gradient-primary: linear-gradient(135deg, #a855f7, #ec4899);
    --gradient-btn: linear-gradient(135deg, #9333ea, #ec4899);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-bounce: all 0.4s var(--spring);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#root {
    position: relative;
    min-height: 100vh;
}

/* Background Glow Effects */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(147, 51, 234, 0.15);
    top: -200px;
    left: -100px;
    animation: floatGlow1 15s ease-in-out infinite;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.1);
    bottom: -200px;
    right: -100px;
    animation: floatGlow2 20s ease-in-out infinite;
}

.bg-glow-3 {
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatGlow3 18s ease-in-out infinite;
}

@keyframes floatGlow1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 30px); }
}
@keyframes floatGlow2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, -20px); }
}
@keyframes floatGlow3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Container */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    position: relative;
    z-index: 1;
}

/* ============ HEADER ============ */
.header {
    text-align: center;
    margin-bottom: 32px;
}

.badge-fornecedor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.1);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 30%, #ec4899 70%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.4));
    margin-bottom: 12px;
    line-height: 1.1;
}

.subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.subtitle-highlight {
    color: #c084fc;
    font-weight: 500;
}

/* ============ DISCOUNT BANNER ============ */
.discount-banner {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 36px;
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
}

.discount-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.discount-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
    border-radius: 12px;
    color: white;
    animation: floatIcon 3s ease-in-out infinite;
}

.discount-text {
    flex: 1;
    min-width: 0;
}

.discount-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #c084fc;
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
}

.discount-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.discount-highlight {
    color: #ec4899;
    font-weight: 600;
}

.discount-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.discount-percentage {
    font-size: 24px;
    font-weight: 900;
    color: white;
    text-align: center;
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .discount-banner {
        padding: 16px;
    }

    .discount-banner-content {
        gap: 12px;
    }

    .discount-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .discount-badge {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .discount-percentage {
        font-size: 20px;
    }

    .discount-text h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .discount-text p {
        font-size: 12px;
    }
}

/* ============ PROGRESS STEPS ============ */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
    padding: 0 20px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: var(--transition);
}

.step-circle.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.step-circle.completed {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.step-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-line {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 12px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.step-line.active {
    background: var(--gradient-primary);
}

/* ============ STEP CONTENT ============ */
.step-content {
    display: none;
    animation: fadeScaleIn 0.5s var(--spring);
    transform-origin: top center;
}

.step-content.active {
    display: block;
}

@keyframes fadeScaleIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============ SECTION TITLES ============ */
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    justify-content: center;
}

.section-title-center {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ============ PACKAGES GRID ============ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.package-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition-bounce);
    overflow: visible;
    transform: translateZ(0); /* Hardware acceleration */
}

.package-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.12);
}

.package-card:active {
    transform: translateY(0) scale(0.97);
}

.package-card.selected {
    border-color: var(--purple);
    background: rgba(168, 85, 247, 0.08);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2), inset 0 0 30px rgba(168, 85, 247, 0.05);
}

.package-card.popular {
    border-color: rgba(168, 85, 247, 0.4);
}

.package-card.gold {
    border-color: rgba(255, 215, 0, 0.6);
}

.package-card.gold.selected {
    border-color: #ffd700;
}

.badge-gold {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a0033;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.6);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 10;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a0033;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.badge-discount {
    position: absolute;
    top: -10px;
    right: 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-icon {
    margin-bottom: 12px;
}

.package-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.package-amount {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.package-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.package-price {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.package-pix {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============ CUSTOM QUANTITY ============ */
.custom-quantity-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.custom-quantity-section.selected {
    border-color: var(--purple);
    background: rgba(168, 85, 247, 0.08);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2), inset 0 0 30px rgba(168, 85, 247, 0.05);
}

.custom-quantity-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.custom-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--purple);
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.9);
}

.qty-display {
    width: 160px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.08);
    cursor: pointer;
    transition: var(--transition-bounce);
}

.qty-display:hover {
    border-color: var(--purple);
    transform: scale(1.02);
}

.qty-display:active {
    transform: scale(0.97);
}

.qty-display span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

.qty-display small {
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.custom-price {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.custom-hint {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============ FREE CREDITS NOTICE ============ */
.free-credits-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
    background: rgba(168, 85, 247, 0.05);
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 20px;
}

/* ============ BUTTONS ============ */
.btn-continue {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--gradient-btn);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-bounce);
    font-family: inherit;
}

.btn-continue:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.btn-continue:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.btn-back {
    flex: 1;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-bounce);
    font-family: inherit;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-back:active {
    transform: translateY(0) scale(0.97);
}

.step-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.step-buttons .btn-continue {
    flex: 1;
}

/* ============ DELIVERY OPTIONS (Step 2) ============ */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.delivery-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.delivery-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.12);
}

.delivery-card:active {
    transform: translateY(0) scale(0.97);
}

.delivery-card.selected {
    border-color: var(--purple);
    background: rgba(168, 85, 247, 0.08);
}

.delivery-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.workspace-icon {
    background: rgba(168, 85, 247, 0.2);
    color: var(--purple);
}

.delivery-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.delivery-sub {
    font-size: 13px;
    color: var(--text-muted);
}

.delivery-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 12px 0;
    line-height: 1.6;
}

.delivery-benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4ade80;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    height: 100%;
    transition: var(--transition-bounce);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.delivery-note {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.delivery-note strong {
    color: white;
    display: block;
    margin-bottom: 4px;
}

/* ============ CHECKOUT FORM (Step 3) ============ */
.checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-form-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    z-index: 1;
    transition: var(--transition-bounce);
}

.form-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.form-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Order Summary Card */
.order-summary-card {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.summary-row.total {
    font-weight: 700;
    color: white;
    font-size: 16px;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 12px 0;
}

.summary-price-value {
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    border-color: var(--purple);
    background: rgba(168, 85, 247, 0.06);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.btn-pix {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--gradient-btn);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    font-family: inherit;
    margin-top: 8px;
}

.btn-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
}

/* ============ RECENT ORDERS ============ */
.recent-orders {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.recent-orders::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.05), transparent 40%);
    pointer-events: none;
}

.empty-orders-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-orders-state svg {
    margin-bottom: 12px;
    opacity: 0.3;
}

.empty-orders-state p {
    font-size: 14px;
}

.orders-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.order-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.order-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.order-card-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.order-card-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.order-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c084fc;
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.05); border: 1px solid rgba(168, 85, 247, 0.2);
}

.order-card-info h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 4px;
    color: white;
}

.order-card-date {
    font-size: 13px;
    color: var(--text-muted);
}

.order-card-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-status-badge {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--yellow);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.order-status-badge.paid {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.order-status-badge.processing {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.chevron-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text-muted);
}

.order-card.expanded .chevron-icon {
    transform: rotate(180deg);
}

.order-card-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.order-card-details.active {
    max-height: 500px;
    opacity: 1;
}

.details-inner {
    padding: 0 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 20px;
}

.btn-check-status {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-check-status:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.2);
}

.btn-check-status:active {
    transform: scale(0.98);
}

/* Beautiful Link Area */
.premium-link-card {
    margin-top: 18px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(236, 72, 153, 0.03));
    border: 1px solid rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.premium-link-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.premium-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lovable-input-premium {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.lovable-input-premium:focus {
    border-color: var(--purple);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.btn-send-premium {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-md);
    border: none;
    background: var(--gradient-btn);
    color: white;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-send-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.btn-send-premium:active {
    transform: scale(0.98);
}

.progress-premium-container {
    margin-top: 15px;
}

.progress-bar-premium-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-bar-premium-fill {
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.progress-premium-text {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.processing-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}

.order-time {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    margin-top: 40px;
}

.rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.rating-badge strong {
    color: white;
    font-size: 16px;
}

.star {
    font-size: 18px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
    flex-wrap: wrap;
    gap: 4px;
}

.testimonial-email {
    font-size: 11px;
    color: var(--text-muted);
}

.testimonial-recommend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.testimonial-time {
    font-size: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.testimonial-credits {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 6px;
}

.testimonial-text {
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.pagination-btn:hover, .pagination-btn.active {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.pagination-info {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============ FEATURES ============ */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue);
}

.feature-icon.green {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
}

.feature-icon.purple {
    background: rgba(168, 85, 247, 0.15);
    color: var(--purple);
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    margin-top: 40px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.how-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.how-step:hover {
    border-color: rgba(168, 85, 247, 0.2);
    background: var(--bg-card-hover);
}

.how-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.how-step-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.how-step-content p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============ BONUS SECTION ============ */
.bonus-section {
    margin-top: 32px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.bonus-icon {
    margin-bottom: 12px;
}

.bonus-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-section p {
    font-size: 14px;
    color: var(--text-secondary);
}

.bonus-highlight {
    color: var(--yellow);
    font-weight: 700;
}

/* ============ IMPORTANT NOTICES ============ */
.notices {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notice-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.notice-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.notice-content {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.notice-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.notice-content p:last-child {
    margin-bottom: 0;
}

/* ============ FOOTER ============ */
.footer {
    margin-top: 40px;
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer p {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .container {
        padding: 24px 16px 40px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .step-line {
        width: 40px;
    }

    .title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .step-line {
        width: 24px;
        margin: 0 6px;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .step-label {
        font-size: 10px;
    }

    .step-buttons {
        flex-direction: column;
    }

    .pagination {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============ ANIMATIONS ============ */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.package-card.selected .package-price {
    animation: pulse 2s ease-in-out infinite;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 85, 247, 0.5);
}

/* ============ PIX PAYMENT SCREEN ============ */
.pix-payment-container {
    animation: fadeInUp 0.5s ease-out;
}

.pix-header {
    text-align: center;
    margin-bottom: 28px;
}

.pix-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.pix-header h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pix-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* PIX Order Info */
.pix-order-info {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 24px;
}

.pix-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.pix-order-value {
    color: white;
    font-weight: 600;
}

.pix-order-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 12px 0;
}

.pix-order-total {
    font-weight: 700;
    color: white;
    font-size: 16px;
}

.pix-order-price {
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* QR Code Section */
.pix-qr-section {
    text-align: center;
    margin-bottom: 24px;
}

.pix-qr-wrapper {
    display: inline-block;
    padding: 16px;
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.pix-qr-code {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-qr-code img {
    border-radius: 8px;
}

.qr-fallback {
    font-size: 16px;
    color: #666;
    text-align: center;
    padding: 20px;
}

.pix-qr-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* PIX Code Copy Section */
.pix-code-section {
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.pix-code-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pix-code-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.pix-code-box:hover {
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.06);
}

.pix-code-box code {
    flex: 1;
    font-size: 11px;
    color: var(--text-secondary);
    word-break: break-all;
    line-height: 1.4;
    font-family: 'Courier New', monospace;
    max-height: 60px;
    overflow: hidden;
}

.pix-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: var(--radius-sm);
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
    min-width: 100px;
    justify-content: center;
}

.pix-copy-btn:hover {
    background: rgba(168, 85, 247, 0.25);
    border-color: var(--purple);
    transform: translateY(-1px);
}

.pix-copy-btn.copied {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

/* PIX Status Section */
.pix-status-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

.pix-status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pix-status-indicator.pending {
    color: #fbbf24;
}

.pix-status-indicator.success {
    color: #4ade80;
}

.pix-status-indicator.expired {
    color: var(--red);
}

.pix-status-pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fbbf24;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5);
    }
    50% { 
        opacity: 0.6;
        box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
    }
}

.pix-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.pix-success-message {
    margin-top: 12px;
    padding: 16px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-sm);
}

.pix-success-message p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.pix-success-message p:last-child {
    margin-bottom: 0;
}

.pix-success-message strong {
    color: #4ade80;
}

.pix-back-btn {
    width: 100%;
    justify-content: center;
}

/* ============ TOAST NOTIFICATIONS ============ */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.toast-notification.visible {
    transform: translateX(0);
}

.toast-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.toast-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.toast-info {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

/* ============ BUTTON SPINNER ============ */
.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-pix:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Selection */
::selection {
    background: rgba(168, 85, 247, 0.3);
    color: white;
}

/* ============ SYSTEM ERROR LOCK ============ */
.fatal-error-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0a0a0a;
    color: #ef4444;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 999999;
    padding: 20px;
}

.fatal-error-screen h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    border-bottom: 2px solid #ef4444;
    padding-bottom: 10px;
}

.fatal-error-screen p {
    font-size: 16px;
    margin: 8px 0;
    opacity: 0.8;
}
/* ============ WHATSAPP FLOAT BUTTON ============ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappBounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 8px 30px rgba(18, 140, 126, 0.5);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ============ WHATSAPP DELIVERY CARD ============ */
.whatsapp-delivery-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: var(--radius-xl);
    padding: 30px;
    margin-top: 24px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.1), inset 0 0 20px rgba(37, 211, 102, 0.05);
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-delivery-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.whatsapp-delivery-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-delivery-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #25d366;
    text-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-delivery-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    line-height: 1.6;
}

.whatsapp-delivery-body p strong {
    color: white;
    font-weight: 700;
}

.lovable-input-premium {
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(37, 211, 102, 0.2);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 15px;
    margin-bottom: 20px;
    transition: var(--transition-bounce);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lovable-input-premium:focus {
    outline: none;
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.05);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15), inset 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-whatsapp-order {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-md);
    border: none;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    font-family: inherit;
}

.btn-whatsapp-order:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2EE16D, #128C7E);
}

.btn-whatsapp-order:active {
    transform: translateY(0) scale(0.98);
}
