/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Montserrat', sans-serif;
    color: #17243a;
    background: #ffffff;
    line-height: 1.6;
}


img {
    width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button,
input,
textarea {
    font-family: inherit;
}


.container {
    width: min(1200px, 90%);
    margin: auto;
}


.section {
    padding: 75px 0;
}



/* =========================================
   CORES
========================================= */

:root {

    --green: #009b55;

    --green-dark: #007c47;

    --blue: #06284b;

    --blue-light: #0b355f;

    --text: #17243a;

    --gray: #f5f7f8;

}



/* =========================================
   HEADER
========================================= */

.header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 72px;

    background: #ffffff;

    z-index: 1000;

    box-shadow: 0 2px 15px rgba(0,0,0,.08);

}


.header-container {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    display: flex;

    align-items: center;

    gap: 8px;

}


.logo-rl {

    font-size: 36px;

    font-weight: 800;

    font-style: italic;

    color: var(--green);

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo-text strong {

    color: var(--green);

    font-size: 14px;

}


.logo-text small {

    font-size: 9px;

    color: var(--blue);

    letter-spacing: 1px;

}


.nav {

    display: flex;

    align-items: center;

    gap: 25px;

}


.nav a {

    font-size: 11px;

    font-weight: 600;

    color: var(--text);

    transition: .3s;

}


.nav a:hover,
.nav a.active {

    color: var(--green);

}


.nav i {

    font-size: 8px;

}


.btn-header {

    background: var(--green);

    color: #ffffff !important;

    padding: 12px 20px;

    border-radius: 20px;

}


.menu-toggle {

    display: none;

    background: none;

    border: 0;

    font-size: 25px;

    color: var(--blue);

}



/* =========================================
   HERO
========================================= */

.hero {

    min-height: 510px;

    margin-top: 72px;

    position: relative;

    overflow: hidden;

    background: var(--blue);

}


.hero-background {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(2,31,59,.98) 0%,
            rgba(2,31,59,.94) 35%,
            rgba(2,31,59,.25) 70%
        ),

        url('../images/hero.png')
        center / cover no-repeat;

}


.hero-container {

    position: relative;

    min-height: 510px;

    display: flex;

    align-items: center;

}


.hero-content {

    max-width: 560px;

    color: white;

}


.hero h1 {

    font-size: 40px;

    line-height: 1.25;

    margin-bottom: 22px;

}


.hero h1 span {

    display: block;

    color: #15bd68;

}


.hero p {

    max-width: 480px;

    font-size: 14px;

    margin-bottom: 25px;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 20px;

    border-radius: 4px;

    font-size: 11px;

    font-weight: 600;

    border: none;

    cursor: pointer;

    transition: .3s;

}


.btn-green {

    background: var(--green);

    color: white;

}


.btn-green:hover {

    background: var(--green-dark);

    transform: translateY(-2px);

}


.btn-outline {

    border: 1px solid rgba(255,255,255,.7);

    color: white;

}


.btn-outline:hover {

    background: white;

    color: var(--blue);

}


.hero-features {

    display: flex;

    gap: 25px;

    margin-top: 25px;

    flex-wrap: wrap;

}


.hero-features div {

    display: flex;

    gap: 7px;

    align-items: center;

    font-size: 10px;

}


.hero-features i {

    color: #b6c6d5;

}


.hero-side {

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.hero-side-item {

    width: 75px;

    height: 75px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.6);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 4px;

    backdrop-filter: blur(5px);

}


.hero-side-item i {

    font-size: 20px;

}


.hero-side-item span {

    font-size: 10px;

}



/* =========================================
   STATS
========================================= */

.stats {

    background: white;

    box-shadow: 0 2px 10px rgba(0,0,0,.08);

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.stat {

    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border-right: 1px solid #ddd;

}


.stat:last-child {

    border: none;

}


.stat > i {

    color: var(--green);

    font-size: 25px;

}


.stat strong {

    display: block;

    color: var(--green);

    font-size: 20px;

}


.stat span {

    display: block;

    font-size: 10px;

}



/* =========================================
   TITULOS
========================================= */

.section-title {

    text-align: center;

    margin-bottom: 40px;

}


.section-title h2 {

    font-size: 18px;

    color: var(--blue);

}


.section-title span {

    display: block;

    width: 45px;

    height: 3px;

    background: var(--green);

    margin: 8px auto;

}


.section-title.white h2 {

    color: white;

}



/* =========================================
   SOLUTIONS
========================================= */

.solutions {

    background: white;

}


.solutions-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}


