.section-title{
    color:#fff;
    font-size:3.5rem;
    font-weight:700;
    text-align:center;
    margin-bottom:40px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050b12;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 50px;

    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);

    z-index: 999;
}

.logo img {
    height: 70px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #00b7ff;
}

/* HERO */

#hero {
    position: relative;

    min-height: 100vh;

    background-image: url('../img/home.webp');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    max-width: 550px;

    position: relative;
    z-index: 2;

    margin-top: -20px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 0 12px rgba(0,183,255,0.4);
}

.hero-content p {
    font-size: 1.3rem;
    color: #d8d8d8;
    max-width:400px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #00b7ff;
    color: #fff;

    text-decoration: none;
    font-weight: bold;

    border-radius: 18px;

    transition: 0.3s;
}

.btn:hover {
    background: #008fd6;
    transform: translateY(-2px);
}

/* SEÇÕES */

section {
    padding: 100px 10%;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;

    margin-bottom: 50px;

    color: #00b7ff;
}

/* FOOTER */

footer {
    text-align: center;

    padding: 50px 20px;

    background: #02060a;

    border-top: 1px solid rgba(255,255,255,0.1);
}

footer img {
    height: 60px;
    margin-bottom: 20px;
}

footer p {
    color: #cfcfcf;
}
.footer-logo {
    height: 80px;
    width: auto;
}

/* SOLUÇÕES */

#solucoes {
    background: #050b12;
    padding: 80px 10% 120px 10%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    color: #bfbfbf;
    margin-bottom: 60px;
    font-size: 1.2rem;
}

.cards {
 display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    width: 330px;
    nim-height: 380px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,183,255,0.15);
    border-radius: 20px;
    padding: 30px;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);

    border-color: rgba(0,183,255,0.5);

    box-shadow: 0 0 25px rgba(0,183,255,0.15);
}

.card h3 {
    margin-bottom: 20px;
    color: #00b7ff;
}

.card p {
    color: #d8d8d8;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 8px;
    color: #bfbfbf;
}

#projetos {
    padding: 80px 10%;

    background: linear-gradient(
        180deg,
        #030c15 0%,
        #05101c 100%
    );
}

#projetos .subtitulo {
    text-align: center;

    font-size: 1.2rem;

    color: #c0c0c0;

    margin-bottom: 60px;
}

#quem-somos {
    padding-top: 80px;
    padding-bottom: 60px;
}

.quem-container{
    max-width:1000px;
    margin:0 auto;
}

.quem-texto{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.quem-texto p{
    margin-bottom:20px;
    color:#d8d8d8;
    font-size:1.1rem;
    line-height:1.8;
}

.quem-grid{
    display:grid;
    grid-template-columns: repeat(2, 320px);
    justify-content:center;
    gap:15px 40px;
    margin-top:20px;
}

.quem-grid div{
    font-size:1.2rem;
    color:#fff;
}

.quem-grid div::before{
    content:"✓ ";
    color:#00b7ff;
    font-weight:bold;
}

.knowledge-feature {

    max-width: 900px;

    margin: 0 auto 60px auto;

    padding: 40px;

    text-align: center;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(0,183,255,0.15);

    border-radius: 20px;
}

.knowledge-feature h3 {

    color: #00b7ff;

    font-size: 2rem;

    margin-bottom: 20px;
}

.knowledge-feature p {

    max-width: 700px;

    margin: 0 auto 30px auto;

    color: #d8d8d8;
}

.contato-info{
    max-width:900px;
    margin:60px auto 0;
    text-align:center;
}

.contato-info p{
    margin-bottom:15px;
    color:#d0d0d0;
}

.card ul li::before{
    content:"✓";
    color:#00b7ff;
    font-weight:bold;
    margin-right:8px;
}
/* =======================================
   PORTAL RMEVOLUTION
======================================= */

.portal-hero{

    max-width:500px;

    margin-top:20px;

    align-items:flex-start;

    text-align:left;
}

.portal-hero h1{

    font-size:3rem;

    margin-bottom:20px;
}

.portal-hero p{

    max-width:650px;

    text-align:left;

    margin-bottom:30px;
}

.portal-grid{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:30px;
}

.portal-card{

    width:330px;

    min-height:260px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(0,183,255,0.15);

    border-radius:20px;

    padding:30px;

    transition:0.3s;
}

.portal-card:hover{

    transform:translateY(-6px);

    border-color:rgba(0,183,255,0.5);

    box-shadow:0 0 25px rgba(0,183,255,0.15);
}

.portal-card h3{

    color:#00b7ff;

    margin-bottom:15px;
}

.portal-card p{

    color:#d8d8d8;

    margin-bottom:25px;
}

.portal-dev{

    border:1px dashed #00b7ff;
}

.portal-badge{

    display:inline-block;

    margin-top:10px;

    padding:6px 12px;

    border-radius:20px;

    background:#00b7ff;

    color:#fff;

    font-size:.8rem;

    font-weight:bold;

    letter-spacing:1px;
}

/* RESPONSIVO */

@media (max-width: 900px) {

    /* HEADER */

    header {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    .logo img {
        height: 55px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
        gap: 10px;
    }

    nav a {
        font-size: 0.9rem;
    }

    /* HERO */

#hero{
        min-height: auto;

        padding-top: 150px;
        padding-bottom:400px;
background-size: 110%;
        background-position: center 300px;
        background-attachment: scroll;
    }
    .hero-content{
        margin-top: 10px;
        text-align:center;
    }

    .hero-content h1{
        font-size:2rem;
        line-height:1.1;
    }

    .hero-content p{
        font-size:1rem;
    }

    .btn {
        padding: 12px 24px;
    }

    /* SEÇÕES */

    section {

        padding: 100px 6%;
scroll-margin-top: 70px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* CARDS */

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 380px;
    }

    /* QUEM SOMOS */

    .quem-texto p {
        font-size: 1rem;
        text-align: left;
    }

    .quem-grid {
        grid-template-columns: 1fr;

        gap: 12px;

        max-width: 320px;

        margin: 20px auto 0;
    }

    .quem-grid div {
        font-size: 1rem;
    }

    /* CONHECIMENTO */

    .knowledge-feature {
        padding: 25px;
    }

    .knowledge-feature h3 {
        font-size: 1.5rem;
    }

    .knowledge-feature p {
        font-size: 1rem;
    }

    /* CONTATO */

    .contato-info {
        padding: 0 10px;
    }

    .contato-info p {
        font-size: 0.95rem;
    }

    /* FOOTER */

    .footer-logo {
        height: 60px;
    }
.portal-logo{
    max-width:280px;
}

.portal-hero h1{
    font-size:2rem;
}

.portal-hero p{
    font-size:1rem;
}

.portal-grid{
    flex-direction:column;
    align-items:center;
}

.portal-card{
    width:100%;
    max-width:380px;
}
}
