:root{
    --azul-escuro:#004b85;
    --azul:#0072bc;
    --azul-claro:#00aeef;
    --verde:#00a651;
    --verde-claro:#8dc63f;
    --texto:#1f2937;
    --texto-suave:#6b7280;
    --cinza:#f4f8fb;
    --branco:#ffffff;
    --sombra:0 18px 45px rgba(0,75,133,.14);
}

*{margin:0;padding:0;box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    font-family:'Poppins',Arial,sans-serif;
    background:#fff;
    color:var(--texto);
}

a{text-decoration:none}
img{max-width:100%;display:block}

.container{
    width:1210px;
    max-width:calc(100% - 60px);
    margin:0 auto;
}

/* TOPO */
.top-info{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:80;
    color:#fff;
    padding:12px 0;
    font-size:14px;
    font-weight:500;
}

.top-info-flex{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.top-info i{
    color:var(--verde-claro);
    margin-right:6px;
}

/* MENU */
.site-header{
    position:absolute;
    top:48px;
    left:0;
    width:100%;
    z-index:90;
}

.menu-box{
    width:1210px;
    max-width:calc(100% - 60px);
    margin:0 auto;
    position:relative;
}

.main-menu{
    height:70px;
    background:rgba(255,255,255,.97);
    display:flex;
    align-items:center;
    padding:0 16px;
    border-radius:6px;
    box-shadow:0 15px 40px rgba(0,75,133,.20);
    backdrop-filter:blur(8px);
}

.main-menu a{
    height:70px;
    padding:0 15px;
    display:flex;
    align-items:center;
    color:#626b76;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
    transition:.25s;
}

.main-menu a:hover,
.main-menu a.active{
    color:var(--azul);
}

.menu-dropdown{
    position:relative;
    height:70px;
    display:flex;
    align-items:center;
}

.menu-dropdown > a i{
    font-size:12px;
    margin-left:5px;
}

.submenu{
    position:absolute;
    top:70px;
    left:0;
    min-width:260px;
    background:#fff;
    box-shadow:0 20px 45px rgba(0,75,133,.18);
    border-radius:0 0 8px 8px;
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s;
}

.menu-dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.submenu a{
    height:auto;
    padding:12px 18px;
    color:#52606d;
    display:block;
    font-size:14px;
}

.submenu a:hover{
    background:var(--cinza);
    color:var(--azul);
}

.client-btn{
    height:48px!important;
    margin-left:auto;
    padding:0 20px!important;
    background:linear-gradient(135deg,var(--azul-escuro),var(--azul));
    color:#fff!important;
    border-radius:5px;
    font-weight:800!important;
    box-shadow:0 10px 25px rgba(0,114,188,.25);
}

.client-btn:hover{
    background:linear-gradient(135deg,var(--verde),var(--verde-claro));
    color:#fff!important;
}

/* DATA */
.date-card{
    position:absolute;
    right:25px;
    top:-32px;
    width:104px;
    height:130px;
    background:#fff;
    border-radius:5px;
    color:var(--azul-escuro);
    box-shadow:0 12px 35px rgba(0,75,133,.18);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:95;
}

.date-card::after{
    content:"";
    position:absolute;
    right:-24px;
    top:39px;
    width:24px;
    height:67px;
    background:#fff;
    border-radius:0 5px 5px 0;
}

.date-card span{
    font-size:18px;
    margin-bottom:10px;
}

.date-card strong{
    color:var(--azul);
    font-size:22px;
    font-weight:900;
}

.date-card small{
    font-size:16px;
    font-weight:700;
}

/* HERO */
.hero-section{
    min-height:100vh;
    position:relative;
    background:url("../img/hero.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 82% 20%,rgba(0,174,239,.32),transparent 34%),
        linear-gradient(90deg,rgba(0,75,133,.92),rgba(0,114,188,.80),rgba(0,174,239,.48));
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    width:1210px;
    max-width:calc(100% - 60px);
    margin:0 auto;
    padding-top:170px;
}

/* LOGO HERO CORRIGIDA */
.hero-logo {
    width: 360px !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-bottom: 35px !important;
    position: relative;
    z-index: 10;
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text h1{
    color:#fff;
    font-size:46px;
    line-height:1.06;
    font-weight:900;
    letter-spacing:-1.4px;
    max-width:720px;
    margin-bottom:24px;
}

.hero-text p{
    color:rgba(255,255,255,.95);
    font-size:16px;
    line-height:1.65;
    font-weight:600;
    max-width:720px;
    margin-bottom:48px;
}

.hero-btn{
    width:350px;
    height:64px;
    background:linear-gradient(135deg,var(--verde),var(--verde-claro));
    color:#fff;
    border-radius:6px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:15.5px;
    font-weight:700;
    box-shadow:0 14px 35px rgba(0,166,81,.30);
    transition:.25s;
}

.hero-btn strong{
    margin:0 4px;
    font-weight:900;
}

.hero-btn:hover{
    background:linear-gradient(135deg,var(--azul-claro),var(--azul));
    transform:translateY(-3px);
    color:#fff;
}

/* SEÇÕES */
.empresa-section,
.servicos-section,
.fluxo-section,
.depoimentos-section{
    padding:90px 0;
}

.servicos-section,
.fluxo-section{
    background:var(--cinza);
}

.section-title{
    max-width:840px;
    margin:0 auto 50px;
    text-align:center;
}

.section-title span,
.mini-title{
    display:inline-block;
    color:var(--azul);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.14em;
    margin-bottom:13px;
}

.section-title h2,
.fluxo-grid h2{
    color:var(--azul-escuro);
    font-size:40px;
    line-height:1.15;
    font-weight:900;
    margin-bottom:15px;
}

.section-title p,
.fluxo-grid p{
    color:var(--texto-suave);
    font-size:16px;
    line-height:1.75;
}

.empresa-grid,
.servicos-grid,
.depoimentos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.empresa-card,
.servico-card,
.depoimento-card{
    background:#fff;
    padding:34px;
    border-radius:10px;
    box-shadow:var(--sombra);
    border:1px solid rgba(0,114,188,.08);
    position:relative;
    overflow:hidden;
    transition:.25s;
}

.empresa-card::before,
.servico-card::before,
.depoimento-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--azul),var(--azul-claro),var(--verde-claro));
}

