@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #ffffff; 
    --secondary-color: hsl(0, 0%, 91%); 
    --text-color:#1D2440; 
    --light-bg: #F8F8F8; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.campo-pesquisa {
    border-radius: 20%;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

h1, h2, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    margin-bottom: 15px;
}

h3 {
    color: white;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.div1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cabecalho {
    background-color: #1D2440;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.navegacao-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 100px;
}

.links-navegacao ul {
    display: flex;
    gap: 30px;
}

.links-navegacao a {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
}

.icones-navegacao {
    display: flex;
    gap: 20px;
}

.icones-navegacao a {
    font-size: 1.2em;
    color: var(--text-color);
}

/*Rodapé */
.rodape {
    background-color: var(--text-color);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.conteudo-rodape {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.links-rodape ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.links-rodape a {
    color: white;
    transition: color 0.3s ease;
}

.links-rodape a:hover {
    color: var(--secondary-color);
}

.icones-sociais a {
    font-size: 1.5em;
    color: white;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.icones-sociais a:hover {
    color: var(--secondary-color);
}

.botao {
    display: inline-block;
    background-color: #1D2440;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.botao:hover {
    background-color: var(--secondary-color);
}

/*Página Inicial*/
.secao-destaque {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/banner-home.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
}

.secao-destaque h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: white;
}

.secao-destaque p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/*Produtos em Destaque*/
.produtos-destaque, .chamada-marketing {
    margin-bottom: 40px;
    text-align: center;
}

.produtos-destaque h2, .chamada-marketing h2 {
    margin-bottom: 30px;
    font-size: 2.2em;
    color: var(--text-color);
}

.chamada-marketing p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid para produtos */
.grade-produtos {
    display: grid;
    gap: 30px;
    padding: 10px 0;
}

/* --- Cards de Produtos --- */

.cartao-produto1{
    background-color: #1D2440;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}


.cartao-produto2{
    background-color: #1D2440;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}


.cartao-produto3{
    background-color: #1D2440;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}


.cartao-produto1:hover {
    transform: translateY(-5px);
}

.cartao-produto2:hover {
    transform: translateY(-5px);
}

.cartao-produto3:hover {
    transform: translateY(-5px);
}

.cartao-produto1 img {
    max-width: 100%;
    height: 300px; 
    object-fit: contain; 
    margin-bottom: 15px;
}

.cartao-produto2 img {
    max-width: 100%;
    height: 300px; 
    object-fit: contain; 
    margin-bottom: 15px;
}

.cartao-produto3 img {
    max-width: 100%;
    height: 300px; 
    object-fit: contain; 
    margin-bottom: 15px;
}

.cartao-produto1 h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    height: 2.4em; 
    overflow: hidden;
}

.cartao-produto2 h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    height: 2.4em; 
    overflow: hidden;
}

.cartao-produto3 h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    height: 2.4em; 
    overflow: hidden;
}

.cartao-produto1 .preco {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cartao-produto2 .preco {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cartao-produto3 .preco {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/*Responsivo*/
@media (max-width: 549px) {
    .navegacao-principal {
        flex-direction: column;
        text-align: center;
    }
    .links-navegacao ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }
    .icones-navegacao {
        margin-top: 15px;
    }
    .links-rodape ul {
        flex-direction: column;
        gap: 10px;
    }
    .grade-produtos {
        grid-template-columns: 1fr; 
    }
    .secao-destaque h1 {
        font-size: 2em;
    }
}

@media (min-width: 550px) and (max-width: 1099px) {
    .navegacao-principal {
        justify-content: space-around;
    }
    .links-navegacao ul {
        gap: 20px;
    }
    .grade-produtos {
        grid-template-columns: repeat(2, 1fr);
    }
    .secao-destaque h1 {
        font-size: 2.5em;
    }
}

@media (min-width: 1000px) {
    .grade-produtos {
        grid-template-columns: repeat(4, 1fr);
    }
    .secao-destaque h1 {
        font-size: 3em;
    }
}




