@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

:root {
    --primary: #1A2B3C;
    --primary-light: #2C3E50;
    --secondary: #176B87;
    --accent: #176B87;
    --light: #F8FAFC;
    --white: #ffffff;
    --dark: #0f172a;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Semântica (Design Protocol) */
    --text-main: #333333;
    --text-muted: #64748b;
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --border-color: #eaeaea;
}

[data-theme="dark"] {
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --bg-main: #0f172a;
    --bg-card: #1e293b;
    --border-color: #334155;

    /* Adaptação das de base para Dark */
    --primary: #0f172a;
    /* Main background substitution in dark hero */
    --primary-light: #1e293b;
    --light: #1e293b;
    --gray: #94a3b8;
    --gray-light: #334155;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Header */
header {
    background-color: white;
    color: var(--dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 45px;
    width: auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" opacity="0.05"><path fill="white" d="M0,300L48,320C96,340,192,380,288,390C384,400,480,380,576,360C672,340,768,320,864,320C960,320,1056,340,1152,330C1248,320,1344,280,1392,260L1440,240L1440,600L1392,600C1344,600,1248,600,1152,600C1056,600,960,600,864,600C768,600,672,600,576,600C480,600,384,600,288,600C192,600,96,600,48,600L0,600Z"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 90%;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2), 0 2px 4px -1px rgba(37, 99, 235, 0.1);
}

.cta-button:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -2px rgba(37, 99, 235, 0.15);
}

.system-preview {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.system-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.system-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
}

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

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
}


.section-title2 {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.section-title2 h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title2 h2:after {
    content: '';
    position: absolute;
    width: 180px;
    height: 4px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title2 p {
    color: var(--gray);
    max-width: 800px;
    margin: 1.5rem auto 0;
    font-size: 1.4rem;
}


/* Remoção de visuais repetitivos conforme solicitado */
.compra-visual,
.cortes-visual,
.terceirizados-visual {
    display: none !important;
}

.compra-content,
.cortes-content,
.terceirizados-content {
    grid-template-columns: 1fr !important;
}

/* Estilização para Fluxo de Trabalho melhorado */
.section-title .subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.workflow-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    text-align: center;
    /* Centralizando textos explicativos */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.highlight-text h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-text p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #eee;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-color: rgba(57, 73, 171, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
}

.feature-list li i {
    color: var(--success);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Nova Seção: Sugestão de Compra */
.compra-section {
    background-color: #f9f9f9;
}

.compra-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: column;
}

.compra-text {
    flex: 1;
}

.compra-visual {
    flex: 1;
}

.compra-steps {
    margin-top: 2rem;
}

.compra-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.compra-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Nova Seção: Controle de Cortes */
.cortes-section {
    background-color: white;
}

.cortes-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: column;
}

.cortes-text {
    flex: 1;
}

.cortes-visual {
    flex: 1;
}

.cortes-preview {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cortes-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.cortes-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cortes-preview.placeholder {
    background-color: #f5f5f5;
    flex-direction: column;
}

/* Nova Seção: Terceirizados */
.terceirizados-section {
    background-color: #f9f9f9;
}

.terceirizados-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: column;
}

.terceirizados-text {
    flex: 1;
}

.terceirizados-visual {
    flex: 1;
}

.terceirizados-preview {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.terceirizados-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.terceirizados-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.terceirizados-preview.placeholder {
    background-color: #f5f5f5;
    flex-direction: column;
}

/* Workflow */
.workflow {
    background-color: #f9f9f9;
}

/* Interatividade dos Passos */
.workflow-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    position: relative;
    padding-bottom: 2rem;
}

.workflow-steps:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--gray-light);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    color: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.1);
}

.step h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.step.active h4 {
    color: var(--secondary);
}

.step p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
    max-width: 150px;
    margin: 0 auto;
}

/* Dashboard Preview */
.dashboard-preview {
    margin-top: 4rem;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.dashboard-header {
    background-color: var(--primary);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-tabs {
    display: flex;
    background-color: #f1f1f1;
    padding: 0;
}

.dashboard-tab {
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray);
    border-bottom: 3px solid transparent;
}

.dashboard-tab.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
    background-color: white;
}

.dashboard-content {
    padding: 2rem;
    min-height: 400px;
}

/* Estilos para Dashboard com imagens */
.dashboard-tab-content {
    display: none;
    width: 100%;
    text-align: center;
}

.dashboard-tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

