:root {
    --blue: #315cf4;
    --purple: #895be4;
    --purple-dark: #563298;
    --pink: #ca4fd8;

    --text: #1b1b23;
    --gray: #656473;

    --white: #ffffff;
    --border: #e1dced;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}


body {
    font-family: "Inter", Arial, sans-serif;

    color: var(--text);

    background: #ffffff;

    overflow-x: hidden;

    font-size: 16px;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
}


button,
input,
textarea {
    font-family: inherit;
}


.section {
    position: relative;

    overflow: hidden;
}


.content-wrap {
    width: min(1200px, calc(100% - 56px));

    margin: 0 auto;

    position: relative;

    z-index: 5;
}


/* 
   NAVBAR
 */

.site-header {
    width: 100%;
    height: 82px;

    position: sticky;

    top: 0;

    z-index: 1000;

    display: grid;

    grid-template-columns:
        205px
        1fr
        115px;

    align-items: center;

    padding:
        0
        27px;

    background:
        rgba(255, 255, 255, 0.98);

    border-radius:
        0
        0
        10px
        10px;

    box-shadow:
        0
        3px
        8px
        rgba(0, 0, 0, 0.15);
}


.brand {
    display: flex;

    align-items: center;

    text-decoration: none;
}


.brand img {
    width: 158px;

    height: auto;
}


.main-nav {
    justify-self: center;

    display: flex;

    align-items: center;

    gap: 28px;
}


.nav-link {
    position: relative;

    padding:
        31px
        0
        27px;

    color: #3159dd;

    font-size: 16px;

    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 20px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #315cf4,
            #c550d8
        );

    transform: scaleX(0);

    transition:
        transform
        0.2s ease;
}


.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


.external-arrow {
    color: #94949d;

    font-size: 12px;
}


.social-nav {
    justify-self: end;

    display: flex;

    align-items: center;

    gap: 18px;
}


.social-nav a {
    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    color: #cf50df;

    font-size: 31px;

    text-decoration: none;

    transition:
        transform
        0.2s ease;
}


.social-nav a:hover {
    transform:
        translateY(-2px)
        scale(1.05);
}


.menu-toggle {
    display: none;

    border: 0;

    background: transparent;

    color: #6c48cb;

    font-size: 27px;

    cursor: pointer;
}


/* 
   HERO
 */

.hero {
    width: 100%;

    height:
        calc(100vh - 82px);

    min-height: 590px;

    max-height: 720px;

    position: relative;

    background-image:
        url("assets/banner.png");

    background-size: cover;

    background-position:
        center center;

    background-repeat: no-repeat;
}


.hero-inner {
    width:
        min(
            1200px,
            calc(100% - 56px)
        );

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;
}


.hero-content {
    width: 48%;

    max-width: 540px;
}


.hero h1 {
    margin-bottom: 20px;

    color: #101014;

    font-size:
        clamp(
            46px,
            4.3vw,
            62px
        );

    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -2px;

    text-align: center;
}


.hero h1 span {
    background:
        linear-gradient(
            90deg,
            #765ce7,
            #ad55d5
        );

    background-clip: text;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


.hero p {
    max-width: 485px;

    margin: 0 auto;

    color: #26262d;

    font-size: 19px;

    line-height: 1.4;

    text-align: center;
}


/* 
   SOBRE
 */

.about {
    min-height:
        calc(100vh - 82px);

    padding:
        52px
        0
        170px;

    background:
        #ffffff;
}


.about-grid {
    display: grid;

    grid-template-columns:
        1.08fr
        0.92fr;

    align-items: center;

    gap: 70px;
}


/* 
   MAPA
 */

.map-wrap {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;
}


.map-container {
    width: 100%;

    max-width: 580px;

    position: relative;

    margin: 0 auto;
}


.map-image {
    width: 100%;

    height: auto;

    object-fit: contain;
}


/* 
   TEXTO SOBRE
 */

.about-copy {
    max-width: 535px;
}


.eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: #995ade;

    font-size: 28px;

    font-weight: 500;
}


.about-copy p {
    color: #1d1c23;

    font-size: 19px;

    line-height: 1.4;
}


/*
   CARDS SOBRE
 */

.about-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 36px;
}