.empresa-card:hover,
.servico-card:hover,
.depoimento-card:hover{
    transform:translateY(-7px);
}

.empresa-card i,
.servico-card i{
    font-size:42px;
    color:var(--azul);
    margin-bottom:18px;
    display:inline-block;
}

.empresa-card h3,
.servico-card h3{
    color:var(--azul-escuro);
    font-size:21px;
    font-weight:900;
    margin-bottom:12px;
}

.empresa-card p,
.servico-card p,
.depoimento-card p{
    color:var(--texto-suave);
    font-size:15px;
    line-height:1.75;
}

/* NÚMEROS */
.numeros-section{
    background:linear-gradient(120deg,var(--azul-escuro),var(--azul));
    padding:58px 0;
}

.numeros-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    gap:25px;
}

.numeros-grid strong{
    color:var(--verde-claro);
    font-size:44px;
    font-weight:900;
    display:block;
}

.numeros-grid span{
    color:#fff;
    font-size:15px;
    font-weight:700;
}

/* FLUXO */
.fluxo-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:50px;
    align-items:center;
}

.fluxo-lista{
    display:grid;
    gap:18px;
}

.fluxo-lista div{
    background:#fff;
    padding:22px;
    border-radius:8px;
    box-shadow:var(--sombra);
    color:var(--azul-escuro);
    font-size:17px;
    font-weight:800;
    display:flex;
    align-items:center;
    gap:18px;
    border-left:5px solid var(--azul-claro);
}

.fluxo-lista span{
    width:44px;
    height:44px;
    min-width:44px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--azul),var(--azul-claro));
    color:#fff;
    display:grid;
    place-items:center;
    font-weight:900;
}

.fluxo-btn{
    display:inline-flex;
    margin-top:25px;
    height:56px;
    padding:0 28px;
    background:linear-gradient(135deg,var(--verde),var(--verde-claro));
    color:#fff;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    font-weight:900;
    box-shadow:0 14px 30px rgba(0,166,81,.25);
}

/* PROJETOS */
.depoimento-card small{
    color:var(--azul-claro);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    display:inline-block;
    margin-bottom:10px;
}

.depoimento-card strong{
    display:block;
    color:var(--azul-escuro);
    font-size:19px;
    font-weight:900;
    margin-bottom:12px;
}

/* CTA */
.cta-section{
    background:
        radial-gradient(circle at 85% 20%,rgba(141,198,63,.28),transparent 30%),
        linear-gradient(120deg,var(--azul-escuro),var(--azul),var(--azul-claro));
    padding:70px 0;
    color:#fff;
}

.cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.cta-box h2{
    font-size:38px;
    font-weight:900;
    margin-bottom:8px;
}

.cta-box p{
    color:rgba(255,255,255,.92);
    font-size:17px;
    font-weight:600;
}

.cta-box a{
    height:60px;
    padding:0 30px;
    border-radius:6px;
    background:linear-gradient(135deg,var(--verde),var(--verde-claro));
    color:#fff;
    display:inline-flex;
    align-items:center;
    gap:9px;
    font-weight:900;
    white-space:nowrap;
}

/* FOOTER */
.footer{
    background:#062b46;
    color:#d9e8f3;
    padding-top:62px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1.2fr;
    gap:35px;
}

.footer h3,
.footer h4{
    color:#fff;
    font-weight:900;
    margin-bottom:16px;
}

.footer p{
    color:#b8cfdd;
    line-height:1.7;
    margin-bottom:7px;
    font-size:14px;
}

.social{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--azul),var(--azul-claro));
    color:#fff;
    display:grid;
    place-items:center;
    font-size:20px;
}

.copy{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.10);
    margin-top:45px;
    padding:20px;
    color:#a9c0cf;
    font-size:14px;
}

/* WHATSAPP */
.whats{
    position:fixed;
    right:22px;
    bottom:22px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:32px;
    box-shadow:0 14px 34px rgba(0,0,0,.25);
    z-index:99;
}

/* MOBILE */
@media(max-width:1200px){
    .main-menu a{
        padding:0 10px;
        font-size:13px;
    }
}

@media(max-width:991px){
    .top-info{display:none}

    .site-header{top:20px}

    .container,
    .menu-box,
    .hero-content{
        max-width:calc(100% - 30px);
    }

    .mobile-btn{
        width:58px;
        height:58px;
        border:0;
        background:#fff;
        color:var(--azul-escuro);
        border-radius:6px;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:32px;
        box-shadow:0 8px 28px rgba(0,75,133,.18);
    }

    .main-menu{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        height:auto;
        padding:12px;
        flex-direction:column;
        align-items:stretch;
    }

    .main-menu.active{
        display:flex;
    }

    .main-menu a{
        height:48px;
        justify-content:flex-start;
        padding:0 15px;
        font-size:14px;
    }

    .menu-dropdown{
        height:auto;
        display:block;
    }

    .submenu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        background:#f4f8fb;
        display:block;
    }

    .client-btn{
        margin-left:0;
        height:48px!important;
    }

    .date-card{
        right:0;
        top:0;
        width:86px;
        height:105px;
    }

    .date-card::after{display:none}

    .hero-content{
        padding-top:150px;
    }

    .hero-logo{
        margin-bottom:70px;
    }

    .hero-logo img{
        width:310px;
        padding:16px 22px;
    }

    .hero-text h1{
        font-size:34px;
    }

    .hero-text p{
        font-size:14px;
        margin-bottom:35px;
    }

    .hero-btn{
        width:100%;
        max-width:390px;
    }

    .empresa-grid,
    .servicos-grid,
    .depoimentos-grid,
    .numeros-grid,
    .fluxo-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .cta-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .cta-box a{
        width:100%;
        justify-content:center;
    }
}

