* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Fundo da Estátua bem suave */
.fundo-estatua {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/PR\ CICO.PNG');
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.9);
    background-blend-mode: lighten;
    z-index: -2;
}

/* Gradiente que muda de cor sozinho para chamar atenção */
.gradiente-animado {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #a18cd1, #fbc2eb, #8fd3f4);
    background-size: 400% 400%;
    animation: mudarCor 8s ease infinite;
    opacity: 0.15; /* Bem suave para não competir com a estátua */
    z-index: -1;
}

@keyframes mudarCor {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 750px;
    width: 100%;
}

.logo-header {
    margin-bottom: 20px;
}

.logo-img {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.titulo-animado {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 50px;
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.8);
    animation: pulsarTexto 2s ease-in-out infinite;
}

@keyframes pulsarTexto {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Botões Estilo Showroom */
.lista-botoes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.botao-showroom {
    text-decoration: none;
    background: #ffffff;
    border-radius: 80px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #eaeaea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Efeito de brilho que desliza */
.brilho-deslizante {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.conteudo {
    flex-grow: 1;
    text-align: left;
    z-index: 2;
}

.texto-marca {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.descricao {
    display: block;
    font-size: 0.85rem;
    color: #777;
    font-weight: 400;
    margin-top: 4px;
    transition: color 0.3s;
}

.seta {
    font-size: 1.8rem;
    color: #ccc;
    transition: all 0.3s;
    z-index: 2;
}

/* Hover: Botão cresce e ganha cor */
.botao-showroom:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.botao-showroom:hover .brilho-deslizante {
    left: 200%;
}

.botao-showroom:hover .seta {
    transform: translateX(8px);
    color: inherit;
}

/* Cores específicas */
.marca-fiat { color: #d52b1e; }
.marca-fiat:hover { background: #d52b1e; }
.marca-fiat:hover .texto-marca { color: #fff; }
.marca-fiat:hover .descricao { color: #ffe0e0; }

.marca-citroen { color: #002c5f; }
.marca-citroen:hover { background: #002c5f; }
.marca-citroen:hover .texto-marca { color: #fff; }
.marca-citroen:hover .descricao { color: #cce0ff; }

.marca-peugeot { color: #333; }
.marca-peugeot:hover { background: #333; }
.marca-peugeot:hover .texto-marca { color: #fff; }
.marca-peugeot:hover .descricao { color: #dddddd; }

.marca-br { color: #009739; }
.marca-br:hover { background: #009739; }
.marca-br:hover .texto-marca { color: #fff; }
.marca-br:hover .descricao { color: #d4ffe0; }

/* Responsividade */
@media (max-width: 500px) {
    .titulo-animado {
        font-size: 1.5rem;
    }
    .texto-marca {
        font-size: 1.2rem;
    }
    .botao-showroom {
        padding: 12px 18px;
    }
}