@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap');

/* Variáveis */
:root {
    --cor-primaria: #2B6CB0;
    --cor-secundaria: #1A4971;
    --cor-destaque: #3182CE;
    --cor-texto: #2D3748;
    --cor-texto-claro: #718096;
    --cor-fundo: #ffffff;
    --cor-fundo-alt: #F7FAFC;
    --fonte-principal: 'Cabin', sans-serif;
    --sombra-suave: 0 2px 4px rgba(0,0,0,0.1);
    --sombra-media: 0 4px 6px rgba(0,0,0,0.1);
    --transicao-padrao: all 0.3s ease;
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-principal);
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header e Navegação */
header {
    width: 100%;
    position: relative;
}

nav.topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--cor-fundo);
    box-shadow: var(--sombra-suave);
    z-index: 1000;
    padding: 15px 0;
}

.informacoes-contato {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    max-width: 250px;
    height: auto;
}

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

.menu a {
    color: var(--cor-texto);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: var(--transicao-padrao);
    padding: 8px 16px;
}

.menu a:hover {
    color: var(--cor-destaque);
}

.menu a.active {
    color: var(--cor-primaria);
    font-weight: 600;
}

.botao-login {
    background-color: var(--cor-primaria);
    color: white !important;
    border-radius: 6px;
}

.botao-login:hover {
    background-color: var(--cor-secundaria);
}

/* Hero Banner */
.hero-banner {
    margin-top: 80px;
}

.imagem-principal {
    position: relative;
    width: 100%;
    height: 500px; /* Alterado de 100vh para 60vh */
    overflow: hidden;
}

.imagem-principal img {
    width: 100%;
    height: 90%;
    object-fit: cover;
}

.conteudo-sobre-imagem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.titulo h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.titulo h2 {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Seção Nossas Marcas */
.nossas-marcas {
    padding: 30px 0;
    background-color: var(--cor-fundo);
}

.nossas-marcas h2 {
    text-align: center;
    color: var(--cor-texto);
    font-size: 2.2em;
    margin-bottom: 0px;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.marca-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--sombra-media);
    transition: var(--transicao-padrao);
    width: 100%;
    max-width: 300px;
}

/*.marca-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}*/

.marca-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Seção Orçamentos */
.orcamentos {
    padding: 80px 0;
    background-color: var(--cor-fundo-alt);
}

.orcamento-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.texto-orcamento {
    flex: 1;
}

.texto-orcamento h2 {
    color: var(--cor-texto);
    font-size: 2.2em;
    margin-bottom: 20px;
}

.texto-orcamento p {
    color: var(--cor-texto-claro);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.imagem-orcamento {
    flex: 1;
}

.imagem-orcamento img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--sombra-media);
}

/* Botões */
.btn-primario {
    display: inline-block;
    background-color: var(--cor-primaria);
    color: white !important;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transicao-padrao);
    border: none;
    cursor: pointer;
}

.btn-primario:hover {
    background-color: var(--cor-secundaria);
    transform: translateY(-2px);
}

.btn-secundario {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 14px 28px;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transicao-padrao);
}

.btn-secundario:hover {
    background-color: white;
    color: var(--cor-primaria);
    transform: translateY(-2px);
}

/* Serviços */
.servicos-principais {
    padding: 80px 0;
    background-color: var(--cor-fundo);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.servico-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--sombra-media);
    transition: var(--transicao-padrao);
}

/*.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}*/

.card-icon {
    font-size: 2.5em;
    color: var(--cor-primaria);
    margin-bottom: 20px;
}

/* Estilo para imagens de serviço */
.servico-info img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--sombra-suave);
    transition: var(--transicao-padrao);
}

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

/* Footer */
footer {
    background-color: var(--cor-secundaria);
    color: white;
    padding: 60px 0 30px;
}

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

footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 600;
}

footer p, 
footer ul {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

footer ul {
    list-style: none;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transicao-padrao);
}

footer a:hover {
    color: white;
}

.direitos {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cor-texto);
    font-size: 1.5em;
    cursor: pointer;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .orcamento-content {
        flex-direction: column;
        text-align: center;
    }
    
    .texto-orcamento,
    .imagem-orcamento {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .titulo h1 {
        font-size: 2.5em;
    }
    
    .titulo h2 {
        font-size: 1.5em;
    }

    .imagem-principal {
        height: 50vh; /* Reduzido ainda mais para telas menores */
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--cor-fundo);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        box-shadow: var(--sombra-suave);
    }
    
    .menu.active {
        display: flex;
    }
    
    .titulo h1 {
        font-size: 2em;
    }
    
    .titulo h2 {
        font-size: 1.3em;
    }

    .imagem-principal {
        height: 45vh; /* Ainda menor para tablets */
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        max-width: 200px;
    }
    
    .titulo h1 {
        font-size: 1.8em;
    }
    
    .titulo h2 {
        font-size: 1.1em;
    }
    
    .btn-primario,
    .btn-secundario {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .imagem-principal {
        height: 40vh; /* Menor ainda para celulares */
    }
}
