* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #ebebeb;
    color: #333;
}

.header {
    width: 100%;
    background: #ffe600;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #2b317a;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.header h1 {
    font-size: 32px;
}

.social {
    margin-top: 8px;
    display: flex;
    gap: 12px;
}

.social a {
    color: #333;
    font-size: 22px;
}

.social a:hover {
    transform: scale(1.1);
}

.busca-box {
    max-width: 1200px;
    padding: 25px 20px;
    margin: auto;
    display: flex;
    gap: 10px;
    position: relative;
}

.busca-box i {
  position: absolute;   
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.busca-box input {
    flex: 1;
    padding: 15px 20px 15px 50px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

.busca-box button {
    width: 50px;
    border: none;
    border-radius: 10px;
    background: #3483fa;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.grid {
    max-width: 1200px;
    padding: 0px 20px 20px 20px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info {
    display: flex;
    gap: 12px;
}

.info img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
}

.texto h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.texto p {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.data {
    font-size: 12px;
    color: #999;
}

.btn {
    background: #3483fa;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}