.about-card {
    min-height: 145px;

    display: grid;

    grid-template-columns:
        78px
        1fr;

    align-items: center;

    gap: 17px;

    padding:
        20px
        21px;

    border:
        1px solid #d9d3e9;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f7f4fd
        );

    box-shadow:
        0
        7px
        20px
        rgba(58, 45, 104, 0.08);
}


.card-icon {
    width: 70px;

    height: 70px;

    display: grid;

    place-items: center;

    border:
        1px solid #dfd9f1;

    border-radius: 50%;

    color: #7058df;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f0ebff
        );

    font-size: 29px;
}


.about-card h3 {
    color: #553294;

    font-size: 16px;

    line-height: 1.25;
}


.mini-line {
    width: 52px;

    height: 2px;

    display: block;

    margin:
        10px
        0;

    background:
        linear-gradient(
            90deg,
            #725bdf,
            #c84dd6
        );
}


.about-card p {
    color: #2b2932;

    font-size: 14px;

    line-height: 1.45;
}


/* 
   ONDAS PNG
 */



.section-wave {
    position: absolute;

    z-index: 1;

    left: 0;

    bottom: -6px;

    width: 100%;

    height: 155px;

    object-fit: fill;

    object-position: center bottom;

    opacity: 0.62;

    pointer-events: none;

    user-select: none;
}


.wave-one {
    transform:
        scaleX(1.02);
}


.wave-two {
    height: 165px;

    opacity: 0.58;

    transform:
        scaleX(1.03);
}


/* 
   DEMANDAS ESPECIAIS
 */

.demands {
    min-height:
        calc(100vh - 82px);

    display: flex;

    align-items: center;

    padding:
        70px
        0
        175px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #faf9ff
        );
}


.demand-card {
    width: 100%;

    padding:
        38px
        40px;

    border:
        1px solid #e1dcec;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.98),
            rgba(248,246,253,0.98)
        );

    box-shadow:
        0
        8px
        27px
        rgba(54, 43, 95, 0.09);
}


.eyebrow-small {
    display: inline-block;

    padding-bottom: 5px;

    color: #573297;

    border-bottom:
        2px solid #9560dd;

    font-size: 17px;

    font-weight: 700;
}


.demand-title {
    margin:
        10px
        0
        31px;

    color: #101015;

    font-size:
        clamp(
            36px,
            3.3vw,
            46px
        );

    line-height: 1;

    letter-spacing: -1.5px;
}


.demand-title span {
    color: #8055d9;
}


.demand-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        0.72fr;

    gap: 30px;

    align-items: stretch;
}


.demand-column {
    padding-right: 28px;

    border-right:
        1px solid #e4dfeb;
}


.demand-first {
    display: grid;

    grid-template-columns:
        62px
        1fr;

    gap: 19px;
}


.demand-column p,
.demand-help p {
    color: #25242c;

    font-size: 16px;

    line-height: 1.55;
}


.demand-icon,
.headset-icon {
    width: 61px;

    height: 61px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border:
        1px solid #ded7f0;

    border-radius: 50%;

    color: #7655dc;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #efe9ff
        );

    font-size: 26px;
}


.demand-help {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 16px;
}


.btn-purple {
    margin-top: auto;

    padding:
        13px
        19px;

    border-radius: 6px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #8052d8,
            #6631bd
        );

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform
        0.2s ease;
}


.btn-purple:hover {
    transform:
        translateY(-1px);
}


/* 
   CONTATO
*/

.contact {
    min-height:
        calc(100vh - 82px);

    padding:
        30px
        0
        175px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fcfbff
        );
}


/* 
   ÉTICA
*/

.ethics-card {
    max-width: 900px;

    min-height: 120px;

    margin:
        0
        auto
        38px;

    padding:
        18px
        28px;

    display: grid;

    grid-template-columns:
        78px
        1fr
        auto;

    align-items: center;

    gap: 20px;

    border:
        1px solid #ddd8eb;

    border-radius: 12px;

    background:
        linear-gradient(
            90deg,
            #f9f6ff,
            #ffffff
        );
}


.ethics-icon {
    width: 65px;

    height: 65px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #7054d8;

    background: #f3eeff;

    font-size: 31px;
}


.ethics-copy span {
    color: #7652bb;

    font-size: 14px;

    font-weight: 600;
}


.ethics-copy p {
    margin-top: 9px;

    color: #282630;

    font-size: 15px;

    line-height: 1.4;
}