.dashboard-screenshot {
    max-width: 100%;
    height: auto;
    max-height: 570px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.dashboard-screenshot:hover {
    transform: scale(1.02);
}

.dashboard-caption {
    padding: 0 1rem;
}

.dashboard-caption h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.dashboard-caption p {
    color: var(--gray);
    line-height: 1.6;
}

.pdf-preview-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.pdf-preview-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.pdf-preview-button:hover {
    transform: translateY(-5px);
}

.pdf-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.screenshot-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: 600;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

/* Plans */
.plans {
    background-color: #f9f9f9;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.plan-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.popular {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: var(--accent);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.plan-header {
    background-color: var(--primary);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.plan-period {
    opacity: 0.9;
    font-size: 1rem;
}

.plan-features {
    padding: 2.5rem 2rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.plan-features ul li i {
    color: var(--success);
    margin-right: 10px;
    font-size: 1.1rem;
}

.plan-features ul li.disabled {
    color: #bbb;
}

.plan-features ul li.disabled i {
    color: #ddd;
}

.plan-button {
    padding: 0 2rem 2.5rem;
    text-align: center;
}

/* Testimonials */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 0 1rem;
    text-align: center;
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contact */
.contact-container {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-methods {
    margin-top: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.8rem;
}

.contact-icon {
    background-color: var(--secondary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.3rem;
    color: var(--primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
    outline: none;
}

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

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4:after,
.footer-social h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ddd;
}

/* Demo Video */
.demo-video {
    margin-top: 3rem;
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 400px;
    background-color: #333;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.video-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

/* Alertas estilizados para formulário */
.alert {
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    animation: fadeIn 0.5s;
    border-left: 5px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
    border-left-color: #28ca42;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
    border-left-color: #dc3545;
}

.alert i {
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert strong {
    display: block;
    margin-bottom: 5px;
}

.alert ul {
    margin: 10px 0 0 20px;
}

.alert ul li {
    padding: 3px 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {

    .hero-content,
    .contact-container,
    .compra-content,
    .cortes-content,
    .terceirizados-content {
        flex-direction: column;
    }

    .workflow-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .workflow-steps:before {
        width: 3px;
        height: 100%;
        left: 40px;
        top: 0;
    }

    .step {
        display: flex;
        text-align: left;
        align-items: center;
        gap: 2rem;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }

    .plan-card.popular {
        transform: none;
    }

    .plan-card.popular:hover {
        transform: translateY(-10px);
    }

    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-highlights {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .pdf-preview-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

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

    .workflow-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .highlight-icon {
        margin: 0 auto;
    }

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

/* --- Novas Melhorias Profissionais --- */

/* Live Chat Flutuante */
.live-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    cursor: pointer;
    z-index: 2000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
}

.live-chat-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent);
}

/* Menu Mobile Flutuante */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2100;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Dashboard Tabs Styles */
.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 1rem;
}

.dashboard-tab {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dashboard-tab:hover {
    background: var(--light);
    color: var(--primary);
}

.dashboard-tab.active {
    background: var(--secondary);
    color: var(--white);
}

.dashboard-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 3000;
        background: var(--secondary);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    header {
        position: static;
        padding: 1rem 0;
    }

    nav#mainNav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        z-index: 2050;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }

    nav#mainNav.active {
        display: flex;
        animation: fadeIn 0.3s;
    }

    nav#mainNav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0;
    }

    nav#mainNav ul li {
        margin: 0;
    }

    nav#mainNav ul li a {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .dashboard-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .dashboard-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
}

/* Melhorias em Grids e Cards */
.features-grid.four-columns {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 2rem !important;
}

/* Melhoria nos Cards de Contato/Representantes */
.contatos-grid.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.contato-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contato-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.contato-card.central {
    border-top: 5px solid var(--secondary);
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.contato-icon {
    width: 64px;
    height: 64px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contato-card:hover .contato-icon {
    background: var(--secondary);
}

.contato-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.contato-card:hover .contato-icon i {
    color: var(--white);
}

.contato-info h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: #25d366;
    color: white !important;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.wa-link:hover {
    background: #128c7e;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Utilitários */
.mb-2 {
    margin-bottom: 0.5rem;
}

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

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

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

/* Bento Grid */
.bento-section {
    padding: 6rem 0;
    background-color: var(--light);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(23, 107, 135, 0.3);
}

.bento-card.col-8 {
    grid-column: span 8;
}

.bento-card.col-4 {
    grid-column: span 4;
}

.bento-card.col-6 {
    grid-column: span 6;
}

.bento-card.col-12 {
    grid-column: span 12;
}

@media (max-width: 991px) {

    .bento-card.col-8,
    .bento-card.col-4,
    .bento-card.col-6 {
        grid-column: span 12;
    }
}

.bento-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: rgba(23, 107, 135, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.bento-icon svg {
    width: 32px;
    height: 32px;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.bento-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Badges e utilitários modernos */
.modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(23, 107, 135, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 107, 135, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

.pain-points {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pain-point {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--light);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.pain-point.neg {
    border-left: 4px solid var(--danger);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.pain-point.pos {
    border-left: 4px solid var(--success);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.pain-point svg {
    width: 20px;
    height: 20px;
}

.pain-point.neg svg {
    color: var(--danger);
}

.pain-point.pos svg {
    color: var(--success);
}