@media(max-width:575px){
    .container,
    .menu-box,
    .hero-content{
        max-width:calc(100% - 24px);
    }

    .hero-section{
        min-height:780px;
    }

    .hero-text h1{
        font-size:30px;
    }

    .hero-logo img{
        width:260px;
    }

    .date-card{
        width:76px;
        height:94px;
    }

    .section-title h2,
    .fluxo-grid h2{
        font-size:29px;
    }

    .cta-box h2{
        font-size:29px;
    }

    .empresa-section,
    .servicos-section,
    .fluxo-section,
    .depoimentos-section{
        padding:70px 0;
    }
}

/* CORREÇÃO MENU DESKTOP */

.mobile-btn {
    display: none !important;
}

.main-menu {
    padding-right: 190px !important;
}

.client-btn {
    margin-left: 10px !important;
    min-width: 190px;
    justify-content: center;
}

.date-card {
    right: 0 !important;
    top: -38px !important;
}

.date-card::after {
    right: -24px;
}

/* DESKTOP MÉDIO */
@media (max-width: 1280px) {
    .main-menu {
        padding-right: 175px !important;
    }

    .main-menu a {
        padding: 0 11px;
        font-size: 13px;
    }

    .client-btn {
        min-width: 175px;
        font-size: 13px !important;
    }
}

/* MOBILE */
@media (max-width: 991px) {
    .mobile-btn {
        display: flex !important;
    }

    .main-menu {
        padding-right: 12px !important;
    }

    .client-btn {
        min-width: unset;
        width: 100%;
    }

    .date-card {
        right: 0 !important;
        top: 0 !important;
    }
}
.hero-section{

    min-height:100vh;

    background:

    url('../img/hero-industria.jpg')

    center center/cover;

    position:relative;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    90deg,

    rgba(0,75,133,.95),

    rgba(0,114,188,.82),

    rgba(0,174,239,.45)

    );

}

.hero-grid{

    min-height:100vh;

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:

    1.1fr .9fr;

    gap:50px;

    align-items:center;

}

.hero-logo{

    width:300px;

    margin-bottom:25px;

}

.hero-tag{

    display:inline-block;

    color:#8dc63f;

    font-weight:700;

    margin-bottom:25px;

    text-transform:uppercase;

    letter-spacing:.15em;

}

.hero-left h1{

    color:#fff;

    font-size:66px;

    line-height:1.03;

    font-weight:900;

    max-width:700px;

}

.hero-left p{

    color:#fff;

    opacity:.95;

    max-width:650px;

    margin-top:25px;

    font-size:18px;

    line-height:1.8;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    gap:20px;

}

.btn-primary{

    height:60px;

    padding:0 35px;

    background:

    linear-gradient(

    135deg,

    #00a651,

    #8dc63f

    );

    border-radius:6px;

    color:#fff;

    display:flex;

    align-items:center;

    font-weight:800;

}

.btn-secondary{

    height:60px;

    padding:0 35px;

    border:2px solid rgba(255,255,255,.3);

    border-radius:6px;

    color:#fff;

    display:flex;

    align-items:center;

    font-weight:700;

}

.hero-features{

    display:flex;

    gap:35px;

    margin-top:60px;

}

.hero-features div{

    color:#fff;

    font-weight:700;

}

.hero-features i{

    display:block;

    font-size:34px;

    color:#8dc63f;

    margin-bottom:10px;

}

.hero-right{

    position:relative;

}

.hero-machine{

    width:100%;

    animation:

    flutuar 4s ease-in-out infinite;

}

.hero-card{

    position:absolute;

    right:0;

    bottom:50px;

    width:250px;

    background:#fff;

    padding:35px;

    border-radius:12px;

    box-shadow:

    0 20px 50px

    rgba(0,0,0,.20);

}

.hero-card h3{

    color:#0072bc;

    font-size:52px;

    font-weight:900;

}

.hero-card span{

    color:#666;

}

.hero-card hr{

    margin:20px 0;

    border:none;

    border-top:1px solid #eee;

}

.hero-card strong{

    color:#004b85;

}

@keyframes flutuar{

    0%{

        transform:

        translateY(0);

    }

    50%{

        transform:

        translateY(-15px);

    }

    100%{

        transform:

        translateY(0);

    }

}
.clientes-section {
    background: #ffffff;
    padding: 70px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 114, 188, .08);
}

.clientes-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 45px;
}

.clientes-head span {
    display: inline-block;
    color: var(--azul);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 12px;
}

.clientes-head h2 {
    color: var(--azul-escuro);
    font-size: 36px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 14px;
}

.clientes-head p {
    color: var(--texto-suave);
    font-size: 16px;
    line-height: 1.7;
}

.clientes-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.clientes-slider::before,
.clientes-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clientes-slider::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent);
}

.clientes-slider::after {
    right: 0;
    background: linear-gradient(270deg, #fff, transparent);
}

.clientes-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: clientesSlide 32s linear infinite;
}

.clientes-slider:hover .clientes-track {
    animation-play-state: paused;
}

.cliente-logo {
    width: 210px;
    height: 92px;
    background: linear-gradient(180deg, #fff, #f4f8fb);
    border: 1px solid rgba(0, 114, 188, .12);
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(0, 75, 133, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a8794;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    filter: grayscale(1);
    opacity: .72;
    transition: .25s;
}

.cliente-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    color: var(--azul);
    transform: translateY(-4px);
    border-color: rgba(0, 174, 239, .35);
}

@keyframes clientesSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(max-width: 575px) {
    .clientes-section {
        padding: 55px 0;
    }

    .clientes-head h2 {
        font-size: 28px;
    }

    .cliente-logo {
        width: 165px;
        height: 78px;
        font-size: 14px;
    }
}

.servicos-premium{

    padding:100px 0;

    background:

    var(--cinza);

}

.servicos-premium-grid{

    display:grid;

    grid-template-columns:

    repeat(4,1fr);

    gap:30px;

}

.servico-premium-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:

    0 20px 50px

    rgba(0,75,133,.10);

    transition:.3s;

}

.servico-premium-card:hover{

    transform:

    translateY(-10px);

}

.servico-premium-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.servico-premium-content{

    padding:30px;

}

.servico-premium-content i{

    font-size:40px;

    color:

    var(--azul);

}

.servico-premium-content h3{

    margin-top:18px;

    margin-bottom:14px;

    color:

    var(--azul-escuro);

    font-size:24px;

    font-weight:900;

}