.ethics-btn {
    padding:
        13px
        19px;

    border:
        1px solid #8959cd;

    border-radius: 5px;

    color: #6335b1;

    background: #ffffff;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;
}


.ethics-btn:hover {
    color: #ffffff;

    background: #7243c2;
}


/* 
   GRID CONTATO
 */

.contact-grid {
    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    gap: 60px;

    align-items: start;
}


.contact-title h2 {
    color: #4e3292;

    font-size: 38px;

    font-weight: 750;

    letter-spacing: -1px;
}


.contact-title > span {
    width: 54px;

    height: 3px;

    display: block;

    margin:
        9px
        0
        14px;

    background:
        linear-gradient(
            90deg,
            #4058e6,
            #bd4bd5
        );
}


.contact-title p {
    margin-bottom: 22px;

    color: #57545f;

    font-size: 16px;

    line-height: 1.4;
}


/* 
   CARDS CONTATO
 */

.contact-cards {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 13px;
}


.contact-card {
    min-height: 140px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding:
        21px
        22px;

    border:
        1px solid #e4dfeb;

    border-radius: 11px;

    background: #ffffff;
}


.contact-card.featured {
    grid-column:
        1 / -1;

    min-height: 150px;

    background:
        linear-gradient(
            135deg,
            #faf8ff,
            #ffffff
        );
}


.contact-big-icon {
    width: 82px;

    height: 82px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border:
        1px solid #e1daf3;

    border-radius: 50%;

    color: #7759df;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f0ebff
        );

    font-size: 33px;
}


.contact-card-copy {
    width: 100%;

    min-width: 0;
}


.contact-card h3 {
    margin-bottom: 14px;

    color: #573395;

    font-size: 15px;

    line-height: 1.3;
}


.contact-card a {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 10px;

    color: #56535f;

    font-size: 15px;

    font-weight: 500;

    line-height: 1.4;

    text-decoration: none;

    word-break: break-word;
}


.contact-card a i {
    width: 19px;

    flex-shrink: 0;

    color: #745ed8;

    font-size: 18px;

    text-align: center;
}


.contact-card a .fa-whatsapp {
    color: #1fb760;

    font-size: 20px;
}


/* 
   FORMULÁRIO
 */

.form-card {
    padding:
        31px
        34px
        32px;

    border:
        1px solid #e1dfe7;

    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0
        6px
        20px
        rgba(55, 43, 85, 0.06);
}


.form-card h2 {
    margin-bottom: 25px;

    color: #7650c1;

    font-size: 29px;
}


.form-card form {
    display: flex;

    flex-direction: column;
}


.form-card label {
    margin-bottom: 8px;

    color: #666371;

    font-size: 15px;

    font-weight: 500;
}


.form-card input,
.form-card textarea {
    width: 100%;

    border:
        1px solid #dcdae4;

    border-radius: 6px;

    outline: none;

    color: #27252e;

    background: #ffffff;

    font-size: 15px;
}


.form-card input {
    height: 50px;

    padding:
        0
        15px;

    margin-bottom: 21px;
}


.form-card textarea {
    min-height: 155px;

    padding:
        14px
        15px;

    margin-bottom: 21px;

    resize: vertical;
}


.form-card input:focus,
.form-card textarea:focus {
    border-color: #805ad8;

    box-shadow:
        0
        0
        0
        3px
        rgba(128, 90, 216, 0.09);
}


.form-card button {
    width: 100%;

    height: 49px;

    border: 0;

    border-radius: 5px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #315cf4,
            #c449ca
        );

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;
}


/* 
   FOOTER
 */

.site-footer {
    position: relative;

    z-index: 5;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #273e9e 0%,
            #4e3ca3 52%,
            #713ba5 100%
        );
}


.footer-container {
    width:
        min(
            1200px,
            calc(100% - 56px)
        );

    margin: 0 auto;

    padding:
        50px
        0
        40px;

    display: grid;

    grid-template-columns:
        1.35fr
        0.8fr
        1fr
        0.7fr;

    gap: 50px;
}


.footer-brand img {
    width: 175px;

    margin-bottom: 19px;

    padding: 8px;

    border-radius: 5px;

    background: #ffffff;
}


.footer-brand p {
    max-width: 320px;

    color:
        rgba(255,255,255,0.84);

    font-size: 14px;

    line-height: 1.65;
}