.solution-card {

    padding: 25px;

    border: 1px solid #e5e8eb;

    border-radius: 5px;

    box-shadow: 0 5px 15px rgba(0,0,0,.05);

    transition: .3s;

}


.solution-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0,0,0,.1);

}


.solution-icon {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--green);

    color: white;

    margin: 0 auto 20px;

}


.solution-icon.blue {

    background: var(--blue);

}


.solution-card h3 {

    text-align: center;

    font-size: 12px;

    margin-bottom: 15px;

}


.solution-card ul {

    padding-left: 15px;

    min-height: 170px;

}


.solution-card li {

    font-size: 9px;

    margin-bottom: 8px;

}


.solution-card > a {

    color: var(--green);

    font-size: 10px;

    font-weight: 700;

}



/* =========================================
   CASES
========================================= */

.cases {

    background: var(--blue);

}


.cases-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 12px;

}


.case-card {

    background: var(--blue-light);

    border-radius: 5px;

    overflow: hidden;

}


.case-card img {

    height: 120px;

    object-fit: cover;

}


.case-content {

    padding: 15px;

}


.case-content h3 {

    color: white;

    font-size: 10px;

    margin-bottom: 8px;

}


.case-content p {

    color: #b8c7d7;

    font-size: 9px;

    min-height: 50px;

}


.case-content a {

    color: #50d989;

    font-size: 9px;

}



/* =========================================
   ARTIGOS
========================================= */

.articles-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 12px;

}


.article-card {

    border: 1px solid #ddd;

    border-radius: 4px;

    overflow: hidden;

    box-shadow: 0 3px 10px rgba(0,0,0,.05);

}


.article-card img {

    height: 115px;

    object-fit: cover;

}


.article-content {

    padding: 12px;

}


.article-content small {

    color: var(--green);

    font-size: 7px;

    font-weight: 700;

}


.article-content span {

    float: right;

    font-size: 7px;

    color: #999;

}


.article-content h3 {

    clear: both;

    font-size: 10px;

    line-height: 1.5;

    margin: 12px 0;

}


.article-content a {

    color: var(--green);

    font-size: 9px;

    font-weight: 600;

}



/* =========================================
   ROBERTO
========================================= */

.roberto {

    background: var(--green);

    color: white;

}


.roberto-container {

    display: grid;

    grid-template-columns:
        180px 1fr 1fr;

    gap: 35px;

    align-items: center;

}


.roberto-image {

    align-self: end;

}


.roberto-image img {

    max-height: 300px;

    object-fit: contain;

}


.eyebrow {

    font-size: 10px;

    font-weight: 700;

}


.roberto-text h2 {

    font-size: 22px;

    line-height: 1.3;

    margin: 8px 0 15px;

}


.roberto-text p {

    font-size: 11px;

    margin-bottom: 20px;

}


.btn-white {

    background: white;

    color: var(--green);

}


.roberto-list {

    border-left: 1px solid rgba(255,255,255,.3);

    padding-left: 30px;

}


.roberto-list div {

    display: flex;

    gap: 15px;

    align-items: center;

    margin-bottom: 15px;

    font-size: 10px;

}


.roberto-list i {

    width: 20px;

}



/* =========================================
   CONTATO
========================================= */

.contact {

    padding: 70px 0;

    background: #f7f8f9;

}


.contact-grid {

    display: flex;
/* 
    grid-template-columns:
        1.2fr .8fr 1.5fr; */

    gap: 40px;

}


.contact-intro h2 {

    color: var(--blue);

    font-size: 22px;

    line-height: 1.35;

}


.contact-intro p {

    font-size: 11px;

    margin: 15px 0 20px;

}


.contact-intro .btn {

    display: flex;

    margin-bottom: 10px;

    width: 230px;

}


.whatsapp {

    background: #20c76a;

    color: white;

}


.btn-dark {

    background: var(--blue);

    color: white;

}


.contact-item {

    display: flex;

    gap: 15px;

    margin-bottom: 20px;

}


.contact-item > i {

    color: var(--green);

    font-size: 18px;

}