.servico-premium-content p{

    color:

    var(--texto-suave);

    line-height:1.8;

    min-height:90px;

}

.servico-premium-content a{

    color:

    var(--verde);

    font-weight:800;

    display:inline-block;

    margin-top:20px;

}

.servico-premium-content a:hover{

    color:

    var(--azul);

}

@media(max-width:1100px){

    .servicos-premium-grid{

        grid-template-columns:

        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .servicos-premium-grid{

        grid-template-columns:

        1fr;

    }

}
.equipamentos-section{

    padding:100px 0;

    background:#fff;

}

.equipamentos-grid{

    display:grid;

    grid-template-columns:

    repeat(4,1fr);

    gap:30px;

}

.equipamento-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:

    0 20px 50px

    rgba(0,75,133,.10);

    transition:.3s;

    border:1px solid

    rgba(0,114,188,.08);

}

.equipamento-card:hover{

    transform:

    translateY(-10px);

    box-shadow:

    0 30px 70px

    rgba(0,75,133,.16);

}

.equipamento-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.equipamento-content{

    padding:30px;

}

.equipamento-content i{

    font-size:42px;

    color:

    var(--azul);

}

.equipamento-content h3{

    margin-top:18px;

    margin-bottom:15px;

    color:

    var(--azul-escuro);

    font-size:24px;

    font-weight:900;

}

.equipamento-content p{

    color:

    var(--texto-suave);

    line-height:1.8;

}

@media(max-width:1100px){

    .equipamentos-grid{

        grid-template-columns:

        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .equipamentos-grid{

        grid-template-columns:

        1fr;

    }

}
.portfolio-section{

    padding:110px 0;

    background:

    linear-gradient(

    180deg,

    #ffffff,

    #f4f8fb

    );

}

.portfolio-grid{

    display:grid;

    grid-template-columns:

    repeat(3,1fr);

    gap:30px;

}

.portfolio-card{

    position:relative;

    height:420px;

    overflow:hidden;

    border-radius:18px;

    box-shadow:

    0 25px 60px

    rgba(0,75,133,.14);

}

.portfolio-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:1s;

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    padding:35px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    background:

    linear-gradient(

    180deg,

    transparent,

    rgba(0,0,0,.82)

    );

}

.portfolio-card:hover img{

    transform:

    scale(1.08);

}

.portfolio-overlay small{

    color:

    var(--verde-claro);

    font-size:13px;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.15em;

    margin-bottom:12px;

}

.portfolio-overlay h3{

    color:#fff;

    font-size:28px;

    line-height:1.15;

    font-weight:900;

    margin-bottom:18px;

}

.portfolio-overlay p{

    color:

    rgba(255,255,255,.85);

    line-height:1.8;

    margin-bottom:25px;

}

.portfolio-overlay a{

    width:160px;

    height:50px;

    border-radius:50px;

    background:

    linear-gradient(

    135deg,

    var(--verde),

    var(--verde-claro)

    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:800;

    transition:.3s;

}

.portfolio-overlay a:hover{

    background:#fff;

    color:

    var(--azul);

}

@media(max-width:1100px){

    .portfolio-grid{

        grid-template-columns:

        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .portfolio-grid{

        grid-template-columns:

        1fr;

    }

}

.processo-section {
    padding: 110px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.processo-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -160px;
    background: rgba(0, 174, 239, .10);
    border-radius: 50%;
}

.processo-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.processo-timeline::before {
    content: "";
    position: absolute;
    top: 58px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--azul), var(--azul-claro), var(--verde-claro));
    z-index: 1;
}

.processo-item {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 75, 133, .10);
    border: 1px solid rgba(0, 114, 188, .10);
    transition: .3s;
}

.processo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 75, 133, .16);
}

.processo-icon {
    width: 76px;
    height: 76px;
    margin: -68px auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--azul), var(--azul-claro));
    display: grid;
    place-items: center;
    box-shadow: 0 16px 35px rgba(0, 114, 188, .30);
}

.processo-icon i {
    color: #ffffff;
    font-size: 34px;
}

.processo-item span {
    display: inline-block;
    color: var(--verde);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .14em;
    margin-bottom: 12px;
}

.processo-item h3 {
    color: var(--azul-escuro);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 14px;
}

.processo-item p {
    color: var(--texto-suave);
    font-size: 14px;
    line-height: 1.7;
}

@media(max-width: 1200px) {
    .processo-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 55px 24px;
    }

    .processo-timeline::before {
        display: none;
    }
}

@media(max-width: 768px) {
    .processo-timeline {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .processo-section {
        padding: 85px 0;
    }
}

.footer{

    background:

    linear-gradient(

    135deg,

    #03233f,

    #004b85

    );

    color:#fff;

    padding-top:90px;

}

.footer-grid{

    display:grid;

    grid-template-columns:

    1.5fr 1fr 1fr 1.2fr;

    gap:50px;

}

.footer-logo{

    width:230px;

    margin-bottom:25px;

}

.footer-col p{

    color:

    rgba(255,255,255,.80);

    line-height:1.8;

}

.footer-col h4{

    font-size:24px;

    font-weight:900;

    margin-bottom:25px;

}

.footer-col ul{

    list-style:none;

}

.footer-col li{

    margin-bottom:14px;

    color:

    rgba(255,255,255,.78);

}

.footer-col a{

    color:

    rgba(255,255,255,.78);

    transition:.3s;

}

.footer-col a:hover{

    color:

    var(--verde-claro);

}

.footer-contact i{

    color:

    var(--verde-claro);

    margin-right:10px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:

    rgba(255,255,255,.10);

    display:grid;

    place-items:center;

    color:#fff;

    font-size:22px;

}

.footer-social a:hover{

    background:

    linear-gradient(

    135deg,

    var(--verde),

    var(--verde-claro)

    );

}

.footer-map{

    margin-top:70px;

    border-radius:18px;

    overflow:hidden;

}

.footer-map iframe{

    width:100%;

    height:320px;

    border:0;

}

.footer-copy{

    padding:30px 0;

    margin-top:50px;

    border-top:

    1px solid

    rgba(255,255,255,.12);

    display:flex;

    justify-content:space-between;

    color:

    rgba(255,255,255,.65);

}

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:

    #25d366;

    color:#fff;

    display:grid;

    place-items:center;

    font-size:36px;

    box-shadow:

    0 15px 40px

    rgba(0,0,0,.25);

    z-index:999;

}

