/* 
 * GMIX Commercial Proposal Dashboard Style Sheet
 * Sleek, premium, dark-mode focused styling with glassmorphism, 
 * left vertical sidebar navigation, micro-animations, and high-fidelity print layout.
 */

:root {
    --bg-main: #060913;
    --bg-card: rgba(13, 20, 38, 0.7);
    --bg-card-hover: rgba(22, 33, 59, 0.85);
    --primary: #1e293b;
    --secondary: #ea580c;
    --accent-green: #00e676;
    --accent-green-glow: rgba(0, 230, 118, 0.25);
    --accent-orange: #ff6b00;
    --accent-orange-glow: rgba(255, 107, 0, 0.25);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(at 0% 0%, rgba(30, 41, 59, 0.3) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 107, 0, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 230, 118, 0.03) 0px, transparent 50%);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    padding: 16px 28px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast.success {
    border-left: 4px solid var(--accent-green);
}

.toast.error {
    border-left: 4px solid var(--accent-orange);
}

/* Base Wrapper - Dashboard Structure */
.proposal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    width: 100%;
    max-width: 1400px;
    min-height: 850px;
    background: rgba(9, 14, 26, 0.65);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
}

/* Sidebar Styling */
.proposal-sidebar {
    background: rgba(11, 17, 33, 0.85);
    border-right: 1px solid var(--border-color);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gmix-svg-logo {
    animation: rotateSlow 40s linear infinite;
    flex-shrink: 0;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-sub {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.brand-slogan {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 1px;
}

/* Sidebar Menu */
.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
    flex-grow: 1;
}

.menu-item-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: all 0.2s ease;
    width: 100%;
}

.menu-item-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.menu-item-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.menu-item-btn:hover svg {
    transform: translateX(2px);
}

.menu-item-btn.active {
    color: var(--text-primary);
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.15);
}

.menu-item-btn.active svg {
    color: var(--accent-orange);
}

.sidebar-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-footer span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.sidebar-footer strong {
    font-size: 0.8rem;
    color: var(--text-primary);
}

/* Content Area */
.proposal-content {
    display: flex;
    flex-direction: column;
    padding: 40px;
    overflow-y: auto;
    max-height: 900px;
}

/* Sticky Header inside Content */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.content-header h2 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.header-meta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.header-summary-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-summary-widget:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 107, 0, 0.02);
}

.widget-item span {
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 4px;
}

.widget-item strong {
    color: var(--accent-green);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-badge.pending {
    color: var(--accent-orange);
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.05);
}

.status-badge.signed {
    color: var(--accent-green);
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    box-shadow: 0 0 10px var(--accent-green-glow);
}

/* Tabs Panes Layout */
.tab-pane {
    display: none;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-pane.active {
    display: block;
}

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

/* Pane 1: Visão Geral */
.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

.overview-welcome h3 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overview-welcome p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.welcome-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.highlight-text h4 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Timeline/Cronograma Card */
.timeline-card {
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
}

.timeline-card h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 20px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--border-color);
}

.step-item {
    position: relative;
}

.step-dot {
    position: absolute;
    top: 5px;
    left: -20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: 2px solid var(--bg-main);
    z-index: 2;
}

.step-item.active .step-dot {
    background: var(--accent-orange);
    box-shadow: 0 0 8px var(--accent-orange-glow);
}

