@charset "UTF-8";

/* =========================================================
   VARIABLES
========================================================= */
:root {
    --bg: #f3f3f3;
    --blue-dark: #02006a;
    --blue-primary: #001b7a;
    --blue-section: #071070;
    --blue-light: #00a8ff;
    --btn-blue: #031377;
    --gold: #ffc222;
    --gold-bright: #ffc425;
    --orange: #f5aa1c;
    --pink: #f7f7ed;
    --rose: #e5e5e4;
    --white: #fff;
}

/* =========================================================
   FONTS
========================================================= */
@font-face {
    font-family: "Lexend-Light";
    src: url("/Lexend/static/Lexend-Light.ttf");
    font-style: normal;
}

@font-face {
    font-family: "Lexend-Regular";
    src: url("/Lexend/static/Lexend-Regular.ttf");
    font-style: normal;
}

@font-face {
    font-family: "Lexend-Medium";
    src: url("/Lexend/static/Lexend-Medium.ttf");
    font-style: normal;
}

@font-face {
    font-family: "Lexend-Bold";
    src: url("/Lexend/static/Lexend-Bold.ttf");
    font-style: normal;
}

/* =========================================================
   RESET / BASE
========================================================= */
html,
body,
div,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
fieldset,
input {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Lexend-Light", sans-serif;
}

body {
    margin: 0;
    background: var(--white);
    font-family: "Lexend-Light", sans-serif;
}

a {
    text-decoration: none;
}

b, strong, .bold {
    color: var(--blue-dark);
    font-family: "Lexend-Bold", sans-serif;
}

a strong,
a b {
    font-weight: normal;
    font-family: "Lexend-Bold", sans-serif;
}

ul {
    margin-block: 0;
    padding-inline: 50px;
    padding-bottom: 20px;
}

li {
    text-align: left;
}

fieldset,
img {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

caption,
th {
    text-align: left;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

p {
    padding-bottom: 20px;
    word-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    margin: 0 auto;
    color: var(--blue-dark);
    font-family: "Lexend-Bold", sans-serif;
    font-size: 40px;
    text-align: center;
    padding: 30px 0;
    line-height: 120%;
}

.subTitle {
    margin: 0 auto;
    color: var(--blue-dark);
    font-family: "Lexend-Bold", sans-serif;
    font-size: 20px;
    text-align: center;
    padding: 0 0 10px;
}

.imgRoundCorners {
    border-radius: 30px;
}

.text,
.text p {
    margin: 0 auto;
    color: var(--blue-dark);
    font-family: "Lexend-Light", sans-serif;
    font-size: 16px;
    text-align: center;
    line-height: 160%;
    /*  padding: 0 8vw;*/
}

.text p.bold {
    color: var(--blue-dark);
    font-family: "Lexend-Bold", sans-serif;
}


.ballsBlocks .text,
.ballsBlocks .text p {
    font-size: 0.8rem;
    padding: 0 22px;
}


.title.left,
.text.left {
    margin: 0;
}

/* =========================================================
   HEADER / NAVIGATION
========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--white);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: var(--gold-bright);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 2000px;
    height: 100px;
    margin: 0 auto;
    padding: 0 clamp(24px, 8vw, 170px);
}

.logo img {
    display: block;
    width: 170px;
}

.main-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 1vw, 42px);
    white-space: nowrap;
    font-family: "Lexend-Bold", sans-serif;
}

.main-nav a {
    color: var(--blue-primary);
    font-size: 14px;
    text-transform: uppercase;
}

.header-actions{
    position:relative;
    display:flex;
    align-items:center;
    gap: 24px;
    height:100px;          /* igual ao header */
    z-index:20;
}

/*.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index:100;
}*/

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-btn {
    width: 36px;
    height: 36px;
    border: 0;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 20;
}

.search-btn img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-search {
    display: none;
}


#searchOverlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 28px;
    width: 0;
    overflow: visible;
    opacity: 0;
    transition: width .35s ease, opacity .2s ease;
}

#searchOverlay.open {
    width: 430px;
    opacity: 1;
}

#searchOverlay input {
    width: 0;
    box-sizing: border-box;
    padding: 0 20px;
    border-radius: 25px;
}

#searchOverlay.open input {
    width: 420px;
}

.contact-btn {
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--blue-primary);
    color: var(--white);
    font-size: 12px;
    z-index:100;
}

.menu-toggle {
    display: none;
    width: 34px;
    height: 28px;
    margin-left: auto;
    margin-bottom: 4px;
    padding: 0;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    height: 3px;
    margin: 6px 0;
    border-radius: 4px;
    background: var(--blue-primary);
}

.top {
    display: grid;
    grid-template-columns: 12vw auto 12vw;
    align-items: center;
    gap: 16px;
    max-width: 2000px;
    height: 90px;
    margin: 0 188px;
    padding: 0 16px;
    color: var(--blue-dark);
}

.top a {
    height: 100%;
}

#menu {
    margin: 0 auto;
}

#menu li {
    display: inline-block;
    margin-right: 14px;
    font-size: 14px;
    text-transform: uppercase;
}



/* =========================================================
   HERO / HOME
============================    ============================= */
.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    padding: 40vh 8vw 80px;
    /* padding: 8vh 8vw 0;*/
    background: var(--white);
    color: var(--blue-dark);
}

