/* --- VARIÁVEIS E RESET --- */
:root {
    --primary-purple: #6c5ce7;
    --dark-purple: #4834d4;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --soft-purple: #f1f0ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- HEADER --- */
header {
    background-color: var(--bg-white);
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.centerimg {
    align-items: center;
    max-width: 160px;
    max-height: 75px;
}
.logo img { height: 60px; width: auto; }
.logo2 img { height: 60px; width: auto; align-items: center; }

nav { flex: 1; display: flex; justify-content: center; }
nav ul { display: flex; list-style: none; gap: 25px; }
nav ul li a { 
    text-decoration: none; 
    color: var(--text-dark); 
    font-size: 0.95rem; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}
nav ul li a:hover, nav ul li a.active { 
    color: var(--primary-purple); 
    border-bottom: 2px solid var(--primary-purple);
}

.menu-toggle { display: none; font-size: 1.8rem; color: var(--primary-purple); cursor: pointer; }

/* --- HERO --- */
.hero { padding: 120px 10%; text-align: center; background: linear-gradient(135deg, #ffffff 0%, var(--soft-purple) 100%); }
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.cta-button { background-color: var(--primary-purple); color: white; padding: 16px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; display: inline-block; margin-top: 20px; transition: 0.3s; border: none; cursor: pointer; font-size: 1rem; }
.cta-button:hover { transform: translateY(-3px); background: var(--dark-purple); box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2); }

/* --- SEÇÃO A EMPRESA --- */
.company-section { padding: 80px 10%; background-color: var(--bg-white); }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.company-header { text-align: center; margin-bottom: 40px; }
.subtitle { color: var(--primary-purple); text-transform: uppercase; font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.company-header h2 { font-size: 2.2rem; margin-bottom: 20px; }
.company-header h2 strong { color: var(--primary-purple); }
.main-description { font-size: 1.1rem; color: var(--text-light); max-width: 800px; margin: 0 auto; }

.company-highlights { background: var(--soft-purple); padding: 30px; border-radius: 15px; margin-bottom: 50px; display: flex; flex-direction: column; gap: 15px; border-left: 5px solid var(--primary-purple); text-align: left; }
.company-highlights p { font-size: 1.05rem; font-weight: 500; display: flex; align-items: center; gap: 15px; color: var(--text-dark); }
.company-highlights i { color: var(--primary-purple); font-size: 1.5rem; }

.company-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.company-item { padding: 30px; background: var(--bg-light); border-radius: 15px; transition: 0.3s; }
.company-item:hover { background: var(--soft-purple); transform: translateY(-5px); }
.company-item i { font-size: 2rem; color: var(--primary-purple); margin-bottom: 15px; }
.company-item h4 { margin-bottom: 10px; font-size: 1.2rem; }

/* --- SISTEMAS --- */
.systems-section { padding: 80px 10%; background-color: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 50px; }
.systems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.system-card { background-color: var(--bg-white); padding: 40px 30px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); transition: all 0.3s ease; display: flex; flex-direction: column; border-top: 4px solid transparent; }
.system-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(108, 92, 231, 0.1); border-top: 4px solid var(--primary-purple); }
.card-icon { width: 60px; height: 60px; background-color: var(--soft-purple); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; }
.card-icon i { font-size: 1.8rem; color: var(--primary-purple); }
.system-card h3 { font-size: 1.5rem; margin-bottom: 10px; font-weight: 800; }
.value-prop { font-size: 0.95rem; font-weight: 600; margin-bottom: 20px; flex-grow: 1; }
.btn-saiba-mais { background: none; border: none; color: var(--primary-purple); font-weight: 600; font-size: 1rem; cursor: pointer; text-align: left; display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 15px; border-top: 1px solid #eee; transition: 0.3s; width: 100%; }
.btn-saiba-mais:hover { gap: 12px; }

/* --- SUPORTE --- */
.suporte-section { padding: 80px 10%; background: var(--bg-white); }
.suporte-content { max-width: 800px; margin: 0 auto; }
.suporte-intro { font-size: 1.2rem; text-align: center; margin-bottom: 40px; color: var(--text-dark); }
.suporte-lista { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.suporte-lista li { background: var(--bg-light); padding: 25px; border-radius: 12px; display: flex; gap: 20px; align-items: flex-start; box-shadow: 0 4px 10px rgba(0,0,0,0.02); border-left: 4px solid var(--primary-purple); }
.suporte-lista li i { font-size: 1.8rem; color: var(--primary-purple); margin-top: 5px; }

/* --- CONTATO REDESENHADO --- */
.contato-section { padding: 80px 10%; background: var(--bg-light); }
.contato-box { background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple)); border-radius: 20px; padding: 60px 40px; text-align: center; color: white; box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3); }
.contato-box h2 { font-size: 2.2rem; margin-bottom: 15px; }
.contato-box p { font-size: 1.1rem; margin-bottom: 35px; opacity: 0.9; }
.contact-cards-wrapper { display: flex; justify-content: center; gap: 20px; margin-bottom: 35px; flex-wrap: wrap; }
.contact-action-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 15px 30px; border-radius: 50px; display: flex; align-items: center; gap: 15px; font-weight: 600; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.2); }
.contact-action-card i { font-size: 1.3rem; }
.contato-box .cta-button { background: white; color: var(--dark-purple); }
.contato-box .cta-button:hover { background: var(--bg-light); color: var(--dark-purple); }