.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}


.footer-column h3 {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 17px;
}


.footer-column a {
    display: flex;

    align-items: center;

    gap: 8px;

    color:
        rgba(255,255,255,0.83);

    font-size: 14px;

    line-height: 1.4;

    text-decoration: none;
}


.footer-social-icons {
    display: flex;

    gap: 10px;
}


.footer-social-icons a {
    width: 43px;

    height: 43px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,0.25);

    border-radius: 9px;

    background:
        rgba(255,255,255,0.08);

    color: #ffffff;

    font-size: 23px;
}


.footer-social > span {
    color:
        rgba(255,255,255,0.78);

    font-size: 14px;
}


.footer-bottom {
    padding:
        19px
        20px;

    border-top:
        1px solid
        rgba(255,255,255,0.14);

    text-align: center;
}


.footer-bottom p {
    color:
        rgba(255,255,255,0.72);

    font-size: 13px;
}


/* 
   WHATSAPP FLUTUANTE

 */

.floating-whatsapp {
    position: fixed;

    right: 24px;

    bottom: 24px;

    z-index: 950;

    width: 59px;

    height: 59px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    background: #25d366;

    font-size: 32px;

    text-decoration: none;

    box-shadow:
        0
        8px
        24px
        rgba(0,0,0,0.22);
}


/*
   NOTEBOOK */