.step-details h5 {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.step-details span {
    font-size: 0.72rem;
    color: var(--accent-green);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.step-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Pane 2: Landing Page Split (Sincronizado) */
.tab-pane-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 900px) {
    .tab-pane-split {
        grid-template-columns: 1fr;
    }
}

.lp-sections-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deliverables-intro-compact {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.lp-menu-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-menu-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.lp-menu-card.active {
    border-color: var(--accent-green);
    background: rgba(0, 230, 118, 0.03);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.04);
}

.section-num {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
}

.lp-menu-card.active .section-num {
    color: var(--accent-green);
}

.menu-card-txt h5 {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.menu-card-txt p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Smartphone Bezel Simulator */
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.iphone-device {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    border: 10px solid #2d2d2d;
    box-shadow: 0 25px 50px rgba(0,0,0,0.65), inset 0 0 4px rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 16px;
    background: #2d2d2d;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 100;
}

.iphone-screen {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    background: #090c15;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-screen-content {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-top: 16px;
    scrollbar-width: none;
}

.phone-screen-content::-webkit-scrollbar {
    display: none;
}

/* Content on Mockup Screen */
.phone-lp-section {
    padding: 20px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-lp-section:last-child {
    border-bottom: none;
}

.phone-lp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-logo {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 900;
    color: var(--accent-green);
}

.phone-contact-btn {
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--secondary);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
}

.phone-lp-hero-body {
    padding: 20px 4px 10px 4px;
    text-align: center;
}

.hero-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 8px;
}

.phone-lp-hero-body h1 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: white;
}

.phone-lp-hero-body p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 16px;
}

.phone-whatsapp-button {
    display: block;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 14px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.pulse-animation {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.phone-section-title {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 14px;
    color: white;
}

.phone-benefit-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.02);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.02);
}

.phone-benefit-item .b-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.phone-benefit-item strong {
    font-size: 0.75rem;
    color: white;
    display: block;
    margin-bottom: 2px;
}

.phone-benefit-item p {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.phone-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.phone-service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.phone-service-card .s-icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.phone-service-card span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-primary);
}

.phone-gallery-wrapper {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 10px;
}

.phone-gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-placeholder {
    width: 130px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(30, 41, 59, 0.4));
    border: 1px dashed rgba(255, 107, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.phone-testimonial {
    background: rgba(255, 255, 255, 0.02);
    padding: 10px;
    border-radius: 8px;
    border-left: 2px solid var(--accent-green);
}

.phone-testimonial p {
    font-size: 0.68rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.35;
}

.phone-testimonial strong {
    display: block;
    font-size: 0.6rem;
    color: var(--text-primary);
    margin-top: 4px;
}

.phone-region-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phone-region-list span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.phone-lp-footer {
    margin-top: 16px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 12px;
}

.phone-lp-footer p {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-primary);
}

.phone-lp-footer span {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }

/* Pane 3: Anúncios Online */
.mockups-ads-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .mockups-ads-container {
        grid-template-columns: 1fr;
    }
}

.google-ad-mockup {
    background: #17181c;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.google-header {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.google-logo-s {
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
}

.google-search-bar {
    background: #303134;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: white;
    flex-grow: 1;
}

.google-ad-card {
    display: flex;
    flex-direction: column;
}

