:root{
    --primary:#12486d;
    --primary-dark:#073253;
    --primary-soft:#1b668e;
    --accent:#2e8de0;
    --text:#24364a;
    --muted:#657589;
    --soft:#f4f8fb;
    --white:#ffffff;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
    font-size:16px;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.site-container,
.sg-container{
    width:min(1180px, calc(100% - 32px));
    margin-left:auto;
    margin-right:auto;
}

/* HEADER - funciona com classes novas e antigas */
.site-header,
.sg-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:75px;
    background:var(--primary);
    color:#fff;
    z-index:9999;
}

.header-inner,
.sg-header-inner{
    height:75px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:flex-end;
}

.brand-card,
.sg-logo,
.sg-logo-card{
    position:absolute;
    left:0;
    top:0;
    width:184px;
    height:205px;
    border-radius:0 0 28px 28px;
    background:linear-gradient(180deg,#134f78,#0f4165);
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding-top:15px;
    box-shadow:0 18px 35px rgba(0,0,0,.14);
    z-index:2;
}

.brand-card img,
.sg-logo img,
.sg-logo-card img{
    width:150px;
    height:auto;
}

.main-menu,
.sg-nav{
    height:75px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
    margin-left:auto;
}

.main-menu a,
.sg-nav a{
    color:#fff;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    padding:8px 10px;
    border-radius:999px;
    white-space:nowrap;
    transition:.2s;
}

.main-menu a:hover,
.sg-nav a:hover{
    background:var(--primary-soft);
}

.menu-toggle,
.sg-menu-button,
.sg-menu-btn{
    display:none;
    width:42px;
    height:38px;
    border:0;
    border-radius:10px;
    background:var(--primary-soft);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    padding:0;
    cursor:pointer;
    color:#fff;
}

.menu-toggle span,
.sg-menu-button span{
    width:22px;
    height:2px;
    background:#fff;
    display:block;
    border-radius:2px;
}

.header-space,
.sg-header-space{
    height:75px;
}

/* HERO - funciona com classes novas e antigas */
.hero,
.sg-hero{
    position:relative;
    min-height:580px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:var(--primary-dark);
    color:#fff;
}

.hero-bg,
.sg-hero-bg{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(7,50,83,.95), rgba(7,50,83,.72), rgba(7,50,83,.28)),
        url('https://siryglobal.com/img/banners/banner-web-01.webp') center center / cover no-repeat;
}

.hero-content,
.sg-hero-content{
    position:relative;
    z-index:1;
    padding:95px 0 90px;
    color:#fff;
}

.kicker,
.sg-kicker,
.section-title span,
.sg-section-title span,
.sg-section-label{
    display:block;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#7bd4ff;
    font-size:13px;
    font-weight:800;
    margin-bottom:14px;
}

.hero h1,
.sg-hero h1{
    max-width:780px;
    margin:0 0 20px;
    color:#fff;
    font-size:52px;
    line-height:1.08;
    font-weight:800;
}

.hero p,
.sg-hero p{
    max-width:680px;
    margin:0;
    color:#eef6fb;
    font-size:20px;
    line-height:1.55;
}

.hero-actions,
.sg-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:30px;
}

.btn,
.sg-btn,
.sg-hero a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    padding:14px 24px;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}

.btn-primary,
.sg-btn-primary,
.sg-hero a{
    background:#fff;
    color:var(--primary-dark);
}

.btn-light,
.sg-btn-light{
    background:var(--accent);
    color:#fff;
}

/* SECTIONS */
.section,
.sg-section{
    padding:76px 0;
    background:#fff;
}

.section-title,
.sg-section-title,
.sg-title-center{
    max-width:820px;
    margin:0 auto 34px;
    text-align:center;
}

.section-title span,
.sg-section-title span{
    color:var(--primary);
}

.section-title h2,
.content-page h2,
.contact-card h2,
.split h2,
.sg-section-title h2,
.sg-content h2,
.sg-contact h2,
.sg-split h2,
.sg-title-center h2{
    margin:0 0 14px;
    color:var(--primary);
    font-size:36px;
    line-height:1.15;
}

.section-title p,
.content-page p,
.contact-card p,
.split p,
.sg-section-title p,
.sg-content p,
.sg-split p,
.sg-title-center p{
    color:var(--muted);
    font-size:17px;
    line-height:1.65;
}

