/* Reset e Configurações Globais */
:root {
    --cor-primaria: #0D2C4F; /* Azul escuro */
    --cor-secundaria: #00A8E8; /* Azul claro */
    --cor-destaque: #FF8C00; /* Laranja */
    --cor-texto: #333;
    --cor-fundo: #FFFFFF;
    --cor-fundo-claro: #f4f7f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho (Hero Section) */
.hero {
    /* Imagem de caldeira industrial de alta qualidade (Pexels) */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('fundo_queimador_realista.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button, .cta-button-light {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, background-color 0.2s;
}

.cta-button {
    background-color: var(--cor-destaque);
    color: white;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #e67e00;
}

.hero-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Seções */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--cor-primaria);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: #555;
}

/* Diferenciais */
.diferenciais {
    background-color: var(--cor-fundo-claro);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.diferencial-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.diferencial-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--cor-primaria);
}

/* Serviços */
.servicos-lista {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.servicos-lista li {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* CTA Meio */
.cta-meio {
    background-color: var(--cor-primaria);
    color: white;
    text-align: center;
}

.cta-meio h2 {
    color: white;
}

.cta-meio p {
    margin-bottom: 2rem;
}

.cta-button-light {
    background-color: var(--cor-fundo);
    color: var(--cor-primaria);
}

.cta-button-light:hover {
    transform: translateY(-3px);
    background-color: #eef;
}

/* Contato */
.contato {
    background-color: var(--cor-fundo-claro);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 3rem;
}

.contato-form input, .contato-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.contato-form button {
    width: 100%;
}

.contato-info h3 {
    font-size: 1.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1.5rem;
}

.contato-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contato-info a {
    color: var(--cor-secundaria);
    text-decoration: none;
    font-weight: 700;
}

.atendimento-info {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

/* Rodapé */
footer {
    background-color: var(--cor-primaria);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content h2 {
        font-size: 1.2rem;
    }
    section h2 {
        font-size: 2rem;
    }
    .contato-wrapper {
        grid-template-columns: 1fr;
    }
    .contato-info {
        margin-top: 40px;
    }
}
