/* CONTATO */
.contato-info {
    margin-bottom: 32px;
    text-align: center;
}
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25d366;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    transition: color 0.2s;
}
.whatsapp-link:hover {
    color: #128c7e;
}
.contato-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--color-header-bg);
    padding: 32px 24px;
    border-radius: 14px;
    box-shadow: 0 2px 16px 0 rgba(26, 39, 71, 0.10);
}
.form-group {
    display: flex;
    flex-direction: column;
}
.contato-form input,
.contato-form textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--color-accent);
    border-radius: 6px;
    font-size: 1rem;
    background: #f8f9fa;
    color: var(--color-dark);
    outline: none;
    transition: border-color 0.2s;
}
.contato-form input:focus,
.contato-form textarea:focus {
    border-color: var(--color-primary);
}
.btn-enviar {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}
.btn-enviar:hover {
    background: var(--color-accent);
}
/* PRODUTOS */
.produtos-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
}

.produto-card {
    background: var(--color-header-bg);
    color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(26, 39, 71, 0.10);
    padding: 32px 28px 28px 28px;
    max-width: 340px;
    min-width: 260px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1.5px solid var(--color-accent);
}

.produto-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(26, 115, 232, 0.18);
    border-color: var(--color-primary);
}

.produto-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 18px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.produto-img.sem-fundo {
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}


.produto-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #eaf2fb;
    text-align: center;
}

.produto-card p {
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 400;
}
    
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.servico-icon {
    width: 48px;
    height: 48px;
    background: rgba(66,133,244,0.10);
    border-radius: 12px;
    box-shadow: 0 2px 8px 0 rgba(66,133,244,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* VARIÁVEIS DE COR */
:root {
    --color-primary: #1a73e8;
    --color-secondary: #0d47a1;
    --color-accent: #4285f4;
    --color-light: #f8f9fa;
    --color-dark: #202124;
    --color-gray: #5f6368;
    --color-border: #dadce0;
    --color-white: #ffffff;
    --color-bg: #1a2747; /* azul escuro para o fundo */
    --color-header-bg: #223366; /* azul mais escuro para o header */
}

/* FONTE E ESTILO GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-bg);
}

/* HEADER E NAVEGAÇÃO */
.header {
    background-color: var(--color-header-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0 20px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
}

/* LOGO SECTION */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo {
    height: 70px;
    width: auto;
    max-width: none;
    /* Ocupa toda a altura do header */
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    display: none;
}

@media (min-width: 768px) {
    .company-name {
        display: block;
    }
}

/* MENU PRINCIPAL */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* BOTÃO ÁREA DO CLIENTE */
.btn-cliente {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.btn-cliente:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    scroll-margin-top: 70px;
}

.section-home {
    background: none;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* CARDS DE SERVIÇOS */
.servicos-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
}

.servico-card {
    background: var(--color-header-bg);
    color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(26, 39, 71, 0.10);
    padding: 32px 28px 28px 28px;
    max-width: 340px;
    min-width: 260px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1.5px solid var(--color-accent);
}

.servico-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(26, 115, 232, 0.18);
    border-color: var(--color-primary);
}

.servico-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #eaf2fb;
    text-align: center;
}

.servico-card p {
    font-size: 1rem;
    color: #eaf2fb;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

@media (max-width: 900px) {
    .servicos-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .servico-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
}

.section-produtos {
    background-color: var(--color-light);
}

.section-servicos {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-sobre {
    background-color: var(--color-light);
}

.section-contato {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.section-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.section-home h2 {
    color: var(--color-white);
}

.section-content p {
    font-size: 18px;
    color: var(--color-gray);
    font-weight: 300;
}
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    font-size: 14px;
    color: #bdc1c6;
    margin: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .nav-container {
        height: auto;
        padding: 15px 0;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .btn-cliente {
        padding: 8px 16px;
        font-size: 12px;
    }

    .section-content h1 {
        font-size: 32px;
    }

    .section-content h2 {
        font-size: 28px;
    }

    .section-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }

    .company-name {
        display: none;
    }

    .nav-menu {
        gap: 12px;
        font-size: 12px;
    }

    .btn-cliente {
        padding: 6px 12px;
        font-size: 11px;
    }

    .section-content h1 {
        font-size: 24px;
    }

    .section-content h2 {
        font-size: 22px;
    }
}