.cards-grid,
.sg-cards,
.sg-product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.card,
.sg-cards article,
.sg-product-card{
    background:#fff;
    border:1px solid #e3ebf2;
    border-radius:24px;
    padding:30px;
    box-shadow:0 14px 36px rgba(18,72,109,.08);
}

.card h3,
.sg-cards h3,
.sg-product-card h3{
    margin:0 0 12px;
    color:var(--primary);
    font-size:22px;
}

.card p,
.sg-cards p,
.sg-product-card p{
    margin:0;
    color:var(--muted);
    font-size:16px;
    line-height:1.6;
}

.section-blue,
.sg-dark{
    background:linear-gradient(180deg,var(--primary-dark),#041d30);
    color:#fff;
}

.section-blue h2,
.section-blue p,
.sg-dark h2,
.sg-dark p{
    color:#fff;
}

.split,
.sg-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
}

/* PAGES */
.page-hero,
.sg-page-hero{
    background:linear-gradient(180deg,#f8fbfd,#edf4f8);
    padding:105px 0 68px;
    text-align:center;
}

.page-hero h1,
.sg-page-hero h1{
    margin:0 0 12px;
    color:var(--primary);
    font-size:44px;
    line-height:1.15;
}

.page-hero p,
.sg-page-hero p{
    max-width:760px;
    margin:0 auto;
    color:var(--muted);
    font-size:18px;
    line-height:1.6;
}

.content-page,
.sg-content{
    max-width:860px;
}

.contact-grid,
.sg-contact-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:28px;
}

.contact-card,
.contact-form,
.sg-contact-box,
.sg-form{
    background:#fff;
    border:1px solid #e3ebf2;
    border-radius:24px;
    padding:30px;
    box-shadow:0 14px 36px rgba(18,72,109,.08);
}

.contact-form label,
.sg-form label{
    display:block;
    color:var(--primary);
    font-size:13px;
    font-weight:800;
    margin:13px 0 7px;
}

.contact-form input,
.contact-form textarea,
.sg-form input,
.sg-form textarea{
    width:100%;
    border:1px solid #d5e2eb;
    border-radius:11px;
    padding:13px;
    font:inherit;
}

.contact-form button,
.sg-form button{
    margin-top:16px;
    border:0;
    border-radius:999px;
    background:var(--primary);
    color:#fff;
    padding:14px 24px;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
}

/* FOOTER */
.footer-pro,
.sg-footer{
    width:100%;
    background:#0c3c63;
    color:#fff;
    padding:38px 0 18px;
}

.footer-container,
.sg-footer-grid{
    width:min(1180px, calc(100% - 32px));
    margin:0 auto;
    display:grid;
    grid-template-columns:1.1fr .8fr .9fr 1fr 1.1fr;
    gap:28px;
    align-items:flex-start;
}

.footer-logo,
.sg-footer-logo,
.sg-footer-brand img{
    width:72px;
    margin-bottom:12px;
}

.footer-col h3,
.sg-footer h3{
    margin:0 0 12px;
    color:#fff;
    font-size:14px;
    line-height:1.2;
    font-weight:800;
}

.footer-brand p,
.footer-col li,
.footer-news p,
.sg-footer p,
.sg-footer li{
    margin:0;
    color:#dcebf7;
    font-size:13px;
    line-height:1.55;
}

.footer-col ul,
.sg-footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col li,
.sg-footer li{
    margin-bottom:8px;
}

.footer-col a,
.sg-footer a{
    color:#dcebf7 !important;
    text-decoration:none;
}

.footer-col a:hover,
.sg-footer a:hover{
    color:#fff !important;
}

.footer-news p{
    margin-bottom:12px;
}

.footer-news-form{
    display:flex;
    gap:8px;
    align-items:center;
    margin-top:12px;
}

.footer-news-form input{
    width:170px;
    height:38px;
    border:0;
    border-radius:9px;
    padding:0 12px;
    font-size:13px;
    color:#26384b;
    background:#fff;
}

.footer-news-form button{
    height:38px;
    border:0;
    border-radius:9px;
    background:#2e8de0;
    color:#fff;
    padding:0 16px;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
}

.footer-social{
    display:flex;
    gap:8px;
    margin-top:14px;
}

.footer-social a{
    width:30px;
    height:30px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff !important;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
}

.footer-bottom,
.sg-footer-copy{
    width:min(1180px, calc(100% - 32px));
    margin:26px auto 0;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.14);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    color:#dcebf7;
    font-size:12px;
}

