:root {
    --marinho: #051630;      
    --marinho-claro: #0A254D; 
    --branco: #FFFFFF;
    --gelo: #F8FAFC;
    --texto-escuro: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fffefe;
    line-height: 1.6;
}
h1 {
    font-size: 3.5rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 800; 
    line-height: 1.2; 
    margin-bottom: 20px;
    color: var(--marinho); 
}

 h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--marinho);
}


.destaque {
    font-weight: 600;
    color: var(--marinho);
}
.logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--marinho);
}

.logo span {
    color: #007BFF; 
}

nav a {
    text-decoration: none;
    color: var(--marinho);
    margin-left: 20px;
    font-weight: 500;
}

.btn-nav {
    background: var(--marinho);
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}


.hero {
    background-color: var(--marinho);
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--branco);
    padding: 0 5%;
}

.hero h1 {
    color: #FFFFFF !important; 
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.cta-button {
    background: var(--branco);
    color: var(--marinho);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
}

.cta-button:hover {
    background: var(--gelo);
    transform: scale(1.05);
}


.servicos {
    padding: 100px 8%;
    background: var(--gelo);
}

.servicos h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--marinho);
}

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

.card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0,26,51,0.1);
}

.card h3 {
    color: var(--marinho);
    margin-bottom: 15px;
}


footer {
    background: var(--marinho);
    color: white;
    padding: 80px 8% 20px;
    text-align: center;
}

footer h2 { margin-bottom: 20px; }

.copy {
    margin-top: 50px;
    font-size: 0.8rem;
    opacity: 0.5;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #051630; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1; 
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    font-size: 1rem;
}

.btn-nav {
    background: #FFFFFF;
    color: #051630 !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
}


sobre {
    padding: 100px 8%;
    background-color: var(--branco);
}

.sobre-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-texto {
    flex: 1;
    text-align: left;
}
.sobre-texto .destaque {
    color: #051630 !important; 
    font-weight: 800 !important; 
    display: inline-block; 
}

.sobre-texto h2 {
    font-size: 2.5rem;
    color: var(--marinho);
    margin-bottom: 20px;
}

.sobre-texto h2 span {
    color: #007BFF; 
    display: block;
}

.sobre-texto p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}


.sobre-texto strong {
    color: var(--marinho);
    font-weight: 700;
}

.sobre-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sobre-imagem img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px; 
    box-shadow: 20px 20px 0px var(--marinho);
    object-fit: cover;
}


@media (max-width: 968px) {
    .sobre-container {
        flex-direction: column;
        text-align: center;
    }

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

    .sobre-imagem img {
        box-shadow: 10px 10px 0px var(--marinho);
    }
}


.clientes {
    padding: 80px 8%;
    background-color: var(--branco);
    text-align: center;
}

.logos-clientes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.logo-item {
    font-weight: bold;
    color: #ccc;
    font-size: 1.2rem;
    padding: 20px;
    border: 1px dashed #ddd; 
}
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden; 
}

.logo-img {
    height: 100px; 
    width: auto;
    object-fit: contain;
    
    
    mix-blend-mode: screen; 
    
    
    margin-top: -5px; 
}

.logo-img:hover {
    transform: scale(1.05);
}




nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}
@media (max-width: 768px) {
    header {
        height: auto;
        padding: 10px 5%;
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        width: 180px; 
        height: 60px;
    }

    .logo-img {
        height: 150%; 
    }

    nav {
        flex-wrap: wrap; 
        justify-content: center;
        gap: 10px;
    }

    nav a {
        margin: 0 5px;
        font-size: 0.85rem; 
    }
}
.clientes {
    padding: 80px 8%;
    background-color: var(--gelo); 
    text-align: center;
}

.clientes h2 {
    color: var(--marinho);
    margin-bottom: 10px;
}

.clientes p {
    color: #666;
    margin-bottom: 40px;
}

.logos-clientes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; 
    flex-wrap: wrap;
}

.cliente-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;  
    height: 100px; 
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cliente-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
}


.cliente-item:hover {
    filter: grayscale(0%); 
    opacity: 1;
    transform: scale(1.1); 
}

.servicos-header {
    text-align: center;
    margin-bottom: 50px;
}

.preco-info {
    color: #666;
    font-size: 1.2rem;
    margin-top: 10px;
}

.preco-info strong {
    color: var(--marinho); 
}


.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    
    
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
    height: 100%; 
    
    text-align: center;
    border: 1px solid #eee;
}
.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(5, 22, 48, 0.1);
}

.card h3 {
    color: var(--marinho);
    margin-bottom: 15px;
    min-height: 50px; 
}

.resumo {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px; 
}


.btn-saber-mais {
    display: inline-block;
    padding: 12px 20px;
    background-color: transparent;
    color: var(--marinho);
    border: 2px solid var(--marinho);
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
    margin-top: auto; 
    width: fit-content; 
    align-self: center; 
}
.btn-saber-mais:hover {
    background-color: var(--marinho);
    color: white;
}
.insta-link {
    font-size: 1.5rem; 
    color: white;     
    margin-left: 20px; 
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.insta-link:hover {
    color: #E1306C; 
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .insta-link {
        margin-left: 10px;
        font-size: 1.3rem;
    }
}