@media (max-width: 1120px) {

    .site-header {
        grid-template-columns:
            165px
            1fr
            105px;

        padding:
            0
            16px;
    }


    .brand img {
        width: 135px;
    }


    .main-nav {
        gap: 18px;
    }


    .nav-link {
        font-size: 14px;
    }


    .about-grid {
        gap: 35px;
    }


    .map-container {
        max-width: 530px;
    }


    .demand-grid {
        grid-template-columns:
            1fr
            1fr;
    }


    .demand-help {
        grid-column:
            1 / -1;

        flex-direction: row;

        align-items: center;

        padding-top: 22px;

        border-top:
            1px solid #e5e1ec;
    }


    .demand-help p {
        flex: 1;
    }


    .btn-purple {
        margin-top: 0;

        white-space: nowrap;
    }


    .footer-container {
        grid-template-columns:
            1.3fr
            1fr
            1fr;
    }


    .footer-social {
        grid-column:
            1 / -1;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    html {
        scroll-padding-top: 72px;
    }


    .content-wrap {
        width:
            calc(100% - 36px);
    }


    .site-header {
        height: 72px;

        grid-template-columns:
            1fr
            auto
            auto;
    }


    .brand img {
        width: 125px;
    }


    .menu-toggle {
        display: block;

        order: 2;

        margin-right: 5px;
    }


    .social-nav {
        order: 3;

        gap: 8px;
    }


    .social-nav a {
        width: 34px;

        height: 34px;

        font-size: 26px;
    }


    .main-nav {
        position: absolute;

        top: 72px;

        left: 12px;

        right: 12px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            8px
            18px
            17px;

        border-radius:
            0
            0
            12px
            12px;

        background: #ffffff;

        box-shadow:
            0
            10px
            24px
            rgba(0,0,0,0.12);
    }


    .main-nav.open {
        display: flex;
    }


    .nav-link {
        padding:
            14px
            5px;

        font-size: 15px;
    }


    .nav-link::after {
        bottom: 8px;
    }


    /* HERO */

    .hero {
        min-height: 600px;

        height:
            calc(100vh - 72px);

        background-position:
            60% center;
    }


    .hero::before {
        content: "";

        position: absolute;

        inset: 0;

        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,0.95) 0%,
                rgba(255,255,255,0.80) 47%,
                rgba(255,255,255,0.08) 82%
            );
    }


    .hero-inner {
        width:
            calc(100% - 36px);

        position: relative;

        z-index: 2;
    }


    .hero-content {
        width: 67%;

        max-width: 470px;
    }


    .hero h1 {
        text-align: left;

        font-size:
            clamp(
                40px,
                7vw,
                54px
            );
    }


    .hero p {
        margin: 0;

        text-align: left;

        font-size: 17px;
    }


    /* SOBRE */

    .about-grid {
        grid-template-columns:
            1fr;

        gap: 25px;
    }


    .map-container {
        max-width: 570px;
    }


    .about-copy {
        max-width: 650px;

        margin: 0 auto;

        text-align: center;
    }


    .about-copy p {
        font-size: 17px;
    }


    .about-cards {
        grid-template-columns:
            1fr;
    }


    /* ONDAS */

    .section-wave {
        height: 135px;
    }


    .wave-two {
        height: 145px;
    }


    /* DEMANDAS */

    .demand-card {
        padding:
            30px
            25px;
    }


    .demand-grid {
        grid-template-columns:
            1fr;
    }


    .demand-column {
        padding:
            0
            0
            24px;

        border-right: 0;

        border-bottom:
            1px solid #e4e0ec;
    }


    .demand-help {
        grid-column: auto;

        flex-direction: column;

        align-items: flex-start;

        border-top: 0;
    }


    /* CONTATO */

    .ethics-card {
        grid-template-columns:
            68px
            1fr;
    }


    .ethics-btn {
        grid-column:
            1 / -1;

        text-align: center;
    }


    .contact-grid {
        grid-template-columns:
            1fr;

        gap: 40px;
    }


    .footer-container {
        grid-template-columns:
            1fr
            1fr;
    }


    .footer-social {
        grid-column: auto;
    }

}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 580px) {

    .content-wrap {
        width:
            calc(100% - 28px);
    }


    .site-header {
        padding:
            0
            11px;
    }


    .brand img {
        width: 112px;
    }


    .social-nav a:first-child {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 550px;

        background-position:
            65% center;
    }


    .hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,0.97) 0%,
                rgba(255,255,255,0.86) 55%,
                rgba(255,255,255,0.18) 88%
            );
    }


    .hero-inner {
        width:
            calc(100% - 30px);
    }


    .hero-content {
        width: 80%;
    }


    .hero h1 {
        font-size: 38px;

        line-height: 1.04;

        letter-spacing: -1.5px;
    }


    .hero p {
        font-size: 15px;
    }


    /* MAPA */

    .map-container {
        width: 100%;

        max-width: 440px;
    }


    /* SOBRE */

    .eyebrow {
        font-size: 24px;
    }


    .about-copy p {
        font-size: 16px;
    }


    .about-card {
        grid-template-columns:
            60px
            1fr;

        padding: 16px;
    }


    .card-icon {
        width: 58px;

        height: 58px;

        font-size: 23px;
    }


    .about-card h3 {
        font-size: 15px;
    }


    .about-card p {
        font-size: 13px;
    }


    /* ONDAS */

    .section-wave {
        height: 110px;

        opacity: 0.60;
    }


    .wave-two {
        height: 120px;

        opacity: 0.56;
    }


    .about {
        padding-bottom: 130px;
    }


    .demands,
    .contact {
        padding-bottom: 140px;
    }


    /* DEMANDAS */

    .demand-title {
        font-size: 31px;
    }


    .desktop-only {
        display: none;
    }


    .demand-first {
        grid-template-columns:
            50px
            1fr;

        gap: 13px;
    }


    .demand-icon,
    .headset-icon {
        width: 50px;

        height: 50px;

        font-size: 21px;
    }


    .demand-column p,
    .demand-help p {
        font-size: 14px;
    }


    /* CONTATO */

    .contact-title h2 {
        font-size: 32px;
    }


    .contact-title p {
        font-size: 15px;
    }


    .contact-cards {
        grid-template-columns:
            1fr;
    }


    .contact-card.featured {
        grid-column:
            auto;
    }


    .contact-card {
        min-height: 125px;

        padding: 18px;
    }


    .contact-big-icon {
        width: 65px;

        height: 65px;

        font-size: 26px;
    }


    .contact-card h3 {
        font-size: 14px;
    }


    .contact-card a {
        font-size: 14px;
    }


    .form-card {
        padding:
            25px
            21px;
    }


    .form-card h2 {
        font-size: 26px;
    }


    /* FOOTER */

    .footer-container {
        width:
            calc(100% - 36px);

        grid-template-columns:
            1fr;

        gap: 30px;

        padding:
            40px
            0
            31px;
    }


    .footer-social {
        grid-column:
            auto;
    }


    .floating-whatsapp {
        right: 17px;

        bottom: 17px;

        width: 55px;

        height: 55px;

        font-size: 30px;
    }

}


