: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 {
    background-color: #051630; /* Azul Marinho AT */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 7%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    /* OPCIONAL: Adiciona uma sombra suave para dar mais profundidade */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

header .logo img {
    max-height: 80px; /* Logo maior no PC como você pediu */
    width: auto;
}

#nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

#nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

/* Esconde as 3 linhas no PC */
#mobile-menu {
    display: none;
}

/* Estilo do botão de destaque */
.btn-orcamento {
    background-color: #25d366;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}


@media screen and (max-width: 768px) {
    
    
    header .logo img {
        max-height: 50px;
    }

   
   .menu-toggle {
    display: block !important; /* Força o aparecimento */
    cursor: pointer;
    z-index: 1005;
    width: 30px;
    height: 25px;
}

/* Estilo das barras */
.menu-toggle div {
    width: 30px;
    height: 3px;
    background-color: #ffffff; /* Cor Branca */
    margin: 5px 0;
    transition: 0.4s;
    display: block !important;
}

/* Mágica do X - Quando o botão recebe a classe 'toggle' */
.menu-toggle.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.toggle .line2 {
    opacity: 0;
}

.menu-toggle.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


#nav-menu {
     position: fixed;
        right: -100%; 
        top: 0;
        width: 70%;
        height: 100vh;
        background: #051630;
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.5s ease-in-out;
        
    
}

#nav-menu.active {
    right: 0;       
}

    #nav-menu a {
        margin: 20px 0;
        font-size: 1.2rem;
    }
   
}
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;
}
.hamburger {
    display: none;
}

.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;
}
.nav-instagram {
    font-size: 1.5rem; /* Tamanho do ícone */
    color: #ffffff !important;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.nav-instagram:hover {
    color: #E1306C !important; /* Cor clássica do Instagram no hover */
    transform: scale(1.1);
}

/* No Mobile, vamos garantir que ele fique bem posicionado */
@media screen and (max-width: 768px) {
    .nav-instagram {
        font-size: 2rem; /* Um pouco maior no celular para facilitar o toque */
        margin: 10px 0;
    }
}