.footer-links-bottom{
    display:flex;
    gap:9px;
    align-items:center;
    flex-wrap:wrap;
}

.footer-links-bottom a,
.footer-links-bottom span{
    color:#dcebf7 !important;
}

/* WHATSAPP */
.whatsapp-float,
.sg-whatsapp{
    position:fixed;
    right:26px;
    bottom:26px;
    width:56px;
    height:56px;
    z-index:999;
}

/* TABLET */
@media(max-width:980px){
    .brand-card,
    .sg-logo,
    .sg-logo-card{
        width:132px;
        height:150px;
        border-radius:0 0 22px 22px;
        padding-top:12px;
    }

    .brand-card img,
    .sg-logo img,
    .sg-logo-card img{
        width:106px;
    }

    .menu-toggle,
    .sg-menu-button,
    .sg-menu-btn{
        display:flex;
        margin-left:auto;
    }

    .main-menu,
    .sg-nav{
        display:none;
        position:absolute;
        left:0;
        right:0;
        top:75px;
        width:100%;
        height:auto;
        background:#073253;
        padding:18px;
        border-radius:0 0 18px 18px;
        box-shadow:0 14px 26px rgba(0,0,0,.18);
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
    }

    .main-menu.is-open,
    .sg-nav.is-open,
    .sg-nav.open{
        display:flex;
    }

    .main-menu a,
    .sg-nav a{
        width:100%;
        padding:12px 14px;
    }

    .hero,
    .sg-hero{
        min-height:auto;
    }

    .hero-content,
    .sg-hero-content{
        padding:95px 0 62px;
    }

    .hero h1,
    .sg-hero h1{
        font-size:38px;
    }

    .hero p,
    .sg-hero p{
        font-size:17px;
    }

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

    .split,
    .contact-grid,
    .sg-split,
    .sg-contact-grid{
        grid-template-columns:1fr;
    }

    .footer-container,
    .sg-footer-grid{
        grid-template-columns:1fr 1fr;
        gap:24px;
    }
}

/* MOBILE */
@media(max-width:620px){
    .site-container,
    .sg-container,
    .footer-container,
    .sg-footer-grid,
    .footer-bottom,
    .sg-footer-copy{
        width:calc(100% - 28px);
    }

    .site-header,
    .sg-header,
    .header-inner,
    .sg-header-inner{
        height:69px;
    }

    .header-space,
    .sg-header-space{
        height:69px;
    }

    .brand-card,
    .sg-logo,
    .sg-logo-card{
        width:112px;
        height:126px;
        border-radius:0 0 18px 18px;
        padding-top:9px;
    }

    .brand-card img,
    .sg-logo img,
    .sg-logo-card img{
        width:90px;
    }

    .main-menu,
    .sg-nav{
        top:69px;
    }

    .hero-bg,
    .sg-hero-bg{
        background:
            linear-gradient(90deg, rgba(7,50,83,.96), rgba(7,50,83,.78), rgba(7,50,83,.54)),
            url('https://siryglobal.com/img/banners/banner-mob-01.webp') center center / cover no-repeat;
    }

    .hero-content,
    .sg-hero-content{
        padding:82px 0 46px;
    }

    .hero h1,
    .sg-hero h1{
        font-size:31px;
        line-height:1.12;
    }

    .hero p,
    .sg-hero p{
        font-size:15px;
        line-height:1.55;
    }

    .hero-actions,
    .sg-actions{
        gap:10px;
    }

    .btn,
    .sg-btn,
    .sg-hero a{
        width:100%;
        padding:13px 18px;
        font-size:12px;
    }

    .section,
    .sg-section{
        padding:54px 0;
    }

    .section-title h2,
    .content-page h2,
    .contact-card h2,
    .split h2,
    .sg-section-title h2,
    .sg-content h2,
    .sg-split h2{
        font-size:27px;
    }

    .section-title p,
    .content-page p,
    .contact-card p,
    .split p,
    .sg-section-title p,
    .sg-content p,
    .sg-split p{
        font-size:15px;
    }

    .cards-grid,
    .sg-cards,
    .sg-product-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .card,
    .contact-card,
    .contact-form,
    .sg-cards article,
    .sg-product-card,
    .sg-contact-box,
    .sg-form{
        padding:22px;
        border-radius:18px;
    }

    .page-hero,
    .sg-page-hero{
        padding:80px 0 48px;
    }

    .page-hero h1,
    .sg-page-hero h1{
        font-size:32px;
    }

    .footer-pro,
    .sg-footer{
        padding:30px 0 18px;
    }

    .footer-container,
    .sg-footer-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:18px;
    }

    .footer-logo,
    .sg-footer-logo,
    .sg-footer-brand img{
        width:62px;
    }

    .footer-col h3,
    .sg-footer h3{
        font-size:13px;
        margin-bottom:8px;
    }

    .footer-brand p,
    .footer-col li,
    .footer-news p,
    .sg-footer p,
    .sg-footer li{
        font-size:12px;
        line-height:1.5;
    }

    .footer-news-form{
        flex-direction:column;
        align-items:stretch;
        gap:8px;
    }

    .footer-news-form input,
    .footer-news-form button{
        width:100%;
        height:38px;
    }

    .footer-bottom,
    .sg-footer-copy{
        margin-top:20px;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        font-size:11px;
    }

    .whatsapp-float,
    .sg-whatsapp{
        width:50px;
        height:50px;
        right:16px;
        bottom:16px;
    }
}
/* PATCH DEFINITIVO - HEADER, HERO E RESPONSIVO */