.wave-one {
    height: 205px !important;

    bottom: -22px !important;

    opacity: 0.60 !important;

    transform:
        scaleX(1.03)
        scaleY(1.65) !important;

    transform-origin:
        center bottom !important;
}


/* TABLET */

@media (max-width: 850px) {

    .wave-one {
        height: 180px !important;

        bottom: -18px !important;

        transform:
            scaleX(1.03)
            scaleY(1.55) !important;
    }

}


/* CELULAR */

@media (max-width: 580px) {

    .wave-one {
        height: 145px !important;

        bottom: -14px !important;

        opacity: 0.58 !important;

        transform:
            scaleX(1.03)
            scaleY(1.5) !important;
    }

}


/* 
   ENTRADA INICIAL DO BANNER
 */

@keyframes heroEntrada {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-content {
    animation:
        heroEntrada
        0.9s
        cubic-bezier(.22, .8, .3, 1)
        both;
}


/* 
   MOVIMENTO SUPER SUAVE DO FUNDO DO BANNER
 */

@keyframes bannerRespira {

    0% {
        background-size: 100% auto;
    }

    50% {
        background-size: 102% auto;
    }

    100% {
        background-size: 100% auto;
    }
}


@media (min-width: 851px) {

    .hero {
        animation:
            bannerRespira
            14s
            ease-in-out
            infinite;
    }

}


/* 
   MAPA COM FLUTUAÇÃO LEVE
 */

@keyframes mapaFlutuando {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


.map-image {
    animation:
        mapaFlutuando
        5.5s
        ease-in-out
        infinite;

    will-change: transform;
}


/* 
   ELEMENTOS APARECENDO AO ROLAR A PÁGINA
 */

.reveal-medynova {
    opacity: 0;

    transform:
        translateY(32px);

    transition:
        opacity
        0.75s
        cubic-bezier(.22, .8, .3, 1),

        transform
        0.75s
        cubic-bezier(.22, .8, .3, 1);
}


.reveal-medynova.reveal-visivel {
    opacity: 1;

    transform:
        translateY(0);
}


/* pequenas diferenças de tempo */

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}


/* 
   CARDS SOBRE
 */

.about-card {
    position: relative;

    overflow: hidden;

    transition:
        transform
        0.3s
        cubic-bezier(.22, .8, .3, 1),

        box-shadow
        0.3s
        ease,

        border-color
        0.3s
        ease;
}


.about-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(133, 94, 218, 0.42);

    box-shadow:
        0
        16px
        32px
        rgba(80, 59, 145, 0.13);
}


/* brilho discreto passando pelo card */

.about-card::before {
    content: "";

    position: absolute;

    top: -80%;

    left: -80%;

    width: 60%;

    height: 260%;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.65),
            transparent
        );

    transform:
        rotate(18deg);

    transition:
        left
        0.7s
        ease;
}


.about-card:hover::before {
    left: 140%;
}


/* 
   ÍCONES DOS CARDS
 */

.card-icon,
.demand-icon,
.headset-icon,
.ethics-icon,
.contact-big-icon {
    transition:
        transform
        0.3s
        cubic-bezier(.22, .8, .3, 1),

        box-shadow
        0.3s
        ease;
}


.about-card:hover .card-icon {
    transform:
        scale(1.08)
        rotate(-4deg);

    box-shadow:
        0
        8px
        20px
        rgba(112, 88, 223, 0.16);
}


.contact-card:hover .contact-big-icon {
    transform:
        scale(1.06)
        rotate(-3deg);
}


/* 
   CARDS DE CONTATO
 */

.contact-card {
    transition:
        transform
        0.3s
        cubic-bezier(.22, .8, .3, 1),

        border-color
        0.3s
        ease,

        box-shadow
        0.3s
        ease;
}


.contact-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(128, 91, 216, 0.34);

    box-shadow:
        0
        13px
        28px
        rgba(64, 47, 110, 0.09);
}


/* 
   CARD DE DEMANDAS
 */

.demand-card {
    transition:
        transform
        0.35s
        cubic-bezier(.22, .8, .3, 1),

        box-shadow
        0.35s
        ease;
}


.demand-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0
        18px
        45px
        rgba(67, 50, 119, 0.11);
}


/* 
   CARD CÓDIGO DE ÉTICA
 */