.ad-badge-row {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.ad-sponsored {
    font-weight: bold;
    color: white;
}

.ad-link {
    color: #bdc1c6;
}

.ad-title {
    font-size: 1.15rem;
    color: #8ab4f8;
    text-decoration: none;
    margin-bottom: 8px;
    font-weight: normal;
    line-height: 1.3;
}

.google-ad-card:hover .ad-title {
    text-decoration: underline;
}

.ad-desc {
    font-size: 0.85rem;
    color: #bdc1c6;
    line-height: 1.45;
    margin-bottom: 14px;
}

.ad-extensions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ad-ext-item {
    font-size: 0.78rem;
    color: #8ab4f8;
    background: rgba(138, 180, 248, 0.05);
    border: 1px solid rgba(138, 180, 248, 0.15);
    padding: 6px 12px;
    border-radius: 14px;
}

.instagram-ad-mockup {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.insta-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.insta-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 900;
}

.insta-user-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insta-user-info .username {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.insta-user-info .sponsored {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.insta-more {
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
}

.insta-post-media {
    width: 100%;
    aspect-ratio: 1;
    background: #111;
    position: relative;
}

.insta-photo-placeholder {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(9, 14, 26, 0.7), rgba(255, 107, 0, 0.25)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%23ff6b00' stroke-width='1'%3E%3Cpath d='M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2z'%3E%3C/path%3E%3Ccircle cx='18' cy='18' r='3'%3E%3C/circle%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.post-title-overlay {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    border-left: 3px solid var(--accent-orange);
    color: white;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 0 8px 8px 0;
    max-width: 90%;
}

.insta-cta-bar {
    background: #3c3c3e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cta-text {
    font-size: 0.78rem;
    color: white;
}

.cta-button {
    font-size: 0.78rem;
    font-weight: 800;
    background: #0095f6;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
}

.insta-interaction-bar {
    padding: 12px 16px;
}

.insta-icons {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.insta-likes {
    font-size: 0.75rem;
    color: white;
    margin-bottom: 6px;
}

.insta-caption {
    font-size: 0.75rem;
    color: #ddd;
    line-height: 1.45;
}

.insta-caption strong {
    color: white;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 24px;
}

.comparison-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
}

.comparison-header.green {
    color: var(--accent-green);
}

.comparison-cell {
    background: #0d1220;
    padding: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.comparison-cell.green-bg {
    background: rgba(0, 230, 118, 0.015);
}

.border-bottom {
    border-bottom: 1px solid var(--border-color);
}

/* Pane 4: Redes Sociais */
.instagram-profile-mockup {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
}

.profile-header {
    display: flex;
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .profile-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.profile-avatar-big {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ea580c;
    color: white;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2.5px solid var(--accent-green);
}

.profile-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.profile-username-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-username {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.profile-follow-btn {
    background: #0095f6;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.profile-stats-row {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: white;
}

.profile-bio {
    font-size: 0.82rem;
    color: #ddd;
    line-height: 1.45;
}

.profile-bio strong {
    color: white;
    display: block;
    margin-bottom: 4px;
}

.profile-bio p {
    margin-bottom: 2px;
}

.bio-link {
    color: #bae6fd;
    text-decoration: none;
    font-weight: 600;
}

.instagram-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.grid-post-item {
    aspect-ratio: 1;
    background: #0f1322;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    border-radius: 6px;
}

.grid-post-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.75;
    transition: transform 0.3s ease;
}

.grid-post-item:hover::before {
    transform: scale(1.05);
}

.grid-post-item.post-1::before {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%2300e676' stroke-width='1.5'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
}

.grid-post-item.post-2::before {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%23ff6b00' stroke-width='1.5'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9 22 9 12 15 12 15 22'%3E%3C/polyline%3E%3C/svg%3E");
}

.grid-post-item.post-3::before {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%2300e676' stroke-width='1.5'%3E%3Crect x='1' y='3' width='15' height='13' rx='2' ry='2'%3E%3C/rect%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'%3E%3C/polygon%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3C/svg%3E");
}

.grid-post-item.post-4::before {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%23ff6b00' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'%3E%3C/rect%3E%3Cpath d='M9 3v18M15 3v18M3 9h18M3 15h18'%3E%3C/path%3E%3C/svg%3E");
}

.grid-post-item.post-5::before {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%2300e676' stroke-width='1.5'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'%3E%3C/path%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'%3E%3C/polyline%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'%3E%3C/line%3E%3C/svg%3E");
}

.grid-post-item.post-6::before {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%23ff6b00' stroke-width='1.5'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'%3E%3C/path%3E%3C/svg%3E");
}

.post-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.grid-post-item:hover .post-overlay {
    opacity: 1;
}

.post-overlay span {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.post-title {
    position: relative;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    z-index: 1;
    letter-spacing: 0.3px;
    background: rgba(0, 0, 0, 0.4);
    padding: 2px 6px;
    border-radius: 4px;
}

.switch-redes-box {
    background: rgba(255, 107, 0, 0.02);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: inset 0 0 20px rgba(255, 107, 0, 0.01);
}

@media (max-width: 500px) {
    .switch-redes-box {
        flex-direction: column;
        align-items: stretch;
    }
}

.switch-redes-box h5 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
}

.switch-redes-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.btn-toggle-redes {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
}

.btn-toggle-redes:hover {
    transform: translateY(-1.5px);
    opacity: 0.95;
    box-shadow: 0 4px 12px var(--accent-orange-glow);
}

.btn-toggle-redes.added {
    background: var(--accent-green);
    box-shadow: 0 4px 12px var(--accent-green-glow);
}

/* Pane 5: Simulador de ROI */
.roi-simulator-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.slider-group {
    background: rgba(255,255,255,0.01);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.slider-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 1rem;
}

.slider-val {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-orange);
}

#roi-budget-slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    margin: 10px 0;
}

#roi-budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-orange);
    cursor: pointer;
    box-shadow: 0 0 12px var(--accent-orange-glow);
    transition: transform 0.1s ease;
}

#roi-budget-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.slider-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Funnel Pipeline Horizontal styling */
.roi-funnel-pipeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(0, 0, 0, 0.25);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.funnel-stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    min-width: 110px;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-color);
    border-radius: 14px;
}

