/* Design System & Variáveis */
:root {
    --primary-blue: #0A2239; /* Azul Industrial */
    --primary-blue-light: #1D3B5C;
    --accent-orange: #FF5A00; /* Laranja Vibrante */
    --accent-orange-hover: #E04E00;
    --bg-light: #F8F9FA;
    --text-dark: #333333;
    --text-gray: #555555;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Utilidades */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.3);
}

/* Header Fixo */
header {
    background-color: var(--primary-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Imagem da Logo */
.logo-img {
    height: 50px; /* Trava a altura máxima do header */
    width: auto; /* Mantém a proporção original da imagem */
    max-width: 250px; /* Limite de largura de segurança para não empurrar o botão */
    object-fit: contain; /* Garante que a imagem se ajuste sem distorcer */
    max-height: 40px;
}


/* Hero Section (Introdução B2B) */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #D1E1F0;
}

/* Seções de Conteúdo (Z-Pattern) */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background-color: var(--bg-light);
}

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

/* Inversão para a segunda seção (Imagem à Direita) */
.row-reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.content-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagens dos Blocos */
.bloco-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .content-row, .row-reverse {
        flex-direction: column;
        gap: 30px;
    }
    .logo-img {
        height: 40px;
        max-width: 200px;
    }

    /* No mobile, a imagem sempre vem primeiro para melhor leitura */
    .content-row .content-image {
        order: -1;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .content-text h2 {
        font-size: 1.75rem;
    }

    header .btn {
        display: none; /* Esconde o botão do header no mobile para não quebrar layout */
    }
    

}