.akiroda-section h1 {
    font-family: "Alfa Slab One", cursive;
    color: white;
    font-size: 3.0rem;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 10px rgba(179, 179, 177, 0.3);
    padding: 1.5rem 0; /* Mesmo padding vertical usado em .memoria-section h1 */
}

.aki-roda-title-img {
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 420px;
    width: 100%;
    filter: grayscale(100%) drop-shadow(0 4px 16px #111);
    border-radius: 12px;
    padding: 0px 12px 0 12px;
    /* Borda branca e sombra */
    border: 4px solid #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.7);
}

/* Modal para imagem ampliada */
.akiroda-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}

.akiroda-modal.is-active {
    display: flex;
}

.akiroda-modal img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    /* Borda branca e sombra */
    border: 4px solid #fff;
    box-shadow: 0 8px 40px #000;
    background: #111;
}

.akiroda-modal .akiroda-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
}

.akiroda-card .card-image img {
    filter: grayscale(100%) drop-shadow(0 4px 16px #111);
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.7);
    background: #111;
    cursor: pointer;
    transition: filter 0.3s, box-shadow 0.3s;
}

.akiroda-card .card-image img:hover {
    filter: grayscale(0%) drop-shadow(0 6px 24px #000);
    box-shadow: 0 8px 32px rgba(255,255,255,0.15);
}