@media(max-width:991px){

    .footer-grid{

        grid-template-columns:

        1fr;

    }

    .footer-copy{

        flex-direction:column;

        gap:15px;

        text-align:center;

    }

}

.cotacao-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0,174,239,.14), transparent 30%),
        linear-gradient(135deg, #f4f8fb, #ffffff);
}

.cotacao-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 55px;
    align-items: center;
}

.cotacao-info span {
    display: inline-block;
    color: var(--azul);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 14px;
}

.cotacao-info h2 {
    color: var(--azul-escuro);
    font-size: 44px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

.cotacao-info p {
    color: var(--texto-suave);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cotacao-info ul {
    list-style: none;
}

.cotacao-info li {
    color: var(--azul-escuro);
    font-weight: 800;
    margin-bottom: 14px;
}

.cotacao-info li i {
    color: var(--verde);
    margin-right: 8px;
}

.cotacao-form {
    background: #ffffff;
    padding: 38px;
    border-radius: 20px;
    box-shadow: 0 25px 65px rgba(0,75,133,.14);
    border: 1px solid rgba(0,114,188,.10);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cotacao-form label {
    display: block;
    color: var(--azul-escuro);
    font-weight: 800;
    margin-bottom: 8px;
    margin-top: 16px;
}

.cotacao-form input,
.cotacao-form select,
.cotacao-form textarea {
    width: 100%;
    border: 1px solid rgba(0,114,188,.18);
    background: #f8fbfd;
    border-radius: 10px;
    padding: 15px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--texto);
    outline: none;
    transition: .25s;
}

.cotacao-form input:focus,
.cotacao-form select:focus,
.cotacao-form textarea:focus {
    border-color: var(--azul-claro);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0,174,239,.12);
}

.upload-box {
    margin-top: 20px !important;
    border: 2px dashed rgba(0,114,188,.28);
    background: #f4f8fb;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: .25s;
}

.upload-box:hover {
    border-color: var(--verde);
    background: #f7fff8;
}

.upload-box input {
    display: none;
}

.upload-box i {
    display: block;
    color: var(--azul);
    font-size: 42px;
    margin-bottom: 12px;
}

.upload-box strong {
    display: block;
    color: var(--azul-escuro);
    font-size: 17px;
}

.upload-box small {
    color: var(--texto-suave);
}

.cotacao-form button {
    width: 100%;
    height: 60px;
    border: 0;
    margin-top: 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--verde), var(--verde-claro));
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .25s;
}

.cotacao-form button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--azul-claro), var(--azul));
}

@media(max-width: 991px) {
    .cotacao-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cotacao-info h2 {
        font-size: 34px;
    }
}


/* HERO MOBILE PREMIUM */
@media (max-width: 991px) {

    .hero-section {
        min-height: auto;
        padding: 130px 0 70px;
        background-position: center top;
    }

    .hero-grid {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-logo {
        width: 230px;
        margin: 0 auto 25px;
    }

    .hero-tag {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .hero-left h1 {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .hero-left p {
        font-size: 15px;
        line-height: 1.7;
        margin: 20px auto 30px;
        max-width: 520px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }

    .hero-buttons a,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        height: 56px;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 22px;
        margin-top: 35px;
    }

    .hero-features div {
        width: 30%;
        min-width: 95px;
        font-size: 13px;
    }

    .hero-features i {
        font-size: 28px;
    }

    .hero-right {
        display: none;
    }
}

@media (max-width: 575px) {

    .hero-section {
        padding: 115px 0 55px;
    }

    .hero-logo {
        width: 200px;
    }

    .hero-left h1 {
        font-size: 30px;
    }

    .hero-left p {
        font-size: 14px;
    }

    .hero-tag {
        font-size: 10px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hero-features div {
        width: auto;
        min-width: unset;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 12px;
        padding: 14px 8px;
        backdrop-filter: blur(6px);
    }

    .hero-features i {
        font-size: 24px;
        margin-bottom: 6px;
    }
}

@media (max-width: 380px) {

    .hero-left h1 {
        font-size: 27px;
    }

    .hero-buttons a,
    .btn-primary,
    .btn-secondary {
        font-size: 13px;
        padding: 0 12px;
    }
}

/* LOGO MENU */

.menu-logo{

    position:absolute;

    left:0;

    top:-32px;

    z-index:100;

}

.menu-logo img{

    width:210px;

    height:auto;

    display:block;

}


/* MENU */

.main-menu{

    padding-left:290px !important;

}


@media(max-width:1280px){

    .menu-logo img{

        width:220px;

    }

    .main-menu{

        padding-left:240px !important;

    }

}


@media(max-width:991px){

    .menu-logo{

        position:relative;

        top:auto;

        left:auto;

        display:flex;

        justify-content:center;

        margin-bottom:15px;

    }

    .menu-logo img{

        width:180px;

    }

    .main-menu{

        padding-left:15px !important;

    }

}

.top-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    z-index: 80;
    padding: 13px 0;
    font-size: 14px;
    font-weight: 700;
}

.top-info-flex {
    display: flex;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
}

.top-info i {
    color: var(--verde-claro);
    margin-right: 8px;
}

.site-header {
    position: absolute;
    top: 54px;
    left: 0;
    width: 100%;
    z-index: 90;
}

.menu-box {
    width: 1210px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
    position: relative;
}

.main-menu {
    height: 90px;
    background: rgba(255,255,255,.96);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0,75,133,.18);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 150px 0 28px !important;
    backdrop-filter: blur(10px);
}

.menu-logo {
    height: 90px !important;
    padding: 0 !important;
    margin-right: 40px;
    display: flex !important;
    align-items: center !important;
}

.menu-logo img {
    width: 210px;
    height: auto;
    display: block;
}

.main-menu a {
    height: 90px;
    display: flex;
    align-items: center;
    color: #5f6873;
    font-size: 15px;
    font-weight: 800;
    padding: 0 13px;
    transition: .25s;
    white-space: nowrap;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--azul);
}