.button_hero {
    padding: 0 8vw 6vh;
}


.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url("/img/homeBanner.png");
    background-repeat: no-repeat;
    background-size: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50vw;
    top: auto;
}

.hero h1 {
    /* margin: 0 0 38px;*/
    font-family: "Lexend-Bold", sans-serif;
    font-size: 42px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.hero h1 span {
    color: #11aef4;
}

.hero p {
    max-width: 650px;
    margin: 0 0 20px;
    color: #12259a;
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    line-height: 1.45;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-buttons a {
    padding: 14px 24px;
    border: 2px solid var(--orange);
    border-radius: 999px;
    background: var(--white);
    color: #06147a;
    font-family: "Lexend-Bold", sans-serif;
    font-size: 1em;
    text-align: center;
    transition: 0.25s ease;
}

.hero-buttons a:hover {
    background: var(--orange);
    color: var(--white);
}

.topBanner {
    position: relative;
    max-width: 2000px;
    height: 650px;
    background: var(--blue-dark);
}

.bannerImg img {
    float: right;
    width: 35%;
    height: 100%;
    margin: 50px;
    transform: rotateY(180deg);
}

.topTitle {
    float: left;
    width: 50%;
}

.lupa {
    position: absolute;
    top: 50px;
    display: none;
    width: 36px;
    height: 36px;
    background-image: url("/img/Vecs-01.svg");
    background-repeat: no-repeat;
}

/* =========================================================
   SHARED BLOCKS
========================================================= */
#middle {
    max-width: 2000px;
    min-height: 600px;
    margin: 0 auto;
    background-color: var(--white);
}

.textBlock {
    position: relative;
    overflow: hidden;
    padding: 0 8vw 9vh;
    background: var(--white);
}

.normalBlock {
    max-width: 2000px;
    margin: 40px 0;
    padding: 0 4vw 18px;
}

.normalBlock a {
    font-family: "Lexend-Bold", sans-serif;
}

.entry{
    padding: 14px 0;
    border-bottom: 1px solid var(--blue-light);
}

#searchQuery{
    border-bottom: 1px solid var(--blue-dark);
    padding-bottom: 14px;
}


.ballsBlock {
    margin-top: 10vh;
}

.ballsBlocks {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1800px;
    aspect-ratio: 1260 / 360;
    margin: 0 auto 70px;
    padding: 0;
    overflow: visible;
    background: url("/img/Recursos/website/Shape_4.svg") no-repeat center / contain;
}

.ballsBlocks .title {
    padding: 0;
    padding-bottom: 8px;
    font-size: 20px;
    width: 70%;
}

.ballText {
    position: absolute;
    z-index: 2;
    width: 23%;
    color: var(--blue-section);
    text-align: center;
    transform: translate(-50%, -50%);
}

.ballText h3 {
    margin: 0 0 18px;
    font-size: clamp(22px, 2vw, 38px);
    font-weight: 800;
}

.ballText p {
    margin: 0;
    font-size: 14px;
    line-height: 160%;
}

.ballText1 {
    top: 47.5%;
    left: 24.5%;
}

.ballText2 {
    top: 47.5%;
    left: 50%;
}

.ballText3 {
    top: 47.5%;
    left: 75.5%;
}

.ballIcon {
    /*    width: clamp(28px, 3vw, 40px);
        height: clamp(28px, 3vw, 40px);
        margin: -42px auto clamp(14px, 1.5vw, 24px);
        object-fit: contain;*/
    width: clamp(28px, 3vw, 40px);
    height: clamp(28px, 3vw, 40px);
    margin: 0;
    object-fit: contain;
}

.textoFoto,
.textoFotoSmall {
    position: absolute;
    /*  width: 100%;*/
    height: 100px;
    text-align: left;
}

.textoFoto {
    bottom: 5vh;
    display: inline-block;
    color: var(--orange);
    font-family: "Lexend-Regular", sans-serif;
    font-size: 0.9em;
    text-transform: uppercase;
}

.textoFotoSmall {
    bottom: 1vh;
    color: var(--white);
    font-family: "Lexend-Regular", sans-serif;
    font-size: 1em;
}

/* =========================================================
   INNER HERO
========================================================= */
.inner-hero {
    position: relative;
    /*  overflow: hidden;*/
    padding: 140px 0 110px;
    background: var(--blue-dark);
}

.inner-hero__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 clamp(24px, 8vw, 170px);
}

.inner-hero__content {
    max-width: 700px;
}

.inner-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-bottom: 28px;
    padding: 0 18px;
    border: 1px solid #129dff;
    border-radius: 999px;
    background-color: var(--btn-blue);
    color: #129dff;
    font-family: "Lexend-Bold", sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.inner-hero__title {
    margin: 0 0 32px;
    color: var(--white);
    font-family: "Lexend-Regular", sans-serif;
    font-size: clamp(48px, 5vw, 88px);
}

.inner-hero__title span {
    display: block;
    color: #16a8ff;
}

.inner-hero__text {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    line-height: 1.6;
}

.inner-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-hero__image img {
    display: block;
    width: 100%;
    max-width: 850px;
}

.inner-hero__pattern-top,
.inner-hero__pattern-bottom {
    position: absolute;
}

.inner-hero__pattern-top {
    bottom: 0;
    z-index: 1;
    opacity: 0.4;
}

