/* =====================================================
   SUPPLY GLOBAL
   SITE INSTITUCIONAL
   ===================================================== */


/* =====================================================
   VARIÁVEIS
   ===================================================== */

:root {

    --petroleum: #0c3342;
    --petroleum-dark: #071f29;
    --petroleum-mid: #164b5f;

    --gold: #c09a52;
    --gold-light: #d6bb82;

    --white: #ffffff;
    --off-white: #f7f6f2;
    --light-gray: #edf0f1;

    --gray: #697279;
    --dark: #182126;

    --border: rgba(12, 51, 66, 0.12);

    --shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);

}


/* =====================================================
   RESET
   ===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--dark);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font-family: inherit;

}


.container {

    width: min(1180px, 90%);

    margin: auto;

}


/* =====================================================
   HEADER
   ===================================================== */

.header {

    width: 100%;

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(7, 31, 41, 0.97);

    backdrop-filter: blur(12px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

}


.navbar {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.brand {

    display: flex;

    align-items: center;

    gap: 13px;

}


.brand-logo {

    width: 47px;

    height: 47px;

    object-fit: contain;

}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}


.brand-name {

    color: var(--white);

    font-size: 20px;

    font-weight: 700;

}


.brand-name strong {

    color: var(--gold-light);

}


.brand-tagline {

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 10px;

    letter-spacing: 0.7px;

    text-transform: uppercase;

    margin-top: 5px;

}


.nav {

    display: flex;

    align-items: center;

    gap: 29px;

}


.nav a {

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 14px;

    transition: 0.25s;

}


.nav a:hover {

    color: var(--white);

}


.nav-contact {

    border:
        1px solid var(--gold);

    color:
        var(--gold-light) !important;

    padding:
        9px 18px;

    border-radius: 2px;

}


.nav-contact:hover {

    background: var(--gold);

    color:
        var(--petroleum-dark) !important;

}


.menu-toggle {

    display: none;

    background: none;

    border: 0;

    color: var(--white);

    font-size: 27px;

    cursor: pointer;

}


.back-link {

    color: var(--gold-light);

    font-size: 14px;

}


/* =====================================================
   HERO
   ===================================================== */

.hero {

    min-height:
        calc(100vh - 78px);

    position: relative;

    background:

        radial-gradient(
            circle at 75% 25%,
            rgba(192, 154, 82, 0.12),
            transparent 25%
        ),

        linear-gradient(
            120deg,
            #071f29,
            #0c3342 60%,
            #102f3a
        );

    display: flex;

    align-items: center;

    color: var(--white);

    overflow: hidden;

}


.hero::after {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    border:
        1px solid rgba(255,255,255,0.04);

    border-radius: 50%;

    right: -300px;
    top: -280px;

}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.3fr 0.7fr;

    align-items: center;

    gap: 70px;

    position: relative;

    z-index: 2;

    padding:
        95px 0;

}


.eyebrow {

    display: inline-block;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2.2px;

    margin-bottom: 22px;

}


.eyebrow.dark {

    color: var(--petroleum-mid);

}


.hero h1 {

    font-size:
        clamp(43px, 5.3vw, 74px);

    line-height: 1.03;

    max-width: 820px;

    letter-spacing: -2.5px;

}


.hero h1 span {

    color: var(--gold-light);

    display: block;

}


.hero-description {

    color:
        rgba(255,255,255,0.72);

    font-size: 18px;

    max-width: 700px;

    margin:
        30px 0 38px;

}


.hero-buttons {

    display: flex;

    gap: 16px;

    flex-wrap: wrap;

}


.btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-height: 50px;

    padding:
        0 27px;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 0.2px;

    transition: 0.25s;

    cursor: pointer;

}


.btn-primary {

    background: var(--gold);

    color: var(--petroleum-dark);

}


.btn-primary:hover {

    background: var(--gold-light);

    transform:
        translateY(-2px);

}


.btn-outline {

    color: var(--white);

    border:
        1px solid rgba(255,255,255,0.38);

}


