/* ============================= */
/* 1. VARIÁVEIS DE COR E RESET   */
/* ============================= */
:root {
    --cor-primaria: #003366; 
    --cor-secundaria: #00aaff; 
    --cor-destaque: #ffcc00; 
    --cor-fundo: #ffffff;
    --cor-texto: #333333;
    --sombra-leve: 0 2px 4px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--cor-primaria);
}

ul {
    list-style: none;
}

/* ============================= */
/* 2. ESTRUTURA GERAL E REUSÁVEIS*/
/* ============================= */
.container {
    width: 90%;
    max-width: 1200px; 
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--cor-secundaria);
    color: var(--cor-fundo);
    border: 2px solid var(--cor-secundaria);
}

.btn-primary:hover {
    background-color: var(--cor-primaria);
    border-color: var(--cor-primaria);
}

/* ============================= */
/* 3. CABEÇALHO E NAVEGAÇÃO      */
/* ============================= */
.header {
    background-color: var(--cor-fundo);
    box-shadow: var(--sombra-leve);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: 800;
    line-height: 1;
}

.logo .mult {
    color: var(--cor-primaria);
}

.logo .serv {
    color: var(--cor-secundaria);
    margin-left: -5px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 600;
    padding: 5px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--cor-secundaria);
}

.cta-button {
    background-color: var(--cor-secundaria);
    color: var(--cor-fundo) !important;
    padding: 8px 15px;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: var(--cor-primaria);
    color: var(--cor-fundo) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: var(--cor-primaria);
}

/* ============================= */
/* 4. SEÇÃO HERO (PÁGINA INICIAL)*/
/* ============================= */
.hero {
    padding-top: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--cor-primaria) 0%, #004488 100%);
    color: var(--cor-fundo);
}

.hero .container {
    max-width: 1100px; 
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 900px; 
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1000px) {
    .hero h1 {
        font-size: 3.2em;
    }
}


.hero h2 {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 400;
}

/* ============================= */
/* 5. RESPONSIVIDADE (MOBILE)    */
/* ============================= */
@media (max-width: 768px) {
    .nav.active {
        display: block;
    }
    
    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--cor-primaria);
        padding: 20px 0;
        display: none;
        box-shadow: var(--sombra-leve);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-link {
        color: var(--cor-fundo);
        font-size: 1.1em;
    }

    .nav-link:hover {
        color: var(--cor-secundaria);
    }

    .cta-button {
        margin-top: 10px;
        background-color: var(--cor-destaque);
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero h2 {
        font-size: 1.2em;
    }
    
    .footer-grid {
        grid-template-columns: 1fr; 
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .social-links {
        justify-content: center; 
    }
}
/* ============================= */
/* 6. SEÇÃO SERVIÇOS PRINCIPAIS  */
/* ============================= */
.servicos {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f8f8;
}

.section-title {
    font-size: 2.5em;
    color: var(--cor-primaria);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2em;
    color: var(--cor-texto);
    margin-bottom: 40px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    margin-top: 40px;
}

.servico-card {
    background-color: var(--cor-fundo);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--sombra-leve);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border-top: 5px solid var(--cor-secundaria);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.servico-icon {
    font-size: 3em;
    color: var(--cor-secundaria);
    margin-bottom: 15px;
}

.servico-card h3 {
    font-size: 1.4em;
    color: var(--cor-primaria);
    margin-bottom: 10px;
}

.servico-card p {
    color: var(--cor-texto);
    margin-bottom: 20px;
}

.card-link {
    display: inline-block;
    color: var(--cor-secundaria);
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--cor-primaria);
}

.servico-card.destaque {
    border-top-color: var(--cor-primaria);
    background-color: #e6f7ff;
}

.servico-card.destaque .servico-icon {
    color: var(--cor-primaria);
}

@media (max-width: 600px) {
    .servicos-grid {
        grid-template-columns: 1fr; 
    }
}
/* ============================= */
/* 7. SEÇÃO SOBRE NÓS            */
/* ============================= */
.sobre {
    padding: 80px 0;
    background-color: var(--cor-fundo);
}

.sobre .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.sobre-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sobre-texto {
    flex: 2;
}

.sobre-dados {
    flex: 1; 
    background-color: #e6f7ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.sobre-texto .intro {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.8;
}