.inner-hero__pattern-top img {
    display: block;
    width: 360px;
}

.inner-hero__pattern-bottom {
    bottom: -20px;
    left: 0;
    z-index: 3;
}

.inner-hero__pattern-bottom img {
    display: block;
    width: 260px;
}

/* =========================================================
   TECHNOLOGY BLOCK
========================================================= */
.tech-block {
    padding: 90px 0;
}

.tech-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    max-width: 1280px;
    margin: 2vh auto;
}

.tech-content {
    text-align: left;
}

.tech-content h2 {
    margin: 0 0 34px;
    color: var(--blue-section);
    font-size: clamp(32px, 3vw, 52px);
    font-weight: 800;
    line-height: 1.05;
}

.tech-intro {
    max-width: 640px;
    margin: 0 0 44px;
    color: var(--blue-section);
    font-size: clamp(16px, 1.15vw, 21px);
    line-height: 1.25;
}

.tech-list li {
    position: relative;
    margin-bottom: 22px;
    padding-left: 44px;
    font-weight: 700;
    text-align: left;
}

.tech-list li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 28px;
    height: 28px;
    background-image: url("/img/Recursos/website/bullet.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(-50%);
}

.tech-list .b1::before {
    background-image: url("/img/Recursos/website/Bullet_1.svg");
}

.tech-list .b2::before {
    background-image: url("/img/Recursos/website/Bullet_2.svg");
}

.tech-list .b3::before {
    background-image: url("/img/Recursos/website/Bullet_3.svg");
}

.tech-list .b4::before {
    background-image: url("/img/Recursos/website/Bullet_4.svg");
}

.tech-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 48px;
    /* padding: 0 34px;*/
    border-radius: 999px;
    background: #12aef2;
    color: var(--blue-section);
    font-size: 15px;
    font-family: Lexend-Bold, sans-serif;
}

.tech-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-image img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
}

/* =========================================================
   NEWS
========================================================= */
.news-section {
    position: relative;
    padding: 180px 0 110px;
}

.news-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/Recursos/website/Shape_5.svg);
    background-repeat: repeat-x;
    background-position: top center;
    background-size: 100vw;
    pointer-events: none;
}

.news-container {
    position: relative;
    z-index: 2;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 70px;
    /*background: linear-gradient(
            180deg,
            rgba(194, 232, 255, 0.8) 0%,
            rgba(234, 248, 255, 0.5) 60%,
            #fff 100%
    );*/
}