.ethics-card {
    transition:
        transform
        0.3s
        ease,

        box-shadow
        0.3s
        ease;
}


.ethics-card:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0
        14px
        30px
        rgba(73, 50, 130, 0.09);
}


/* 
   FORMULÁRIO
 */

.form-card {
    transition:
        transform
        0.35s
        ease,

        box-shadow
        0.35s
        ease;
}


.form-card:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0
        16px
        34px
        rgba(62, 44, 110, 0.10);
}


/* inputs ganham movimento suave */

.form-card input,
.form-card textarea {
    transition:
        border-color
        0.25s
        ease,

        box-shadow
        0.25s
        ease,

        transform
        0.25s
        ease;
}


.form-card input:focus,
.form-card textarea:focus {
    transform:
        translateY(-1px);
}


/* 
   BOTÕES 
 */

.btn-purple,
.ethics-btn,
.form-card button {
    position: relative;

    overflow: hidden;

    transition:
        transform
        0.25s
        ease,

        box-shadow
        0.25s
        ease,

        filter
        0.25s
        ease;
}


.btn-purple::after,
.ethics-btn::after,
.form-card button::after {
    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 65%;

    height: 100%;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.45),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left
        0.55s
        ease;
}


.btn-purple:hover::after,
.ethics-btn:hover::after,
.form-card button:hover::after {
    left: 150%;
}


.btn-purple:hover,
.form-card button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0
        9px
        21px
        rgba(104, 67, 196, 0.22);
}


/* 
   NAVBAR
 */

.brand img {
    transition:
        transform
        0.3s
        ease;
}


.brand:hover img {
    transform:
        scale(1.035);
}


.nav-link {
    transition:
        color
        0.25s
        ease,

        transform
        0.25s
        ease;
}


.nav-link:hover {
    transform:
        translateY(-2px);
}


/* 
   INSTAGRAM E WHATSAPP
 */

.social-nav a {
    transition:
        transform
        0.3s
        cubic-bezier(.22, .8, .3, 1),

        color
        0.3s
        ease,

        filter
        0.3s
        ease;
}


.social-nav a:hover {
    transform:
        translateY(-4px)
        scale(1.12);

    filter:
        drop-shadow(
            0
            5px
            7px
            rgba(168, 76, 215, 0.20)
        );
}


/* 
   WHATSAPP FLUTUANTE
 */

@keyframes whatsappPulso {

    0% {
        box-shadow:
            0
            8px
            24px
            rgba(0, 0, 0, 0.20),

            0
            0
            0
            0
            rgba(37, 211, 102, 0.26);
    }

    70% {
        box-shadow:
            0
            8px
            24px
            rgba(0, 0, 0, 0.20),

            0
            0
            0
            13px
            rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0
            8px
            24px
            rgba(0, 0, 0, 0.20),

            0
            0
            0
            0
            rgba(37, 211, 102, 0);
    }

}


.floating-whatsapp {
    animation:
        whatsappPulso
        2.6s
        infinite;

    transition:
        transform
        0.25s
        ease;
}


.floating-whatsapp:hover {
    transform:
        translateY(-4px)
        scale(1.08);
}


/* 
   ONDAS
   MOVIMENTO 
 */

@keyframes ondaRespirando {

    0%,
    100% {
        transform:
            scaleX(1.02)
            translateY(0);
    }

    50% {
        transform:
            scaleX(1.035)
            translateY(3px);
    }

}


.wave-one {
    animation:
        ondaRespirando
        8s
        ease-in-out
        infinite;
}


@keyframes ondaDoisRespirando {

    0%,
    100% {
        transform:
            scaleX(1.03)
            scaleY(1.65)
            translateY(0);
    }

    50% {
        transform:
            scaleX(1.045)
            scaleY(1.67)
            translateY(2px);
    }

}


.wave-two {
    animation:
        ondaDoisRespirando
        9s
        ease-in-out
        infinite;
}


/* 
   FOOTER
 */

.footer-column a {
    transition:
        transform
        0.2s
        ease,

        color
        0.2s
        ease;
}


.footer-column a:hover {
    transform:
        translateX(4px);

    color: #ffffff;
}


.footer-social-icons a {
    transition:
        transform
        0.25s
        ease,

        background
        0.25s
        ease;
}