.btn-outline:hover {

    border-color: var(--white);

}


.btn-gold {

    background: var(--gold);

    color: var(--petroleum-dark);

}


.hero-points {

    display: flex;

    gap: 28px;

    flex-wrap: wrap;

    margin-top: 48px;

    color:
        rgba(255,255,255,0.48);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1.3px;

}


.hero-logo-box {

    width: min(360px, 100%);

    aspect-ratio: 1;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(192,154,82,0.23);

    border-radius: 50%;

    background:
        rgba(255,255,255,0.03);

    box-shadow:
        inset 0 0 80px
        rgba(192,154,82,0.04);

}


.hero-logo-box img {

    width: 66%;

}


/* =====================================================
   POSITIONING STRIP
   ===================================================== */

.positioning-strip {

    background: var(--off-white);

    border-bottom:
        1px solid var(--border);

}


.positioning-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.positioning-grid > div {

    padding:
        27px 25px;

    border-right:
        1px solid var(--border);

}


.positioning-grid > div:first-child {

    border-left:
        1px solid var(--border);

}


.positioning-grid strong {

    display: block;

    color: var(--petroleum);

    font-size: 14px;

}


.positioning-grid span {

    display: block;

    color: var(--gray);

    font-size: 12px;

    margin-top: 3px;

}


/* =====================================================
   SEÇÕES
   ===================================================== */

.section {

    padding:
        105px 0;

}


.section-dark {

    background: var(--petroleum-dark);

    color: var(--white);

}


.section-heading {

    max-width: 800px;

    margin-bottom: 55px;

}


.section-heading h2 {

    color: var(--petroleum-dark);

    font-size:
        clamp(34px, 4vw, 49px);

    line-height: 1.12;

    letter-spacing: -1.3px;

}


.section-heading p {

    color: var(--gray);

    max-width: 700px;

    margin-top: 20px;

    font-size: 17px;

}


.section-heading.light h2 {

    color: var(--white);

}


.section-heading.light p {

    color:
        rgba(255,255,255,0.65);

}


/* =====================================================
   CARDS
   ===================================================== */

.cards-grid {

    display: grid;

    gap: 20px;

}


.cards-grid.four {

    grid-template-columns:
        repeat(4, 1fr);

}


.card {

    border:
        1px solid var(--border);

    padding:
        36px 28px;

    transition: 0.25s;

}


.card:hover {

    box-shadow: var(--shadow);

    transform:
        translateY(-5px);

}


.card-number {

    color: var(--gold);

    font-size: 12px;

    font-weight: bold;

}


.card h3 {

    color: var(--petroleum-dark);

    font-size: 20px;

    line-height: 1.3;

    margin:
        18px 0 15px;

}


.card p {

    color: var(--gray);

    font-size: 14px;

}


/* =====================================================
   PÚBLICO
   ===================================================== */

.audience-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.audience-card {

    border-top:
        2px solid var(--gold);

    padding:
        32px;

    background:
        rgba(255,255,255,0.035);

}


.audience-card > span {

    color: var(--gold-light);

    font-size: 12px;

}


.audience-card h3 {

    font-size: 22px;

    margin:
        20px 0 12px;

}


.audience-card p {

    color:
        rgba(255,255,255,0.63);

    font-size: 14px;

}


/* =====================================================
   SERVIÇOS
   ===================================================== */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.service-card {

    background: var(--off-white);

    padding:
        34px;

    border-top:
        3px solid var(--petroleum);

    transition: 0.25s;

}


.service-card:hover {

    transform:
        translateY(-5px);

    box-shadow: var(--shadow);

}


.service-number {

    color: var(--gold);

    font-size: 12px;

    font-weight: bold;

    margin-bottom: 22px;

}


.service-card h3 {

    color: var(--petroleum-dark);

    font-size: 23px;

    margin-bottom: 10px;

}


.service-card > p {

    color: var(--gray);

    font-size: 14px;

    min-height: 68px;

}


.service-card ul {

    list-style: none;

    margin-top: 24px;

}


