style.css
/* Configurações Gerais para limpar as margens padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f5; /* Fundo cinza bem claro, quase branco */
    color: #333333; /* Texto principal escuro para leitura fácil */
    line-height: 1.6;
}

/* Interface do Menu Superior (Header) */
header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Sombra leve no menu */
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2e7d32; /* Verde que representa a natureza */
}

header .logo span {
    color: #1565c0; /* Azul que representa a tecnologia */
}

header nav a {
    text-decoration: none;
    color: #555555;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

header nav a:hover {
    color: #2e7d32; /* Muda de cor ao passar o mouse */
}

header nav .btn-contato {
    background-color: #2e7d32;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Banner Principal (Hero) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1530595467537-0b5996c41f2d?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.btn-principal {
    display: inline-block;
    background-color: #1565c0;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-principal:hover {
    background-color: #0d47a1;
}

/* Grid de Conteúdo (Cards de Tecnologia, Produção e Preservação) */
.container-pilares {
    padding: 60px 8%;
    text-align: center;
}

.container-pilares h2 {
    font-size: 32px;
    color: #2e7d32;
    margin-bottom: 10px;
}

.subtitulo {
    color: #777777;
    margin-bottom: 40px;
}

.cards-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Faz os cards se ajustarem em telas menores */
}

.card {
    background: #ffffff;
    flex: 1;
    min-width: 250px;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #2e7d32; /* Detalhe em verde na base */
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px); /* Efeito de subir de leve ao passar o mouse */
}

.card .icone {
    font-size: 40px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    color: #333333;
}

/* Rodapé (Footer) */
footer {
    background-color: #212121;
    color: #aaaaaa;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 40px;
}/* Estilo para a nova seção de Informações e Imagem */
.secao-info {
    padding: 60px 8%;
    background-color: #ffffff;
}

.info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.info-texto {
    flex: 1;
    min-width: 300px;
}

.info-texto h2 {
    font-size: 32px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.info-texto p {
    margin-bottom: 15px;
    color: #555;
    font-size: 17px;
    text-align: justify;
}

.info-imagem {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.info-imagem img {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* Deixa as bordas da foto arredondadas e modernas */
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
