/* Corporativo - Páginas unificadas */
.corp-hero {
    position: relative;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    overflow: hidden;
}

.corp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 50%, transparent 25%, #000 120%),
        linear-gradient(90deg, rgba(0, 255, 234, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 234, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.corp-title {
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.corp-lede {
    font-size: 1.1rem;
    max-width: 640px;
    margin-bottom: 1.75rem;
    color: var(--text-tech);
}

.corp-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.corp-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.corp-chip {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-tech);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.corp-hero .tech-card,
.corp-section .tech-card {
    border-radius: 0;
    clip-path: polygon(15px 0,
            100% 0,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            0 100%,
            0 15px);
}

.corp-media {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 14, 24, 0.6);
}

.corp-media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.corp-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.corp-section-head {
    text-align: left;
    max-width: 720px;
    margin-bottom: 1.5rem;
}

.corp-section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 0.6rem;
}

.corp-section-head p {
    color: var(--text-tech);
}

.corp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.corp-card {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.corp-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.corp-card p {
    margin: 0;
    color: var(--text-tech);
}

.corp-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.corp-banner {
    padding: 1.75rem 2rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(120deg, rgba(0, 255, 234, 0.08), rgba(255, 77, 29, 0.08));
    display: grid;
    gap: 1.5rem;
    clip-path: polygon(15px 0,
            100% 0,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            0 100%,
            0 15px);
}

.corp-banner h3 {
    margin-bottom: 0.35rem;
}

.corp-banner p {
    margin: 0;
    color: var(--text-tech);
}

.corp-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.corp-mini {
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.corp-mini i {
    font-size: 1.2rem;
    color: var(--neon-blue);
}

.btn-prioridade {
    color: var(--neon-blue) !important;
    border-color: var(--neon-blue) !important;
    justify-content: center;
    text-align: center;
    min-width: 200px;
}

.btn-prioridade:hover {
    background: rgba(0, 255, 234, 0.15);
    box-shadow: 0 0 18px rgba(0, 255, 234, 0.45);
    color: #fff !important;
}

@media (max-width: 991px) {
    .corp-section-head {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .corp-hero {
        padding: 2.5rem 0;
    }

    .corp-cta {
        flex-direction: column;
        align-items: stretch;
    }
}