.news-inner-container {
    width: 80vw;
    margin: 0 auto;
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.news-header h2 {
    margin: 0;
    color: var(--blue-section);
    font-size: clamp(34px, 3.8vw, 58px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00a8f4;
    font-size: 16px;
    font-weight: 800;
}

.news-link-single {
    display: block;
    color: #00a8f4;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
    width: 20%;
}

.news-link span {
    font-size: 22px;
    line-height: 1;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.news-card {
    display: flex;
    flex-direction: column;

    background: #fff;
    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;

    height: 100%;
}

.news-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.news-card a img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 420 / 230;
    /* margin-bottom: 18px;*/
    border-radius: 10px;
    object-fit: cover;
}

.news-card h3 {
    margin: 0;
    font-size: clamp(18px, 1.25vw, 22px);
    font-weight: 800;
    line-height: 1.2;
}

.news-card h3 a {
    color: var(--blue-section);
}

.news-card a:hover {
    text-decoration: underline;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1;
}

.news-tag {
    color: #00a8f4;
    font-family: "Lexend-Bold", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 140%;
    padding-bottom: 10px;
    display: block;
}

.news-summary {
    color: #001b7a;
    font-family: "Lexend-Regular", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    line-height: 150%;
}

.news-overlay {
    padding: 20px;
}

.news-category,
.news-category p {
    margin-top: 8px;
    color: var(--blue-section);
    font-family: "Lexend-Bold", sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

/*.news-dot,*/
.news-date {
    color: #6f7485;
    font-size: 12px;
    font-family: "Lexend-Regular", sans-serif;
}

.news-date::before {
    content: "\00B7";
    margin: 0 8px;
    font-size: 12px;
    position: relative;
}

/* =========================================================
   NEWSLETTER
========================================================= */
.newsletter-section {
    padding: 60px 30px;
}

.newsletter-box {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 70px;
    max-width: 75vw;
    margin: 0 auto;
    padding: 28px 44px;
    border-radius: 120px;
    background: radial-gradient(
            circle at 78% 50%,
            rgba(45, 70, 170, 0.45) 0%,
            rgba(10, 25, 130, 0.15) 22%,
            transparent 42%
    ),
    #08178f;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.newsletter-content h2 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 32px;
    font-family: Lexend-Bold, sans-serif;
    line-height: 1.05;
}

.newsletter-content p {
    max-width: 640px;
    margin: 0;
    color: var(--white);
    font-family: "Lexend-Light", sans-serif;
    font-size: 16px;
    line-height: 1.35;
    padding:0;
}

.newsletter-form {
    width: 100%;
}

.newsletter-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.newsletter-row input {
    flex: 1;
    height: 32px;
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 12px;
}

.newsletter-row input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-row input:focus {
    border-color: rgba(255, 255, 255, 0.55);
}

.newsletter-row button {
    height: 58px;
    padding: 0 34px;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    color: var(--blue-section);
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
}

.newsletter-form small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

/* =========================================================
   PARTNERS
========================================================= */
.partners {
    padding: 80px 20px;
    text-align: center;
}

.partners h2 {
    margin-bottom: 50px;
    color: #2c3e91;
    font-size: 20px;
    font-family: Lexend-Bold, sans-serif;
    letter-spacing: 0.2em;
}

.partners-image img {
    display: block;
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 0 auto;
}

/* =========================================================
   ABOUT PAGE
========================================================= */
.about-page {
    position: relative;
    /* overflow: hidden;*/
}

.about-page .normalBlock {
    padding: 0;
}

.about-page__net {
    position: absolute;

    left: clamp(-120px, -6vw, -50px);

    /* prende exatamente à divisão */
    bottom: calc(100% - var(--hero-height));

    width: clamp(230px, 24vw, 460px);

    transform: translateY(50%);

    z-index: 10;
    pointer-events: none;
}

.about-hero {

    position: relative;
    overflow: visible;
    z-index: 2;
    display: flex;
    align-items: baseline;
    /* overflow: hidden;*/
    background: #07158f;
    color: var(--white);
    /* --hero-height: 720px;*/
    --hero-height: 600px;
    min-height: var(--hero-height);
}

.about-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 120px);
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    /*padding: 90px clamp(24px, 8vw, 320px);*/
    padding: 90px clamp(24px, 12vw, 320px);
}

.about-hero__content {
    max-width: 650px;
}

.about-hero__label,
.tag {
    display: inline-flex;
    border-radius: 999px;
    text-transform: uppercase;
}

.about-hero__label {
    margin-bottom: 32px;
    padding: 7px 20px;
    border: 1px solid rgba(0, 166, 255, 0.7);
    color: var(--blue-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.about-hero h1,
.about-content h1 {
    margin: 20px 0;
    color: var(--white);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.2;
}

.about-hero h1 {
    margin: 0 0 32px;
    font-size: 48px;
    font-family: Lexend-Bold, sans-serif;
    line-height: 120%;
}

.about-hero h1 span,
.about-content h1 span {
    color: var(--blue-light);
}

.about-hero p,
.about-content p {
    max-width: 650px;
    margin: 0;
    color: var(--white);
    font-size: clamp(16px, 1.05vw, 20px);
    line-height: 1.7;
}

.about-content p {
    max-width: 500px;
    line-height: 1.6;
    opacity: 0.9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-hero__boat img {
    display: block;
    width: 100%;
    max-width: 860px;
}

.about-image img {
    width: 100%;
    max-width: 520px;
    transform: rotateY(180deg);
}

.about-hero__net {
    position: absolute;

    /* cola à divisão */
    bottom: 0;

    /* sai metade para baixo */
    transform: translateY(50%);

    left: clamp(-110px, -6vw, -40px);

    width: clamp(220px, 24vw, 430px);

    z-index: 20;
    pointer-events: none;
}

.bg-left {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 300px;
    opacity: 0.25;
    pointer-events: none;
}

.challenge-section {
    position: relative;
    z-index: 1;
    background: #fff;

    /* espaço para a rede */
    padding: clamp(80px, 4vw, 85px) 0;
    /* min-height: 600px;*/
}


.challenge-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    /*  padding: 0 15vw;*/
    padding: 0;
    color: #07158f;

}

.challenge-section h2 {
    margin: 0 0 54px;
    color: #07158f;
    font-size: 24px;
    font-family: 'Lexend-Regular';
    line-height: 1.1;
}

/* =========================================================
   PEOPLE
========================================================= */
.people-section {
    padding: 64px 0;
    background: var(--white);
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 85px);
}

.person-card {
    overflow: hidden;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.person-card__image {
    position: relative;
    height: 305px;
    overflow: hidden;
}

.person-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0, 20, 120, 0) 45%,
            rgba(0, 20, 120, 0.75) 100%
    );
}

.person-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-card__tag {
    position: absolute;
    top: 22px;
    left: 20px;
    z-index: 2;
    padding: 7px 18px;
    border-radius: 999px;
    background: var(--gold-bright);
    color: var(--blue-primary);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.person-card__body {
    padding: 34px 30px 28px;
}

.person-card__body h3 {
    margin: 0 0 14px;
    color: var(--blue-primary);
    font-size: 22px;
    font-weight: 800;
}

.person-card__meta {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.person-card__meta li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 26px;
    color: #4d5b73;
    font-size: 15px;
}

.person-card__meta li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--blue-light);
    font-size: 16px;
}

.icon-building::before {
    content: "▦";
}

.icon-location::before {
    content: "⌖";
}

.person-card__body p {
    margin: 0 0 42px;
    color: #13213b;
    font-size: 16px;
    line-height: 1.55;
}

.person-card__link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #009dff;
    font-size: 15px;
    font-weight: 800;
}

.person-card__link span {
    font-size: 18px;
}

/* =========================================================
   TOP CIRCLES
========================================================= */
.top-circles {
    position: relative;
    width: 100%;
    aspect-ratio: 1360 / 430;
}

