.hero {
    background-image: url("/2026/wp-content/uploads/2026/06/header.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Overlay azul tecnológico */
.hero::after {
    background: linear-gradient(
            90deg,
            rgba(7, 45, 102, 0.80) 0%,
            rgba(10, 79, 175, 0.60) 50%,
            rgba(7, 45, 102, 0.80) 100%
    );
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -10;
}

/* Mobile */
@media (max-width: 575px) {
    .hero h2 {
        font-size: 16px;
    }

    .hero h3 {
        font-size: 13px;
    }
}

/* Altura até 700px */
@media (max-height: 700px) {
    #hero_row {
        margin-top: 5%;
    }
}

/* Altura até 600px */
@media (max-height: 600px) {
    #hero_row {
        margin-top: 15%;
    }
}

/* Menu dropdown */
.dropdown ul a:hover {
    color: white !important;
    background-color: #0A4FAF;
}

/* Header fixo */
.header.sticked {
    background-color: rgba(7, 45, 102, 0.95);
    backdrop-filter: blur(10px);
}

/* Footer */
.footer {
    background: linear-gradient(
            90deg,
            #072D66 0%,
            #0A4FAF 100%
    );
}

/* Linhas */
hr {
    border-color: #1E88FF;
}

/* Links */
a {
    color: #1E88FF;
    transition: 0.3s;
}

a:hover {
    color: #66B2FF;
}

/* Botões */
.btn-primary,
.btn-main-md {
    background: linear-gradient(
            135deg,
            #0A4FAF 0%,
            #1E88FF 100%
    );
    border-color: #0A4FAF;
}

.btn-primary:hover,
.btn-main-md:hover {
    background: linear-gradient(
            135deg,
            #083B82 0%,
            #0A4FAF 100%
    );
    border-color: #083B82;
}

.hero h1,
.hero h2,
.hero h3 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(30, 136, 255, 0.35);
}