.funnel-stage .stage-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.funnel-stage .stage-val {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.funnel-stage .stage-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 600;
}

.funnel-stage.highlight {
    border-color: rgba(255, 107, 0, 0.2);
    background: rgba(255, 107, 0, 0.01);
}

.funnel-stage.highlight .stage-val {
    color: var(--accent-orange);
}

.funnel-stage.success {
    border-color: rgba(0, 230, 118, 0.25);
    background: rgba(0, 230, 118, 0.015);
}

.funnel-stage.success .stage-val {
    color: var(--accent-green);
    text-shadow: 0 0 12px var(--accent-green-glow);
}

.funnel-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0.7;
    flex-shrink: 0;
}

.funnel-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    animation: arrowPulse 2s infinite ease-in-out;
}

@keyframes arrowPulse {
    0% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(4px); opacity: 1; }
    100% { transform: translateX(0); opacity: 0.5; }
}

.conversion-rate {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 8px;
    border-radius: 12px;
    margin-top: 6px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .roi-funnel-pipeline {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    .funnel-arrow {
        margin: 6px 0;
    }
    .funnel-arrow svg {
        transform: rotate(90deg);
        animation: arrowPulseVertical 2s infinite ease-in-out;
    }
    @keyframes arrowPulseVertical {
        0% { transform: rotate(90deg) translateX(0); opacity: 0.5; }
        50% { transform: rotate(90deg) translateX(4px); opacity: 1; }
        100% { transform: rotate(90deg) translateX(0); opacity: 0.5; }
    }
}

.simulator-footer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: justify;
    border-left: 2px solid var(--accent-orange);
    padding-left: 14px;
}

/* Pane 6: Orçamento & Contrato (Checkout) */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-left, .checkout-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dashboard-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.panel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    flex-shrink: 0;
}

.panel-icon.bg-orange {
    color: var(--accent-orange);
}

.panel-header h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.panel-header .subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Configurator Checkboxes */
.configurator-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.config-card {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.config-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.config-card.active {
    border-color: var(--accent-green);
    background: rgba(0, 230, 118, 0.02);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.03);
}