.mvv-container h4 {
    color: var(--cor-primaria);
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.mvv-container ul {
    margin-left: 20px;
    list-style: disc;
    padding-left: 0;
}

.mvv-container ul li {
    margin-bottom: 8px;
    color: var(--cor-texto);
}

.sobre-dados h3 {
    font-size: 1.5em;
    color: var(--cor-primaria);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--cor-secundaria);
    padding-bottom: 10px;
}

.data-box {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #cccccc;
}

.data-box:last-of-type {
    border-bottom: none;
    margin-bottom: 25px;
}

.data-label {
    font-weight: 600;
    color: var(--cor-primaria);
}

.data-value {
    color: var(--cor-texto);
}

.btn-full-width {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

@media (max-width: 900px) {
    .sobre-content {
        flex-direction: column;
    }

    .sobre-texto, .sobre-dados {
        flex: 1;
    }

    .sobre-dados {
        margin-top: 30px;
    }
}
/* ============================= */
/* 8. SEÇÃO DE CONTATO           */
/* ============================= */
.contato {
    padding: 80px 0;
    background-color: #f0f4f7;
}

.contato .section-title, .contato .section-subtitle {
    text-align: center;
    color: var(--cor-primaria);
}

.contato-content {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap; 
}

.contato-form-container, .contato-info-container {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contato-form-container {
    flex: 2;
    background-color: var(--cor-fundo);
    border-left: 5px solid var(--cor-secundaria);
}

.contato-info-container {
    flex: 1;
    background-color: var(--cor-primaria);
    color: var(--cor-fundo);
    border-right: 5px solid var(--cor-secundaria);
}

.contato-form-container h3 {
    color: var(--cor-primaria);
    margin-bottom: 25px;
    font-size: 1.6em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--cor-texto);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--cor-secundaria);
    outline: none;
}

.btn-enviar {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 1.1em;
    font-weight: 700;
}

.contato-info-container h3 {
    color: var(--cor-fundo);
    margin-bottom: 30px;
    font-size: 1.6em;
}

.info-box {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.info-box p {
    margin: 5px 0;
}

.info-box strong {
    font-weight: 700;
    color: var(--cor-secundaria);
}

.info-box a {
    color: var(--cor-fundo);
    transition: color 0.3s ease;
}

.info-box a:hover {
    color: var(--cor-secundaria);
}

.info-box i {
    font-size: 1.8em;
    margin-right: 15px;
    color: var(--cor-secundaria);
    float: left; 
}

.map-placeholder {
    margin-top: 30px;
    padding: 20px;
    background-color: #002244;
    border-radius: 5px;
    text-align: center;
    color: var(--cor-fundo);
    font-style: italic;
}

@media (max-width: 800px) {
    .contato-content {
        flex-direction: column;
    }
    
    .contato-form-container, .contato-info-container {
        flex: 100%;
    }
}
/* ============================= */
/* 9. RODAPÉ (FOOTER)            */
/* ============================= */
.footer {
    background-color: var(--cor-primaria);
    color: var(--cor-fundo);
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h4 {
    font-size: 1.2em;
    color: var(--cor-secundaria);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--cor-fundo);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--cor-secundaria);
}

.footer-logo {
    font-size: 2em;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--cor-fundo);
}

.footer-logo .mult {
    color: var(--cor-fundo); 
}

