.hero{
    min-height:390px;
    background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.05) 100%),
    url('/images/background-final.png');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding-top: 0;
    overflow: visible;
}

.hero-content{
    width:min(1200px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:40px;
    align-items:center;
}

.hero-text {
    margin-top: 50px;
}

.hero-text h1{
    font-size:72px;
    line-height:1.05;
    color:#fff;
    font-weight:800;
}

.hero-text h1 span{
    display:block;
}

.hero-text p{
    font-size:22px;
    margin-top:24px;
    color:#fff;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:18px 34px;
    background:#d92d20;
    color:#fff;
    text-decoration:none;
    border-radius:14px;
    font-weight:700;
    font-size:25px;
}

.btn:hover {
    background: #d92d20;
    color: #fff;
    opacity: 1;
}

.badge{
    width:380px;
    height:380px;
    border-radius:50%;
    background:#c1121f;
    color:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    font-size:42px;
    font-weight:800;

    box-shadow:0 20px 60px rgba(0,0,0,.2);
}

.badge span{
    font-size:24px;
    margin-top:10px;
}

.solutions{
    padding:20px 0;
    background:#f4f7fb;
}

.solutions h2{
    text-align:center;
    font-size:48px;
    margin-bottom:50px;
}

.cards{
    width:min(1200px,92%);
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.card {
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: visible;
    padding-top: 60px;
}

.card h3{
    font-size:32px;
    margin-bottom:20px;
    margin-left: auto;
    margin-right: auto;
}

.card img {
    margin-top: -80px;
}

.card p {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.card p span {
    position: relative;
    padding-left: 18px;
}

.card p span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #d92d20; /* vermelho StrongNet */
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media(max-width:992px){

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-text h1{
        font-size:46px;
    }

    .badge{
        margin:auto;
        width:280px;
        height:280px;
        font-size:30px;
    }

    .cards{
        grid-template-columns:1fr;
    }
}

.site-header {
    background: #f8f8fc;
    padding: 16px 0;
}

.header-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 48px;
    display: block;
}

.main-nav a {
    color: #000 !important;
    text-decoration: none;
    font-weight: 600;
    margin-left: 24px;
}

.hero h1,
.hero .hero-title {
    font-family: "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300; /* deixa fino */
    font-size: 64px;
    letter-spacing: 1px; /* espaçamento suave */
    color: #ffffff;
    margin: 0;
}

.hero-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ribbon-badge {
    width: 500px;
    height: auto;
}

.card img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.site-footer {
  background: #f8f8fc;
  color: #000;
  padding: 20px 0;
}

.footer-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #000;
}

.footer-logo img {
  height: 48px;
  display: block;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 14px;
  color: #000;
}

.main-nav {
    margin-top: 0px !important; /* ou o valor que quiseres */
}