.top-circles-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.circle-text {
    position: absolute;
    top: 50%;
    width: 22%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.t1 {
    left: 20%;
}

.t2 {
    left: 50%;
}

.t3 {
    left: 80%;
}

.circle-text h3 {
    font-size: clamp(22px, 2vw, 42px);
}

.circle-text p {
    font-size: clamp(13px, 1vw, 18px);
}

/* =========================================================
   SLIDESHOW / SWIPER
========================================================= */
.slideshow {
    max-width: 1600px;
    height: 400px;
    margin: 0 auto;
}

.swiper-section {
    position: relative;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 120px;
}

.cards-swiper {
    overflow: hidden;
}

.usecases-prev,
.usecases-next {
    position: absolute;
    top: 50%;
    z-index: 50;
    width: 90px;
    height: 90px;
    padding: 0;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
}

.usecases-prev {
    top: 39%;
    left: 10px;
    background-image: url("/img/Recursos/website/Shape_8.svg");
    transform: rotate(180deg);
}

.usecases-next {
    right: 10px;
    background-image: url("/img/Recursos/website/Shape_6.svg");
}

.card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    padding: 1vw;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 40, 120, 0.8) 70%,
            rgba(0, 30, 110, 0.95) 100%
    );
}

.overlay p {
    position: absolute;
    bottom: 2vh;
    color: var(--white);
    font-size: 12px;
}

.ueText {
    color: var(--blue-light);
    font-size: 10px;
    margin-top: 30px;
}

.ueTextFund {
    display: inline-block;
    padding-top: 4px;
    font-size: 10px;
    vertical-align: top;
}

.content {
    right: 30px;
    bottom: 30px;
    left: 30px;
    color: var(--white);
}

.content h3 {
    margin: 10px 0 70px;
    font-size: 28px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
    content: "";
}

.swiper-button-prev {
    left: 10px;
    background-image: url("/img/Recursos/website/Shape_8.svg");
    transform: rotate(180deg);
}

.swiper-button-next {
    right: 10px;
    background-image: url("/img/Recursos/website/Shape_6.svg");
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
    position: relative;
    padding: 60px 0 30px;
    color: var(--white);
    background: linear-gradient(
            90deg,
            #0a1f8f 0%,
            rgba(10, 31, 143, 0.95) 30%,
            rgba(20, 50, 170, 0.85) 50%,
            rgba(10, 31, 143, 0.95) 70%,
            #0a1f8f 100%
    ),
    url("/img/Recursos/website/Shape_3.svg");
    background-repeat: no-repeat, repeat;
    background-position: center, center;
    background-size: cover, auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-logo-sea {
    width: 90px;
    height: 100%;
}

.footer-about {
    height: fit-content;
}

.footer-contact img {
    width: 12px;
    height: 100%;
    margin-right: 8px;
}

.eu-logo {
    width: 36px;
    height: 36px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #ffd200;
    font-size: 12px;
}

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col li {
    margin-bottom: 6px;
    font-family: "Lexend-Light", sans-serif;
    font-size: 12px;
}

.footer-col a {
    color: var(--white);
}

.footer-col a:hover {
    opacity: 1;
}

.footer-col li > *,
.footer-bottom a {
    color: var(--blue-light) !important;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social img {
    width: 32px;
    height: 32px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 60px;
    padding: 20px 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    opacity: 0.7;
}

.footer-bottom a {
    margin-left: 20px;
    font-size: 12px;
}

#foot #innerFoot {
    padding: 12px 0 40px;
    border-top: 1px solid #3592bc;
}

/* =========================================================
   WISE-BOARD area
========================================================= */
.wise-section {
    position: relative;
    overflow: hidden;
    background: #07158f;
    padding: 0;
    /*   margin-bottom: 10vw;*/
}

.wise-section__pattern {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: clamp(520px, 48vw, 860px);
    height: auto;
    display: block;
    transform: rotateY(180deg);
    margin: 0 !important;
    z-index: 1;
    pointer-events: none;
}

.wise-section__inner {
    position: relative;
    z-index: 2;
    max-width: 1480px;
    margin: 0 auto;
    padding: clamp(60px, 16vw, 280px);
    display: grid;
    grid-template-columns: 0.75fr 1.5fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 10vw;
}

.wise-section__content {
    max-width: 650px;
    color: #fff;
}

.wise-section__content h2 {
    margin: 30px 0;
    font-size: 38px;
    line-height: 1.05;
    font-family: Lexend-Bold, sans-serif;
}

.wise-section__content p {
    margin: 0 0 38px;
    font-size: clamp(16px, 1vw, 19px);
    line-height: 1.45;
}

.wise-section__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.wise-card {
    padding: 26px 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
}

.wise-card__icon {
    width: 34px;
    height: 34px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: rgba(0, 168, 255, .18);
    color: #00a8ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.wise-card__icon1 {
    background: url("/img/Recursos/website/Board_icons-01.svg");
}

.wise-card__icon2 {
    background: url("/img/Recursos/website/Board_icons-02.svg");
}

.wise-card__icon3 {
    background: url("/img/Recursos/website/Board_icons-03.svg");
}

.wise-card__icon4 {
    background: url("/img/Recursos/website/Board_icons-04.svg");
}

.wise-card h3 {
    margin: 0 0 28px;
    font-size: 16px;
    font-family: Lexend-Bold, sans-serif;
}

.wise-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.15;
}


/* =========================================================
   BOARD aarea
========================================================= */

.board-section {
    background: #fff;
    padding: 42px 0 90px;
}

