.ta-v2 .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.ta-v2 .ta-v2-architectural-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

/* Cards de documento — cinza/branco → hover bordô com texto branco */
.ta-v2 .ta-v2-doc-card-hover {
    position: relative;
    z-index: 0;
    transition:
        background-color 0.38s ease,
        border-color 0.38s ease,
        box-shadow 0.38s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.ta-v2 .ta-v2-doc-card-hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.38s ease;
    pointer-events: none;
    z-index: 0;
}

.ta-v2 .ta-v2-doc-card-hover:hover,
.ta-v2 .ta-v2-doc-card-hover:focus-within {
    background-color: #71130d !important;
    border-color: #71130d !important;
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(113, 19, 13, 0.3), 0 2px 8px rgba(113, 19, 13, 0.18);
    z-index: 2;
}

.ta-v2 .ta-v2-doc-card-hover:hover::after,
.ta-v2 .ta-v2-doc-card-hover:focus-within::after {
    opacity: 1;
}

.ta-v2 .ta-v2-doc-card-hover [class*='text-'],
.ta-v2 .ta-v2-doc-card-hover p,
.ta-v2 .ta-v2-doc-card-hover .material-symbols-outlined {
    transition: color 0.38s ease;
}

.ta-v2 .ta-v2-doc-card-hover:hover [class*='text-'],
.ta-v2 .ta-v2-doc-card-hover:focus-within [class*='text-'],
.ta-v2 .ta-v2-doc-card-hover:hover p,
.ta-v2 .ta-v2-doc-card-hover:focus-within p,
.ta-v2 .ta-v2-doc-card-hover:hover .material-symbols-outlined,
.ta-v2 .ta-v2-doc-card-hover:focus-within .material-symbols-outlined {
    color: #ffffff !important;
}

.ta-v2 .ta-v2-doc-card-hover:hover .border-surface-container-highest,
.ta-v2 .ta-v2-doc-card-hover:focus-within .border-surface-container-highest {
    border-color: rgba(255, 255, 255, 0.28) !important;
}

.ta-v2 .ta-v2-doc-card-hover:hover .ta-v2-doc-cta .material-symbols-outlined,
.ta-v2 .ta-v2-doc-card-hover:focus-within .ta-v2-doc-cta .material-symbols-outlined {
    transform: translateX(3px);
    transition: color 0.38s ease, transform 0.3s ease;
}

.ta-v2 .ta-v2-commitment-box {
    transition: box-shadow 0.4s ease;
}

.ta-v2 .ta-v2-commitment-box:hover {
    box-shadow: 0 16px 48px rgba(26, 28, 28, 0.08);
}

/* Certificações e Integridade — painel editorial */
.ta-v2 .ta-v2-certifications-panel {
    overflow: hidden;
}

.ta-v2 .ta-v2-certifications-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .ta-v2 .ta-v2-certifications-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
    }
}

.ta-v2 .ta-v2-certifications-copy {
    text-align: left;
    width: 100%;
}

.ta-v2 .ta-v2-certifications-logos {
    width: 100%;
}

@media (min-width: 768px) {
    .ta-v2 .ta-v2-certifications-logos {
        width: auto;
        flex-shrink: 0;
        max-width: 55%;
    }
}

.ta-v2 .ta-v2-certifications-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    transition: transform 0.35s ease;
}

.ta-v2 .ta-v2-certifications-logo-wrap:hover {
    transform: scale(1.05);
}

.ta-v2 .ta-v2-badge-img {
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.35s ease;
}

.ta-v2 .ta-v2-certifications-logo-wrap:hover .ta-v2-badge-img {
    filter: grayscale(0%);
}

.ta-v2 .ta-v2-reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.ta-v2 .ta-v2-reveal.ta-v2-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

.ta-v2 .ta-v2-doc-card.ta-v2-filter-hidden {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .ta-v2 .ta-v2-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .ta-v2 .ta-v2-doc-card-hover:hover,
    .ta-v2 .ta-v2-doc-card-hover:focus-within {
        transform: none;
    }
}
