﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
   
    background-color: #fff;
    color: #333;
}

h1, h2, h3, h4, h5 {
    font-family: "Instrument Sans", sans-serif;

}


#btnTopo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #165F4C;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.3s ease;
}

    #btnTopo:hover {
        background-color: #20735E;
    }




/* HEADER */

header.scrolled {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    width: 100%;
    height: 100px;    
}

    header.scrolled .nav-links li.active a {
        color: #20735E;
        font-weight: 600;
    }

        header.scrolled .nav-links li.active a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 2px;
            background-color: #20735E;
        }

    header {
        width: 100%;
        padding: 20px 40px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        position: fixed;
    }

        header.scrolled .nav-links li a {
            color: #20735E;
        }

        header.scrolled .nav-links li.btn-cliente a {
            color: white;
        }


/* Hamburger escondido no desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #20735E;
    }

/* MENU */
.menu {
    display: flex;
    align-items: center; 
    justify-content: center; 
    padding: 20px;
    width: 100%;
}

.logoSatelMenu{
    position: relative;
    right: 60px;
}


.logoSatelMenu img {
    min-height: 65px;
}


.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 60px;
}

    .nav-links li a {
        padding: 10px 18px;
        text-decoration: none;
        font-weight: 600;
        color: white;
        font-size: 18px;
        position: relative;
    }

        .nav-links li a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: rgba(0, 70, 60, 0.45);
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-links li a:hover::after {
            width: 100%;
            left: 0;
        }



    .nav-links li.active a {
        background-color: #ffffff;
        color: #20735E;
        padding: 10px 18px;
        border-radius: 20px;
        font-weight: 600;
    }

.btn-cliente a {
    background-color: darkgreen;
    color:white;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    width: auto;
    font-weight: bold;
    font-size: 18px;
}


/* HERO SECTION HOME*/
.hero {
    width: 100%;
    min-height: 85vh;
    /*background-image: url('/Content/img/home/porto-de-embarque-com-conteineres-de-carga-e-guindastes.jpg');
    background-size: cover;
    background-position: center;*/
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 170px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 6s ease;
}

    .hero-slide.ativo {
        opacity: 1;
        transform: scale(1);
    }

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 70, 60, 0.45); /* cor + transparência */
    z-index: 1;
}
.hero-text {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s ease;
}

    .hero-text.active {
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }


    .hero-content h1 {
        font-family: "Instrument Sans", sans-serif;
        font-size: 48px;
        line-height: 1.3;
        font-weight: 700;
        margin-left: 50px;
    }

    .hero-content span {
        font-family: 'Instrument Sans', serif;
        font-size: 40px;
        font-weight: 400;
    }

/* BOTÕES HOME*/
.hero-buttons {
    margin: 35px 0 35px 40px;
    display: flex;
    gap: 20px;
}

.btn-white {
    background-color: white;
    color: #004b44;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
   
}

.btn-dark {
    background-color: #004b44;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    
}


.btn-white,
.btn-dark {
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}

    .btn-white:hover,
    .btn-dark:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 14px 30px rgba(0,0,0,0.25);
    }

    .btn-white::after,
    .btn-dark::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.5), transparent 80%);
        transform: translateX(-120%);
        transition: transform .6s ease;
    }

    .btn-white:hover::after,
    .btn-dark:hover::after {
        transform: translateX(120%);
    }

    .btn-white:hover {
        background-color: #1F8F6B;
        color: #fff;
    }

    .btn-dark:hover {
        background-color: #F4B400;
        color: #004b44;
    }


/*SERVIÇOS*/
.servicos {
    text-align: center;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(180deg, #0E3F36 0%, #1C8C75 100%) /*linear-gradient(180deg, #0F3D2E 0%, #AFCAC5 100%)*/;
}

    .servicos h2 {
        font-size: 2.4rem;
        color: #ecf3f2;
        margin-bottom: 40px;
    }

.container-servicos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 8px;
    gap: 60px;
}

.item-servico {
    background: #ffffff;
    border-radius: 18px;
    width: 340px;
    min-height: 355px;
    box-shadow: 0 18px 35px rgba(0,0,0,.18);
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: pointer;
}

    .item-servico img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 8px 8px 0 0;
        transition: transform 0.4s ease;
    }

    .item-servico h3 {
        margin-top: 10px;
        font-size: 20px;
        color: #115849;
        padding: 12px;
    }

    .item-servico:hover h3 {
        background-color: #20735E;
        color: white;
        padding: 12px;
        border-radius: 8px; 
        height: 55px;
        transition: all 0.3s ease;
    }


