/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.navbar {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-logo span {
    color: #ecf0f1;
    font-size: 0.9rem;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: #3498db;
    background-color: rgba(255,255,255,0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    font-size: 8rem;
    opacity: 0.7;
}

/* Botões */
.btn-primary, .btn-secondary, .btn-module {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #667eea;
}

.btn-module {
    background-color: #3498db;
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.btn-module:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Seções */
.modulos, .vantagens {
    padding: 4rem 0;
}

.modulos {
    background-color: white;
}

.vantagens {
    background-color: #f8f9fa;
}

.modulos h2, .vantagens h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

/* Grid dos Módulos */
.modulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modulo-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ecf0f1;
}

.modulo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.modulo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.modulo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.modulo-card p {
    color: #7f8c8d;
    margin-bottom: 1rem;
    text-align: center;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: #34495e;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Grid das Vantagens */
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vantagem-item {
    text-align: center;
    padding: 2rem;
}

.vantagem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vantagem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.vantagem-item p {
    color: #7f8c8d;
}

/* Hero Highlights */
.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.highlight-icon {
    font-size: 1.2rem;
}

/* Diferenciais Técnicos Section */
.tech-differentials {
    background: #f8fafc;
    padding: 4rem 0;
}

.tech-differentials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.tech-card.security {
    border-top: 4px solid #ef4444;
}

.tech-card.development {
    border-top: 4px solid #10b981;
}

.tech-card.web {
    border-top: 4px solid #6366f1;
}

.tech-card.delivery {
    border-top: 4px solid #f59e0b;
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.tech-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tech-features li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.tech-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.tech-note {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border: 1px solid #fb923c;
    border-radius: 10px;
    padding: 1rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

.tech-note p {
    margin: 0;
    color: #9a3412;
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-contact {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Estilos para páginas de módulos */
.module-hero {
    margin-top: 80px;
    padding: 3rem 0;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

.module-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.module-hero .module-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.module-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.module-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.module-content {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-main h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.feature-detail {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.feature-detail h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-detail p {
    color: #7f8c8d;
    line-height: 1.6;
}

.feature-detail ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.feature-detail ul li {
    color: #34495e;
    margin-bottom: 0.5rem;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card, .cta-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card h3, .cta-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    color: #34495e;
    border-bottom: 1px solid #ecf0f1;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-card .btn-primary {
    background-color: white;
    color: #667eea;
    width: 100%;
}

.cta-card .btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.cta-card .contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Estilos para o Mockup do Celular */
.app-demo-section {
    background: white;
    padding: 3rem 2rem;
    margin: 0 0 3rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.app-demo-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.app-demo-section p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.demo-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0 2rem 0;
    text-align: left;
}

.demo-disclaimer p {
    color: #856404;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.demo-disclaimer strong {
    color: #b8860b;
}

.phone-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.phone-frame {
    width: 350px;
    height: 650px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #34495e;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.phone-status-bar {
    background: #f8f9fa;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #2c3e50;
    border-bottom: 1px solid #ecf0f1;
}

.app-screen {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.app-screen.active {
    opacity: 1;
    transform: translateX(0);
}

.app-header {
    background: #3498db;
    color: white;
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.back-btn {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-filter {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.search-filter input,
.search-filter select {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.8rem;
}

.products-list {
    padding: 1rem;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ecf0f1;
    cursor: pointer;
    transition: background 0.2s;
}

.product-item:hover {
    background: #f8f9fa;
}

.product-image {
    font-size: 2rem;
    margin-right: 1rem;
    width: 50px;
    text-align: center;
}

.product-info {
    flex: 1;
}

.product-info h4 {
    margin: 0 0 0.3rem 0;
    font-size: 0.9rem;
    color: #2c3e50;
}

.product-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.product-arrow {
    color: #3498db;
    font-size: 1.2rem;
}

.product-details {
    padding: 1rem;
}

.image-carousel {
    margin-bottom: 1.5rem;
}

.carousel-container {
    position: relative;
    height: 150px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel-slide.active {
    opacity: 1;
}

.product-detail-image {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.carousel-slide p {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active {
    background: #3498db;
}

.video-section {
    margin-bottom: 1.5rem;
}

.video-section h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.video-mockup {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}

.play-button {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.video-placeholder p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.video-placeholder small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.evidence-form {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.evidence-form h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.8rem;
}

.photo-upload {
    display: flex;
    gap: 0.5rem;
}

.photo-slot {
    width: 60px;
    height: 60px;
    background: #ecf0f1;
    border: 2px dashed #bdc3c7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #7f8c8d;
    cursor: pointer;
    transition: border-color 0.2s;
}

.photo-slot:hover {
    border-color: #3498db;
}

.signature-pad {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1rem;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.8rem;
}

.submit-btn {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover:not(:disabled) {
    background: #229954;
}

.submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.phone-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1rem;
}

.nav-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
    min-width: 120px;
}

.nav-btn:hover:not(:disabled) {
    background: #2980b9;
    transform: translateY(-2px);
}

.nav-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.screen-indicator {
    background: #ecf0f1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
}

.current-screen {
    color: #3498db;
}

/* Seção de Benefícios */
.benefits-section {
    margin-top: 3rem;
}

.benefits-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

/* Warning Note para iOS */
.warning-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 0.8rem;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.warning-note p {
    margin: 0;
    color: #856404;
    line-height: 1.4;
}

.warning-note p:first-child {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.warning-note strong {
    color: #b8860b;
}

/* Estilos específicos para a demo do app de entregas */
.login-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.login-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.login-content h4 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.login-form {
    margin-bottom: 2rem;
}

.login-form input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.login-btn {
    width: 100%;
    background: #3498db;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.login-btn:hover {
    background: #2980b9;
}

.login-footer {
    font-size: 0.8rem;
    color: #7f8c8d;
}

.login-footer p {
    margin: 0.3rem 0;
}

/* Estilos para tela de rotas */
.user-info {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* App Entregas - Rotas - Força total dos estilos */
.phone-mockup .routes-content {
    padding: 0.5rem !important;
    background: transparent !important;
    height: auto !important;
}

.phone-mockup .route-summary-cards {
    display: flex !important;
    gap: 0.4rem !important;
    padding: 0.8rem !important;
    margin: 0 !important;
}

.phone-mockup .summary-card {
    flex: 1 !important;
    background: white !important;
    border-radius: 8px !important;
    padding: 0.6rem !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    border: 1px solid #f0f0f0 !important;
}

.phone-mockup .summary-icon {
    font-size: 1.1rem !important;
    opacity: 0.8 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.phone-mockup .summary-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.1rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.phone-mockup .summary-number {
    font-size: 0.85rem !important;
    font-weight: bold !important;
    color: #2c3e50 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.phone-mockup .summary-label {
    font-size: 0.6rem !important;
    color: #7f8c8d !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.phone-mockup .routes-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.4rem !important;
    padding: 0 !important;
    margin: 0 !important;
}

.phone-mockup .route-item {
    display: flex !important;
    align-items: center !important;
    padding: 0.5rem !important;
    background: #f8f9fa !important;
    border: 1px solid #ecf0f1 !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    box-shadow: none !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
    margin: 0 !important;
    transform: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.phone-mockup .route-item:hover {
    background: #e9ecef !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.phone-mockup .route-status {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background: #27ae60 !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    margin-right: 0.6rem !important;
    font-size: 0.7rem !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.phone-mockup .route-status.pending {
    background: #bdc3c7 !important;
}

.phone-mockup .route-info {
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
}

.phone-mockup .route-info h4 {
    margin: 0 0 0.2rem 0 !important;
    font-size: 0.8rem !important;
    color: #2c3e50 !important;
    line-height: 1.1 !important;
    padding: 0 !important;
    font-weight: 600 !important;
}

.phone-mockup .route-info p {
    margin: 0 0 0.1rem 0 !important;
    font-size: 0.65rem !important;
    color: #7f8c8d !important;
    line-height: 1.1 !important;
    padding: 0 !important;
}

.phone-mockup .route-info small {
    font-size: 0.6rem !important;
    color: #95a5a6 !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.phone-mockup .route-arrow {
    color: #3498db !important;
    font-size: 1rem !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

/* Estilos para tela do mapa */
.map-controls {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.map-content {
    padding: 1rem;
}

.map-container {
    height: 200px;
    background: #ecf0f1;
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.real-map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.next-delivery {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.next-delivery h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1rem;
}

.delivery-details p {
    margin: 0.5rem 0;
    font-size: 0.8rem;
    color: #34495e;
}

.navigate-btn {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
}

.navigate-btn:hover {
    background: #229954;
}

.distance-warning {
    margin-top: 0.8rem;
    text-align: center;
}

.distance-warning p {
    font-size: 0.75rem;
    color: #f39c12;
    margin: 0;
    font-style: italic;
    line-height: 1.3;
}

/* Estilos para checkout de entrega */
.checkout-content {
    padding: 1rem;
}

.delivery-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.delivery-info h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.delivery-info p {
    margin: 0.3rem 0;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.delivery-form {
    margin-bottom: 1.5rem;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.positivation-btn {
    flex: 1;
    background: #f39c12;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.positivation-btn:hover {
    background: #e67e22;
}

.confirm-btn {
    flex: 1;
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.confirm-btn:hover {
    background: #229954;
}

/* Estilos para o mockup desktop */
.desktop-demo-section {
    background: white;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.desktop-demo-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.desktop-demo-section p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.desktop-mockup {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.desktop-frame {
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
}

.desktop-header {
    background: #e5e5e5;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #ddd;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.address-bar {
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    flex: 1;
    font-size: 0.9rem;
    color: #666;
}

.desktop-content {
    background: white;
    min-height: 600px;
}

/* Header do admin */
.admin-header {
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo h3 {
    margin: 0;
    font-size: 1.3rem;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logout-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

/* Tabs de navegação */
.admin-tabs {
    background: #34495e;
    display: flex;
    padding: 0 2rem;
}

.tab-btn {
    background: none;
    border: none;
    color: #bdc3c7;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.tab-btn:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.tab-btn.active {
    background: white;
    color: #2c3e50;
    border-radius: 8px 8px 0 0;
}

/* Conteúdo das tabs */
.admin-tab-content {
    display: none;
    padding: 2rem;
}

.admin-tab-content.active {
    display: block;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    height: 500px;
}

.admin-column {
    display: flex;
    flex-direction: column;
}

.admin-column h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

/* Filtros */
.orders-filter {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter-input,
.filter-select {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Lista de pedidos */
.orders-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.order-item {
    background: #f8f9fa;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.order-item:hover {
    background: #e8f5e8;
    border-color: #27ae60;
    transform: translateY(-2px);
}

.order-item.selected {
    background: #d4edda;
    border-color: #27ae60;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.order-id {
    font-weight: bold;
    color: #2c3e50;
    font-size: 0.9rem;
}

.order-priority {
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
}

.order-priority.high { background: #ffebee; color: #c62828; }
.order-priority.medium { background: #fff3e0; color: #ef6c00; }
.order-priority.low { background: #e8f5e8; color: #2e7d32; }

.order-details p {
    margin: 0.3rem 0;
    font-size: 0.8rem;
    color: #555;
}

/* Construtor de rota */
.route-builder {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.route-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.info-row label {
    width: 80px;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
}

.driver-select,
.vehicle-select,
.date-input {
    flex: 1;
    padding: 0.4rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.8rem;
}

.route-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.route-summary h5 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.route-orders {
    flex: 1;
    background: #f8f9fa;
    border: 2px dashed #bdc3c7;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 150px;
}

.empty-route {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

.route-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 0.8rem;
    border-radius: 6px;
    flex: 1;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: #7f8c8d;
    margin-bottom: 0.3rem;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #3498db;
}

/* Mapa e ações */
.route-map {
    background: #ecf0f1;
    border-radius: 8px;
    height: 200px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #7f8c8d;
}

.map-placeholder p {
    margin: 0;
    font-size: 1rem;
}

.map-placeholder small {
    font-size: 0.8rem;
    font-style: italic;
}

.route-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.route-actions button {
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-optimize {
    background: #f39c12;
    color: white;
}

.btn-preview {
    background: #9b59b6;
    color: white;
}

.btn-save {
    background: #27ae60;
    color: white;
}

.btn-assign {
    background: #3498db;
    color: white;
}

.route-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Estilos para o portal do cliente */
.customer-portal-section {
    background: white;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.customer-portal-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.customer-portal-section p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.portal-mockup {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.portal-frame {
    background: white;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.portal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portal-logo h3 {
    margin: 0;
    font-size: 1.3rem;
}

.portal-logo small {
    display: block;
    opacity: 0.9;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.portal-info {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.portal-content {
    padding: 2rem;
}

.tracking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tracking-map-section h4,
.tracking-info-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.customer-map {
    width: 100%;
    height: 250px;
    background: #ecf0f1;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
}

.delivery-status {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #bdc3c7;
}

.status-item.active {
    background: #d4edda;
    border-left-color: #27ae60;
}

.status-item.pending {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.status-item.completed {
    background: #d4edda;
    border-left-color: #28a745;
}

.status-item.completed .status-icon {
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-item.in-transit {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.status-item.in-transit .status-icon {
    background: #ffc107;
    color: #212529;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.status-info strong {
    display: block;
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.status-info small {
    color: #7f8c8d;
    font-size: 0.8rem;
}

.delivery-card {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid #ecf0f1;
}

.card-header {
    background: #3498db;
    color: white;
    padding: 0.8rem 1rem;
}

.card-header h5 {
    margin: 0;
    font-size: 1rem;
}

.card-content {
    padding: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.value {
    color: #34495e;
    font-size: 0.9rem;
}

.driver-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.driver-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.driver-details strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.driver-details p {
    margin: 0.2rem 0;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.eta-info {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.eta-time,
.distance-info {
    text-align: center;
    flex: 1;
}

.eta-label,
.distance-label {
    display: block;
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 0.3rem;
}

.eta-value,
.distance-value {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #3498db;
}

.notification-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #ecf0f1;
}

.notification-card h5 {
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.notification-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #ecf0f1;
}

.notification-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.notification-time {
    font-weight: bold;
    color: #3498db;
    font-size: 0.8rem;
    min-width: 40px;
}

.notification-text {
    color: #34495e;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .highlight-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-card {
        padding: 1.5rem;
    }
    
    .tech-differentials h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .placeholder-image {
        font-size: 4rem;
        margin-top: 2rem;
    }
    
    .modulos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-contact {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 1.5rem 1rem;
    }
    
    .modulos, .vantagens {
        padding: 2rem 0;
    }
    
    .modulo-card {
        padding: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .module-hero h1 {
        font-size: 2rem;
    }
    
    .module-hero .module-icon {
        font-size: 3rem;
    }
    
    .feature-detail {
        padding: 1.5rem;
    }
    
    .info-card, .cta-card {
        padding: 1.5rem;
    }
    
    .app-demo-section {
        padding: 2rem 1rem;
    }
    
    .phone-frame {
        width: 320px;
        height: 600px;
        padding: 15px;
    }
    
    .phone-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Crossdocking Demo Styles */
.crossdocking-mockup {
    margin-top: 30px;
}

.crossdocking-header {
    background: #2c3e50;
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crossdocking-logo h2 {
    margin: 0;
    font-size: 1.5em;
}

.crossdocking-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crossdocking-tabs {
    background: #34495e;
    display: flex;
    border-bottom: 3px solid #2c3e50;
}

.crossdocking-tabs .tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid #2c3e50;
}

.crossdocking-tabs .tab-btn:last-child {
    border-right: none;
}

.crossdocking-tabs .tab-btn:hover {
    background: #2c3e50;
    color: white;
}

.crossdocking-tabs .tab-btn.active {
    background: #3498db;
    color: white;
}

.crossdocking-tab-content {
    display: none;
    padding: 25px;
    background: #f8f9fa;
    min-height: 500px;
}

.crossdocking-tab-content.active {
    display: block;
}

.crossdocking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.crossdocking-column h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

/* Arrival Schedule */
.arrival-schedule {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.arrival-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.arrival-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.arrival-item.urgent {
    border-left: 4px solid #e74c3c;
    background: #fff5f5;
}

.arrival-time {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c3e50;
    margin-right: 15px;
    min-width: 60px;
}

.arrival-info strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.arrival-info p {
    margin: 2px 0;
    color: #6c757d;
    font-size: 0.9em;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
    margin-top: 5px;
}

.status-badge.arriving {
    background: #fff3cd;
    color: #856404;
}

.status-badge.scheduled {
    background: #d4edda;
    color: #155724;
}

/* Docks Grid */
.docks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dock-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.dock-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.dock-item.occupied {
    border-color: #e74c3c;
    background: #fff5f5;
}

.dock-item.available {
    border-color: #27ae60;
    background: #f8fff8;
}

.dock-item.maintenance {
    border-color: #f39c12;
    background: #fffbf0;
}

.dock-number {
    font-size: 1.1em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.dock-status {
    font-weight: 500;
    margin-bottom: 10px;
}

.dock-info {
    font-size: 0.9em;
    color: #6c757d;
    line-height: 1.4;
}

/* Triagem Styles */
.triagem-list {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.triagem-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.triagem-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.item-code {
    background: #3498db;
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    margin-right: 15px;
    min-width: 60px;
    text-align: center;
}

.item-info {
    flex: 1;
}

.item-info strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.item-info p {
    margin: 2px 0;
    color: #6c757d;
    font-size: 0.9em;
}

.priority {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
    margin-top: 5px;
}

.priority.high {
    background: #fff3cd;
    color: #856404;
}

.priority.medium {
    background: #d4edda;
    color: #155724;
}

.btn-assign {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-assign:hover {
    background: #2980b9;
}

/* Separation Areas */
.separation-areas {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.area-item {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
}

.area-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.area-header h4 {
    margin: 0;
    color: #2c3e50;
}

.capacity {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

.area-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8em;
    font-weight: 500;
}

/* Expedition Styles */
.expedition-vehicles {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.vehicle-item {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
}

.vehicle-info strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.vehicle-info p {
    margin: 2px 0;
    color: #6c757d;
    font-size: 0.9em;
}

.vehicle-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
    margin-top: 5px;
}

.vehicle-status.loading {
    background: #fff3cd;
    color: #856404;
}

.vehicle-status.waiting {
    background: #f8d7da;
    color: #721c24;
}

.loading-progress {
    margin-top: 10px;
}

.progress-bar {
    background: #e9ecef;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    background: #28a745;
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.expedition-control {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.control-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.check-list {
    margin-bottom: 20px;
}

.check-list label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    color: #2c3e50;
}

.check-list input[type="checkbox"] {
    margin-right: 10px;
}

.expedition-actions {
    display: flex;
    gap: 10px;
}

.btn-primary {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #218838;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Dashboard Styles */
.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.metric-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 2.5em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.metric-label {
    color: #6c757d;
    font-size: 0.9em;
}

.dashboard-charts {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chart-container h4 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.mock-chart {
    height: 200px;
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 100%;
    gap: 10px;
}

.bar {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    flex: 1;
    display: flex;
    align-items: end;
    justify-content: center;
    color: white;
    font-size: 0.8em;
    font-weight: 500;
    padding-bottom: 5px;
}

/* Responsive Design for Crossdocking */
@media (max-width: 768px) {
    .crossdocking-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .docks-grid {
        grid-template-columns: 1fr;
    }
    
    .crossdocking-tabs .tab-btn {
        font-size: 0.9em;
        padding: 12px 10px;
    }
}

/* WMS Demo Styles */
.wms-mockup {
    margin-top: 30px;
}

.wms-header {
    background: #2c3e50;
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wms-logo h2 {
    margin: 0;
    font-size: 1.5em;
}

.wms-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wms-tabs {
    background: #34495e;
    display: flex;
    border-bottom: 3px solid #2c3e50;
}

.wms-tabs .tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid #2c3e50;
}

.wms-tabs .tab-btn:last-child {
    border-right: none;
}

.wms-tabs .tab-btn:hover {
    background: #2c3e50;
    color: white;
}

.wms-tabs .tab-btn.active {
    background: #3498db;
    color: white;
}

.wms-tab-content {
    display: none;
    padding: 25px;
    background: #f8f9fa;
    min-height: 500px;
}

.wms-tab-content.active {
    display: block;
}

.wms-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.wms-column h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

/* Search Bar */
.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9em;
}

.filter-select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    min-width: 150px;
}

/* Products Table */
.products-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}

.product-row.header {
    background: #3498db;
    color: white;
    font-weight: bold;
}

.product-row:hover:not(.header) {
    background: #f8f9fa;
}

.product-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
    text-align: center;
}

.product-status.available {
    background: #d4edda;
    color: #155724;
}

.product-status.low {
    background: #fff3cd;
    color: #856404;
}

.product-status.out {
    background: #f8d7da;
    color: #721c24;
}

/* Alerts Panel */
.alerts-panel {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.alert-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid;
}

.alert-item.critical {
    background: #fff5f5;
    border-left-color: #e74c3c;
}

.alert-item.warning {
    background: #fff3cd;
    border-left-color: #f39c12;
}

.alert-item.info {
    background: #e3f2fd;
    border-left-color: #2196f3;
}

.alert-icon {
    margin-right: 12px;
    font-size: 1.2em;
}

.alert-content strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 4px;
}

.alert-time {
    font-size: 0.8em;
    color: #6c757d;
    margin-top: 4px;
}

/* Quick Actions */
.quick-actions {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-actions h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.action-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.action-btn:hover {
    background: #2980b9;
}

/* Movements */
.movements-list {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.movement-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.movement-type {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

.movement-type.entrada {
    background: #27ae60;
}

.movement-type.saida {
    background: #e74c3c;
}

.movement-type.transferencia {
    background: #f39c12;
}

.movement-info {
    flex: 1;
}

.movement-info strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 4px;
}

.movement-time {
    font-size: 0.8em;
    color: #6c757d;
}

.movement-location {
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8em;
    font-weight: 500;
}

/* Movement Form */
.movement-form {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
    font-weight: 500;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9em;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #229954;
}

/* Inventory Zones */
.inventory-zones {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.zone-item {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
}

.zone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.zone-header h4 {
    margin: 0;
    color: #2c3e50;
}

.zone-progress {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

.zone-progress-bar {
    background: #e9ecef;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.zone-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zone-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8em;
}

.zone-btn:not(.completed) {
    background: #3498db;
    color: white;
}

.zone-btn.completed {
    background: #27ae60;
    color: white;
}

/* Divergences */
.divergences-list {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.divergence-item {
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
}

.divergence-product strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.divergence-values {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin: 10px 0;
}

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

.value-item .label {
    display: block;
    font-size: 0.8em;
    color: #6c757d;
    margin-bottom: 2px;
}

.value-item .value {
    display: block;
    font-weight: bold;
    font-size: 1.1em;
}

.value.system {
    color: #3498db;
}

.value.counted {
    color: #f39c12;
}

.value.difference {
    color: #e74c3c;
}

.divergence-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.adjust-btn, .recount-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8em;
}

.adjust-btn {
    background: #27ae60;
    color: white;
}

.recount-btn {
    background: #f39c12;
    color: white;
}

/* Reports Dashboard */
.reports-dashboard {
    padding: 20px;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.reports-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chart-mockup {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    height: 200px;
    display: flex;
    align-items: end;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.chart-bar {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    color: white;
    font-size: 0.8em;
    font-weight: 500;
    padding: 5px;
    position: relative;
}

.bar-label {
    position: absolute;
    bottom: -20px;
    color: #2c3e50;
    font-size: 0.7em;
}

.bar-value {
    margin-bottom: 5px;
}

/* Responsive Design for WMS */
@media (max-width: 768px) {
    .wms-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .wms-tabs .tab-btn {
        font-size: 0.9em;
        padding: 12px 10px;
    }
    
    .divergence-values {
        grid-template-columns: 1fr;
    }
}

/* Animação para card de entrega */
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* WMS Modern Styles */
.wms-mockup {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.2);
}

.wms-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.wms-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logout-btn {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.logout-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.wms-tabs {
    background: white;
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
    padding: 0 4px;
}

.wms-tabs .tab-btn {
    background: none;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 8px 8px 0 0;
    margin: 4px 2px 0 2px;
}

.wms-tabs .tab-btn:hover {
    background: #f1f5f9;
    color: #475569;
    transform: translateY(-1px);
}

.wms-tabs .tab-btn.active {
    color: #6366f1;
    border-bottom-color: #6366f1;
    background: #f8fafc;
    box-shadow: 0 -2px 8px rgba(99, 102, 241, 0.1);
}

.wms-tab-content {
    display: none;
    padding: 24px;
    background: #f8fafc;
    min-height: 600px;
}

.wms-tab-content.active {
    display: block;
}

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

.wms-column h3 {
    margin: 0 0 20px 0;
    color: #1e293b;
    font-size: 20px;
    font-weight: 600;
}

/* Modern Card Containers */
.card-container {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.card-container:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Search Bar */
.wms-tab-content .search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.wms-tab-content .search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.wms-tab-content .search-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.wms-tab-content .filter-select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    min-width: 180px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wms-tab-content .filter-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Modern Products Table */
.products-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-row {
    display: grid;
    grid-template-columns: 100px 2fr 100px 80px 120px 100px;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
    transition: background 0.2s ease;
}

.product-row:hover:not(.header) {
    background: #f8fafc;
}

.product-row.header {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    font-weight: 600;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
}

.product-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-status.available {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    border: 1px solid #86efac;
}

.product-status.low {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid #fbbf24;
}

.product-status.out {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid #f87171;
}

.product-status.blocked {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    border: 1px solid #94a3b8;
}

/* Summary Cards */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.summary-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.summary-card.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

.summary-card.warning:hover {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.summary-card.critical {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.2);
}

.summary-card.critical:hover {
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.summary-card.blocked {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 4px 16px rgba(107, 114, 128, 0.2);
}

.summary-card.blocked:hover {
    box-shadow: 0 8px 24px rgba(107, 114, 128, 0.3);
}

.summary-icon {
    font-size: 24px;
    margin-bottom: 8px;
    opacity: 0.9;
    color: white;
}

.summary-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.summary-label {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    color: white;
}

/* Modern Buttons */
.btn-modern {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.btn-search {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-approve {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.btn-approve:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-reject {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.btn-reject:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}



.btn-view {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.btn-separate {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

.btn-separate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.btn-pdf {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.btn-pdf:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.btn-excel {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.btn-excel:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-edit {
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-unlock {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.btn-unlock:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-permissions {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.btn-permissions:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.btn-process {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.btn-process:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-ship {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

.btn-ship:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.btn-add-product {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
    margin-left: 8px;
}

.btn-add-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.btn-remove {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.btn-remove:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

/* Pedidos List */
.pedidos-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pedido-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.pedido-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.pedido-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pedido-number {
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
}

.pedido-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pedido-status.pendente {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid #fbbf24;
}

.pedido-status.aprovado {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    border: 1px solid #86efac;
}

.pedido-info {
    margin-bottom: 16px;
}

.pedido-info strong {
    display: block;
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 16px;
}

.pedido-info p {
    margin: 4px 0;
    color: #64748b;
    font-size: 14px;
}

.pedido-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Form Styles */
.pedido-form {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.cliente-form {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.base-query {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.wms-tab-content .form-group {
    margin-bottom: 20px;
}

.wms-tab-content .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.wms-tab-content .form-input, 
.wms-tab-content .form-select, 
.wms-tab-content .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.wms-tab-content .form-input:focus, 
.wms-tab-content .form-select:focus, 
.wms-tab-content .form-textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.wms-tab-content .form-textarea {
    resize: vertical;
    min-height: 100px;
}

.wms-tab-content .submit-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wms-tab-content .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

/* Product Search and Items */
.product-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pedido-items {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.pedido-item-added {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #e2e8f0;
}

.item-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.item-qty {
    width: 80px;
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-align: center;
}

/* Base Operations */
.base-operations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.operation-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.operation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.operation-header h4 {
    margin: 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.operation-count {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.operation-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operation-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.operation-item strong {
    display: block;
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
}

.operation-item p {
    margin: 0 0 12px 0;
    color: #64748b;
    font-size: 13px;
}

/* Base Result */
.base-result {
    margin-top: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.base-result h4 {
    margin: 0 0 16px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.result-item strong {
    display: block;
    margin-bottom: 12px;
    color: #1e293b;
    font-size: 15px;
    font-weight: 600;
}

.stock-locations {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.location-total {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 8px;
}

.location-total .location,
.location-total .quantity {
    color: white;
}

/* Pedido Base */
.pedido-base {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.pedido-base h4 {
    margin: 0 0 16px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.pedido-base-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 12px;
}

.pedido-base-item strong {
    display: block;
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
}

.pedido-base-item p {
    margin: 4px 0;
    color: #64748b;
    font-size: 13px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.status-badge.approved {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    border: 1px solid #86efac;
}

/* Orçamentos */
.orcamentos-list {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.orcamento-item {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #f8fafc;
}

.orcamento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.orcamento-number {
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
}

.orcamento-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orcamento-status.pendente {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid #fbbf24;
}

.orcamento-info strong {
    display: block;
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 16px;
}

.orcamento-info p {
    margin: 4px 0;
    color: #64748b;
    font-size: 14px;
}

/* Relatórios */
.relatorios-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.relatorio-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.relatorio-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.relatorio-item h4 {
    margin: 0 0 8px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.relatorio-item p {
    margin: 0 0 16px 0;
    color: #64748b;
    font-size: 14px;
}

.relatorio-actions {
    display: flex;
    gap: 8px;
}

/* Dashboard Metrics */
.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.metric-icon {
    font-size: 24px;
    margin-bottom: 8px;
    opacity: 0.9;
    color: white;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.metric-label {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    color: white;
}

/* Usuarios */
.usuarios-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usuario-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.usuario-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.usuario-item.blocked {
    border-left: 4px solid #ef4444;
}

.usuario-item.active {
    border-left: 4px solid #10b981;
}

.usuario-info strong {
    display: block;
    margin-bottom: 4px;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.usuario-info p {
    margin: 0 0 8px 0;
    color: #64748b;
    font-size: 14px;
}

.user-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-status.ativo {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    border: 1px solid #86efac;
}

.user-status.bloqueado {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid #f87171;
}

.usuario-actions {
    display: flex;
    gap: 8px;
}

/* Permissions Tree */
.permissions-tree {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.permission-group {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.permission-group h4 {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.permission-item {
    margin-bottom: 8px;
}

.permission-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
    cursor: pointer;
}

.permission-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #6366f1;
}

/* Validity Alerts */
.validity-alerts {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.validity-alerts h4 {
    margin: 0 0 16px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.validity-item {
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 12px;
    border-left: 4px solid;
}

.validity-item.urgent {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left-color: #ef4444;
}

.validity-item.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: #f59e0b;
}

.validity-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.validity-item p {
    margin: 0 0 4px 0;
    color: #374151;
    font-size: 13px;
}

.validity-date {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 768px) {
    .wms-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-cards {
        grid-template-columns: 1fr;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
    
    .wms-tabs {
        flex-wrap: wrap;
    }
    
    .product-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .pedido-actions {
        justify-content: center;
    }
    
    .usuario-item {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .usuario-actions {
        justify-content: center;
    }
}