.config-check-wrapper {
    position: relative;
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.config-check-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.config-card:hover .custom-checkbox {
    border-color: var(--text-muted);
}

.config-card.active .custom-checkbox {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.custom-checkbox:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.config-card.active .custom-checkbox:after {
    display: block;
}

.config-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.config-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.config-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
}

.config-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.config-price-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Traffic Plans Panel */
.traffic-plans-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-card {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.plan-card.selected {
    border-color: var(--accent-green);
    background: rgba(0, 230, 118, 0.02);
}

.plan-card h4 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.plan-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.4;
}

.plan-pricing {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.price-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.price-line .lbl {
    color: var(--text-muted);
}

.price-line .val {
    font-weight: 700;
    color: var(--text-primary);
}

.price-line.highlight .val {
    color: var(--accent-orange);
}

.select-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all 0.2s ease;
}

.plan-card.selected .select-badge {
    color: var(--accent-green);
    opacity: 1;
}

.badge-destaque {
    position: absolute;
    top: -10px;
    right: 30px;
    background: var(--secondary);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}

/* Relative Container & Overlay */
.relative-container {
    position: relative;
    overflow: hidden;
}

.plans-disabled-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 14, 26, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.plans-disabled-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.overlay-content {
    text-align: center;
    padding: 30px;
    max-width: 320px;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.plans-disabled-overlay.active .overlay-content {
    transform: scale(1);
}

.overlay-content svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.overlay-content h4 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Invoice Digital Receipt */
.proposal-summary-card {
    background: linear-gradient(135deg, rgba(16, 24, 48, 0.95), rgba(9, 13, 26, 0.98));
    border-color: rgba(255, 107, 0, 0.15);
}

.invoice-section {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
}

.invoice-section:first-child {
    padding-top: 0;
}

.invoice-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.invoice-section h4 {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.invoice-row .lbl {
    color: rgba(255, 255, 255, 0.75);
}

.invoice-row .val {
    font-weight: 700;
    color: #fff;
}

.invoice-row .val-free {
    font-weight: 800;
    color: var(--accent-green);
}

.invoice-row.total-row-section {
    margin-top: 16px;
    margin-bottom: 0;
    font-weight: 800;
}

.invoice-row.total-row-section .lbl {
    color: #fff;
}

.invoice-row.total-row-section .val-total {
    color: var(--accent-green);
    font-family: var(--font-title);
    font-size: 1.25rem;
    text-shadow: 0 0 12px var(--accent-green-glow);
}

.invoice-ads-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.45;
    margin-top: 10px;
    text-align: justify;
}

/* Signature & Seal Panel */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input:focus {
    border-color: var(--accent-green);
    background: rgba(255,255,255,0.05);
}

.form-checkbox-agree {
    margin: 16px 0;
}

.agree-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.btn-submit-sign {
    width: 100%;
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 15px var(--accent-green-glow);
}

.btn-submit-sign:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-green-glow);
}

.btn-submit-sign:disabled {
    background: var(--primary);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Digital Seal CSS */
.digital-seal-card {
    background: rgba(0, 230, 118, 0.02);
    border: 1px solid var(--accent-green);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.06);
}

.digital-seal-card::after {
    content: '✓ VERIFICADO';
    position: absolute;
    bottom: -15px;
    right: -10px;
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 230, 118, 0.03);
    pointer-events: none;
    transform: rotate(-10deg);
}

.seal-seal-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 15px var(--accent-green-glow);
    flex-shrink: 0;
}

.seal-seal-icon svg {
    width: 24px;
    height: 24px;
}

.seal-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.seal-badge-green {
    display: inline-block;
    align-self: flex-start;
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-green);
    font-size: 0.65rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.seal-details h4 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.seal-document {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.seal-metadata-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.35);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
}

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

.seal-security-hash {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.seal-security-hash code {
    display: block;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 10px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--accent-green);
    word-break: break-all;
    margin-top: 4px;
}

/* Contract scope summary box */
.contract-scope-summary-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.contract-scope-summary-box h5 {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.scope-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scope-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.scope-summary-row span {
    color: var(--text-muted);
}

.scope-summary-row strong {
    color: var(--text-primary);
}

.scope-summary-row.grand-total-row {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 2px;
    font-size: 0.9rem;
    font-weight: 800;
}

.scope-summary-row.grand-total-row span {
    color: #fff;
}

.scope-summary-row.grand-total-row strong {
    color: var(--accent-green);
}

/* Locked Mode adjustments */
.proposal-is-signed .config-card {
    cursor: default;
}

.proposal-is-signed .config-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.01);
    border-color: var(--border-color);
}

.proposal-is-signed .config-card.active:hover {
    border-color: var(--accent-green);
    background: rgba(0, 230, 118, 0.02);
}

.proposal-is-signed .plan-card {
    cursor: default;
}

.proposal-is-signed .plan-card:hover {
    background: rgba(255, 255, 255, 0.01);
    border-color: var(--border-color);
}

