body {
    margin: 0;
    overflow-x: hidden;
}

.cinfos {
    width: 100%;
    /* Estado inicial = idêntico ao .c2 */
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 3rem 2rem;
    box-sizing: border-box;
    gap: 1px;
    position: relative;
    overflow: hidden;
}

/* Imagem de fundo desfocada — atrás do overlay rgba, igual ao parallax do c2 */
.cinfos::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: url('/public/assets/bgParalax.jpg') center / cover no-repeat;
    filter: blur(12px);
    z-index: -1;
    pointer-events: none;
    opacity: 1;
}

.cinfos > * {
    position: relative;
    z-index: 1;
}

/* Ao entrar na viewport: 2s visível como acrílico, depois migra pro preto em 2.5s */
.cinfos.spec-visible {
    animation: overlayDarken 1.3s ease 0s forwards;
}

.cinfos.spec-visible::before {
    animation: imgFadeOut 1.3s ease 0s forwards;
}

.esquerda,
.direita {
    width: 100%;
    box-sizing: border-box;
}

@keyframes imgFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@keyframes overlayDarken {
    from { background: rgba(0, 0, 0, 0.5); }
    to   { background: rgba(0, 0, 0, 0.90   ); }
}

/* Each spec item — subtle card */
.esquerda > div,
.direita > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    margin-bottom: 6px;
    border-left: 2px solid transparent;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    opacity: 1;
}

.esquerda > div:hover,
.direita > div:hover {
    border-left-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
    transform: none;
}

/* Icon */
.im,
.im2 {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-top: 2px;
}

.im > img,
.im2 > img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(1);
    opacity: 1;
}

/* Text */
.esquerda > div p,
.direita > div p {
    font-size: 0.82rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    margin: 0;
    color: #aaa;
    transition: color 0.2s ease;
}

.esquerda > div p strong,
.direita > div p strong {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 700;
}

.esquerda > div:hover p,
.direita > div:hover p {
    color: #ccc;
}

/* Desktop */
@media screen and (min-width: 768px) {
    .cinfos {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 3rem 4rem;
        gap: 2rem;
    }

    .esquerda,
    .direita {
        width: 50%;
    }

    .verMais {
        display: none;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    .cinfos {
        flex-direction: column;
        padding: 1.5rem 1rem;
    }

    .esquerda,
    .direita {
        width: 100%;
    }

    .direita {
        display: none !important;
    }

    .direita[style*="display: block"] {
        display: block !important;
    }

    .verMais {
        display: block;
        width: 100%;
        cursor: pointer;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 15px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 6px;
        background: rgba(0,0,0,0.94);
        color: #888;
        transition: color 0.2s, border-color 0.2s;
        margin-top: 12px;
    }

    .verMais:hover {
        color: #ccc;
        border-color: rgba(255,255,255,0.22);
    }
}
