/* tecnologias — estilos específicos desta página.
   Tokens e componentes base vêm de orhen-ds.css. */

.tech-intro {
        background: var(--graphite);
        padding: 3rem;
        border-radius: var(--radius-lg);
        border-left: 5px solid var(--accent);
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        margin-bottom: 4rem;
    }

.tech-intro p {
        font-size: 16px;
        color: var(--dark);
        line-height: 1.8;
        margin-bottom: 1rem;
    }

.tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

.tech-card {
        background: var(--graphite);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        border: 1px solid var(--border);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

.tech-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    }

/* Foto real do equipamento no topo do card */
.tech-photo {
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
    }

.tech-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

.tech-card:hover .tech-photo img {
        transform: scale(1.06);
    }

.tech-header {
        background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
        color: var(--white);
        padding: 2rem;
        text-align: center;
    }

/* Ícone de traço dourado em bloco de 56px (DS §3, Cards) */
.tech-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(185, 153, 85, 0.14);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.tech-title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

.tech-category {
    font-size: 13px;
    color: var(--gold-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.tech-body {
        padding: 2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

.tech-description {
        font-size: 15px;
        color: var(--dark);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

.tech-specs {
        background: var(--graphite);
        padding: 1.5rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border);
        margin-top: auto;
    }

.tech-specs h4 {
        font-size: 12px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 1rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

.tech-specs ul {
        list-style: none;
    }

.tech-specs li {
        font-size: 14px;
        color: var(--dark);
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
    }

.tech-specs li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: var(--accent-on-light);
        font-weight: 700;
        font-size: 18px;
        line-height: 0.8;
    }

.ecosystem {
        background: var(--graphite);
        padding: 3rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--accent);
        margin-bottom: 4rem;
    }

.ecosystem h3 {
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

.ecosystem p {
        color: var(--dark);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

.ecosystem-services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

.ecosystem-service {
        background: var(--graphite);
        padding: 1.5rem;
        border-radius: var(--radius-md);
        border-left: 3px solid var(--accent);
    }

.ecosystem-service h4 {
        color: var(--primary);
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

.ecosystem-service p {
        color: var(--light);
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 0;
    }

.applications-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

.application-card {
        background: var(--graphite);
        padding: 2rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border);
        text-align: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }

.application-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(185, 153, 85, 0.10);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.application-card h4 {
        color: var(--primary);
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.application-card p {
        color: var(--light);
        font-size: 14px;
        line-height: 1.6;
    }

@media (max-width: 768px) {
.tech-grid {
                grid-template-columns: 1fr;
        }
}

@keyframes scaleInCard {
        from {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
        }
        to {
                opacity: 1;
                transform: scale(1) translateY(0);
        }
    }

.animate-on-scroll {
        opacity: 0;
    }

.animate-on-scroll.animate-in {
        animation: slideInUp 0.8s ease-out forwards !important;
    }

.animate-on-scroll.section-title.animate-in {
        animation: slideInDown 0.8s ease-out forwards !important;
    }

.animate-on-scroll.tech-card-item.animate-in {
        animation: scaleInCard 0.8s ease-out forwards !important;
    }

.animate-on-scroll.content-block.animate-in {
        animation: fadeInText 0.9s ease-out forwards !important;
    }

/* Ícones inline nos entregáveis (h4 com ícone + rótulo) */
.ecosystem-service h4,
.tech-specs h4,
.ecosystem h4 {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.ecosystem-service h4 svg,
.tech-specs h4 svg,
.ecosystem h4 svg {
    color: var(--accent-on-light);
    flex-shrink: 0;
}