.board-section__header {
    max-width: 760px;
    margin: 0 auto 72px;
    padding: 0 24px;
    text-align: center;
}

.board-section__header h2 {
    margin: 0 0 42px;
    color: #07158f;
    font-size: clamp(36px, 3.3vw, 58px);
    line-height: 1;
    font-weight: 800;
}

.board-section__header p {
    margin: 0 auto;
    max-width: 690px;
    color: #07158f;
    font-size: 18px;
    line-height: 1.35;
}

.board-grid {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 90px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.board-card {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .16);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.board-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


.board-card__image {
    position: relative;
    height: 275px;
    overflow: hidden;
}

.board-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(7, 21, 143, 0) 40%,
            rgba(7, 21, 143, .75) 100%
    );
}

.board-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.board-card__image span {
    position: absolute;
    top: 22px;
    left: 20px;
    z-index: 2;
    padding: 7px 16px;
    border-radius: 999px;
    background: #ffc425;
    color: #07158f;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.board-card__body {
    padding: 30px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.board-card__body h3 {
    margin: 0 0 14px;
    color: #07158f;
    font-size: 21px;
    font-weight: 800;
}

.board-card__body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.board-card__body li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #4e5a70;
    font-size: 14px;
}

.board-card__body li::before {
    position: absolute;
    left: 0;
    top: 0;
    color: #00a8ff;
}

.icon-company::before,
.icon-location::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;

    width: 14px;
    height: 14px;

    background-size: contain;
    background-repeat: no-repeat;
}


.icon-location::before {
    background: url(/img/Recursos/website/Board_icons-06.svg) no-repeat 0 0;

}

.icon-company::before {
    background: url(/img/Recursos/website/Board_icons-05.svg) no-repeat 0 0;
}

.board-card__body li {
    position: relative;
    padding-left: 26px;
}

.board-card__body p {
    margin: 0 0 42px;
    color: #12213b;
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}

.board-card__body a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00a8ff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    margin-top: auto;
    word-break: break-word;
}

.board-card__arrow {
    width: 14px;
    height: 14px;
    display: block;
    transition: transform .25s ease;
}

.board-card__link:hover .board-card__arrow {
    transform: translateX(4px);
}


.top-circles {
    display: none;
}


.partners .board-card__image {
    height: 175px;
}

.partners .board-card__image img {
    object-fit: contain;
    padding: 20px;
}


.partners .board-card__body h3 {
    font-size: 14px;
}

.partners .board-card__body {
    padding: 20px;
}


.container {
    width: min(1200px, 90%);
    margin: auto;
}

.team-intro {
    padding: 80px 0 50px;
}

.team-intro h1 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.team-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 900px;
}

.team {
    width: min(1200px, 90%);
    margin: auto;
    padding-bottom: 80px;

    display: flex;
    flex-direction: column;
    gap: 70px;
}

