/*
 * Arquivo: style.css
 * Projeto: Rega Malte - Réplica da Arte
 */

/* ================================================= */
/* 1. RESET BÁSICO E CONFIGURAÇÃO DE FONTES */
/* ================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Fontes genéricas para simular a arte. */
    color: #5d351b; /* Cor marrom escura predominante na arte */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fonte para Títulos, simulando a serifada do logo 'Rega Malte' */
h2, .logo-area, .city-state {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}


/* ================================================= */
/* 2. BACKGROUND E ESTRUTURA PRINCIPAL */
/* ================================================= */
body {
    background: url('../assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alinha no topo em telas maiores */
	font-family: 'Montserrat', sans-serif; 
}

.container {
    max-width: 900px; /* Largura ideal para a arte */
    width: 100%;
    margin-top: 30px;
    padding: 20px;
}

/* ================================================= */
/* 3. LOGO E ÁREA DO CHOPE */
/* ================================================= */
.logo-area {
    text-align: center;
    margin-bottom: 20px;
}

.logo-regamalte {
    width: 80%; /* Ajuste a largura da imagem recortada */
    max-width: 650px;
    margin: 0 auto;
}

.chope-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.caneca img {
    width: 100%;
    max-width: 150px; /* Largura das canecas */
}

.caneca.left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.caneca.right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo-chope {
    width: 100%;
    max-width: 650px; /* Largura do logo CHOPE */
    margin: 0 auto;
}

/* ================================================= */
/* 4. TEXTOS INFORMATIVOS */
/* ================================================= */
.info-area {
	font-family: 'Cookie', cursive;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 1.5em;
    line-height: 1.4;
    text-align: center;
}

.text-block {
	font-family: 'Cookie', cursive;
    width: 45%;
    padding: 10px;
    font-weight: 600;
}

.text-block p:first-child {
	font-family: 'Cookie', cursive;
    margin-bottom: 10px;
}

/* Ajuste de posição para telas menores */
@media (max-width: 768px) {
    .info-area {
		font-family: 'Cookie', cursive;
        flex-direction: column;
        gap: 20px;
    }
    .text-block {
		font-family: 'Cookie', cursive;
        width: 100%;
    }
}

/* ================================================= */
/* 5. CANAIS DE ATENDIMENTO */
/* ================================================= */
.contact-area {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.contact-area h2 {
    font-size: 1.3em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 1.05em;
    font-weight: 400;
}

.contact-info {
    text-align: right;
    line-height: 1.6;
}

.contact-links {
    text-align: left;
    line-height: 1.6;
}

.contact-link {
    display: block;
    padding: 3px 0;
    transition: transform 0.2s ease;
}

.contact-link:hover {
    color: #8b5e43; /* Escurece no hover */
    transform: translateX(5px);
}

.contact-link .icon {
    display: inline-block;
    width: 20px;
}

.contact-link .instagram {
    display: inline-block;
    width: 20px;
	max-width: 20px;
}
	
.contact-link .whats {
    display: inline-block;
    width: 20px;
	max-width: 20px;
}

/* Ajuste para telas menores */
@media (max-width: 600px) {
    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
    .contact-info, .contact-links {
        text-align: center;
    }
}

/* ================================================= */
/* 6. FOOTER */
/* ================================================= */
.footer-area {
    text-align: center;
    margin-top: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-link-item {
    display: inline-block;
    padding: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 5px;
}

.footer-link-item:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-link-item img {
    width: 100%;
    max-width: 150px; /* Largura dos ícones do footer */
}

.city-state {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.delivery-logos {
    width: 100%;
    max-width: 350px; /* Largura das logos de delivery */
    margin: 0 auto;
}