.service-card li {

    font-size: 13px;

    color: #49555b;

    padding:
        7px 0;

    border-bottom:
        1px solid
        rgba(12,51,66,0.08);

}


/* =====================================================
   REAL WORLD
   ===================================================== */

.real-world {

    background: var(--petroleum);

    color: var(--white);

}


.real-world-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    min-height: 620px;

}


.real-world-image {

    min-height: 620px;

}


.real-world-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.real-world-content {

    padding:
        90px 80px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.real-world-content h2 {

    font-size:
        clamp(35px, 4vw, 50px);

    line-height: 1.1;

    margin-bottom: 27px;

}


.real-world-content p {

    color:
        rgba(255,255,255,0.70);

    font-size: 16px;

    margin-bottom: 18px;

}


/* =====================================================
   METODOLOGIA
   ===================================================== */

.methodology {

    background: var(--off-white);

}


.method-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 10px;

}


.method-item {

    background: var(--white);

    padding:
        30px 23px;

    border-top:
        3px solid var(--gold);

}


.method-item > span {

    width: 42px;
    height: 42px;

    background: var(--petroleum);

    color: var(--white);

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: bold;

    margin-bottom: 24px;

}


.method-item h3 {

    color: var(--petroleum-dark);

    font-size: 18px;

    margin-bottom: 12px;

}


.method-item p {

    color: var(--gray);

    font-size: 13px;

}


.diagnosis-cta {

    margin-top: 65px;

    background: var(--white);

    padding: 42px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 45px;

    border-left:
        4px solid var(--gold);

}


.diagnosis-cta h3 {

    color: var(--petroleum-dark);

    font-size: 25px;

    line-height: 1.25;

}


.diagnosis-cta p {

    color: var(--gray);

    margin-top: 9px;

}


.disabled-link {

    opacity: 0.85;

}


/* =====================================================
   SOBRE
   ===================================================== */

.about-grid {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    align-items: center;

    gap: 75px;

}


.about-content h2 {

    font-size:
        clamp(40px, 5vw, 58px);

    line-height: 1;

}


.about-content h3 {

    color: var(--gold-light);

    font-size: 17px;

    margin:
        12px 0 28px;

}


.about-content p {

    color:
        rgba(255,255,255,0.68);

    margin-bottom: 18px;

}


.about-stats {

    margin-top: 43px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

}


.about-stats > div {

    border-top:
        1px solid
        rgba(192,154,82,0.55);

    padding-top: 16px;

}


.about-stats strong {

    display: block;

    color: var(--gold-light);

    font-size: 28px;

}


.about-stats span {

    color:
        rgba(255,255,255,0.48);

    font-size: 11px;

}


.about-photo {

    max-width: 430px;

    margin-left: auto;

}


.about-photo img {

    width: 100%;

}


/* =====================================================
   DIFERENCIAIS
   ===================================================== */

.difference-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid var(--border);

    border-left:
        1px solid var(--border);

}


.difference-item {

    padding:
        32px;

    border-right:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}


.difference-item strong {

    display: block;

    color: var(--petroleum);

    font-size: 18px;

}


.difference-item span {

    display: block;

    color: var(--gray);

    font-size: 13px;

    margin-top: 8px;

}


/* =====================================================
   CTA FINAL
   ===================================================== */

.final-cta {

    background:
        linear-gradient(
            130deg,
            var(--petroleum-dark),
            var(--petroleum)
        );

    color: var(--white);

    padding:
        110px 0;

    text-align: center;

}


.final-cta-content {

    max-width: 780px;

}


.cta-logo {

    width: 90px;

    margin:
        0 auto 27px;

}


.final-cta h2 {

    font-size:
        clamp(37px, 4.7vw, 56px);

    line-height: 1.1;

}


.final-cta p {

    color:
        rgba(255,255,255,0.69);

    font-size: 17px;

    margin:
        25px auto 34px;

    max-width: 680px;

}


/* =====================================================
   FOOTER
   ===================================================== */