.footer-logo .serv {
    color: var(--cor-secundaria); 
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9em;
}
.desenvolvimento {
    color: var(--cor-fundo); 
    margin-top: 5px;
    font-style: italic;
}
.desenvolvimento a.link-socio {
    /* CORREÇÃO FINAL: Força o CIANO para destaque, igual aos links do Contato */
    color: var(--cor-secundaria) !important; 
    text-decoration: none; 
    transition: color 0.3s ease;
}
.desenvolvimento a.link-socio:hover {
    /* Deixa o link BRANCO no hover, para manter o padrão de contraste */
    color: var(--cor-fundo); 
    text-decoration: underline; 
}
/* Responsividade (Mobile) */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4 {
        margin-top: 20px;
    }

    .logo-col {
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}
/* ============================= */
/* 11. BOTÃO FLUTUANTE WHATSAPP  */
/* ============================= */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    font-size: 2em;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
        bottom: 20px;
        right: 20px;
    }
}
/* ============================= */
/* 12. SEÇÃO VANTAGENS/DIFERENCIAIS */
/* ============================= */
.vantagens {
    padding: 80px 0;
    text-align: center;
    background-color: var(--cor-fundo);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vantagem-item {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.vantagem-item:hover {
    background-color: #f8f8f8;
    box-shadow: var(--sombra-leve);
}

.vantagem-icon {
    font-size: 3em;
    color: var(--cor-secundaria);
    margin-bottom: 15px;
    display: block;
}

.vantagem-item h3 {
    color: var(--cor-primaria);
    font-size: 1.3em;
    margin-bottom: 10px;
}
.vantagem-item.destaque-secundario {
    border: 1px solid var(--cor-secundaria);
    background-color: #f7fcff;
}

.vantagem-item.destaque-secundario:hover {
    background-color: #e6f7ff;
}

/* ============================= */
/* 13. FAIXA CTA FINAL           */
/* ============================= */
.cta-faixa {
    background-color: var(--cor-secundaria);
    color: var(--cor-fundo);
    padding: 50px 0;
    text-align: center;
}

.cta-faixa h2 {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-faixa p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.btn-cta-faixa {
    background-color: var(--cor-primaria);
    border-color: var(--cor-primaria);
    color: var(--cor-fundo);
    padding: 15px 35px;
    font-size: 1.1em;
}

.btn-cta-faixa:hover {
    background-color: #002244;
    border-color: #002244;
}
/* ============================= */
/* 14. EFEITO DE STICKY HEADER   */
/* ============================= */
.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.header.scrolled .logo {
    font-size: 1.5em;
}

.header, .header .logo {
    transition: all 0.3s ease;
}
/* ============================= */
/* 15. LINKS SOCIAIS NO RODAPÉ   */
/* ============================= */
.social-links {
    margin-top: 20px;
    display: flex; 
    gap: 15px;
    justify-content: flex-start; 
}

@media (max-width: 768px) {
    .logo-col {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--cor-fundo); 
    border-radius: 50%; 
    transition: background-color 0.3s, border-color 0.3s;
    padding: 5px; 
}

.social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

.social-links a:hover {
    background-color: var(--cor-secundaria); 
    border-color: var(--cor-secundaria);
}
/* ============================= */
/* 16. RESPONSIVIDADE GERAL      */
/* ============================= */

@media (max-width: 900px) {
    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .sobre-content, .contato-content {
        flex-direction: column;
    }
    
    .sobre-dados {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    
    .section-title {
        font-size: 2em;
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero h2 {
        font-size: 1.2em;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--cor-primaria);
        padding: 20px 0;
        display: none;
        box-shadow: var(--sombra-leve);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-link {
        color: var(--cor-fundo);
    }
    
    .nav.active {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .social-links {
        justify-content: center; 
    }
}
/* ============================= */
/* 17. EFEITO DE PULSAÇÃO (RIPPLE) */
/* ============================= */

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button {
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    animation: none;
}
/* ============================= */
/* 18. GALERIA DE PROJETOS       */
/* ============================= */
.galeria {
    padding: 80px 0;
    background-color: #e6f7ff;
    text-align: center;
}

.galeria .section-title {
    color: var(--cor-primaria);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-gap: 15px;
    margin-top: 40px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    
    padding-top: 56.25%; 
    height: 0; 
}

.galeria-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 102, 0.75);
    color: var(--cor-fundo);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-transform: uppercase;
}

.galeria-item:hover .overlay {
    opacity: 1;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.btn-gallery-cta {
    margin-top: 50px;
    padding: 15px 40px;
}

@media (max-width: 600px) {
    .galeria-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================= */
/* 19. SEÇÃO DE DEPOIMENTOS      */
/* ============================= */
.depoimentos {
    padding: 80px 0;
    background-color: #f8f8f8; /* Fundo cinza claro (estava branco) */
    text-align: center;
}

.depoimentos-grid {
    display: grid;
    /* 3 colunas iguais no desktop */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    margin-top: 40px;
}

.depoimento-card {
    background-color: var(--cor-fundo); /* Fundo Branco */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    border-top: 4px solid var(--cor-secundaria); /* Linha Ciano de destaque */
}

/* Garante que o texto fique justificado e com estilo */
.depoimento-card .quote {
    font-size: 1.05em;
    font-style: italic;
    color: var(--cor-texto);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
}

.depoimento-card .quote::before {
    content: "“"; /* Aspas grandes de destaque */
    font-size: 2em;
    color: var(--cor-secundaria);
    position: absolute;
    top: 5px;
    left: -15px;
}
.cliente-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.cliente-info .nome {
    font-weight: 700;
    color: var(--cor-primaria);
    display: block;
}

.cliente-info .cargo {
    font-size: 0.9em;
    color: #666;
    display: block;
}

/* Responsividade */
@media (max-width: 600px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}