.menu-dropdown {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
}

.menu-dropdown > a i {
    font-size: 12px;
    margin-left: 5px;
}

.submenu {
    position: absolute;
    top: 90px;
    left: 0;
    min-width: 270px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 20px 45px rgba(0,75,133,.18);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s;
}

.menu-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu a {
    height: auto;
    display: block;
    padding: 13px 18px;
    font-size: 14px;
}

.client-btn {
    margin-left: auto;
    height: 54px !important;
    padding: 0 22px !important;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--verde), var(--verde-claro));
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(0,166,81,.28);
}

.client-btn i {
    margin-right: 7px;
}

.date-card {
    position: absolute;
    right: 0;
    top: -38px;
    width: 104px;
    height: 134px;
    background: #fff;
    border-radius: 6px;
    color: var(--azul-escuro);
    box-shadow: 0 15px 38px rgba(0,75,133,.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.date-card::after {
    content: "";
    position: absolute;
    right: -24px;
    top: 41px;
    width: 24px;
    height: 70px;
    background: #fff;
    border-radius: 0 6px 6px 0;
}

.date-card span {
    font-size: 18px;
    margin-bottom: 10px;
}

.date-card strong {
    color: var(--azul);
    font-size: 26px;
    font-weight: 900;
}

.date-card small {
    font-size: 16px;
    font-weight: 800;
}

.mobile-btn {
    display: none !important;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    background: url("../img/hero-industria.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(0,174,239,.28), transparent 35%),
        linear-gradient(90deg, rgba(0,55,104,.95), rgba(0,114,188,.82), rgba(0,174,239,.52));
    z-index: 1;
}

.hero-grid {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
    padding-top: 90px;
}

.hero-left {
    max-width: 760px;
}

.hero-tag {
    display: inline-block;
    color: var(--verde-claro);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .25em;
    margin-bottom: 24px;
}

.hero-left h1 {
    color: #fff;
    font-size: 67px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.hero-left p {
    color: rgba(255,255,255,.96);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 600;
    max-width: 720px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 55px;
}

.btn-primary,
.btn-secondary {
    height: 60px;
    padding: 0 34px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: .25s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--verde), var(--verde-claro));
    color: #fff;
}

.btn-secondary {
    border: 2px solid rgba(255,255,255,.30);
    color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 42px;
    flex-wrap: wrap;
}

.hero-features div {
    color: #fff;
    font-weight: 900;
}

.hero-features i {
    display: block;
    color: var(--verde-claro);
    font-size: 34px;
    margin-bottom: 10px;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    width: 285px;
    background: #fff;
    padding: 38px;
    border-radius: 14px;
    box-shadow: 0 25px 65px rgba(0,0,0,.18);
}

.hero-card-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 1px solid #e7edf3;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
}

.hero-card-icon i {
    color: var(--azul);
    font-size: 34px;
}

.hero-card h3 {
    color: var(--azul);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
}

.hero-card p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.hero-card hr {
    border: 0;
    border-top: 1px solid #e8edf2;
    margin: 18px 0;
}

.hero-card strong {
    color: var(--azul-escuro);
    font-size: 17px;
    line-height: 1.4;
    display: block;
}

/* MOBILE */
@media (max-width: 991px) {
    .top-info {
        display: none;
    }

    .site-header {
        top: 18px;
    }

    .menu-box {
        max-width: calc(100% - 28px);
    }

    .mobile-btn {
        display: flex !important;
        position: absolute;
        right: 0;
        top: 0;
        width: 58px;
        height: 58px;
        border: 0;
        border-radius: 8px;
        background: #fff;
        color: var(--azul);
        align-items: center;
        justify-content: center;
        font-size: 30px;
        z-index: 120;
    }

    .main-menu {
        height: auto;
        min-height: 72px;
        padding: 12px 75px 12px 16px !important;
        flex-wrap: wrap;
        align-items: center;
    }

    .menu-logo {
        height: 48px !important;
        margin-right: 0;
        width: 100%;
    }

    .menu-logo img {
        width: 170px;
    }

    .main-menu > a:not(.menu-logo),
    .menu-dropdown,
    .client-btn {
        display: none;
    }

    .main-menu.active > a,
    .main-menu.active .menu-dropdown,
    .main-menu.active .client-btn {
        display: flex;
        width: 100%;
        height: auto !important;
        padding: 13px 0 !important;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        background: #f4f8fb;
        margin-top: 8px;
    }

    .date-card {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 150px 0 70px;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 0;
        gap: 30px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 35px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-features {
        justify-content: center;
        gap: 18px;
    }

    .hero-features div {
        width: 45%;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 12px;
        padding: 14px 8px;
    }

    .hero-right {
        display: none;
    }
}
/* =========================
   MENU + HERO MSG 3D
========================= */

.top-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 58px;
    z-index: 100;
    background: #012d55;
    color: #fff;
    display: flex;
    align-items: center;
}

.top-info-inner {
    width: 1210px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 55px;
    font-size: 15px;
    font-weight: 800;
}

.top-info i {
    color: var(--verde-claro);
    margin-right: 8px;
}

.site-header {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    z-index: 110;
}

.nav-wrapper {
    width: 100%;
    position: relative;
}

.main-menu {
    height: 124px;
    width: 100%;
    background: rgba(255,255,255,.97);
    display: flex;
    align-items: center;
    padding: 0 150px 0 95px !important;
    box-shadow: 0 14px 38px rgba(0,0,0,.13);
}

.menu-logo {
    height: 124px !important;
    padding: 0 !important;
    margin-right: 88px;
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0;
}

.menu-logo img {
    width: 190px;
    height: auto;
    display: block;
}

.main-menu > a:not(.menu-logo),
.menu-dropdown > a {
    height: 124px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    color: #3f4650;
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
    transition: .25s;
    position: relative;
}

.main-menu > a:hover,
.main-menu > a.active,
.menu-dropdown > a:hover {
    color: var(--azul);
}

.main-menu > a.active::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 4px;
    background: var(--azul);
}