.contact-item strong,
.contact-item span {

    display: block;

}


.contact-item strong {

    font-size: 10px;

}


.contact-item span {

    font-size: 9px;

    color: #555;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

}


.contact-form input,
.contact-form textarea {

    width: 100%;

    padding: 13px;

    border: 1px solid #ddd;

    margin-bottom: 10px;

    outline: none;

    font-size: 10px;

}


.contact-form input:focus,
.contact-form textarea:focus {

    border-color: var(--green);

}


.contact-form button {

    width: 100%;

}



/* =========================================
   FOOTER
========================================= */

.footer {

    background: var(--blue);

    color: white;

    padding-top: 55px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1.2fr 1.3fr 1.2fr;

    gap: 30px;

    padding-bottom: 40px;

}


.footer-logo .logo-text strong {

    color: white;

}


.footer-logo .logo-text small {

    color: white;

}


.footer-brand p {

    color: #aebdca;

    font-size: 10px;

    margin: 15px 0;

}


.social {

    display: flex;

    gap: 10px;

}


.social a {

    width: 28px;

    height: 28px;

    border: 1px solid #64798d;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 11px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.footer-column h4 {

    font-size: 11px;

    margin-bottom: 10px;

}


.footer-column a,
.footer-column p {

    color: #aebdca;

    font-size: 9px;

}


.footer-column p {

    display: flex;

    gap: 8px;

}


.newsletter input {

    background: #ffffff;

    border: none;

    padding: 10px;

    font-size: 9px;

}


.newsletter button {

    align-self: flex-start;

    background: var(--green);

    color: white;

    border: none;

    padding: 10px 15px;

    font-size: 9px;

}


.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.1);

    padding: 15px 0;

}


.footer-bottom .container {

    display: flex;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom span,
.footer-bottom a {

    color: #8496a8;

    font-size: 8px;

}


.footer-bottom div {

    display: flex;

    gap: 20px;

}



/* =========================================
   RESPONSIVO TABLET
========================================= */

@media (max-width: 1000px) {


    .nav {

        position: fixed;

        top: 72px;

        right: -100%;

        width: 280px;

        height: calc(100vh - 72px);

        background: white;

        flex-direction: column;

        align-items: flex-start;

        padding: 30px;

        transition: .3s;

        box-shadow: -5px 0 15px rgba(0,0,0,.1);

    }


    .nav.active {

        right: 0;

    }


    .menu-toggle {

        display: block;

    }


    .hero h1 {

        font-size: 34px;

    }


    .solutions-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .cases-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .articles-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .roberto-container {

        grid-template-columns:
            180px 1fr;

    }


    .roberto-list {

        grid-column: 2;

    }


    .contact-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .contact-form {

        grid-column: 1 / -1;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}



/* =========================================
   RESPONSIVO MOBILE
========================================= */

@media (max-width: 600px) {


    .container {

        width: 90%;

    }


    .hero {

        min-height: 650px;

    }


    .hero-container {

        min-height: 650px;

        align-items: flex-start;

        padding-top: 70px;

    }


    .hero h1 {

        font-size: 30px;

    }


    .hero-side {

        position: absolute;

        top: auto;

        bottom: 30px;

        left: 0;

        right: auto;

        transform: none;

        flex-direction: row;

    }


    .hero-side-item {

        width: 65px;

        height: 65px;

    }


    .hero-features {

        flex-direction: column;

        gap: 10px;

    }


    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .stat {

        border-bottom: 1px solid #ddd;

    }


    .solutions-grid,
    .cases-grid,
    .articles-grid {

        grid-template-columns: 1fr;

    }


    .roberto-container {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .roberto-image {

        max-width: 220px;

        margin: auto;

    }


    .roberto-list {

        grid-column: auto;

        border-left: none;

        padding-left: 0;

        text-align: left;

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }


    .contact-form {

        grid-column: auto;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-bottom .container {

        flex-direction: column;

    }

}

/* =========================================
   ANIMAÇÃO
========================================= */

.solution-card,
.case-card,
.article-card {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .6s ease,
        transform .6s ease;

}


.solution-card.visible,
.case-card.visible,
.article-card.visible {

    opacity: 1;

    transform: translateY(0);

}


.header.scrolled {

    box-shadow:
        0 4px 20px
        rgba(0,0,0,.12);

}