@import url("./components/home/home.css");
@import url("./components/hero/hero.css");
@import url("./components/benefits/benefits.css");
@import url("./components/gallery/gallery.css");
@import url("./components/products/produto.css");
@import url("./components/problem/problem.css");
@import url("./components/workflow/workflow.css");
@import url("./components/atendimento/atendimento.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #F7F9FC;
    color: #1F2937;
    line-height: 1.6;
}

a {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(2, 6, 23, 0.96);
    border-bottom: 1px solid rgba(132, 204, 22, 0.22);
    backdrop-filter: blur(18px);
}

.header-content {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    width: 168px;
    height: 52px;
    overflow: hidden;
    border-radius: 14px;
    background: transparent;
    text-decoration: none;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.site-header nav a {
    color: #F8FAFC;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.site-header nav a:hover {
    color: #FACC15;
}

.btn-outline {
    padding: 11px 18px;
    border: 1px solid #84CC16;
    border-radius: 999px;
    color: #FFFFFF !important;
}

.btn-outline:hover {
    border-color: #FACC15;
    color: #FACC15 !important;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 16px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    transition: .25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #84CC16, #22C55E);
    color: #052E16;
    box-shadow: 0 16px 34px rgba(34,197,94,.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FACC15, #84CC16);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #FFFFFF;
    border: 1px solid #D9F99D;
    color: #0B1220;
}

.btn-secondary:hover {
    border-color: #84CC16;
    color: #166534;
    transform: translateY(-2px);
}

.tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 16px;
    background: rgba(217,249,157,.92);
    color: #166534;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: .02em;
}

.site-footer {
    background: #020617;
    color: #CBD5E1;
}

.footer-content {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-content strong {
    color: #FFFFFF;
    font-size: 22px;
    letter-spacing: -.04em;
}

@media (max-width:980px){

    .site-header{
        background:#FFFFFF;
        border-bottom:1px solid #E5E7EB;
    }

    .site-header nav{
        display:none;
    }

    .header-content{
        height:76px;
    }

    .logo{
        width:150px;
        height:48px;
    }

}

@media (max-width:560px){

    .container{
        width:min(100% - 40px,1180px);
    }

    .header-content{
        height:72px;
    }

    .logo{
        width:142px;
        height:46px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .footer-content{
        flex-direction:column;
        justify-content:center;
        text-align:center;
    }

}