.img-servico {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 290px; 
}

    .img-servico img {
        width: 100%;
        display: block;
    }


.overlay {
    position: absolute;
    inset: 0;
    background-color: #fffffff1;
    color: rgba(22, 95, 76, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}


.item-servico:hover .overlay {
    opacity: 1;
}

.item-servico:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

.overlay p {
    font-size: 0.95rem;
    line-height: 1.4;
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.85));
    backdrop-filter: blur(4px);
}


.item-servico:hover img {
    transform: scale(1.05);
}




/*SOBRE A SATEL*/
.sobrenos {
    display: flex;
    align-items: center;
    padding: 100px 10%;
    background: linear-gradient(180deg, #1C5B4E 0%, #115849 100%);
}

.container-sobrenos {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 30px 60px;
    gap: 40px;   
}

    .container-sobrenos h2 {
        font-size: 2rem;
        color: #ECF3F2;
    }

    .container-sobrenos img {
        width: 500px;
        min-height: 250px;
        border-radius: 12px;
    }

.txt-sobrenos {
    /* color: #ECF3F2;
    font-size: 1.15rem;
    line-height: 1.9;
    position: relative;
    padding: 15px 30px;
    top: 30px; */
    color: #ecf3f2;
    font-size: 1.1rem;
    line-height: 1.8;
    background: rgba(255,255,255,0.08);
    padding: 35px 45px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.contBtnSobre {
    display: flex;
    margin-top: 20px;
    gap: 20px;
    align-items: center;
    justify-content: center;
}


.btnSobrenos {
    background: linear-gradient(135deg, #2fbf9b, #1f7a63);
    border-radius: 14px;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    font-size: 18px;
    width: 200px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform .25s ease, box-shadow .25s ease;
}


    .btnSobrenos:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,.15);
        background-color: white;
        color: white;
    }



/*NOTICIAS*/
.noticias {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
    background-color: #e5f0e9;
}

.container-noticias > h2 {
    display: flex;
    font-size: 2rem;
    color: #004b44;
    text-align: center;
  /*  margin-bottom: 30px;*/
    font-weight: bold;
}

.container-noticias {
    display: flex;
    flex-direction: column;
    gap: 30px; /* max-width: 800px;*/
}

.item-noticias {
    display: flex;
    align-items: flex-start;
    background-color: transparent;
    margin-bottom: 20px;
    transition: transform .3s ease;
    overflow: hidden;
    border-radius: 12px;
}

    .item-noticias > a > img {
        width: 250px;
        min-height: auto;
        object-fit: cover;
        border-radius: 8px;
        margin-right: 25px;
        cursor: pointer;
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .item-noticias:hover img {
        transform: scale(1.06);
        box-shadow: 0 12px 25px rgba(0,0,0,.25);
    }

.item-noticias-conteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

    .item-noticias-conteudo h3 a {
        font-size: 1.20rem;
        color: #333;
        margin-bottom: 5px;
        font-weight: 600;
        text-decoration: none;
    }

    .item-noticias-conteudo article p a {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
        text-decoration: none;
    }

strong > em {
    color: #37A535;
}

.noticia-box-info {
    background: #f1f8f6;
    border-left: 5px solid #0f4d3f;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin-top: 35px;
}

    .noticia-box-info h4 {
        margin-bottom: 12px;
        font-size: 18px;
        color: #0f4d3f;
    }

    .noticia-box-info p a {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
        text-decoration: none;
        color: #555;
    }

        .noticia-box-info p a:hover{
            color: #64968C;
        }

        .noticia-box-info ul {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .noticia-box-info ul li {
            font-size: 14px;
            margin-bottom: 6px;
        }



.btnNoticias {
    width: 150px;
    padding: 10px 20px;
    background-color: #387050;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: color .35s ease;
}

    .btnNoticias span {
        position: relative;
        z-index: 2;
        font-weight: bold;
    }

    .btnNoticias::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #9adb87;
        transform: translateX(-100%);
        transition: transform .4s ease;
        z-index: 1;
    }

    .btnNoticias:hover::before {
        transform: translateX(0);
    }

    .btnNoticias:hover {
        color: #fff;
    }

.contBtnNoticias {
    display: flex;
    margin-top: 8px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* TOUR GUIADO*/
.integracoes-bloco {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 80px 10%;
    background: linear-gradient(135deg, #0f3d2e, #1f7a63);
    align-items: center;
}

.integracoes-texto {
    color: #eafff6;
}

.tag-tecnica {
    background: rgba(122,224,195,0.15);
    color: #7ae0c3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.integracoes-texto h2 {
    font-size: 32px;
    margin: 18px 0;
    max-width: 520px;
}

.integracoes-texto p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    opacity: .9;
}

.integracoes-lista {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px;
}

    .integracoes-lista li {
        font-size: 14px;
        margin-bottom: 10px;
        opacity: .85;
    }

.btn-integracoes {
    display: inline-block;
    background: linear-gradient(135deg, #2fbf9b, #1f7a63);
    padding: 14px 28px;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .btn-integracoes:hover {
        filter: brightness(1.1);
        transform: translateY(-2px);
    }

.integracoes-imagem img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,.45);
}




/* CONTATO */
.contato {
    background: linear-gradient(180deg, #1C8C75 0%, #0E3F36 100%);
    text-align: center;
    padding: 60px 20px 45px;
    box-shadow: inset 0 10px 20px rgba(255,255,255,0.04);
}

    .contato h2 {
        color: #ECF3F2;
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .contato p {
        color: #D1E9E3;
        font-size: 1.15rem;
        max-width: 650px;
        margin: 0 auto 45px;
    }


.contato-btns {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btnContato {
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

    .btnContato.verde {
        background: linear-gradient(135deg, #37A535, #2EA33B);
        color: white;
    }

        .btnContato.verde:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(0,0,0,.25);
        }

    .btnContato.branco {
        background-color: rgba(255,255,255,0.95);
        color: #0F5A4F;
    }

        .btnContato.branco:hover {
            background-color: white;
            transform: translateY(-3px);
        }


/*SOBRE NOS*/

.hero-sobrenos {
    width: 100%;
    min-height: 55vh;
    background-image: url('/Content/img/home/capaServicos.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*padding-left: 120px;*/
    position: relative;
}
  
/*SOBRE NOS INSTITUCIONAL*/
.SobreNosEmpresa{
    display: flex;
    padding: 50px;        
    align-items: center;
    /*max-width: 1500px;*/
}

.txt-sobrenosEmpresa h2 {
    color: #115849;
    font-size: 2rem;
    text-align: left;
}

.containerSobrenosEmpresa {
    display: flex;
    justify-content: center;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    
}

    .containerSobrenosEmpresa img{
        width: 1800px;
        height: auto;
        max-width: 800px;
        border-radius: 12px;
        max-width: 200px;
    }

.txt-sobrenosEmpresa {
    color: black;
    line-height: 1.9;
    display: flex;
    font-size: 1.05rem;
    position: relative;
    padding: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    top: 20px;
    gap: 35px;
}


.strongNum {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
    margin-top: 50px;
}

.counter {
    color: #115849;
    transition: transform .3s ease;
}

    .counter:hover {
        transform: translateY(-4px);
    }


    .counter .num,
    .counter .plus {
        display: inline-block;
        transition: transform .35s ease, box-shadow .35s ease;
    }

    .counter:hover .num {
        transform: scale(1.15);
    }

    .counter:hover .plus {
        transform: scale(1.3);
        color: #37A535;
    }

    .counter .num {
        font-size: 2.8rem;
        font-weight: 800;
    }

    .counter p {
        font-size: 1rem;
        color: #4f6f67;
    }


    .strongNum strong {
        font-family: "Instrument sans";
        color: #115849;
        font-size: 1.1rem;      
    }

.plus {
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s ease, transform .4s ease;
}

.counter.done .plus {
    opacity: 1;
    transform: translateY(0);
}



   /* VALORES SATEL*/
.ValoresEmpresa {
    display: flex;
    padding: 50px;
    background: linear-gradient(180deg, #1C8C75 0%, #0E3F36 100%) /*#20735E*/;
    align-items: center;
    justify-content: center;
}

.containerValores {
    display: flex;
    flex-direction: row;
    gap: 80px;
    justify-content: center;
}

    .item_valor img {
        margin-bottom: 20px;
        text-align: center;
        width: 50px;
    }

.iconPng {
    width: 40px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.item_valor:hover .iconPng {
    transform: scaleX(-1);
    filter: brightness(1.2) saturate(1.5);
}

.item_valor{
    display: flex; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
}

.conteudoValor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

    .conteudoValor h3 {
        font-size: 1.5rem;
        color: white;
    }


    .conteudoValor p {
        color: white;
        font-size: 1rem;
    }


/*MAPA*/

.mapaEmpresa {
    display: flex;
    padding: 30px;
    background-color: white;
    align-items: center;
    justify-content: center;

}

.itemMapa {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    align-items: flex-start;
}

.informacoesMapa {
    background-color: #64968C;
    padding: 40px;
    border-radius: 20px 0 0 20px;
    color: white;
    width: 400px;
    height: auto;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}


.itemMapa .grupoTexto {
    display: flex;
    flex-direction: column;
}


    .informacoesMapa h4 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .itemMapa img {
        width: 30px;
        height: auto;
        margin-top: 5px; 
    }


.informacoesMapa p {
    font-size: 0.8rem;
    line-height: 1.6;
   
}

.informacoesMapa address {
    font-size: 0.8rem;
    line-height: 1.6;
    
}


.itemMapa strong {
    font-size: 1rem;
    margin-bottom: 4px;
}

.iconMapa {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.itemMapa:hover .iconMapa {
    fill: #ffd27d;
    transform: scale(1.15);
}


.contMapa iframe {
    border-radius: 0 20px 20px 0;
    width: 600px;
    height: 360px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}


/*SERVIÇOS*/
.hero-servicos {
    width: 100%;
    min-height: 65vh;
    background-image: url('/Content/img/home/ideia-servicos.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-repeat: no-repeat;
}

    .hero-servicos h1 {
        color: white;
        font-size: 2.5rem;
        font-family: 'Instrument Sans';  
        margin-top: 190px;
    }

.containerServicosOferecidos {
    padding: 60px 20px;
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab {
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    background: #A9C2BD;
    color: #165F4C;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Instrument Sans';
}

    .tab.active {
        background: #165F4C;
        color: #fff;
    }

.conteudoTab {
    display: none;
}

    .conteudoTab.active {
        display: block;
    }

.cardsServicos {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cardServico {
    background: linear-gradient(135deg, #2E4E48 0%, #348a7a 100%);
    /* background: linear-gradient(180deg, #73BA25 0%, #2E4E48 100%);*/
    color: white;
    padding: 25px;
    border-radius: 16px;
    width: 380px;
    text-align: left;
    line-height: 1.7;
    transition: transform .35s ease;
}

    .cardServico h3 {
        margin-bottom: 15px;
    }

    .cardServico ul {
        padding-left: 18px;
    }

    /*cardServico ul li:hover{
        color: white;
        font-weight: 600;
       
       
    }*/

    .extra {
        display: none;
        margin-top: 10px;
    }

.strongSer{
    display: flex;
    justify-content: center;
    gap: 40px;
    text-align: center;
    margin: 30px 0;
}

.counterSer {
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform .3s ease;
}

.counterSer p{
    display: inline-block;
    font-size: 1rem;
}

    .counterSer:hover {
        transform: translateY(-4px);
    }


.btnMais {
    font-family: 'Instrument Sans';
    margin-top: 15px;
    background-color: white;
    border: none;
    color: #20735E;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
}



/*CONTATO PAGINA*/

.capaContato {
    width: 100%;
    min-height: 35vh;
    background: linear-gradient(180deg, #1C8C75 0%, #0E3F36 100%) /*linear-gradient(90deg, rgba(100,150,140,0.86) 0%, #20735E 100%)*/;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.capaContato h1{
    font-family: 'Instrument sans';
    font-size: 2rem;   
    color: white;
    margin-top: 60px;
}

.conteudoContato {
    display: flex;
    flex-direction: column;
    
}

    .capaContato p {
        font-family: 'Instrument sans';
        font-size: 1rem;      
        color: white;
    }

.infoContatos{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


.info{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 900px;
}

.contInfos{
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.imgContato img {
    width: 50px;
    height: 50px;
    transition: transform .45s cubic-bezier(.22,.61,.36,1), filter .35s ease, box-shadow .45s ease;
}

.imgContato:hover, .iconPng {
    transform: translateY(-6px) scale(1.12);
    filter: brightness(1.1) saturate(1.2);
    /*box-shadow: 0 12px 28px rgba(0,0,0,.18);*/
}


.tituloContato h2 {
    font-size: 1.2rem;
    font-family: 'Instrument Sans';
    color: #115849; /* o verde escuro do tema */
    margin-bottom: 4px;
}

.tituloContato p {
    font-size: 0.9rem;
    font-family: 'Montserrat';
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/*FORMULARIO DE CONTATO*/
.formContato{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.formulario{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    max-width: 900px;
    width: 100%;
}


/*.campo {
    display: flex;
    flex-direction: column;
}

    .campo label {
        font-family: 'Instrument Sans';
        margin-bottom: 4px;
        font-size: 0.95rem;
    }

        .campo label span {
            color: red;
        }*/

.formGroup input,
.formGroup textarea {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    font-family: 'Montserrat';
    font-size: 0.95rem;
}

.captcha {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #115849;
    padding: 10px;
    width: fit-content;
    border-radius: 8px;
}

textarea {
    resize: vertical;
}


.btnEnviar {
    grid-column: 1 / 3;
    background-color: #115849;
    color: white;
    border: 2px solid transparent;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Instrument Sans';
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
}

.btnEnviar:hover{   
    background-color: azure;
    color: rgba(0, 70, 60, 0.45);
    border: 2px solid rgba(0, 70, 60, 0.45);
}

/*FORMULARIO RH*/
.formContainer {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-family: "Instrument Sans", sans-serif;
}


.formRow {
    display: flex;
    gap: 25px;
    width: 100%;
}


.formGroup {
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .formGroup label {
        font-size: 0.95rem;
        color: #333;
        margin-bottom: 6px;
        font-weight: 500;
    }

        .formGroup label span {
            color: red;
        }

   
    .formGroup input,
    .formGroup select,
    .formGroup textarea {
        width: 100%;
        padding: 12px 15px;
        border-radius: 7px;
        border: 1px solid #ccc;
        font-size: 1rem;
        outline: none;
        transition: 0.3s;
    }

        .formGroup input:focus,
        .formGroup select:focus,
        .formGroup textarea:focus {
            border-color: #20735E;
        }


.fullWidth {
    width: 100%;
}

.captchaGroup {
    display: flex;
    align-items: center;
}

.captchaBox {
    display: flex;
    align-items: center;
    border: 1px solid #20735E;
    padding: 15px 20px;
    border-radius: 10px;
    gap: 10px;
}

    .captchaBox input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

.obsTexto {
    font-size: 0.75rem;
    color: #444;
    width: 100%;
    line-height: 1.4;
    
}

.obsTextoPdf {
    font-size: 0.75rem;
    color: #444;
    width: 100%;
    line-height: 1.4;
    font-weight: bold
}

.g-recaptcha iframe {
    width: 100%;
    height: auto;
    display: inline-block;
    justify-content: center;
    align-items: center;
}


/*JOVEM APRENDIZ*/
.JovemAprendiz {
    width: 100%;
    height: auto;
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}


.containerJA {
    background-color: #20735E;
    padding: 10px;   
    max-width: 700px;
    border-radius: 12px;
    display: flex; 
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .containerJA h3 {
        font-size: 1rem;
        color: white;      
    }

    .containerJA:hover {
        background-color: #1b5f4d;
    }

/* texto escondido */
.textoJovemAprendiz {
    max-width: 700px;
    background-color: #f4f8f7;
    padding: 20px;
    border-radius: 12px;
    color: #333;
    line-height: 1.6;
    /* animação */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

    /* quando ativo */
    .textoJovemAprendiz.ativo {
        max-height: 500px;
        opacity: 1;
    }

/* NOSSA PLATAFORMA TOUR GUIADO*/
.hero-Plataforma {
    width: 100%;
    min-height: 45vh;
    background-image: url('/Content/img/home/navioTec.jpg');
    background-size: cover;
    justify-content: center;
    align-items: center;
    display: flex;
    background-position: center;
}

    .hero-Plataforma h1 {
       font-size: 2rem;
       color: white;
       position: relative;
       left: 12.5rem;       
       margin-top: 20px;
    }

.titulo-blur {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

.NossaPlataforma {
    display: flex;
    justify-content: center;
    padding: 90px 40px;
    background: linear-gradient(135deg, #ECF4F2 0%, #F7FBFA 100%);
}



.conteudoPlataforma h2 {
    font-size: 2.4rem;
    font-family: 'Instrument Sans';
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #115849;
    margin-bottom: 30px;
}

.containerPlataforma {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px;
    border-radius: 26px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

.conteudoPlataforma p {
    font-size: 1rem;
    font-family: 'Montserrat';
    line-height: 1.7;
    margin-bottom: 20px;
    color: #222;
}


.imagemPlat{
    flex: 1;
    display: flex;
    justify-content: center;
}

    .imagemPlat img {
        width: 100%;
        max-width: 430px;
        border-radius: 20px;
        /*box-shadow: 0 20px 45px rgba(0,0,0,.18);*/
        transition: transform .45s ease;
    }

        .imagemPlat img:hover {
            transform: translateY(-12px) scale(1.04);
        }

.conteudoPlataforma {
    flex: 1;
}

/*SLIDES da PLATAFORMA*/

.sliderWrapper {
    overflow: hidden;
    width: 100%;
    max-width: 900px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: auto;
    max-height: 500px;
}

.slide {
    min-width: 100%;
    text-align: center;
    min-height: 350px;
}


.conteudoSlidesPlat {
    /*  background: linear-gradient(90deg, #4A8277 0%, #A9C2BD 100%);*/
    background: linear-gradient(135deg, #1F6F5B 0%, #5FA39A 100%);
    padding: 100px 40px;
    text-align: center;
    margin-bottom: 40px;
}

    .conteudoSlidesPlat h2 {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 40px;
        font-family: 'Instrument Sans';
    }


.contSlides{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 30px;
}


.slidesPlat img {
    width: 100%;
    height: auto;
    display: block;
}

.contSlides p {
    max-width: 750px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 30px;
}

/*BOLINHAS AVANÇAR*/
.paginacaoSlides {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

    .paginacaoSlides span {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background-color: rgba(255,255,255,0.5);
        cursor: pointer;
    }

        .paginacaoSlides span.ativo {
            background-color: #fff;
        }

/* FOOTER */
.menuFooter {
    display: flex;
    background: #f7f7f7;
    padding: 40px 0;
    border-top: 1px solid #e1e1e1;
}

.menuFooter .row {
   max-width: 1200px;
   margin: auto;
}

.row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.menuLink {
    list-style: none;
    min-width: 150px;
}

    .menuLink li {
        margin-bottom: 8px;
    }

        .menuLink li a {
            text-decoration: none;
            color: black;            
            display: inline-block;
            transition: color .2s ease, transform .2s ease;
        }

            .menuLink li a:hover {
                color: #1f8f6b; /* só muda a cor */
                transform: translateX(4px); /* anima sem afetar layout */
            }

.borderLeft {
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.contactNo address {
    margin-bottom: 8px;
}



.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 18px 0;
}

:root {
    --verde-escuro: #0f3d2e;
    --verde-petroleo: #145a46;
    --verde-principal: #1f7a63;
    --verde-destaque: #2fbf9b;
    --verde-claro: #7ae0c3;
    --cinza-texto: #d1fae5;
    --background-geral: linear-gradient(135deg, #145a46, #2fbf9b);
}


/*BLOG NOTICIAS*/
.hero-noticias {
    width: 100%;
    min-height: 55vh;
    background-image: url('/Content/img/home/navio-noticias.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;   
}

.hero-noticias h1{
    color: white;
}

.hidden-news {
    display: none;
}

.news-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    padding: 60px;
    background-color: white;
    min-height: 100vh;
    color: var(--cinza-texto);
    font-family: 'Inter', sans-serif;
}

/* GRID PRINCIPAL */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* CARD */
.news-card {
    background: rgba(47, 191, 155, 0.05);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 16px;
    cursor: pointer;
    transition: all .3s ease;
    border: 1px solid rgba(47, 191, 155, 0.15);
    backdrop-filter: blur(10px);
}

    .news-card:hover {
        transform: translateY(-6px);
        background: rgba(47, 191, 155, 0.15);
        box-shadow: 0 15px 40px rgba(0,0,0,.6);
    }

/* DATA */
.news-date {
    text-align: center;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-destaque));
    color: #fff;
    border-radius: 12px;
    padding: 8px 10px;
    min-width: 60px;
}

    .news-date .day {
        font-size: 22px;
        font-weight: 700;
    }

    .news-date .month {
        font-size: 11px;
        letter-spacing: 1px;
    }

/* TEXTO */
.news-content h3 {
    color: black;
    font-size: 16px;
    margin-bottom: 8px;
}

.news-content p {
    font-size: 13px;
    opacity: .85;
    line-height: 1.4;
    color: black;
}

.news-meta {
    margin-top: 10px;
    font-size: 12px;
    display: flex;
    gap: 14px;
    opacity: .7;
    color: black;
}

/* SIDEBAR */
.news-sidebar {
    background: rgba(47, 191, 155, 0.05);
    border: 1px solid rgba(47, 191, 155, 0.2);
    border-radius: 20px;
    padding: 25px;
    height: fit-content;
}

    .news-sidebar h2 {
        font-size: 20px;
        margin-bottom: 20px;
        color: black;
    }

.news-list {
    list-style: none;
    padding: 0;
    color: black;
}

    .news-list li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        cursor: pointer;
    }

      

    .news-list .title {
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: black;
    }

    .news-list .date {
        font-size: 11px;
        opacity: .6;
    }

/* BOTÃO */
.btn-load {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-destaque));
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

    .btn-load:hover {
        background: linear-gradient(135deg, var(--verde-destaque), var(--verde-principal));
    }


/*NOTICIA HOME*/
.news-page {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    padding: 90px;
    background-color: white;
    min-height: 100vh;
    color: #eafff6;
}

/* ARTIGO */
.news-artigo {
    background: rgba(47,191,155,0.05);
    border-radius: 22px;
    padding: 38px 42px;
    border: 1px solid rgba(47,191,155,.12);
    max-width: 900px;
    margin: 0 auto;
}

.news-titulo {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 28px;
    max-width: 85%;
    color: black;
}

.news-cover {
    max-height: 340px;
    max-height: 800px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 35px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

    .news-cover img {
        width: 100%;       
        object-fit: cover;
        transform: scale(1.03);
    }

.news-body {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.75;
    color: black;

}

/* SIDEBAR */
.news-aside {
    background-color: #64968C;
    border-radius: 22px;
    padding: 28px;
    border: 1px solid rgba(47,191,155,.2);
    height: fit-content;
}

    .news-aside h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

/* LISTA */
.aside-lista {
    list-style: none;
    padding: 0;
}

    .aside-lista li {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        cursor: pointer;
        transition: .25s;
    }

        .aside-lista li:hover .aside-title {
            color: #7ae0c3;
        }

.aside-title {
    display: block;
    font-size: 14px;
}

.aside-date {
    font-size: 11px;
    opacity: .6;
}

/* BOTÃO */
.btn-more {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background-color: var(--verde-principal);
    color: #fff;
    transition: .3s;
}

    .btn-more:hover {
        filter: brightness(1.15);
    }


@media (max-width: 900px) {
    header {
        width: 100%;
        height: auto;
        position: relative;
    }

    .menu {
        width: 100%;
        height: auto;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #e5f0e9;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        z-index: 999;
    }

        .nav-links.active {
            display: flex;
        }

    .nav-links li.active a {        
        padding: 10px 14px;       
    }

   .hero{
       padding-left: 80px;
       min-height: 75vh;
   }

    .hero-content {
        max-width: 520px;
        font-size: 38px;
        margin-left: 0;
        justify-content: center;
        align-items: center;
    }

    .sobrenos {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .item-noticias {
        flex-direction: column; 
        text-align: center;
        gap: 20px;
        justify-content: center;
    }

    .item-noticias > img {
        width: 100%;
        height: auto;
    }

    .menuFooter .row {
        display: flex;
        flex-direction: column;
        gap: 30px;
        justify-content: center;
    }

    .containerValores {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }


    .ValoresEmpresa{
        margin-bottom: 40px;
    }


    .item_valor img {        
        margin: 0 auto;
    }
    

    .item_valor:hover h3 {
        color: #0f4d3f;
        transition: color 0.3s ease;
    }

    .tourGuiado p {
        text-align: center;
        font-size: 1.5rem;
    }

    .containerMockup img {
        max-width: 250px;
        margin: 0 auto;
    }

    .contato {
        text-align: center;
        width: 100%
    }

        .contato-btns {
            width: 100%;
            margin: 10px 0;
        }

    .cardServico {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .SobreNosEmpresa {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 40px;
    }

    .sobrenos {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 30px;

    }    

    .containerMapa {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .informacoesMapa {
        width: 90%;
        margin-bottom: 20px;
        height: auto; 
    }

    iframe {
        width: 90%;
        height: 550px;
    }

    .formRow {
        flex-direction: column;
        gap: 15px;
    }

    .captchaBox {
        width: 100%;
        justify-content: center;
    }

    .btnEnviar {
        font-size: 1rem;
        padding: 14px;
    }

    

    .conteudoPlataforma {
        text-align: center;
    }

    .conteudoSlidesPlat {
        padding: 60px;
    }

    .slidesPlat img {
        max-width: 100%;
    }

    .hero-Plataforma {
        min-height: 40vh;
    }

        .hero-Plataforma h1 {
            font-size: 1.8rem;
            left: 6rem;
        }

    mapaEmpresa {
        flex-direction: column;
        padding: 20px;
    }

    .informacoesMapa {
        width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 30px;
    }

    iframe {
        width: 100%;
        height: 300px;
        border-radius: 0 0 20px 20px;
    }

    .itemMapa {
        margin: 15px 0;
    }

    .informacoesMapa h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .informacoesMapa p,
    .informacoesMapa address {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {

    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .hero {
        display: flex;
        padding: 0 20px;
        min-height: 70vh;
        justify-content: center;
        text-align: center;
    }

    .titulo-blur h1 {
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .hero-content p {
            font-size: 1.5rem;
            justify-content: center;
        }

        .hero-content h1 {
            font-size: 38px;
            margin-left: 0;
        }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
        justify-content: center;
    }

        .hero-buttons a {
            width: 100%;
            text-align: center;
        }

    .hero-servicos {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

        .hero-Plataforma {
            min-height: 35vh;
            padding: 0 20px;
            display: flex;
            flex-direction: row;
        }

        .hero-Plataforma h1 {
            font-size: 1.5rem;
            left: 0;
            margin-top: 0;
            text-align: center;
        }

    .container-sobrenos {
        width: 100%;
        padding: 20px;
        justify-content: center;
    }

        .container-sobrenos img {
            width: 100%;
            justify-content: center;
        }

    .txt-sobrenos p {
        text-align: start;
    }

    .container-noticias {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .container-noticias h2 {
            justify-content: center;
        }

    .item-noticias {
        display: flex;
        justify-content: center;
    }

        .item-noticias > a > img {
            width: 100%;
            justify-content: center;
            align-items: center;
        }


    .integracoes-bloco {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 8%;
    }

    .integracoes-texto h2,
    .integracoes-texto p {
        max-width: 100%;
    }

    .integracoes-lista {
        margin: 20px auto 30px;
    }

    .btn-integracoes {
        margin: 0 auto;
    }


    .formulario {
        display: flex;
        flex-direction: column;
        text-align: left;
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .formContainer {
        display: flex;
        flex-direction: column;
        text-align: left;
        width: 100%;
        height: auto;
        padding: 20px 40px;
    }

    .contato-btns {
        width: 100%;
        margin: 10px 0;
    }

    .txt-sobrenosEmpresa p {
        text-align: start;
    }


    .info {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .mapaEmpresa {
        display: flex;
        flex-direction: column;
        padding: 40px;
        margin: 0;
        gap: 0; 
    }

    .informacoesMapa {
        width: 100%;
        padding: 25px;
        border-radius: 20px 20px 0 0;
        margin: 0; 
    }

    .itemMapa {
        margin: 12px 0;
    }

    .mapaEmpresa iframe {
        width: 330px;
        height: 250px;
        border-radius: 0 0 20px 20px;
        border: none;
        margin: 0;
        display: block; 
    }

    header {
        position: relative;
        width: 100%;
        height: 100px;
    }

    .menu .logoSatelMenu {
        left: 5px;
    }

    .logoSatelMenu img {
        width: 50px;
        height: 25px;
    }

    .menu {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;       
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #e5f0e9;
        padding: 32px 0;
        gap: 22px;
        z-index: 999;
    }

    nav-links li a {
        font-size: 20px;
        font-weight: 500;
        color: #20735E;
        letter-spacing: 0.5px;
    }

        .nav-links.ativo {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: center;
            background-color: #20735E;
        }


    .btn-cliente a {
        background-color: #115849;
        color: white !important;
        padding: 14px 28px;
        border-radius: 30px;
        font-size: 18px;
        display: inline-block;
        margin-top: 10px;
    }

    .hero-Plataforma {
        min-height: 35vh;
        justify-content: right;
        display: flex;
        flex-wrap: wrap;
    }

    .hero-Plataforma img{
        width: 100%;
    }

        .hero-Plataforma h1 {
            font-size: 1.3rem;
            line-height: 1.3;
            text-align: right;          
        }

    .contSlides .slide p {
        justify-content: right;
        text-align: center;
    }

    .hero-Plataforma {
        width: 100%;        
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px 6%;
    }

        .hero-Plataforma h1 {
            font-size: 1.6rem;
            color: #fff;
            margin-top: 0;
            left: 0;
            text-align: center;
        }

    .containerPlataforma {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 32px 24px;
        border-radius: 20px;
        background: rgba(255,255,255,0.75);
        backdrop-filter: blur(14px);
        box-shadow: 0 20px 50px rgba(0,0,0,.1);
    }

    .containerJA {
        display: flex;
        width: 100%;
        height: 80px;
        position: relative;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 20px;
        border-radius: 12px;
    }

    .containerPlataforma {
        flex-direction: column;
        text-align: center;
    }

    .news-layout {
        display: flex;
        flex-wrap: wrap;
    }

    .news-page {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding: 48px 6%;
    }

    /* ARTIGO */
    .news-artigo {
        padding: 26px 22px;
        border-radius: 18px;
        max-width: 100%;
    }

    .news-titulo {
        font-size: 22px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .news-cover {
        max-height: 240px;
        margin-bottom: 24px;
    }

        .news-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

    .news-body {
        justify-content: center;
        font-size: 15px;
        line-height: 1.65;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* SIDEBAR */
    .news-aside {
        padding: 22px;
        border-radius: 18px;
    }

}
