/* Variáveis de Cores */
:root {
    --primary-color: #8A2BE2; /* Lilás/Roxo HIKTEC */
    --secondary-color: #000000; /* Preto para texto principal */
    --text-light-color: #333333; /* Cinza escuro para texto secundário */
    --bg-light-color: #F8F8F8; /* Fundo cinza claro para seções */
    --white-color: #FFFFFF;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Quicksand, sans-serif;
    line-height: 1.6;
    color: var(--text-light-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white-color);
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 180px; /* Ajuste o tamanho do logo conforme necessário */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 67px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.40em; /* Ou 16px, 1.2em, etc. Experimente valores! */
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Seções Gerais */
section {
    padding: 80px 0;
    text-align: center;
}

h1, h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8em;
}

h2 {
    font-size: 2.2em;
}

h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.6em;
}

p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}

.primary-btn:hover {
    background-color: #6a00a8; /* Um pouco mais escuro */
    border-color: #6a00a8;
}

.secondary-btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.small-btn {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Seção Hero */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('22589.jpg') no-repeat center center/cover; /* Substitua 'background-hero.jpg' por uma imagem de fundo impactante se tiver */
    color: var(--white-color);
    padding: 150px 0;
}

.hero-section h1 {
    color: var(--white-color);
    font-size: 3.5em;
    margin-bottom: 25px;
}

.hero-section p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Seção Soluções */
.solucoes-section {
    background-color: var(--bg-light-color);
    padding: 100px 0;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solucao-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.solucao-item:hover {
    transform: translateY(-5px);
}

/* Seção Sobre Breve */
.sobre-breve-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.sobre-breve-section p {
    max-width: 900px;
    margin: 0 auto 30px auto;
}


/* Seção CTA Contato */
.cta-contato-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 80px 0;
}

.cta-contato-section h2, .cta-contato-section p {
    color: var(--white-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 20px 0;
    font-size: 0.75em;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-info, .footer-links, .social-links {
    flex: 1;
    min-width: 250px;
    margin: 10px 00;
}

.footer-info p {
    margin-bottom: 8px;
    color: var(--white-color);
}

.footer-info a, .footer-links a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover, .footer-links a:hover {
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links img {
    height: 24px; /* Tamanho dos ícones sociais */
    margin: 0 5px;
}

/* Responsividade Básica */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px 10px 10px;
    }

    .hero-section h1 {
        font-size: 2.5em;
    }

    .solucoes-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 1em;
    }
}