.menu-dropdown {
    position: relative;
    height: 124px;
    display: flex;
    align-items: center;
}

.menu-dropdown i {
    font-size: 12px;
    margin-left: 7px;
}

.submenu {
    position: absolute;
    top: 124px;
    left: 0;
    min-width: 285px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    box-shadow: 0 22px 50px rgba(0,75,133,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s;
}

.menu-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu a {
    display: block;
    padding: 14px 20px;
    color: #4d5763;
    font-size: 14px;
    font-weight: 800;
}

.submenu a:hover {
    color: var(--azul);
    background: #f4f8fb;
}

.quote-btn {
    margin-left: auto;
    height: 62px !important;
    padding: 0 30px !important;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--verde), var(--verde-claro));
    color: #fff !important;
    display: flex !important;
    align-items: center;
    gap: 9px;
    box-shadow: 0 12px 28px rgba(0,166,81,.28);
}

.quote-btn::after {
    display: none !important;
}

.date-card {
    position: absolute;
    right: 82px;
    top: -38px;
    width: 104px;
    height: 168px;
    background: #fff;
    border-radius: 8px;
    color: var(--azul-escuro);
    box-shadow: 0 16px 40px rgba(0,0,0,.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 130;
}

.date-card span {
    font-size: 20px;
    margin-bottom: 8px;
}

.date-card strong {
    color: var(--azul);
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
}

.date-card small {
    font-size: 22px;
    font-weight: 800;
}

.mobile-btn {
    display: none !important;
}

/* HERO */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: url("../img/hero-industria.jpg") center center / cover no-repeat;
    overflow: hidden;
    padding-top: 182px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 33, 72, .96) 0%,
            rgba(0, 75, 133, .84) 43%,
            rgba(0, 174, 239, .38) 100%
        );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 182px);
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 70px;
    align-items: center;
}

.hero-left {
    max-width: 730px;
}

.hero-tag {
    display: inline-block;
    color: var(--verde-claro);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .26em;
    margin-bottom: 24px;
}

.hero-left h1 {
    color: #fff;
    font-size: 70px;
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -2.5px;
    margin-bottom: 26px;
}

.hero-left p {
    color: rgba(255,255,255,.94);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600;
    max-width: 700px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 22px;
    margin-bottom: 58px;
}

.hero-btn-primary,
.hero-btn-secondary {
    height: 64px;
    padding: 0 42px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    transition: .25s;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--verde), var(--verde-claro));
    color: #fff;
}

.hero-btn-secondary {
    color: #fff;
    border: 2px solid rgba(255,255,255,.35);
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.hero-features {
    display: flex;
    gap: 0;
}

.hero-feature {
    min-width: 150px;
    padding-right: 38px;
    margin-right: 38px;
    border-right: 1px solid rgba(255,255,255,.22);
    color: #fff;
}

.hero-feature:last-child {
    border-right: 0;
    margin-right: 0;
}

.hero-feature i {
    display: block;
    color: var(--verde-claro);
    font-size: 38px;
    margin-bottom: 13px;
}

.hero-feature span {
    font-size: 16px;
    font-weight: 900;
}

.hero-right {
    display: flex;
    justify-content: center;
}

.hero-card {
    width: 300px;
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 25px 70px rgba(0,0,0,.24);
}

.hero-card-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 1px solid #dce7f0;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
}

.hero-card-icon i {
    color: var(--azul);
    font-size: 36px;
}

.hero-card h3 {
    color: var(--azul);
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 18px;
}

.hero-card p {
    color: #555;
    font-size: 17px;
    margin-bottom: 20px;
}

.hero-card hr {
    border: 0;
    border-top: 1px solid #e6edf3;
    margin: 20px 0;
}

.hero-card strong {
    color: var(--azul-escuro);
    font-size: 18px;
    line-height: 1.4;
    display: block;
}

/* RESPONSIVO */

@media (max-width: 1280px) {
    .main-menu {
        padding-left: 60px !important;
        padding-right: 130px !important;
    }

    .menu-logo {
        margin-right: 45px;
    }

    .menu-logo img {
        width: 165px;
    }

    .main-menu > a:not(.menu-logo),
    .menu-dropdown > a {
        padding: 0 13px;
        font-size: 14px;
    }

    .hero-left h1 {
        font-size: 58px;
    }
}

