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

body {
    font-family: "Merriweather", serif;
    background: #f3f5f4;
    color: #363d4f;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px;
}

/* Container central */
.container {
    background: #3560bd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 900px;
    width: 100%;
}

/* Título */
.container h1 {
    text-align: center;
    color: #fefefe;
    margin-bottom: 25px;
    font-size: 1.8rem;
    border-bottom: 2px solid #73b933;
    padding-bottom: 10px;
}
/* Grid de cards */
.link-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0;
}

/* Card */
.card {
    background: #0b0527; /* Azul escuro */
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Ícone */
.card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #73b933; /* Verde destaque */
}

/* Nome da construtora */
.card h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}
.link-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0;
}

.card {
    background: #0b0527;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #73b933;
}

.card h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.card .btn {
    display: inline-block;
    padding: 10px 18px;
    background: #73b933;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #0a2867, #73b933);
}

.card .btn:hover {
    background: #5aa326;
}

/* Botão */
.card .btn {
    display: inline-block;
    padding: 10px 18px;
    background: #73b933;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

/* Hover interativo */
.card:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #0a2867, #73b933);
}

.card .btn:hover {
    background: #5aa326;
}