.site-container{
    width:min(1180px, calc(100% - 32px));
    margin-left:auto;
    margin-right:auto;
}

.site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:75px;
    background:#12486d;
    color:#fff;
    z-index:9999;
}

.header-inner{
    height:75px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:flex-end;
}

.brand-card{
    position:absolute;
    left:0;
    top:0;
    width:184px;
    height:205px;
    border-radius:0 0 28px 28px;
    background:linear-gradient(180deg,#134f78,#0f4165);
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding-top:15px;
    box-shadow:0 18px 35px rgba(0,0,0,.14);
    z-index:2;
}

.brand-card img{
    width:150px;
    height:auto;
}

.main-menu{
    height:75px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
    margin-left:auto;
}

.main-menu a{
    color:#fff;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    padding:8px 10px;
    border-radius:999px;
    white-space:nowrap;
}

.main-menu a:hover{
    background:#1b668e;
}

.menu-toggle{
    display:none;
    width:42px;
    height:38px;
    border:0;
    border-radius:10px;
    background:#1b668e;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    padding:0;
    cursor:pointer;
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:#fff;
    display:block;
    border-radius:2px;
}

.header-space{
    height:75px;
}

/* HERO */

.hero{
    position:relative;
    min-height:580px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#073253;
    color:#fff;
}

.hero-bg{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(7,50,83,.95), rgba(7,50,83,.72), rgba(7,50,83,.28)),
        url('https://siryglobal.com/img/banners/banner-web-01.webp') center center / cover no-repeat;
}

.hero-content{
    position:relative;
    z-index:1;
    padding:95px 0 90px;
    color:#fff;
}

.kicker,
.section-title span{
    display:block;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#7bd4ff;
    font-size:13px;
    font-weight:800;
    margin-bottom:14px;
}

.hero h1{
    max-width:780px;
    margin:0 0 20px;
    color:#fff;
    font-size:52px;
    line-height:1.08;
    font-weight:800;
}

.hero p{
    max-width:680px;
    margin:0;
    color:#eef6fb;
    font-size:20px;
    line-height:1.55;
}

.hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:30px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    padding:14px 24px;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}

.btn-primary{
    background:#fff;
    color:#073253;
}

.btn-light{
    background:#2e8de0;
    color:#fff;
}

/* CONTEUDO */

.section{
    padding:76px 0;
    background:#fff;
}

.section-title{
    max-width:820px;
    margin:0 auto 34px;
    text-align:center;
}

.section-title span{
    color:#12486d;
}

.section-title h2,
.content-page h2,
.contact-card h2,
.split h2{
    margin:0 0 14px;
    color:#12486d;
    font-size:36px;
    line-height:1.15;
}

.section-title p,
.content-page p,
.contact-card p,
.split p{
    color:#657589;
    font-size:17px;
    line-height:1.65;
}

.cards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.card{
    background:#fff;
    border:1px solid #e3ebf2;
    border-radius:24px;
    padding:30px;
    box-shadow:0 14px 36px rgba(18,72,109,.08);
}

.card h3{
    margin:0 0 12px;
    color:#12486d;
    font-size:22px;
}

