/* ========================================================== */
/* FOOTER - VERSÃO CLARA E SOFISTICADA
/* ========================================================== */

/* Variáveis de Cor para o Tema Claro */
:root {
    /* Cores de Fundo e Texto */
    --footer-bg: #f7f5f5; /* Mesma cor base da tela de produtos */
    --text-dark: #2c2c2c; /* Cor para títulos escuros */
    --text-muted: #555; /* Cor para parágrafos */

    /* Cores da Marca */
    --gold-primary: #a47e43;
    --gold-secondary: #d1ae79;
    
    /* Cores para o fundo texturizado */
    --gold-light-rgba: rgba(207, 142, 45, 0.12);
    --gold-lines-rgba: rgba(212, 138, 25, 0.07);
}

/* Container principal do footer */
#contatoFooter {
    color: var(--text-muted);
    padding: 6rem 2rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    
    /* Fundo texturizado igual ao da seção de produtos */
    background-color: var(--footer-bg);
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 20px, var(--gold-lines-rgba) 15px, var(--gold-lines-rgba) 22px),
        radial-gradient(ellipse at 0% 0%, var(--gold-light-rgba) 0%, transparent 0%),
        radial-gradient(ellipse at 100% 100%, var(--gold-light-rgba) 0%, transparent 0%);
}

/* Container que alinha as duas colunas principais */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 4rem;
}

/* Lado Esquerdo: CTA */
.footer-cta {
    max-width: 500px;
}

.footer-cta h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark); /* Texto escuro */
    margin: 0 0 1rem 0;
}

.footer-cta p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    color: var(--text-muted); /* Texto escuro e suave */
}

/* Botão de Orçamento */
.btn-sobreNos-orcamento {
    display: inline-block;
    padding: 1rem 1rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    
    /* Propriedades ADICIONADAS para conter o efeito */
    position: relative;
    overflow: hidden;
    z-index: 1; /* Garante o contexto de empilhamento */
}

/* O pseudo-elemento que desliza (copiado do botão original) */
.btn-sobreNos-orcamento::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* O gradiente pode ser sutilmente diferente para um efeito de "brilho" */
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: -1;
}

/* No hover, o botão levanta E o pseudo-elemento desliza para dentro */
.btn-sobreNos-orcamento:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 25px rgba(164, 126, 67, 0.3);
}

.btn-sobreNos-orcamento:hover::before {
    transform: translateX(0);
}

/* Lado Direito: Informações */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 3rem;
}

.footer-info h4 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Itens de contato (Email, Telefone) */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-primary);
}

/* Lista de Ícones de Redes Sociais */
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.2); /* Borda escura */
    border-radius: 50%;
    color: var(--text-muted); /* Ícone escuro */
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: white;
    transform: translateY(-3px);
}

/* Barra Inferior (Copyright) */
.footer-bottom-bar {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom-bar p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}
.social-links img {
    width: 28px;
}