.member {

    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;

    align-items: center;

    background: #fff;
    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.member.reverse {
    grid-template-columns: 1fr 320px;
}

.member.reverse .member-image {
    order: 2;
}

.member.reverse .member-info {
    order: 1;
}

.member-image img {

    width: 280px;
    height: 280px;

    object-fit: cover;

    border-radius: 50%;

    display: block;
    margin: auto;

    border: 6px solid #f3f8fb;
}

.member-info h2 {

    font-size: 2rem;
    margin-bottom: 10px;
}

.role {

    display: block;


    font-weight: 600;

    margin-bottom: 25px;

    font-size: 1.1rem;
}

.member-info p {

    line-height: 1.9;
    margin-bottom: 25px;
}

/*
.links{

    display:flex;
    gap:25px;
}
*/

.links a {
    display: block;
    padding-bottom: 10px;
}


@media (max-width: 900px) {

    .member,
    .member.reverse {

        grid-template-columns: 1fr;
        text-align: center;
    }

    .member.reverse .member-image,
    .member.reverse .member-info {

        order: initial;
    }

    .member-image img {

        width: 220px;
        height: 220px;
    }

    .links {

        justify-content: center;
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 2400px) {
    .hero {
        padding: 16vh 8vw 0;
    }

    .challenge-section__inner {
        max-width: 74vw;
    }
}


@media (max-width: 2000px) {
    .hero {
        padding: 10vh 8vw 0;
    }
}

@media (max-width: 1600px) {
    .hero {
        padding: 0 8vw;
    }

    .challenge-section__inner {
        max-width: 70vw;
    }

    .ballsBlocks .text, .ballsBlocks .text p {
        line-height: 120%;
    }
}


@media (max-width: 1400px) {

    .hero {
        padding: 0 8vw;
        min-height: 90vh;
    }

    .hero-content {
        position: relative;
        max-width: 55vw;
    }

    .hero-buttons {
        gap: 8px;
    }

    .hero-buttons a {
        padding: 8px 16px;
        font-size: 14px;
    }


    /*
    .ballsBlocks .title {
        font-size: 1vw;
    }
    */
    /*    .ballsBlocks .text, .ballsBlocks .text p {
            font-size: 0.75rem;
            padding: 0 22px;
        }*/
}

@media (max-width: 1280px) {
    .header-inner {
        height: 86px;
        padding: 0 32px;
        gap: 24px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 10;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 24px 32px;
        background: var(--white);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .main-nav a {
        width: 100%;
        padding: 16px 0;
    }

    .main-nav.is-open {
        display: flex;
    }

/*    .header-actions {
        display: none;
    }*/
}

@media (max-width: 1200px) {
    .inner-hero {
        padding: 120px 0 90px;
    }

    .inner-hero__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .inner-hero__content {
        max-width: 100%;
    }

    .inner-hero__image {
        order: -1;
    }

    .inner-hero__image img {
        max-width: 620px;
    }

    .inner-hero__text {
        font-size: 20px;
    }

    .ballIcon {
        width: clamp(28px, 4vw, 28px);
        height: clamp(28px, 4vw, 28px);
    }
}

@media (max-width: 1100px) {
    .about-hero {
        --hero-height: 640px;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-page__net {
        width: 320px;
        left: -80px;

        /*   top: 520px;
           left: -90px;
           width: 330px;*/
    }

    .about-hero__inner {
        /*  grid-template-columns: 1fr;*/
        padding-top: 70px;
        padding-bottom: 120px;
        text-align: left;
    }

    .about-hero__boat {
        max-width: 720px;
    }

    .about-hero__net {
        left: clamp(-120px, -10vw, -50px);
        width: clamp(220px, 34vw, 360px);
        transform: translateY(58%);
    }


    .challenge-section {
        padding-top: 140px;
    }

    .people-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .wise-section {
        padding: 220px 0 90px;
    }

    .wise-section__pattern {
        width: 620px;
        max-width: 70vw;
    }

    .wise-section__inner {
        grid-template-columns: 1fr;
        padding: 0 180px;
    }

    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card {
        height: 200px;
    }

    .usecases-next {
        right: 40px;
        background-image: url(/img/Recursos/website/Shape_6.svg);
        width: 40px;
        height: 40px;
    }

    .usecases-prev {
        left: 40px;
        background-image: url(/img/Recursos/website/Shape_8.svg);
        width: 40px;
        height: 40px;
    }

    .ballsBlocks {
        transform: rotate(270deg);
        min-height: clamp(100vw, 85vw, 264px);
        /* min-height: clamp(520px, 85vw, 920px);*/
    }

    .ballText {
        transform: translate(-50%, -50%) rotate(90deg);
    }


    .ballText1 {
        top: 50%;
        left: 87%;
    }

    .ballText2 {
        top: 50%;
        left: 55%;
    }

    .ballText3 {
        top: 50%;
        left: 21%;
    }

    .normalBlock {
        margin: 34px 0 60px;
    }

    .challenge-section__inner {
        max-width: 80vw;
    }
}

@media (max-width: 1024px) {

    .hero-image {
        background-position: center top;
    }

    .hero-content {
        /*top: -5vh;*/
    }

    .hero h1 {
        font-size: 36px;
    }

    .ballIcon {
        width: clamp(28px, 5vw, 24px);
        height: clamp(28px, 5vw, 24px);
        margin: 5vh auto clamp(14px, 1.5vw, 24px);
        margin-bottom: 0px;
    }

    .ballsBlocks .title {
        padding: 0;
        font-size: 14px;
    }

    .ballText1 {
        top: 50%;
        left: 85%;
    }

    .ballText2 {
        top: 50%;
        left: 53%;
    }

    .ballText3 {
        top: 50%;
        left: 21%;
    }

    .title {
        font-size: 32px;
    }

    .ballsBlocks .text, .ballsBlocks .text p {
        padding: 0;
    }


}

@media only screen and (min-width: 1024px) {
    .topBanner {
        height: 450px;
    }

    .slideshow {
        margin: 0 auto;
    }


}

@media only screen and (min-width: 1380px) {
    .topBanner {
        height: 550px;
        max-height: 550px;
    }
}

@media (max-width: 1000px) {
    .newsletter-box {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 55px 60px;
        border-radius: 70px;
    }

    .news-section {
        padding: 150px 0 80px;
    }

    .news-container {
        padding: 0 32px;
    }

    .news-header {
        margin-bottom: 50px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 701px) and (max-width: 1100px) {
    .about-hero__net {
        width: 320px;
        left: -85px;

        /* em vez de 50%, baixa menos */
        transform: translateY(42%);
    }

    .challenge-section {
        padding-top: 180px;
    }
}

@media (max-width: 900px) {


    .container {
        padding: 0 24px;
    }

    /* .text, .text p {
         padding: 0 30px;
     }*/
    .tech-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px;
    }

    .tech-image {
        order: -1;
    }

    .tech-content {
        text-align: center;
    }

    .tech-intro {
        margin-right: auto;
        margin-left: auto;
    }

    .tech-list {
        display: inline-block;
        text-align: left;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content p {
        margin: 0 auto;
    }

    .about-image img {
        margin: 40px auto 0;
    }

    .bg-left {
        bottom: -20px;
        left: -20px;
        width: 180px;
    }

    .circle-text {
        width: 30%;
    }

    .ballIcon {
        margin: 2vh auto clamp(14px, 1.5vw, 24px);
        margin-bottom: 0;
    }

    .ballText h3 {
        margin-bottom: 16px;
    }

    .ballsBlocks .text, .ballsBlocks .text p {
        line-height: 120%;
        padding: 0;
    }


    .hero-buttons a {
        font-size: 1.6vw;
    }

}

@media only screen and (max-width: 860px) {


    .hero {
        padding: 0 8vw;
        min-height: 70vh;
    }


    .hero h1 {
        font-size: 3vw;
    }

    .wise-section__cards {
        grid-template-columns: repeat(1, 1fr);
    }

    /* .hero-buttons a {
         font-size: 2.2vw;
     }*/

}

@media (max-width: 768px) {


    #searchOverlay.open input {
        width: 260px;
    }

    #searchOverlay {
        right: 40px;
    }

    #searchOverlay.open {
        width: 260px;
    }

    .hero {
        padding: 0 8vw;
        min-height: 64vh;
    }

    .inner-hero {
        padding: 110px 0 70px;
    }

    .inner-hero__container {
        gap: 40px;
        padding: 0 24px;
    }

    .inner-hero__title {
        font-size: 52px;
    }

    .inner-hero__text {
        font-size: 18px;
    }

    .inner-hero__pattern-top img {
        width: 220px;
    }

    .inner-hero__pattern-bottom img {
        width: 180px;
    }

    .partners {
        padding: 60px 16px;
    }

    .partners h2 {
        margin-bottom: 30px;
        font-size: 0.85rem;
    }

    .partners-image img {
        max-width: 100%;
    }


    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        justify-content: center;
    }

    .hero-buttons a {
        font-size: 1.5vw;
    }

    .ballsBlocks .title {
        font-size: 14px;
    }

}

@media (max-width: 700px) {

    .hero {
        padding: 0 8vw;
        min-height: 70vh;
    }


    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        margin-bottom: 32px;
        font-size: 1rem;
    }

    .hero-buttons {
        align-items: flex-start;
        padding: 0 5vw 20px;
    }

    .hero-buttons a {
        font-size: 2.2vw;
    }

    .about-hero {
        --hero-height: 560px;
    }

    .about-page__net {
        width: 240px;
        left: -70px;
    }

    .about-hero__inner {
        gap: 50px;
        padding: 60px 50px 100px;
        grid-template-columns: 1fr;
    }

    .about-hero__boat img {
        max-width: 100%;
    }

    .about-hero__net {
        left: -85px;
        width: 250px;
        transform: translateY(50%);
    }

    .swiper-section {
        padding: 0 60px;
    }


    .usecases-prev {
        left: 10px;
    }

    .usecases-next {
        right: 10px;
    }

    .challenge-section {
        padding-top: 125px;
    }

    .people-section {
        padding: 40px 0;
    }

    .people-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .person-card__image {
        height: 260px;
    }

    .person-card__body {
        padding: 28px 24px;
    }

    .wise-section {
        padding: 190px 0 70px;
    }

    .wise-section__pattern {
        width: 520px;
        max-width: none;
        left: -120px;
    }

    .wise-section__inner {
        padding: 0 60px 0 150px;
    }

    .board-section {
        padding: 42px 0 60px;
    }

    .board-section__header {
        margin-bottom: 44px;
    }

    .board-grid {
        grid-template-columns: 1fr;
        padding: 0 22px;
    }

    .board-card__image {
        height: 245px;
    }

}