.card p{
    margin:0;
    color:#657589;
    font-size:16px;
    line-height:1.6;
}

.section-blue{
    background:linear-gradient(180deg,#073253,#041d30);
    color:#fff;
}

.section-blue h2,
.section-blue p{
    color:#fff;
}

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
}

/* GARANTIA DO FOOTER */

.footer-pro{
    width:100%;
}

@media(max-width:980px){

    .brand-card{
        width:132px;
        height:150px;
        border-radius:0 0 22px 22px;
        padding-top:12px;
    }

    .brand-card img{
        width:106px;
    }

    .menu-toggle{
        display:flex;
        margin-left:auto;
    }

    .main-menu{
        display:none;
        position:absolute;
        left:0;
        right:0;
        top:75px;
        width:100%;
        height:auto;
        background:#073253;
        padding:18px;
        border-radius:0 0 18px 18px;
        box-shadow:0 14px 26px rgba(0,0,0,.18);
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
    }

    .main-menu.is-open{
        display:flex;
    }

    .main-menu a{
        width:100%;
        padding:12px 14px;
    }

    .hero{
        min-height:auto;
    }

    .hero-content{
        padding:95px 0 62px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:17px;
    }

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

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

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:24px;
    }
}

@media(max-width:620px){

    .site-container,
    .footer-container,
    .footer-bottom{
        width:calc(100% - 28px);
    }

    .site-header,
    .header-inner{
        height:69px;
    }

    .header-space{
        height:69px;
    }

    .brand-card{
        width:112px;
        height:126px;
        border-radius:0 0 18px 18px;
        padding-top:9px;
    }

    .brand-card img{
        width:90px;
    }

    .main-menu{
        top:69px;
    }

    .hero-bg{
        background:
            linear-gradient(90deg, rgba(7,50,83,.96), rgba(7,50,83,.78), rgba(7,50,83,.54)),
            url('https://siryglobal.com/img/banners/banner-mob-01.webp') center center / cover no-repeat;
    }

    .hero-content{
        padding:82px 0 46px;
    }

    .hero h1{
        font-size:31px;
        line-height:1.12;
    }

    .hero p{
        font-size:15px;
        line-height:1.55;
    }

    .btn{
        width:100%;
        padding:13px 18px;
        font-size:12px;
    }

    .section{
        padding:54px 0;
    }

    .section-title h2,
    .content-page h2,
    .contact-card h2,
    .split h2{
        font-size:27px;
    }

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

    .card{
        padding:22px;
        border-radius:18px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:18px;
    }

    .footer-logo{
        width:62px;
    }

    .footer-col h3{
        font-size:13px;
        margin-bottom:8px;
    }

    .footer-brand p,
    .footer-col li,
    .footer-news p{
        font-size:12px;
        line-height:1.5;
    }

    .footer-news-form{
        flex-direction:column;
        align-items:stretch;
        gap:8px;
    }

    .footer-news-form input,
    .footer-news-form button{
        width:100%;
        height:38px;
    }

    .footer-bottom{
        margin-top:20px;
        flex-direction:column;
        align-items:flex-start;
        font-size:11px;
    }
}
/* AJUSTE LOGO - REMOVE CAIXA AZUL EXTERNA */

.brand-card,
.sg-logo,
.sg-logo-card{
    background:transparent !important;
    box-shadow:none !important;
    padding-top:0 !important;
    border-radius:0 !important;

    width:184px !important;
    height:auto !important;

    display:block !important;
}

.brand-card img,
.sg-logo img,
.sg-logo-card img{
    width:184px !important;
    height:auto !important;
    display:block !important;
}

/* MOBILE */
@media(max-width:620px){

    .brand-card,
    .sg-logo,
    .sg-logo-card{
        width:118px !important;
        height:auto !important;
        background:transparent !important;
        box-shadow:none !important;
        padding-top:0 !important;
        border-radius:0 !important;
    }

    .brand-card img,
    .sg-logo img,
    .sg-logo-card img{
        width:118px !important;
    }
}
.hero-bg,
.sg-hero-bg{
    background:
        linear-gradient(90deg, rgba(7,50,83,.96), rgba(7,50,83,.66), rgba(7,50,83,.22)),
        url('/fabrica-de-embalagens/assets/img/banner-embalagens.webp') center center / cover no-repeat !important;
}