.footer-social-icons a:hover {
    transform:
        translateY(-4px)
        scale(1.06);

    background:
        rgba(255, 255, 255, 0.17);
}



@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}
@media (max-width: 850px) {

    .site-header {
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;

        position: relative;
        z-index: 10002;

        width: 42px;
        height: 42px;

        padding: 0;

        border: 0;
        background: transparent;

        color: #6846d7;
        font-size: 27px;

        cursor: pointer;
        pointer-events: auto;
    }

    .main-nav {
        position: absolute;

        top: 72px;
        left: 10px;
        right: 10px;

        z-index: 10001;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px 20px 18px;

        background: rgba(255, 255, 255, 0.99);

        border: 1px solid rgba(113, 82, 211, 0.12);

        border-radius: 0 0 14px 14px;

        box-shadow:
            0 15px 35px
            rgba(34, 27, 64, 0.18);
    }

    .main-nav.open {
        display: flex !important;
    }

    .main-nav .nav-link {
        display: block;

        width: 100%;

        padding: 15px 5px;

        font-size: 16px;

        color: #3159dd;

        text-align: left;
    }

}
.mission {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 78px 0 120px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(76, 110, 231, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 78%,
            rgba(183, 107, 217, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #faf9ff,
            #ffffff
        );
}


.mission-heading {
    margin-bottom: 42px;
    text-align: center;
}


.mission-heading .eyebrow {
    margin-bottom: 10px;
    font-size: 31px;
    font-weight: 600;
}


.mission-heading-line {
    width: 58px;
    height: 3px;
    display: block;
    margin: 0 auto;

    background:
        linear-gradient(
            90deg,
            #315cf4,
            #c550d8
        );
}


.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}


.mission-card {
    min-height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 29px;

    border:
        1px solid #ddd7ec;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8f5fd
        );

    box-shadow:
        0
        8px
        25px
        rgba(58, 45, 104, 0.09);

    transition:
        transform 0.3s cubic-bezier(.22, .8, .3, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #315cf4,
            #895be4,
            #ca4fd8
        );
}


.mission-card:hover {
    transform: translateY(-7px);
    border-color: rgba(133, 94, 218, 0.40);

    box-shadow:
        0
        17px
        34px
        rgba(80, 59, 145, 0.13);
}


.mission-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;

    border:
        1px solid #ded8f0;

    border-radius: 50%;
    color: #7357dc;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #efeaff
        );

    font-size: 30px;

    box-shadow:
        0
        7px
        20px
        rgba(112, 88, 223, 0.11);

    transition:
        transform 0.3s cubic-bezier(.22, .8, .3, 1),
        box-shadow 0.3s ease;
}


.mission-card:hover .mission-icon {
    transform:
        scale(1.08)
        rotate(-4deg);

    box-shadow:
        0
        10px
        24px
        rgba(112, 88, 223, 0.17);
}


.mission-copy h3 {
    color: #553294;
    font-size: 22px;
    line-height: 1.2;
}


.mission-copy p {
    color: #2b2932;
    font-size: 16px;
    line-height: 1.6;
}


@media (max-width: 1120px) {

    .mission {
        padding: 70px 0 105px;
    }


    .mission-grid {
        gap: 17px;
    }


    .mission-card {
        padding: 27px 24px;
    }

}


@media (max-width: 850px) {

    .mission {
        min-height: auto;
        padding: 62px 0 88px;
    }


    .mission-heading {
        margin-bottom: 31px;
    }


    .mission-heading .eyebrow {
        font-size: 27px;
    }


    .mission-grid {
        grid-template-columns: 1fr;
    }


    .mission-card {
        min-height: 0;
        display: grid;

        grid-template-columns:
            76px
            1fr;

        align-items: center;
        gap: 20px;
        padding: 24px 25px;
    }


    .mission-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 0;
        font-size: 27px;
    }

}


@media (max-width: 580px) {

    .mission {
        padding: 52px 0 72px;
    }


    .mission-heading .eyebrow {
        font-size: 23px;
    }


    .mission-card {
        display: block;
        padding: 24px 21px;
    }


    .mission-icon {
        width: 61px;
        height: 61px;
        margin-bottom: 19px;
        font-size: 24px;
    }


    .mission-copy h3 {
        font-size: 20px;
    }


    .mission-copy p {
        font-size: 14px;
        line-height: 1.55;
    }

}