/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1b2a4e;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-height: 40px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ffc107;
}

.login-btn {
    background-color: #ffc107;
    padding: 6px 14px;
    border-radius: 5px;
    color: #1b2a4e;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #1b2a4e, #2c3e70);
    padding: 100px 40px;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta {
    background-color: #ffc107;
    color: #1b2a4e;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta:hover {
    background-color: #e0a800;
}

/* Footer */
.footer {
    background-color: #1b2a4e;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
.destaques {
    padding: 80px 40px;
    background-color: #fff;
    text-align: center;
}

.destaques h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #1b2a4e;
}

.grid-destaques {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-destaque {
    background-color: #f4f6f9;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.card-destaque:hover {
    transform: translateY(-6px);
}

.card-destaque img {
    max-width: 180px; /* ⬅️ Tamanho aumentado */
    margin-bottom: 20px;
}

.card-destaque h3 {
    font-size: 20px;
    color: #1b2a4e;
    margin-bottom: 10px;
}

.card-destaque p {
    font-size: 16px;
    color: #555;
}
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background-color: rgba(0,0,0,0.4);
    padding: 40px;
    border-radius: 10px;
}

.overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.overlay p {
    font-size: 20px;
}
.hero-slider {
    position: relative;
    height: 300px; /* ⬅️ Altura fixa retangular */
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 8px;
    max-width: 80%;
}

.overlay h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.overlay p {
    font-size: 18px;
}
.sobre {
    background-color: #fff;
    padding: 80px 40px;
    color: #1b2a4e;
}

.container-sobre {
    max-width: 1100px;
    margin: 0 auto;
}

.sobre h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
}

.grid-valores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.grid-valores .item {
    background-color: #f4f6f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.grid-valores h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.grid-valores p {
    font-size: 16px;
    color: #555;
}

.equipe h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.equipe p {
    text-align: center;
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
}

.fotos-equipe {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fotos-equipe img {
    width: 300px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.servicos {
    padding: 80px 40px;
    background-color: #fff;
    color: #1b2a4e;
    text-align: center;
}

.servicos h1 {
    font-size: 36px;
    margin-bottom: 50px;
}

.grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-servico {
    background-color: #f4f6f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-servico:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.card-servico img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card-servico h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card-servico p {
    font-size: 16px;
    color: #555;
}
/* FQA */
.fqa {
    padding: 80px 40px;
    background-color: #fff;
    color: #1b2a4e;
}

.container-fqa {
    max-width: 1000px;
    margin: 0 auto;
}

.fqa h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    color: #555;
}

/* Contato */
.contato {
    padding: 80px 40px;
    background-color: #f4f6f9;
    color: #1b2a4e;
}

.container-contato {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-contato {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.form-contato input,
.form-contato textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.form-contato button {
    background-color: #ffc107;
    color: #1b2a4e;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-contato button:hover {
    background-color: #e0a800;
}
/* Login Admin */
.login-admin {
    padding: 80px 40px;
    background-color: #fff;
    color: #1b2a4e;
    text-align: center;
}

.container-login {
    max-width: 400px;
    margin: 0 auto;
}

.form-login {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.form-login input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.form-login button {
    background-color: #ffc107;
    color: #1b2a4e;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-login button:hover {
    background-color: #e0a800;
}

.erro {
    color: #d9534f;
    font-weight: bold;
    margin-bottom: 20px;
}
.painel {
    padding: 60px 40px;
    background-color: #f9f9f9;
    color: #1b2a4e;
}

.grid-metricas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.box p {
    font-size: 24px;
    font-weight: bold;
}

.area-grafico img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.form-cliente {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-cliente input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.form-cliente button {
    background-color: #ffc107;
    color: #1b2a4e;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-cliente button:hover {
    background-color: #e0a800;
}
.faturas {
    padding: 60px 40px;
    background-color: #fff;
    color: #1b2a4e;
}

.tabela-faturas {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.tabela-faturas th,
.tabela-faturas td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.tabela-faturas th {
    background-color: #f4f6f9;
    font-weight: bold;
}

.botao-ver {
    background-color: #ffc107;
    padding: 6px 12px;
    border-radius: 6px;
    color: #1b2a4e;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.botao-ver:hover {
    background-color: #e0a800;
}
.recebimentos {
    padding: 60px 40px;
    background-color: #fff;
    color: #1b2a4e;
}

.tabela-recebimentos {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.tabela-recebimentos th,
.tabela-recebimentos td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.tabela-recebimentos th {
    background-color: #f4f6f9;
    font-weight: bold;
}

.area-grafico canvas {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.botao-sap {
    background-color: #17a2b8;
    color: #fff;
    padding: 6px 14px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.botao-sap:hover {
    background-color: #138496;
}
.card-botoes {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.card-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-color: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, background-color 0.2s;
    font-size: 18px;
    text-align: center;
    color: #333;
    text-decoration: none;
}

.card-btn:hover {
    background-color: #eaeaea;
    transform: translateY(-5px);
    cursor: pointer;
}

.card-btn i {
    font-size: 32px;
    margin-bottom: 10px;
}
.btn-adicionar {
    background-color: #1b2a4e;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-adicionar:hover {
    background-color: #2c3e6c;
}

.tabela-leads {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tabela-leads th, .tabela-leads td {
    padding: 12px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

.tabela-leads th {
    background-color: #f8f8f8;
    font-weight: bold;
}

.funil-vendas {
    margin-top: 40px;
}

.funil-etapas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.funil-etapas .etapa {
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    min-width: 200px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.formulario-lead {
    max-width: 600px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formulario-lead input,
.formulario-lead select,
.formulario-lead textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.formulario-lead button {
    background-color: #1b2a4e;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.formulario-lead button:hover {
    background-color: #2c3e6c;
}

.alerta {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.kanban-funil {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.kanban-coluna {
    background-color: #f9f9f9;
    min-width: 250px;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kanban-coluna h3 {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.kanban-card {
    background: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    border-left: 5px solid #1b2a4e;
}

.kanban-card span {
    font-weight: bold;
    color: #1b2a4e;
    margin-top: 4px;
}