@media (max-width: 650px) {
    .news-section {
        padding: 120px 0 60px;
    }

    .news-wave {
        height: 110px;
        background-size: auto 110px;
    }

    .news-header {
        display: block;
    }

    .news-header h2 {
        margin-bottom: 24px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ballsBlocks .text, .ballsBlocks .text p {
        font-size: 12px;
    }


    .ballsBlocks .title {
        font-size: 10px;
    }
}

@media (max-width: 640px) {

    .header-inner{
        display:flex;
        flex-wrap:wrap;
    }

    .main-nav{
        order:10;
      /*  width:90%;*/
    }

    .header-actions{
        order:2;
    }

    .search-wrapper{
        display:none;
    }

    .main-nav.is-open .search-wrapper-mobile{
        display:block;
    }


    /* Desktop */
    .header-actions .search-wrapper {
        display: none;
    }

    /* Pesquisa no fim do menu */
    .mobile-search {
        display: block;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, .15);
    }

    .mobile-search form {
        width: 100%;
    }

    .mobile-search input {
        width: 100%;
        height: 46px;
        border-radius: 25px;
        padding: 0 18px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        background: #fff;
    }
}


@media only screen and (max-width: 600px) {


    .hero {
        padding: 0 8vw;
        min-height: 80vh;
    }

    .newsletter-section {
        padding: 40px 20px;
    }

    .newsletter-box {
        padding: 42px 28px;
        border-radius: 38px;
    }

    .newsletter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .text, .text p {
        padding: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }

    .ballsBlocks {
        background: none;
    }

    .ballText {
        width: 90vw;
    }
}


@media (max-width: 500px) {

    .hero {

        min-height: 80vh;
    }

    .hero-content {
        max-width: 80vw;
    }
}

@media (max-width: 480px) {

    .header-inner {
        padding: 0 20px;
    }

    .logo img {
        width: 135px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {

    .hero {
        min-height: 90vh;
    }

    .about-page__net {
        top: 540px;
        left: -100px;
        width: 230px;
    }

    .about-hero__net {
        left: -95px;
        width: 220px;
        transform: translateY(52%);
    }

    .about-hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 380px) {

    .hero {
        padding: 12vh 8vw 0;
    }

}

@media only screen and (max-width: 1024px) {
    .topBanner {
        height: 350px;
    }
}