@media (max-width: 991px) {
    .top-info {
        display: none;
    }

    .site-header {
        top: 15px;
    }

    .main-menu {
        width: calc(100% - 28px);
        height: auto;
        min-height: 78px;
        margin: 0 auto;
        border-radius: 10px;
        padding: 12px 78px 12px 18px !important;
        flex-wrap: wrap;
    }

    .menu-logo {
        height: 54px !important;
        margin-right: 0;
        width: 100%;
    }

    .menu-logo img {
        width: 150px;
    }

    .mobile-btn {
        display: flex !important;
        position: absolute;
        right: 26px;
        top: 12px;
        width: 54px;
        height: 54px;
        border: 0;
        border-radius: 8px;
        background: var(--azul);
        color: #fff;
        font-size: 28px;
        align-items: center;
        justify-content: center;
        z-index: 160;
    }

    .main-menu > a:not(.menu-logo),
    .menu-dropdown,
    .quote-btn {
        display: none;
    }

    .main-menu.active > a,
    .main-menu.active .menu-dropdown,
    .main-menu.active .quote-btn {
        display: flex;
        width: 100%;
        height: auto !important;
        padding: 13px 0 !important;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f4f8fb;
        width: 100%;
        margin-top: 8px;
    }

    .date-card {
        display: none;
    }

    .hero-section {
        padding-top: 115px;
    }

    .hero-content {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 70px 0;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-left p {
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 35px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 14px;
    }

    .hero-feature {
        border: 1px solid rgba(255,255,255,.16);
        margin: 0;
        padding: 18px 10px;
        border-radius: 12px;
        background: rgba(255,255,255,.08);
    }

    .hero-right {
        display: none;
    }
}


.hero-header{

    position:absolute;

    width:100%;

    top:48px;

    left:0;

    z-index:100;

}

.menu-container{

    width:1100px;

    max-width:calc(100% - 40px);

    margin:auto;

    position:relative;

}

.menu-principal{

    height:78px;

    background:#fff;

    border-radius:4px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:38px;

    box-shadow:

    0 10px 35px

    rgba(0,0,0,.10);

}

.menu-principal>a,

.dropdown>a{

    color:#666;

    font-size:16px;

    font-weight:500;

    display:flex;

    align-items:center;

    gap:6px;

    transition:.3s;

}

.menu-principal>a:hover,

.dropdown>a:hover{

    color:#16a3a3;

}

.portal-btn{

    height:48px;

    padding:0 28px;

    background:#2b2b3a;

    color:#fff !important;

    border-radius:4px;

    font-weight:700;

}

.portal-btn:hover{

    background:#16a3a3;

}

.dropdown{

    position:relative;

}

.submenu{

    position:absolute;

    top:78px;

    left:0;

    width:260px;

    background:#fff;

    box-shadow:

    0 15px 40px

    rgba(0,0,0,.12);

    border-radius:0 0 8px 8px;

    opacity:0;

    visibility:hidden;

    transition:.3s;

}

.dropdown:hover .submenu{

    opacity:1;

    visibility:visible;

}

.submenu a{

    display:block;

    padding:15px 20px;

    color:#666;

}

.submenu a:hover{

    background:#f5f5f5;

    color:#16a3a3;

}

.date-box{

    position:absolute;

    right:-70px;

    top:-28px;

    width:150px;

    height:155px;

    background:#fff;

    border-radius:4px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:

    0 12px 35px

    rgba(0,0,0,.10);

}

.date-box::after{

    content:"";

    position:absolute;

    right:-24px;

    top:28px;

    width:24px;

    height:78px;

    background:#fff;

    border-radius:0 4px 4px 0;

}

.date-box span{

    font-size:18px;

    color:#666;

}

.date-box strong{

    font-size:42px;

    color:#222;

    line-height:1;

    margin:8px 0;

}

.date-box small{

    font-size:28px;

    color:#333;

    font-weight:700;

}


.hero-section{

    min-height:100vh;

    position:relative;

    background:

    linear-gradient(

    rgba(0,60,110,.78),

    rgba(0,160,220,.55)

    ),

    url("../img/hero-msg.jpg");

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(

    circle at center,

    rgba(0,174,239,.15),

    rgba(0,0,0,.35)

    );

}

.hero-content{

    position:relative;

    z-index:2;

    min-height:100vh;

    display:flex;

    align-items:center;

}

.hero-left{

    max-width:700px;

    color:#fff;

}

.hero-logo{

    margin-bottom:45px;

}

.hero-logo img{

    width:430px;

    max-width:100%;

}

.hero-left h1{

    font-size:72px;

    font-weight:900;

    line-height:1.02;

    margin-bottom:30px;

}

.hero-left p{

    font-size:28px;

    line-height:1.7;

    max-width:700px;

    margin-bottom:40px;

    color:

    rgba(255,255,255,.92);

}

.hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:380px;

    height:70px;

    background:

    linear-gradient(

    135deg,

    #00aeea,

    #0095d8

    );

    color:#fff;

    font-size:22px;

    font-weight:800;

    border-radius:4px;

    transition:.3s;

}

.hero-btn:hover{

    transform:

    translateY(-3px);

    box-shadow:

    0 20px 40px

    rgba(0,174,239,.35);

}
/* HERO AJUSTADA */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: url("../img/hero-msg.jpg") center center / cover no-repeat;
    padding-top: 155px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 33, 72, .94) 0%,
            rgba(0, 75, 133, .82) 48%,
            rgba(0, 174, 239, .38) 100%
        );
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 155px);
    display: grid;
    grid-template-columns: minmax(0, 720px) 360px;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    padding: 45px 0 70px;
}

.hero-left {
    max-width: 720px;
}

.hero-logo {
    width: 330px;
    max-width: 100%;
    margin-bottom: 42px;
}

.hero-tag {
    display: inline-block;
    color: var(--verde-claro);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .24em;
    margin-bottom: 22px;
}

.hero-left h1 {
    color: #fff;
    font-size: clamp(46px, 4.6vw, 74px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
    max-width: 700px;
    margin-bottom: 26px;
}

.hero-left p {
    color: rgba(255,255,255,.94);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 600;
    max-width: 780px;
    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 52px;
}

.btn-primary,
.btn-secondary {
    height: 62px;
    min-width: 230px;
    padding: 0 30px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: .25s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--verde), var(--verde-claro));
    color: #fff;
}

.btn-secondary {
    border: 2px solid rgba(255,255,255,.32);
    color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 145px);
    gap: 18px;
}

.hero-features div {
    padding: 18px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(12px);
    color: #fff;
    font-weight: 900;
    text-align: center;
}

.hero-features i {
    display: block;
    color: var(--verde-claro);
    font-size: 30px;
    margin-bottom: 10px;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-card {
    width: 330px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    padding: 40px 36px;
    border-radius: 20px;
    box-shadow: 0 28px 75px rgba(0,0,0,.24);
    transform: translateY(20px);
}

.hero-card .hero-number,
.hero-number {
    color: var(--azul);
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero-card span {
    display: block;
    color: #555;
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-card hr {
    border: 0;
    border-top: 1px solid #e3ebf2;
    margin: 22px 0;
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-card li {
    color: var(--azul-escuro);
    font-weight: 900;
    padding: 8px 0;
}

/* TABLET */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 45px;
    }

    .hero-logo {
        width: 280px;
    }

    .hero-card {
        width: 300px;
    }

    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: 115px;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 70px 0 60px;
        gap: 35px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-logo {
        width: 230px;
        margin: 0 auto 28px;
    }

    .hero-tag {
        font-size: 11px;
        line-height: 1.6;
        letter-spacing: .18em;
        margin-bottom: 18px;
    }

    .hero-left h1 {
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero-left p {
        font-size: 15px;
        line-height: 1.7;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-width: unset;
    }

    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .hero-features div {
        padding: 14px 8px;
        font-size: 13px;
    }

    .hero-features i {
        font-size: 24px;
    }

    .hero-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 31px;
    }

    .hero-logo {
        width: 200px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }
}