@media(max-width:620px){
    .hero-bg,
    .sg-hero-bg{
        background:
            linear-gradient(90deg, rgba(7,50,83,.96), rgba(7,50,83,.76), rgba(7,50,83,.42)),
            url('/fabrica-de-embalagens/assets/img/banner-embalagens.webp') center right / cover no-repeat !important;
    }
}
/* BARRA DE BENEFÍCIOS ABAIXO DO BANNER */

.benefits-bar{
    background:#ffffff;
    border-bottom:1px solid #e6edf3;
    padding:26px 0;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:0;
    align-items:center;
}

.benefit-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:10px 24px;
    justify-content:center;
    min-height:84px;
    position:relative;
}

.benefit-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:18px;
    bottom:18px;
    width:1px;
    background:#d9e5ef;
}

.benefit-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:50%;
    background:#f3f8fc;
    color:#12486d;
    display:flex;
    align-items:center;
    justify-content:center;
}

.benefit-icon svg{
    width:26px;
    height:26px;
    display:block;
}

.benefit-text{
    color:#12486d;
    font-size:16px;
    line-height:1.4;
}

.benefit-text strong{
    font-weight:700;
}

/* TABLET */
@media(max-width:980px){
    .benefits-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .benefit-item:nth-child(2)::after{
        display:none;
    }
}

/* CELULAR */
@media(max-width:620px){
    .benefits-bar{
        padding:18px 0;
    }

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

    .benefit-item{
        justify-content:flex-start;
        padding:14px 0;
        min-height:auto;
    }

    .benefit-item::after{
        display:none;
    }

    .benefit-item:not(:last-child){
        border-bottom:1px solid #e6edf3;
    }

    .benefit-icon{
        width:44px;
        height:44px;
        min-width:44px;
    }

    .benefit-icon svg{
        width:22px;
        height:22px;
    }

    .benefit-text{
        font-size:14px;
    }
}
/* FAIXA PREMIUM DE BENEFICIOS */

.benefits-bar{
    display:none !important;
}

.benefits-pro{
    background:#ffffff;
    border-bottom:1px solid #e8eef4;
    box-shadow:0 14px 34px rgba(18,72,109,.06);
    position:relative;
    z-index:3;
}

.benefits-pro-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    align-items:stretch;
}

.benefits-pro-item{
    min-height:108px;
    padding:26px 28px;
    display:flex;
    align-items:center;
    gap:18px;
    position:relative;
}

.benefits-pro-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:28px;
    bottom:28px;
    width:1px;
    background:#dce7ef;
}

.benefits-pro-icon{
    width:46px;
    height:46px;
    min-width:46px;
    color:#12486d;
    display:flex;
    align-items:center;
    justify-content:center;
}

.benefits-pro-icon svg{
    width:42px;
    height:42px;
    display:block;
}

.benefits-pro-item strong{
    display:block;
    color:#0c3c63;
    font-size:15px;
    line-height:1.25;
    font-weight:800;
    margin-bottom:5px;
}

.benefits-pro-item span{
    display:block;
    color:#657589;
    font-size:12px;
    line-height:1.35;
}

/* TABLET */
@media(max-width:980px){
    .benefits-pro-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .benefits-pro-item{
        border-bottom:1px solid #e8eef4;
    }

    .benefits-pro-item:nth-child(2)::after,
    .benefits-pro-item:nth-child(4)::after{
        display:none;
    }

    .benefits-pro-item:nth-child(3),
    .benefits-pro-item:nth-child(4){
        border-bottom:0;
    }
}

/* CELULAR */
@media(max-width:620px){
    .benefits-pro{
        box-shadow:0 10px 24px rgba(18,72,109,.05);
    }

    .benefits-pro-grid{
        grid-template-columns:1fr;
    }

    .benefits-pro-item{
        min-height:auto;
        padding:18px 0;
        gap:14px;
        border-bottom:1px solid #e8eef4;
    }

    .benefits-pro-item:last-child{
        border-bottom:0;
    }

    .benefits-pro-item::after{
        display:none !important;
    }

    .benefits-pro-icon{
        width:38px;
        height:38px;
        min-width:38px;
    }

    .benefits-pro-icon svg{
        width:34px;
        height:34px;
    }

    .benefits-pro-item strong{
        font-size:14px;
        margin-bottom:3px;
    }

    .benefits-pro-item span{
        font-size:11px;
    }
}
/* GRID PROFISSIONAL DE PRODUTOS */

