Influencers que já criaram com a gente | ContémTudo
body { font-family: Arial, sans-serif; background:#fff; color:#222; margin:0; padding:0; }
.container { max-width:1100px; margin:auto; padding:3rem 1.5rem; }
h1 { text-align:center; color:#111; margin-bottom:2rem; }
.influencers { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:2rem; }
.card {
text-align:center;
background:#f7f7f7;
padding:1rem;
border-radius:10px;
box-shadow:0 4px 8px rgba(0,0,0,0.05);
}
.card a {
text-decoration:none;
color:#111;
font-weight:bold;
display:block;
margin-top:0.5rem;
}
.card img {
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
margin-bottom:0.5rem;
transition: transform 0.3s ease;
}
.card img:hover {
transform: scale(1.05);
}
form {
background: #fafafa;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
max-width: 600px;
margin: 3rem auto 0;
}
form h2 { text-align: center; margin-bottom: 1rem; color: #111; }
form label { display: block; margin-bottom: 0.8rem; font-weight: bold; }
form input, form textarea {
width: 100%;
padding: 0.7rem;
margin-bottom: 1.2rem;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
}
form button {
background: #111;
color: #fff;
padding: 0.9rem 1.8rem;
border: none;
border-radius: 5px;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
transition: background 0.3s ease;
}
form button:hover { background: #333; }