.footer {

    background: #05171e;

    color:
        rgba(255,255,255,0.62);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr 0.7fr 1fr;

    gap: 50px;

    padding:
        55px 0;

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 15px;

}


.footer-brand img {

    width: 55px;

}


.footer-brand strong {

    color: var(--white);

    display: block;

    font-size: 17px;

}


.footer-brand span {

    display: block;

    font-size: 11px;

    max-width: 250px;

    margin-top: 4px;

}


.footer-links {

    display: flex;

    flex-direction: column;

    gap: 8px;

    font-size: 13px;

}


.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 8px;

    font-size: 13px;

}


.footer-contact a:first-child {

    color: var(--gold-light);

}


.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,0.07);

}


.footer-bottom .container {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 11px;

}


/* =====================================================
   CONTATOS
   ===================================================== */

.contact-page {

    background: var(--petroleum-dark);

}


.contact-main {

    min-height:
        calc(100vh - 150px);

}


.contact-hero {

    padding:
        85px 0 100px;

    background:

        radial-gradient(
            circle at 15% 35%,
            rgba(192,154,82,0.10),
            transparent 24%
        ),

        var(--petroleum-dark);

    color: var(--white);

}


.contact-layout {

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 90px;

}


.contact-intro h1 {

    font-size:
        clamp(44px, 5vw, 66px);

    line-height: 1.03;

    margin-bottom: 25px;

}


.contact-intro > p {

    color:
        rgba(255,255,255,0.64);

    margin-bottom: 15px;

    max-width: 520px;

}


.contact-logo-large {

    width: 190px;

    margin-top: 55px;

    opacity: 0.8;

}


.contact-panel {

    background: var(--off-white);

    color: var(--dark);

    padding:
        47px;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.18);

}


.contact-label {

    color: var(--gold);

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 2px;

}


.contact-panel h2 {

    color: var(--petroleum-dark);

    font-size: 31px;

    margin-top: 4px;

}


.contact-role {

    color: var(--gray);

    font-size: 13px;

    margin-bottom: 30px;

}


.contact-option {

    display: flex;

    align-items: center;

    gap: 17px;

    padding:
        17px 0;

    border-bottom:
        1px solid var(--border);

    transition: 0.2s;

}


.contact-option:hover {

    padding-left: 7px;

}


.contact-icon {

    min-width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--gold);

    color: var(--petroleum);

    font-weight: bold;

}


.contact-option span {

    display: block;

    color: var(--gray);

    font-size: 11px;

}


.contact-option strong {

    display: block;

    color: var(--petroleum-dark);

    font-size: 14px;

}


.contact-option small {

    display: block;

    color: #92999d;

    font-size: 10px;

}


.whatsapp .contact-icon {

    background: var(--petroleum);

    color: var(--white);

    border-color: var(--petroleum);

}


.contact-location,
.contact-site {

    margin-top: 24px;

}


.contact-location span,
.contact-site span {

    display: block;

    color: var(--gray);

    font-size: 10px;

    letter-spacing: 1px;

}


.contact-location strong,
.contact-site strong {

    color: var(--petroleum-dark);

    font-size: 14px;

}


.contact-diagnosis {

    background: var(--off-white);

    padding:
        70px 0;

}


.diagnosis-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;

}


.diagnosis-box h2 {

    color: var(--petroleum-dark);

    font-size: 31px;

}


.diagnosis-box p {

    color: var(--gray);

    max-width: 700px;

    margin-top: 9px;

}


.footer-simple {

    padding:
        30px 0;

    font-size: 11px;

}


/* =====================================================
   RESPONSIVIDADE
   ===================================================== */

