@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: #003d1d;
    --green-dark: #02351a;
    --gray-text: #6b7566;
    --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-30 { font-size: 30px; }

.text-secondary-custom { color: var(--bs-secondary-custom) !important; }
.text-custom { color: var(--gray-text); }
.text-custom2 { color: var(--gray-muted); }
.highlight-secondary { color: var(--bs-secondary); }

.bg-green { background-color: var(--green-dark); }
.bg-card-custom { background: linear-gradient(270deg, var(--dark-green) 0%, var(--bs-primary) 100%); }

.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: 0;
    color: #000 !important;
}

.btn-outline-custom {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #fff !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: 700;
    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;
}

.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 {
    align-items: center;
    background-color: var(--green-deep);
    display: inline-flex;
    height: 64px;
    justify-content: center;
    width: 64px;
}

.step-number {
    color: #eef1ef;
    font-size: 48px;
    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);
}

.operacao-section {
    background: var(--green-deep) url(../img/bg-operacao.png) center / cover no-repeat;
    min-height: 700px;
    overflow: hidden;
    position: relative;
}

.operacao-section::after {
    background: url(../img/IMG-DETALHE.png) center / cover no-repeat;
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    right: 3.5%;
    top: 0;
    width: 31%;
    z-index: 0;
}

.operacao-content {
    margin-left: 8%;
    max-width: 780px;
    position: relative;
    z-index: 1;
}

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

.operacao-text {
    border-left: 4px solid var(--bs-secondary-custom);
    font-size: 16px;
    line-height: 1.8;
    max-width: 560px;
    padding-left: 28px;
}

.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;
}

.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: rgba(255, 255, 255, 0.72);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    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;
}

/* 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(--green-dark);
    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: 106px;
}

.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%;
    }

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

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

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

@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: 38px;
    }

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

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

    .operacao-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;
    }
}
