@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --bs-primary: #035328;
    --bs-primary-rgb: 3, 83, 40;
    --bs-secondary: #c09017;
    --bs-secondary-rgb: 192, 144, 23;
    --bs-secondary-custom: #fab520;
    --bs-body-font-family: 'Inter', sans-serif;
    --dark-green: #011208;
    --green-deep: #033f1e;
    --green-dark: #02351a;
    --gray-text: #6b7566;
    --gray-text-custom: #D1D5DC;
    --gray-muted: #99a1af;
    --gray-card: #dbe7e1;
    --font-heading: 'Montserrat', sans-serif;
    --shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.035);
}

body {
    background-color: #fff;
    color: #333;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0;
}

img {
    max-width: 100%;
}

.font-12 { font-size: 12px; }
.font-14 { font-size: 14px; }
.font-16 { font-size: 16px; }
.font-18 { font-size: 18px; }
.font-20 { font-size: 20px; }
.font-24 { font-size: 24px; }
.font-26 { font-size: 26px; }
.font-28 { font-size: 28px; }
.font-30 { font-size: 30px; }

.text-secondary-custom { color: var(--bs-secondary-custom) !important; }
.text-green-deep {color:var(--dark-green)}
.text-gray-custom { color: var(--gray-text-custom); }
.text-custom { color: var(--gray-text); }
.text-custom2 { color: var(--gray-muted); }
.highlight-secondary { color: var(--bs-secondary); }
.bg-green-deep { background-color: var(--green-deep); }
.bg-green { background-color: var(--green-dark); }
.bg-card-custom { background: linear-gradient(270deg, var(--dark-green) 0%, var(--bs-primary) 100%); }
.border-primary-custom {border-color: var(--bs-secondary-custom) !important;}
.border-primary-custom2 {border-color: #4C4310 !important;}
.text-gradient-1,.text-gradient-2 {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;}

.text-gradient-1 { background-image: linear-gradient(90deg, #eba21b 0%, #d58a00 100%); }
.text-gradient-2 { background-image: linear-gradient(90deg, #0b542d 0%, #063f24 100%); }

.nav-link {
    color: var(--dark-green) !important;
    font-size: 14px;
    font-weight: 500;
}

.navbar.fixed-top {
    z-index: 10;
}

.whatsapp_float {
    bottom: 30px;
    height: 60px;
    position: fixed;
    right: 25px;
    width: 60px;
    z-index: 9999;
}

.btn-primary-custom,
.btn-secondary-custom,
.btn-outline-custom {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary-custom {
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--dark-green) 100%);
    border: 0;
    color: #fff !important;
}

.btn-secondary-custom {
    background: linear-gradient(90deg, var(--bs-secondary-custom) 0%, var(--bs-secondary) 100%);
    border-radius: 0 !important;
    border: 0;
    color: #fff !important;
}

.btn-outline-custom {
    border: 1px solid var(--bs-secondary-custom) !important;
    border-radius: 0 !important;
    color: #FFD069 !important;
}

.btn-warning {background-color: var(--bs-secondary-custom) !important;}
.btn:hover,
.btn-primary-custom:hover {
    transform: translateY(-2px);
}

.btn-primary-custom:hover {
    box-shadow: 0 4px 15px rgba(0, 194, 116, 0.3);
}

.section-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 400;
    line-height: 1.14;
}

.section-muted {
    background: linear-gradient(180deg, #fafafa 0%, #f4f5f3 100%);
}

.section-soft-gradient {
    background: linear-gradient(180deg, #f5f5f5 0%, #fff 100%);
}

.content-card,
.text-card {
    background-color: #fff;
    border: 1px solid var(--gray-card);
    box-shadow: var(--shadow-soft);
    color: #4d5c55;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.52;
}

.content-card {
    padding: 27px 23px 28px;
}

.text-card {
    background: linear-gradient(90deg, #fff 0%, #f5f5f5 100%);
    color: #78827d;
    font-weight: 400;
    line-height: 1.65;
    padding: 19px 22px;
}

/* cards atuação */

.atuacao-card{

    position:relative;
    overflow:hidden;

    background:#0E1E15;

    border:1px solid transparent;

}

.atuacao-card::before{

    content:"";
    position:absolute;
    inset:0;

    border:2px solid;

  border-image: linear-gradient(
    270deg,
    var(--bs-secondary-custom) 0%,
    rgba(250,181,32,0) 100%
) 1;

    pointer-events:none;
}

.atuacao-number{

    color:rgba(250,181,32,.5);

    font-size:58px;

    font-family:var(--font-heading);

    line-height:1;
}




.highlight-box {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding: 25px 26px;
}

.highlight-box-light {
    background: linear-gradient(90deg, #e9efec 0%, #f2f5f3 50%, #e9efec 100%);
    color: var(--bs-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    padding: 28px 20px;
}

.hero-section {
    background: url(../img/bgHero.png) center / cover no-repeat;
    min-height: 720px;
    padding: 100px 0 40px;
}

.metric-card {
    min-height: 190px;
}

.text-info-content {
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.icon-tile {
    display: flex; 
    align-items: center;
    justify-content: center;
    width: 44px;  
    height: 44px; 
    flex-shrink: 0; 
}

.step-number {
    color: #eef1ef;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
}

.card-title-custom {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.product-card {
    min-height: 250px;
}

.product-detail {
    background:
        radial-gradient(circle at 62% 50%, rgba(250, 181, 32, 0.18), transparent 24%),
        linear-gradient(110deg, var(--green-deep) 0%, #00180b 100%);
    min-height: 335px;
}

.product-detail-content {
    position: relative;
    z-index: 1;
}

.product-list {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.product-list i {
    color: var(--bs-secondary-custom);
}

.product-detail-img {
    bottom: -4px;
    height: auto;
    position: absolute;
    right: -34px;
    width: min(56%, 560px);
}

.atuacao-section {
    background: var(--dark-green);
}


.atuacao-title {
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 400;
    line-height: 1.12;
}

.atuacao-text {
    background-color:#F5F5F5;
    font-size: 16px;
    line-height: 1.8;
}

.ecossistema-card {
    border-left: 4px solid var(--bs-secondary-custom);
    background-color:#FFF;
    font-size: 16px;
    line-height: 1.8;
    padding: 20px;
}

.ecossistema-card-custom {
    border-left: 4px solid #C9D9D0;
    background-color:#FFF;
    font-size: 16px;
    line-height: 1.8;
    padding: 20px;
}

.feature-card {
    background: #f7f7f7;
    border: 1px solid #e5e9e5;
    padding: 28px 30px;
}

.structure-card {
    border: 1px solid #eadfc9;
    box-shadow: none;
    text-align: left;
}

.structure-card .card-body {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: auto 1fr;
    padding: 26px 28px;
}

.structure-card .card-body p {
    grid-column: 1 / -1;
}

.structure-metric {
    line-height: 1;
    text-align: right;
}

.structure-metric span {
    color: var(--bs-secondary-custom);
    display: block;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
}

.structure-metric small {
    color: var(--gray-text);
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.resultado-card-custom {
    border-left: 4px solid var(--bs-primary);
    background-color:#F7F9F8;
    color: var(--dark-green);
    font-size: 16px;
    line-height: 1.5;
    padding: 20px;
}

.cta-panel {
    padding: 70px 32px 60px;
}

.cta-title {
    font-size: clamp(34px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.15;
}

.tag-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    gap: 24px;
    justify-content: center;
    margin: 20px auto 0;
    max-width: 720px;
    padding-top: 26px;
    text-transform: uppercase;
}

.tag-list span::before {
    color: var(--bs-secondary-custom);
    content: "•";
    margin-right: 10px;
}



.operacao-img{
    margin-left:-50px;}

.operacao-icon{
    width:24px;
    height:24px;
    background:var(--bs-secondary-custom);
    flex-shrink:0;}

.operacao-icon img{
    width:150px;}

/* BASE */

.base-section{

    background:
    linear-gradient(
        165deg,
        #40675B 0%,
        #011208 50%,
        #40675B 100%
    );
}


.base-tag{
    background:var(--bs-secondary-custom);
    color:var(--dark-green);
    padding:12px 22px;
    font-size:14px;
    font-weight:300;
    letter-spacing:.8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;}


.base-line{
    width:100%;
    height:2px;
    background:
    linear-gradient(90deg, var(--bs-secondary-custom), rgba(250,181,32,.1) );}

.base-line-custom{
    width:100%;
    height:3px;
    background:
    linear-gradient(90deg, var(--bs-secondary-custom), rgba(250,181,32,.1) );}


.footer-card-cta{
    position:relative;
    overflow:hidden;
    padding:55px 60px;
    margin-bottom:70px;
    background:
    linear-gradient(
        rgba(1,18,8,.68),
        rgba(1,18,8,.68)),
    url('../img/img-card-footer.png');
    background-size:cover;
    background-position:center;
    border-radius:
    0px
    24px
    0px
    24px;
    border:1px solid rgba(72,120,91,.45);}



.footer-card-cta::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(
    circle at top left,
    rgba(90,150,105,.20),
    transparent 45%);
    pointer-events:none;}


.footer-card-cta::after{
    content:"";
    position:absolute;
    inset:8px;
    border-radius:
    0px
    18px
    0px
    18px;
    border:1px solid rgba(94,140,106,.18);
    pointer-events:none;}


.footer-card-cta{
    position:relative;
    overflow:hidden;
    padding:55px 60px;
    margin-bottom:70px;
    background:rgba(1,18,8,.72);
    border-radius:
    0px
    24px
    0px
    24px;
    border:1px solid rgba(72,120,91,.45);
}



.footer-card-cta::before{
    content:"";
    position:absolute;
    inset:-30px;
    background:
    url('../img/img-card-footer.png');
    background-size:cover;
    background-position:center bottom;
    filter:blur(3px);
    transform:scale(1.1);
    opacity:.65;}



.footer-card-cta::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(1,18,8,.65),
        rgba(1,18,8,.65)
    ),
    radial-gradient(
        circle at top left,
        rgba(90,150,105,.20),
        transparent 45%
    );

}


/* conteúdo acima das camadas */

.footer-card-cta>*{

    position:relative;
    z-index:2;

}


@media(max-width:768px){

.footer-card-cta{

padding:35px 20px;

border-radius:
0
18px
0
18px;

}

}



@media(max-width:768px){

.footer-card-cta{

padding:35px 25px;
margin-bottom:50px;

}

}


@media(max-width:768px){

.base-tag{
font-size:10px;
padding:10px 15px;}

}

@media(max-width:991px){

.operacao-img{

margin-left:0;
margin-bottom:30px;
max-width:100%;
}

}

/* Estilos para as linhas decorativas sob as palavras */

.custom-line-1, .custom-line-2 {
    display: inline-block;
    position: relative;
    padding-bottom: 8px; /* Espaço para a imagem aparecer */
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
}

.custom-line-1 {
    background-image: url('../img/line-1.png');
}

.custom-line-2 {
    background-image: url('../img/line-2.png');
}

/* Ajuste fino: caso a linha precise ser maior que a palavra ou deslocada */
@media (min-width: 992px) {
    .custom-line-1, .custom-line-2 {
        background-size: 100% 12px; /* Ajuste a altura (12px) conforme o arquivo original */
    }
}

.footer-section {
    background-color: var(--dark-green);
    padding: 88px 0 24px;
}

.footer-cta {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 72px;
}

.footer-title {
    font-size: clamp(34px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.16;
}

.footer-info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 48px 0 54px;
}

.footer-logo {
    width: 200px;
}

.footer-heading {
    color: var(--bs-secondary-custom);
    font-family: var(--bs-body-font-family);
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 20px;
}

.footer-list {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}

.footer-list li + li {
    margin-top: 14px;
}

.footer-list i,
.footer-solutions li::before,
.footer-social {
    color: var(--bs-secondary-custom);
}

.footer-solutions li::before {
    content: "•";
    margin-right: 8px;
}

.footer-social {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    height: 34px;
    justify-content: center;
    text-decoration: none;
    width: 34px;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 620px;
        padding-top: 110px;
    }

    .product-detail {
        min-height: auto;
    }

    .product-detail-img {
        margin-top: -12px;
        position: relative;
        right: auto;
        width: 100%;
    }

    
    .atuacao-section {
        min-height: auto;
    }

    .atuacao-section::after {
        background: var(--green-dark);
        position: relative;
        right: auto;
        width: 100%;
    }

    .atuacao-content {
        margin-left: 0;
        max-width: none;
    }
}

@media(max-width:768px){

.atuacao-img{
height:180px;
}

.atuacao-number{
font-size:40px;
}

}

@media (max-width: 575.98px) {
    .row>* {padding-right: calc(var(--bs-gutter-x) * 1) !important;
    padding-left: calc(var(--bs-gutter-x) * 1) !important;}

    .py-5 {
        padding-top: 25px !important;
        padding-bottom: 20px !important;}

    .mb-5 {
        padding-bottom: 20px !important;}

    .pb-5 {
        padding-bottom: 20px !important;}

    .pt-5 {
        padding-top: 20px !important;}

    .px-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;}

    .btn-primary-custom,
    .btn-secondary-custom,
    .btn-outline-custom {
        font-size: 0.8rem;
        white-space: normal;
    }

    .whatsapp_float {
        bottom: 20px;
        height: 52px;
        right: 18px;
        width: 52px;
    }

    .product-detail-content {width: fit-content !important;
    margin: 10px !important;}
    .footer-section .d-flex {display: flow !important;
    }

    .content-card,
    .text-card,
    .highlight-box,
    .feature-card {
        padding: 20px 18px;
    }

    .card-title-custom {
        font-size: 24px;
    }

    .step-number {
        font-size: 36px;
    }

    
    .highlight-box-light {
        font-size: 12px;
        padding: 22px 16px;
    }

    .product-card {
        min-height: auto;
    }

    .atuacao-text {
        font-size: 13px;
        padding-left: 16px;
    }

    .structure-card .card-body {
        padding: 22px 18px;
    }

    .cta-panel {
        padding: 44px 18px 38px;
    }

    .tag-list {
        gap: 12px;
    }

    .footer-section {
        padding-top: 56px;
    }

    .footer-cta {
        padding-bottom: 48px;
    }

    .footer-info {
        padding: 36px 0 42px;
    }
}