.products-pro-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:26px;
    margin-top:34px;
}

.product-pro-card{
    display:flex;
    flex-direction:column;
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    text-decoration:none;
    border:1px solid #e4edf5;
    box-shadow:0 14px 34px rgba(18,72,109,.10);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position:relative;
}

.product-pro-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 42px rgba(18,72,109,.18);
    border-color:#cfe0ee;
}

.product-pro-image{
    background:#f7fafc;
    height:230px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.product-pro-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;
}

.product-pro-card:hover .product-pro-image img{
    transform:scale(1.05);
}

.product-pro-body{
    padding:22px 22px 20px;
}

.product-pro-body h3{
    margin:0 0 10px;
    color:#12486d;
    font-size:22px;
    line-height:1.2;
    font-weight:800;
}

.product-pro-body p{
    margin:0 0 18px;
    color:#657589;
    font-size:15px;
    line-height:1.65;
}

.product-pro-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#12486d;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.product-pro-link::after{
    content:"?";
    font-size:16px;
    transition:transform .25s ease;
}

.product-pro-card:hover .product-pro-link::after{
    transform:translateX(4px);
}

/* TABLET */
@media(max-width:1100px){
    .products-pro-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* CELULAR */
@media(max-width:620px){
    .products-pro-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .product-pro-image{
        height:210px;
    }

    .product-pro-body{
        padding:18px 18px 16px;
    }

    .product-pro-body h3{
        font-size:20px;
    }

    .product-pro-body p{
        font-size:14px;
    }
}
/* ==============================
   BLOG / POSTS - SIRY GLOBAL
============================== */

:root {
    --sg-blue: #173b7a;
    --sg-blue-dark: #0b244d;
    --sg-navy: #0b1222;
    --sg-text: #253047;
    --sg-muted: #6b7280;
    --sg-border: #e3e8f3;
    --sg-soft: #f5f7fb;
    --sg-white: #ffffff;
    --sg-radius: 18px;
    --sg-shadow: 0 18px 45px rgba(11, 18, 34, 0.08);
}

.sg-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.sg-blog-page,
.sg-post-page {
    background: var(--sg-white);
    color: var(--sg-text);
}

.sg-blog-hero {
    padding: 72px 0 54px;
    background:
        radial-gradient(circle at top right, rgba(23, 59, 122, 0.16), transparent 34%),
        linear-gradient(135deg, #f7f9fd 0%, #ffffff 55%, #eef3fb 100%);
    border-bottom: 1px solid var(--sg-border);
}

.sg-blog-hero h1 {
    max-width: 850px;
    margin: 12px 0 16px;
    color: var(--sg-navy);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.sg-blog-hero p {
    max-width: 740px;
    margin: 0;
    color: var(--sg-muted);
    font-size: 18px;
    line-height: 1.7;
}

.sg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sg-blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.sg-eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--sg-blue);
    border-radius: 999px;
}

.sg-featured-post {
    padding: 54px 0 28px;
}

.sg-featured-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: var(--sg-white);
    border: 1px solid var(--sg-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--sg-shadow);
}

.sg-featured-image {
    min-height: 420px;
    background: var(--sg-soft);
}

.sg-featured-image img,
.sg-post-thumb img,
.sg-post-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sg-featured-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sg-post-category {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(23, 59, 122, 0.09);
    color: var(--sg-blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sg-featured-content h2 {
    margin: 18px 0 14px;
    color: var(--sg-navy);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.sg-featured-content p {
    margin: 0 0 22px;
    color: var(--sg-muted);
    font-size: 17px;
    line-height: 1.7;
}

.sg-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--sg-muted);
    font-size: 14px;
    margin-bottom: 22px;
}

.sg-btn-primary,
.sg-btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sg-btn-primary {
    background: var(--sg-blue);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(23, 59, 122, 0.22);
}

.sg-btn-primary:hover {
    transform: translateY(-2px);
    background: var(--sg-blue-dark);
}

.sg-btn-light {
    background: #ffffff;
    color: var(--sg-blue);
}

.sg-posts-section,
.sg-related-posts {
    padding: 42px 0 70px;
}

.sg-section-title {
    margin-bottom: 26px;
}

.sg-section-title h2 {
    margin: 10px 0 0;
    color: var(--sg-navy);
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: -0.035em;
}

.sg-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sg-post-card {
    background: var(--sg-white);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(11, 18, 34, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sg-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(11, 18, 34, 0.1);
}

.sg-post-thumb {
    display: block;
    height: 220px;
    background: var(--sg-soft);
}

.sg-post-card-body {
    padding: 22px;
}

.sg-post-card-body h3 {
    margin: 14px 0 10px;
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.sg-post-card-body h3 a {
    color: var(--sg-navy);
    text-decoration: none;
}

.sg-post-card-body h3 a:hover {
    color: var(--sg-blue);
}

.sg-post-card-body p {
    margin: 0 0 18px;
    color: var(--sg-muted);
    line-height: 1.65;
}

.sg-empty-box {
    padding: 34px;
    border-radius: var(--sg-radius);
    border: 1px dashed var(--sg-border);
    background: var(--sg-soft);
}

.sg-blog-cta {
    padding: 36px 0 74px;
}

.sg-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--sg-blue-dark), var(--sg-blue));
    color: #ffffff;
}

