body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    padding: 0;
    margin: 0;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.logo {
    font-weight: bold;
    font-size: 20px;
}

.menu-icon {
    font-size: 26px;
    cursor: pointer;
}

.menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #eee;
    position: absolute;
    top: 70px; /* abaixo do header */
    right: 16px;
    left: 16px;
    z-index: 1000;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.menu a {
    text-decoration: none;
    color: #333;
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid #eee;
}

.menu a:last-child {
    border-bottom: none;
}

h1 {
    text-align: center;
    margin: 20px;
    font-size: 24px;
}

.question-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-size: 28px;
    font-weight: bold;
}

input {
    box-sizing: border-box;
}

input, select {
    width: 100%;
    padding: 14px 10px;
    font-size: 24px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    color: #333;
}

.date-group {
    display: flex;
    gap: 10px;
}

select {
    flex: 1;
}

.card-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
    
.cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 12px;
}

.card:hover {
    transform: translateY(-3px);
}

.card img {
    width: 40%;
    height: 160px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.card-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card h3 {
    font-size: 20px;
    margin: 0;
    line-height: 1.2;
}

.card p {
    font-size: 16px;
    margin: 0;
    color: #666;
}

@media (max-width: 700px) {
    .card {
        flex-direction: column;
        padding: 0;
    }
    .card img {
        width: 100%;
        height: 180px;
        border-radius: 0;
    }
    .card-content {
        width: 100%;
        padding: 16px;
    }
}

.logo {
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
    margin-left: 8px;
}

.footer {
    background: #f9f9f9;
    color: #666;
    font-size: 14px;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px 20px;
}

.footer-logo img {
    height: 80px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 16px;
    background: #eee;
    font-size: 13px;
    color: #888;
}