/* --- SLIDER DE CLIENTES / PARCEIROS --- */
.clients-slider-section { padding: 80px 0; background: #fff; overflow: hidden; }
.slider-title { text-align: center; font-size: 1.5rem; margin-bottom: 40px; font-weight: 700; color: var(--text-dark); }
.slider { width: 100%; overflow: hidden; position: relative; }
.slider::before, .slider::after {
    content: ""; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; pointer-events: none;
}
.slider::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.slider::after { right: 0; background: linear-gradient(to left, #fff, transparent); }

.slide-track { 
    display: flex; 
    align-items: center; 
    width: max-content; 
    animation: scroll 28.5s linear infinite; /* Diminuído para 18 segundos para rolar mais rápido e fluido */
}
.slide-track2 { 
    display: flex; 
    align-items: center; 
    width: max-content; 
    }
.slide { width: 220px; min-width: 220px; display: flex; align-items: center; justify-content: center; padding: 0 25px; }
.slide img { max-width: 160px; max-height: 75px; object-fit: contain; filter: grayscale(20%); transition: 0.3s; }
.slide img:hover { filter: grayscale(0%); transform: scale(1.05); }

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-220px * 23)); } /* Corrigido de 5 para 17 para sincronizar perfeitamente com a quantidade de logos */
}

/* --- WHATSAPP FLOATING --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 2px 8px 20px rgba(0,0,0,0.4);
    color: #FFF;
}

/* --- MODAIS (SAIBA MAIS) --- */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(5px); align-items: center; justify-content: center; }
.modal-content { background-color: white; padding: 40px; border-radius: 15px; max-width: 600px; width: 90%; position: relative; animation: modalIn 0.3s ease; max-height: 85vh; overflow-y: auto; }
@keyframes modalIn { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-btn { position: absolute; right: 20px; top: 20px; font-size: 2rem; cursor: pointer; color: var(--text-light); transition: 0.3s; line-height: 1; }
.close-btn:hover { color: red; }
.modal-content h3 { font-size: 1.8rem; color: var(--primary-purple); margin-bottom: 15px; }
.modal-content p { margin-bottom: 15px; color: var(--text-dark); }
.modal-list { margin-bottom: 20px; padding-left: 20px; color: var(--text-dark); }
.modal-list li { margin-bottom: 8px; }
.modal-content a { color: var(--primary-purple); font-weight: bold; }

/* --- RESPONSIVIDADE MOBILE --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; z-index: 1001; }
    nav { position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background: var(--bg-white); flex-direction: column; justify-content: center; transition: 0.4s ease; z-index: 1000; }
    nav.active { left: 0; }
    nav ul { flex-direction: column; align-items: center; gap: 30px; }
    nav ul li a { font-size: 1.4rem; border-bottom: none; }
    nav ul li a:hover, nav ul li a.active { border-bottom: none; }
    
    .hero h1 { font-size: 2.1rem; }
    .hero, .company-section, .systems-section, .suporte-section, .contato-section { padding: 60px 5%; }
    
    .contato-box { padding: 40px 20px; }
    .contact-action-card { width: 100%; justify-content: center; font-size: 1rem; }
    
    .suporte-lista li { flex-direction: column; gap: 10px; }
    .company-highlights p { flex-direction: column; align-items: flex-start; text-align: left; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 26px; }
}

/* --- CONTATO REDESENHADO COM BOTÃO COPIAR --- */
.contato-section { padding: 80px 10%; background: var(--bg-light); }
.contato-box { background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple)); border-radius: 20px; padding: 60px 40px; text-align: center; color: white; box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3); }
.contato-box h2 { font-size: 2.2rem; margin-bottom: 15px; }
.contato-box p { font-size: 1.1rem; margin-bottom: 35px; opacity: 0.9; }
.contact-cards-wrapper { display: flex; justify-content: center; gap: 20px; margin-bottom: 35px; flex-wrap: wrap; }

.contact-action-card { 
    background: rgba(255,255,255,0.1); 
    backdrop-filter: blur(10px); 
    padding: 12px 25px; 
    border-radius: 50px; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    font-weight: 600; 
    font-size: 1.1rem; 
    border: 1px solid rgba(255,255,255,0.2); 
}
.contact-action-card i { font-size: 1.3rem; }

/* Botão de Copiar Clean e Moderno */
.btn-copy {
    background: none;
    border: none;
    color: white; /* Fica discretinho antes de passar o mouse */
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.05rem;
    margin-left: 12px;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Quando passa o mouse, ele acende suavemente */
.btn-copy:hover {
    color: white;
    transform: scale(1.15);
}

.btn-copy:active {
    transform: scale(0.9);
}

.contato-box .cta-button { background: white; color: var(--dark-purple); }
.contato-box .cta-button:hover { background: var(--bg-light); color: var(--dark-purple); }

.centertext {
    text-align: center;
    padding: 60px;
    font-size: 1.5rem;
    
}

.imgg {
  width: 260px;
  height: 145px;
  margin: 0 auto;
  margin-bottom: 40px;
}

/* Adicione este código abaixo */
.imgg img {
  width: 100%;
  height: auto;
}

.final {
    text-align: center;
    font-size: 15px;
}