.titulo-nexus {
    display: flex;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
}

.titulo-nexus img {
    width: 17vh;
    margin: 0;
}

.titulo-nexus h2 {
    margin: 0;
    color: #05f300;
}

/* ------------------------------------------------ NEXUS -------------------------------------------------------- */

/* #nexus {
    background-color: var(--cor-fundo);
} */

#nexus p {
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.cards-nexus {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #2f2f2f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards-nexus:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 255, 30, 0.1);
}

.cards-nexus i {
    font-size: 40px;
    color: #05f300;
    margin-bottom: 20px;
    margin-top: 10px;
}

.cards-nexus .drone-icon {
    width: 10vh;
    height: 10vh;
    margin-top: -3vh;
    background-color: #05f300;
    mask-image: url('../images/icon_drone.svg');
    -webkit-mask-image: url('../images/icon_drone.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
    margin-top: -12px;
}

.cards-nexus h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.cards-nexus p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}