@font-face {
    font-family: Neue Haas Grotesk;
    src: url('neue-haas-grotesk-text/NEUEHAASGROTESKTEXT.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Neue Haas Grotesk;
    src: url('neue-haas-grotesk-text/NEUEHAASGROTESKTEXTITALIC.TTF') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: Neue Haas Grotesk;
    src: url('neue-haas-grotesk-text/NEUEHAASGROTESKTEXTMEDIUM.TTF') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Neue Haas Grotesk;
    src: url('neue-haas-grotesk-text/NEUEHAASGROTESKTEXTMEDIUMITALIC.TTF') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: Neue Haas Grotesk;
    src: url('NeueHaasGrotesk/NeueHaasDisplay-Bold.woff') format('woff'),
        url('NeueHaasGrotesk/NeueHaasDisplay-Bold.eot') format("embedded-opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: Neue Haas Grotesk;
    src: url('NeueHaasGrotesk/NeueHaasDisplay-BoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    line-height: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: Neue Haas Grotesk, 'Helvetica Neue', Helvetica, Arial, sans-serif, "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    width: 100%;
    font-weight: 400;
    overflow-x: hidden;
}

.uppercase {
    text-transform: uppercase;
}

/* HEADER */
.header {
    background-color: rgb(255 255 255);
    color: rgb(0 0 0);
    font-family: Neue Haas Grotesk, 'Helvetica Neue', Helvetica, Arial, sans-serif, "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 400;
    font-size: 18px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
}

.top-right-icons {
    height: 22px;
    width: auto;
    position: absolute;
    right: 10px;
    display: flex;
}

.top-right-icons-container {
    gap: 10px;
}

h1 {
    align-items: center;
    text-align: center;
    margin: 0;
}

p, h2, h3, h4, h5, h6 {
    margin: 0;
}

header .logo_032c {
    width: 93px;
    height: auto;
}

.logo_032c:hover {
    fill: red;
}

.nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav ul li {
    margin-left: 12px;
}

.nav ul li a {
    list-style-type: none;
    color: inherit;
}

.dotted-underline-li {
    text-decoration:underline;
    text-decoration-style: dotted;
}

.hover-red:hover {
    color: rgb(254 0 0);
    text-decoration: none;
}

.hover-red:hover .logo_032c {
    fill: rgb (254 0 0);
}

.hover-red-underline:hover {
    color: rgb(254 0 0);
    text-decoration: underline;
    text-decoration-style: solid !important;
}

.nav ul li a.dotted-underline-li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration:underline;
    text-decoration-style: dotted;
    display: inline-block;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.full-width {
    grid-column: span 12;
}

.half-width {
    grid-column: span 6;
}

.quarter-width {
    grid-column: span 3;
}

.padding-top {
    padding-top: 14px;
    font-size: 14px;
}

.bg-green {
    background-color: rgb(107, 255, 79);
}

.bg-sage {
    background-color: rgb(137, 158, 123);
}

.bg-red {
    background-color: rgb(254, 0, 0);
}

.bg-black {
    background-color: rgb(0, 0, 0);
}

.bg-yellow {
   background-color: rgb(233, 255, 83);
}

.bg-whitepink {
    background-color: rgb(238, 238, 238);
}

.bg-lightpink {
    background-color: rgb(236, 200, 202);
}

.bg-orange {
    background-color:  rgb(255, 176, 54);
}

.bg-orangered {
    background-color: rgb(255, 67, 1);
}

.bg-purple {
    background-color: rgb(135, 126, 151);
}

.bg-darkpurple {
    background-color: rgb(35, 12, 43);
}

.c-redorange {
    color:  rgb(255, 67, 1);
}

.text-white {
    color: white;
}

.text-blue {
    color: rgb(115, 252, 238);
}

.text-lightpink {
    color: rgb(236, 200, 202);
}

.text-lightgreen {
    color: rgb(209, 255, 195);
}

.text-green {
    color: rgb(107, 255, 79);
}

.c-yellow {
    color: rgb(233, 255, 83);
}

.text-yellow {
    color: rgb(233, 255, 83);
}

.text-black {
    color: rgb(0, 0, 0);
}

/* Text */
.text-regular {
    font-weight: 400;
}

.text-bold {
    font-weight: 600;
}

/* CTA */
.cta-menu {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-menu-link a{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration:underline;
    text-decoration-style: dotted;
    color: black;
}

.cta-menu-link a:hover {
    text-decoration-style: solid;
}

.cta-menu-image {
    height: 12rem;
    width: auto;
    margin-bottom: 1rem;
}

/* Ticker */
.ticker {
    display: flex;
    padding: 14px 0;
}

.ticker-element {
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    margin-right: 1rem;
    font-weight: 500;
    font-size: 18px;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ARTICLES */

.article {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-title {
    font-family: Neue Haas Grotesk, 'Helvetica Neue', Helvetica, Arial, sans-serif, "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 600;
    font-size: 60px;
    line-height: 1;
    font-feature-settings: 'kern';
    /* letter-spacing: -0.6px; */
}

.article-subtitle {
    font-family: Neue Haas Grotesk, 'Helvetica Neue', Helvetica, Arial, sans-serif, "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    font-feature-settings: 'kern';
    line-height 22.5px;
    margin-right 16px;
    margin-top 32px;
    padding-bottom: 20px;
    /* letter-spacing: -0.6px; */
}

.article-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.article-author {
    font-size: 14px;
}

.small-article-title {
    font-family: Neue Haas Grotesk, 'Helvetica Neue', Helvetica, Arial, sans-serif, "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    font-feature-settings: 'kern';
    letter-spacing: -0.6px;
}

.article-open {
    margin-left: 18rem;
    margin-right: 18rem;
    font-size: 18px;
}

.article-open p {
    padding: 1rem;
}

.open-title {
    font-size: 72px;
    font-weight: 600;
    padding: 28px;
}

.open-subtitle {
    font-size: 24px;
    font-weight: 600;
}

.article-open-info {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: rgb(0 0 0);
    padding-bottom: 15px;
    font-size: 14px;
}

.article-open-info ul li{
    list-style-type: none;
    padding: 10px;
}

/* MAIS */
.top-menu-item {
    font-family: 'NeueHaasGroteskText', 'Helvetica Neue', Helvetica, Arial, sans-serif, "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration:underline;
    text-decoration-style: dotted;
}

.top-menu-image {
    height: 1px;
    width: auto;
}

.top-menu-item-left {
    align-items: center;
    background-color: rgb(24, 255, 31);
}

.top-menu-item-right {
    align-items: center;
    background-color: rgb(255, 67, 1);
}

.relative {
    position: relative;
    display: inline-block;
}

.rotate-45 {
    transform: rotate(45deg);
    position: absolute;
    right: -2.5rem;
    top: 1.3rem;
}

.bottom-menu-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: rgb(0 0 0);
    font-family: 'NeueHaasGroteskTextBold', 'Helvetica Neue', Helvetica, Arial, sans-serif, "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: bold;
    font-size: 24px;
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.bottom-menu-nav ul {
    display: flex;
    font-weight: bold;
    list-style-type: none;
    padding: 0; /* Remove default padding */
    margin: 0;
}

.bottom-menu-nav ul li{
    text-align: center;
}

.bottom-menu-nav ul li.separator {
    position: absolute;
    left: 50%; /* Poe no meio horizontalmente */
}

.bottom-menu-nav ul li:not(.separator) {
    margin: 0 36px;
}

.bottom-menu-nav ul li a {
    font-weight: 800;
    color: inherit;
    text-decoration-style: dotted;
}

.footer {
    display: flex;
}

.footer-copyright {
    margin-left: auto;
    padding: 2rem;
    font-size: 14px;
    color: rgb(196 196 196);
}

.bottom-svg {
    max-height: 82px;
    margin-left: 800px;
    position: absolute;
}