.sg-cta-box h2 {
    margin: 10px 0;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: -0.035em;
}

.sg-cta-box p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.sg-cta-box .sg-eyebrow {
    color: #ffffff;
}

.sg-cta-box .sg-eyebrow::before {
    background: #ffffff;
}

/* Página individual do post */

.sg-post-header {
    padding: 68px 0 42px;
    background:
        radial-gradient(circle at top right, rgba(23, 59, 122, 0.14), transparent 34%),
        linear-gradient(135deg, #f7f9fd, #ffffff);
    border-bottom: 1px solid var(--sg-border);
}

.sg-post-header-inner {
    max-width: 940px;
}

.sg-back-link {
    display: inline-flex;
    margin-bottom: 26px;
    color: var(--sg-blue);
    text-decoration: none;
    font-weight: 800;
}

.sg-post-header h1 {
    margin: 18px 0 16px;
    color: var(--sg-navy);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.sg-post-excerpt {
    max-width: 820px;
    margin: 0 0 20px;
    color: var(--sg-muted);
    font-size: 19px;
    line-height: 1.7;
}

.sg-post-meta-large {
    font-size: 15px;
    margin-bottom: 0;
}

.sg-post-cover {
    padding: 38px 0 0;
}

.sg-post-cover img {
    max-height: 520px;
    border-radius: 28px;
    box-shadow: var(--sg-shadow);
}

.sg-post-content-section {
    padding: 48px 0 70px;
}

.sg-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
    align-items: start;
}

.sg-post-content {
    font-size: 18px;
    line-height: 1.85;
    color: var(--sg-text);
}

.sg-post-content p {
    margin: 0 0 24px;
}

.sg-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--sg-border);
}

.sg-post-tags span {
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--sg-soft);
    color: var(--sg-blue);
    font-size: 13px;
    font-weight: 800;
}

.sg-post-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 24px;
}

.sg-sidebar-card {
    padding: 24px;
    border-radius: var(--sg-radius);
    border: 1px solid var(--sg-border);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(11, 18, 34, 0.06);
}

.sg-sidebar-card h3 {
    margin: 0 0 10px;
    color: var(--sg-navy);
    font-size: 20px;
}

.sg-sidebar-card p {
    margin: 0 0 16px;
    color: var(--sg-muted);
    line-height: 1.65;
}

.sg-sidebar-card a {
    color: var(--sg-blue);
    font-weight: 800;
    text-decoration: none;
}

.sg-sidebar-card-blue {
    background: linear-gradient(135deg, var(--sg-blue-dark), var(--sg-blue));
    color: #ffffff;
    border-color: transparent;
}

.sg-sidebar-card-blue h3,
.sg-sidebar-card-blue a {
    color: #ffffff;
}

.sg-sidebar-card-blue p {
    color: rgba(255, 255, 255, 0.82);
}

/* Responsivo */

@media (max-width: 980px) {
    .sg-featured-card,
    .sg-post-layout {
        grid-template-columns: 1fr;
    }

    .sg-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sg-post-sidebar {
        position: static;
    }

    .sg-featured-image {
        min-height: 320px;
    }
}

@media (max-width: 680px) {
    .sg-blog-hero,
    .sg-post-header {
        padding: 48px 0 36px;
    }

    .sg-featured-content,
    .sg-cta-box {
        padding: 28px;
    }

    .sg-posts-grid {
        grid-template-columns: 1fr;
    }

    .sg-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .sg-post-thumb {
        height: 200px;
    }
}