/* Reset básico para limpeza */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    background-color: #f4f4f4;
}

/* Fundo da Estátua (Imagem 1) */
.fundo-estatua {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Substitua o caminho abaixo pela imagem da sua estátua */
    background-image: url('./img/PR\ CICO.PNG'); 
    background-size: cover;
    background-position: center;
    /* Camada branca semi-transparente para deixar o texto legível e clean */
    background-color: rgba(255, 255, 255, 0.85);
    background-blend-mode: lighten;
    z-index: -1;
}

/* Container Central */
.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    width: 100%;
}

/* Header com a Logo */
.logo-header {
    margin-bottom: 30px;
}

.logo-img {
    max-width: 100%;
    height: auto;
    max-height: 150px; /* Ajuste conforme o tamanho da sua imagem */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.titulo-principal {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Grade de Marcas */
.grade-marcas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Estilo dos Cartões/Emblemas */
.card-marca {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Ícone/Marca (Placeholder de texto, troque por imagem se quiser) */
.icone-marca {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.texto-marca {
    font-size: 0.9rem;
    color: #777;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

/* Efeito Hover Moderno (Passar o mouse) */
.card-marca:hover {
    transform: translateY(-10px); /* Sobe o cartão */
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

/* Posto BR (Verde e Amarelo) */
.marca-br:hover {
    border-color: #009739;
    background: linear-gradient(135deg, #009739, #FFC700);
}
.marca-br:hover .icone-marca { color: #fff; }

.card-marca:hover .texto-marca {
    color: #fff;
    border-bottom: 1px solid #fff;
}

/* Cores específicas de cada marca no hover (para ficar bem identidade) */

/* Fiat (Vermelho) */
.marca-fiat:hover {
    border-color: #d52b1e;
    background: linear-gradient(135deg, #d52b1e, #ff4b3e);
}
.marca-fiat:hover .icone-marca { color: #fff; }

/* Citroën (Azul escuro) */
.marca-citroen:hover {
    border-color: #002c5f;
    background: linear-gradient(135deg, #002c5f, #1c5a9e);
}
.marca-citroen:hover .icone-marca { color: #fff; }

/* Peugeot (Preto/Cinza) */
.marca-peugeot:hover {
    border-color: #000000;
    background: linear-gradient(135deg, #2e2e2e, #555555);
}
.marca-peugeot:hover .icone-marca { color: #fff; }

/* Responsividade para celulares */
@media (max-width: 768px) {
    .grade-marcas {
        flex-direction: column;
        align-items: center;
    }
    .card-marca {
        width: 100%;
        max-width: 320px;
    }
}