/*
Theme Name: Souza Impressoes Tema
Author: André Souza
Description: Tema baseado no layout moderno.
Version: 1.0
*/

/* Paleta de Cores e Fontes */
:root {
    --souza-orange: #ff9900;
    --souza-black: #1a1a1a;
    --white: #ffffff;
    --text-dark: #333333;
    --bg-light: #f6f6f6;
    --font-main: 'Inter', sans-serif; /* Recomendo adicionar esta fonte via Google Fonts no seu HTML */
}

/* Reset Básico e Estilo do Body */
body {
    font-family: var(--font-main), 'Arial', sans-serif;
    background-color: var(--white);
    color: var(--souza-black);
}

/* ===== COMPONENTES NAVBAR ===== */
.navbar-brand img {
    height: 50px; /* Ajuste da altura da logo no navbar */
}

.navbar .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 10px;
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--souza-orange);
}

/* ===== COMPONENTES BOTÃO ===== */
.btn-souza-primary {
    background-color: var(--souza-orange);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px; /* Estilo pílula */
    border: none;
    transition: all 0.3s ease;
    padding: 12px 28px;
}

.btn-souza-primary:hover {
    background-color: #e68a00; /* Tom mais escuro no hover */
    transform: scale(1.05); /* Leve aumento no hover */
    color: var(--white);
}

/* ===== SEÇÃO HERO (BANNER PRINCIPAL) ===== */
.hero {
    position: relative;
    height: 80vh; /* Altura do banner */
    background-image: url('imagens/banner-produtos.png.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden; /* Essencial para o efeito de zoom */
    transition: transform 0.4s ease; /* Transição suave para a animação */
}

/* Efeito de zoom no hover */
.hero:hover {
    transform: scale(1.05); /* Efeito de expansão sutil */
}

/* Overlay escuro para legibilidade do texto */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1; /* Fica entre o fundo e o texto */
}

/* Conteúdo de texto do Hero */
.hero-text {
    position: relative;
    z-index: 2; /* Garante que o texto fique na frente do overlay */
    padding: 20px;
}

.text-orange {
    color: var(--souza-orange) !important;
}

/* ===== SEÇÃO DE SERVIÇOS (CARDS) ===== */
.underline {
    width: 60px;
    height: 4px;
    background: var(--souza-orange);
    border-radius: 2px;
    margin-top: 10px;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.icon-box {
    font-size: 2.5rem;
    background: #fff3e0; /* Fundo claro para o ícone */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* ===== FOOTER ===== */
.footer .social-links a {
    text-decoration: none;
}