@media
(max-width: 1000px) {

    .hero-grid {

        grid-template-columns: 1fr;

    }


    .hero-brand {

        display: none;

    }


    .cards-grid.four {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .method-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .real-world-grid {

        grid-template-columns: 1fr;

    }


    .real-world-image {

        min-height: 500px;

    }


    .about-grid {

        grid-template-columns: 1fr;

    }


    .about-photo {

        margin:
            30px auto 0;

    }


    .contact-layout {

        grid-template-columns: 1fr;

        gap: 55px;

    }

}


@media
(max-width: 780px) {


    .navbar {

        min-height: 70px;

    }


    .brand-tagline {

        display: none;

    }


    .menu-toggle {

        display: block;

    }


    .nav {

        display: none;

        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        padding: 25px 5%;

        background:
            var(--petroleum-dark);

        flex-direction: column;

        align-items: flex-start;

        border-top:
            1px solid
            rgba(255,255,255,0.06);

    }


    .nav.open {

        display: flex;

    }


    .hero {

        min-height: auto;

    }


    .hero-grid {

        padding:
            85px 0 75px;

    }


    .hero h1 {

        letter-spacing: -1.3px;

    }


    .positioning-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .cards-grid.four,

    .audience-grid,
    .services-grid,

    .difference-grid {

        grid-template-columns: 1fr;

    }


    .method-grid {

        grid-template-columns: 1fr;

    }


    .diagnosis-cta,
    .diagnosis-box {

        flex-direction: column;

        align-items: flex-start;

    }


    .real-world-content {

        padding:
            65px 25px;

    }


    .about-stats {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-bottom .container {

        flex-direction: column;

        justify-content: center;

        gap: 5px;

        text-align: center;

        padding:
            15px 0;

    }


    .contact-panel {

        padding:
            31px 23px;

    }

}


@media
(max-width: 520px) {


    .section {

        padding:
            75px 0;

    }


    .positioning-grid {

        grid-template-columns: 1fr;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .btn {

        width: 100%;

    }


    .hero-points {

        gap: 13px 20px;

    }


    .contact-option strong {

        font-size: 12px;

    }

}


/* =====================================================
   SELETOR DE IDIOMA
   ===================================================== */

.language-switcher {

    position: relative;

    display: flex;

    align-items: center;

}


.language-current {

    min-width: 54px;

    height: 38px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    background: transparent;

    border:
        1px solid rgba(255,255,255,0.22);

    color: var(--white);

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 0.8px;

    cursor: pointer;

    transition: 0.25s;

}


.language-current:hover,
.language-current[aria-expanded="true"] {

    border-color: var(--gold);

    color: var(--gold-light);

}


.language-current span {

    font-size: 10px;

    line-height: 1;

}


.language-menu {

    display: none;

    position: absolute;

    top: calc(100% + 8px);

    right: 0;

    min-width: 72px;

    padding: 6px;

    background: var(--petroleum-dark);

    border:
        1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.20);

    z-index: 1100;

}


.language-menu.open {

    display: block;

}


.language-menu button {

    width: 100%;

    min-height: 34px;

    padding: 0 10px;

    background: transparent;

    border: 0;

    color:
        rgba(255,255,255,0.72);

    text-align: left;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 0.7px;

    cursor: pointer;

    transition: 0.2s;

}


.language-menu button:hover,
.language-menu button.active {

    background:
        rgba(255,255,255,0.06);

    color: var(--gold-light);

}


.header-actions {

    display: flex;

    align-items: center;

    gap: 22px;

}


/* =====================================================
   AJUSTES RESPONSIVOS DO SELETOR DE IDIOMA
   ===================================================== */

@media
(max-width: 780px) {

    .nav .language-switcher {

        width: 100%;

        margin-top: 8px;

        padding-top: 18px;

        border-top:
            1px solid rgba(255,255,255,0.08);

    }


    .nav .language-current {

        min-width: 70px;

    }


    .nav .language-menu {

        position: static;

        width: 100%;

        margin-top: 8px;

        box-shadow: none;

    }


    .header-actions {

        gap: 12px;

    }

}


@media
(max-width: 520px) {

    .header-actions {

        gap: 9px;

    }


    .back-link {

        font-size: 12px;

    }


    .header-actions .language-current {

        min-width: 48px;

        height: 34px;

        font-size: 11px;

    }

}