.proposal-is-signed .plan-card.selected:hover {
    border-color: var(--accent-green);
    background: rgba(0, 230, 118, 0.02);
}

.proposal-is-signed .btn-toggle-redes {
    display: none;
}

/* Print layout container (hidden by default) */
.print-only-layout {
    display: none;
}

/* RESPONSIVE LAYOUT MECHANICS */
@media (max-width: 992px) {
    body {
        padding: 12px;
    }

    .proposal-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 16px;
    }

    .proposal-sidebar {
        padding: 24px 20px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        height: auto;
    }

    .sidebar-menu {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        margin-top: 24px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .sidebar-menu::-webkit-scrollbar {
        display: none;
    }

    .menu-item-btn {
        white-space: nowrap;
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .sidebar-footer {
        display: none;
    }

    .proposal-content {
        padding: 24px 20px;
    }
}

/* PRINT MEDIA QUERIES (Ctrl + P) */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
        padding: 0 !important;
        font-size: 10pt;
    }

    /* Ocultar elementos interativos */
    #toast,
    .proposal-sidebar,
    .content-header,
    .tab-pane,
    .print-only-layout {
        display: none !important;
    }

    /* Mostrar layout impresso estático */
    .print-only-layout {
        display: block !important;
        width: 100%;
        max-width: 100%;
        margin-top: 10mm;
    }

    /* Cabeçalho impresso */
    .proposal-header {
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin-bottom: 8mm;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .brand-name {
        color: #000 !important;
    }

    .brand-sub {
        color: #000 !important;
    }

    .brand-slogan {
        color: #555 !important;
    }

    .print-title {
        font-family: var(--font-title);
        font-size: 16pt;
        font-weight: 800;
        margin-top: 6mm;
        margin-bottom: 6mm;
        border-bottom: 2px solid #000;
        padding-bottom: 2mm;
    }

    /* Tabelas de impressão */
    .print-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 8mm;
    }

    .print-table th, 
    .print-table td {
        border: 1px solid #ddd;
        padding: 8pt 10pt;
        text-align: left;
    }

    .print-table th {
        background: #f5f5f5 !important;
        color: #000 !important;
        font-weight: bold;
    }

    .print-grand-totals {
        display: flex;
        justify-content: flex-end;
        gap: 15mm;
        margin-bottom: 12mm;
        font-size: 11pt;
    }

    .print-grand-totals strong {
        font-size: 12pt;
    }

    /* Assinaturas físicas */
    .print-signatures-section {
        display: flex;
        justify-content: space-between;
        margin-top: 15mm;
        margin-bottom: 15mm;
        page-break-inside: avoid;
    }

    .print-sig-col {
        width: 45%;
        text-align: center;
    }

    .print-sig-title {
        font-size: 9pt;
        color: #555;
        margin-bottom: 10mm;
    }

    .print-sig-line {
        border-top: 1px solid #000;
        margin-bottom: 2mm;
    }

    .print-sig-col strong {
        display: block;
        font-size: 10pt;
    }

    .print-sig-col span {
        font-size: 8pt;
        color: #666;
    }

    /* Selo digital na impressão */
    .print-seal-container {
        border: 1px solid #22c55e !important;
        background: #f9fff9 !important;
        padding: 12pt !important;
        border-radius: 8px !important;
        page-break-inside: avoid;
        margin-top: 10mm;
    }

    .digital-seal-card {
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }

    .seal-seal-icon {
        background: #22c55e !important;
        color: #fff !important;
    }

    .seal-badge-green {
        background: #e2fbe8 !important;
        color: #15803d !important;
        border: 1px solid #bbf7d0;
    }

    .seal-details h4 {
        color: #000 !important;
    }

    .seal-metadata-grid {
        background: #f0f0f0 !important;
        color: #333 !important;
        border: 1px solid #ddd;
    }

    .seal-security-hash code {
        background: #f5f5f5 !important;
        color: #15803d !important;
        border: 1px solid #ddd;
    }
}
