
:root {
    --neutral-50: #fefefe;
    --neutral-100: #F8F9FA;
    --neutral-200: #C3CDD5;
    --neutral-400: #869BAC;
    --neutral-950: #0D0D0D;
    --green-800: #2ECC7129;
    --brand-color-1: #2ECC71;
    --font-size-h1: 3.5rem;
    --font-size-h2: 3rem;
    --font-size-body: 1.5rem;
    --font-size-body-2: 1rem;
    --font-size-btn: 1.125rem;
}

* {
    box-sizing: border-box;
}

div img {
    max-width: 100%;
}

body {
    background: var(--neutral-50);
    font-family: 'Poppins', sans-serif;
}

h1 {
    color: var(--neutral-950);
    font-size: var(--font-size-h1);
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    color: var(--neutral-950);
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: 1.2;
}

p {
    font-size: var(--font-size-body);
    color: var(--neutral-400);
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: max-content;
    max-width: 105rem;
    position: relative;
    width: 100%;
}

.centralizer {
    grid-template-columns: 1fr;
    justify-items: center;
}

.header {
    background-image: url('../assets/background/moon-asset.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    height: 100dvh;
    padding-top: 80px;
    margin-bottom: 16rem;
}

.header .wrapper {
    row-gap: 12rem;
}

.hero-content {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    grid-column: 2 / 9;
    text-align: right;
}

.navbar {
    align-items: center;
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
}

.navbar-links {
    display: flex;
    gap: 2.5rem;
}

.btn {
    align-items: center;
    display: flex;
    font-size: var(--font-size-btn);
    height: 59px;
    justify-content: center;
    width: 182px;
}

.btn-primary {
    background-color: var(--brand-color-1);
    color: var(--neutral-50);
    font-weight: 600;
}

.btn-secondary {
    border: 2px solid var(--brand-color-1);
    color: var(--brand-color-1);
    font-weight: 600;
}

.btn-cta {
    border: 2px solid var(--brand-color-1);
    color: var(--brand-color-1);
    font-weight: 600;
    height: 91px;
    width: 400px;
}

.simulator {
    position: relative;
}

.simulator::before {
    background-color: var(--neutral-100);
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 284px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.simulator::after {
    position: absolute;
    display: block;
    content: url('../assets/background/percentual.svg');
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.simulator-component {
    display: flex;
    height: 440px;
    grid-column: 1 / 8;
}

.simulator-component > div {
    align-items: center ;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

.simulator--donate {
    background-color: var(--brand-color-1);
    color: var(--neutral-50);
}

.simulator--donate p {
    color: var(--neutral-50);
    margin-bottom: 1rem;
}

.simulator--gains p {
    color: var(--neutral-950);
    margin-bottom: 1rem;
}

.simulator--gains span {
    color: var(--brand-color-1);
    font-size: var(--font-size-h2);
    font-weight: 600;
}

.display-wrapper {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 8px;
  position: relative;
  border-bottom: 1px solid #97E6B8;
  padding-bottom: 12px;
}

.real-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* torna invisível, mas clicável */
  cursor: text;
}

/* How it works */

.about {
    padding: 10rem 0;
}

.how-it-works {
    grid-column: 1 / 9;
}

.how-it-works h5 {
    margin-bottom: 5rem;
}

.how-it-works ul {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    margin-bottom: 10rem;
}

.how-it-works ul li {
    border-bottom: 1px solid var(--neutral-200);
    font-size: var(--font-size-h2);
    font-weight: 600;
    padding-bottom: 2rem;
}

.how-it-works ul li:last-child {
    border: none;
}

.features {
    background-color: var(--neutral-950);
    display: grid;
    gap: 3rem;
    grid-column: 1 / -1;
    grid-template-columns: repeat(12, 1fr);
    padding: 5rem;
    margin-bottom: 3rem;
}

.features > div {
    background-color: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.16);
    grid-column: span 4;
    padding: 1.5rem;
}

.features > div p {
    color: #fff;
    font-size: var(--neutral-50);
}

.feature-icon {
    align-items: center;
    background-color: rgba(46, 204, 113, 0.16);
    display: flex;
    justify-content: center;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    width: 3.5rem;
}

.integrations {
    display: flex;
    grid-column: 1 / -1;
}

.integrations > div {
    aspect-ratio: 16/9;
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    width: 50%;
}

.stream-labs {
    background-color: #80F5D2;
}

.stream-elements {
    background-color: #0F62FF;
}

/* Social proof */

.social-proof {
    padding: 10rem 0;
    position: relative;
    margin-bottom: 10rem;
}

.social-proof::after {
    background-color: #F0F2F5;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 62%;
    right: 0;
    top: 0;
    z-index: -1;
}

.social-proof-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-column: 1 / 7;
}

.social-proof-header h5 {
    color: var(--neutral-400);
    font-size: var(--font-size-body);
    margin-bottom: 5rem;
}

.social-proof-header p {
    margin-top: 2rem;
    font-size: var(--font-size-body-2);
}

.metrics {
    display: grid;
    column-gap: 1.5rem;
    grid-column: 7 / 13;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 3rem;
}

.metrics > div {
    justify-content: space-between;
    background-color: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.16);
    display: flex;
    flex-direction: column;
    grid-column: span 3;
    height: 12rem;
    line-height: 1.2;
    padding: 1.5rem;
}

.metric-icon {
    align-items: center;
    background-color: rgba(46, 204, 113, 0.16);
    display: flex;
    justify-content: center;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    width: 3.5rem;
}

.metric-value {
    font-size: var(--font-size-h2);
    font-weight: 600;
}

/* Contact */

.contact {
    margin-bottom: 5rem;
    position: relative;
}

.contact::after {
    background-image: url('../assets/mooney-pattern.svg');
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 481px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.contact-info {
    align-items: center;
    background-color: var(--brand-color-1);
    color: var(--neutral-50);
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-column: 1 / 5;
    height: 51rem;
}

.contact-info > div {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 16rem;
}

.contact-info h5 {
    font-size: var(--font-size-body);
}

.contact-info h2 {
    color: var(--neutral-50);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-logo-container {
    align-items: center;
    display: flex;
    grid-column: 5 / 13;
    justify-content: center;
}

.contact-logo img {
    height: 90px;
}

/* Footer */

.footer-content {
    align-items: center;
    border-top: 1px solid var(--neutral-200);
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
}

.footer-content p {
    color: var(--neutral-950);
    font-size: var(--font-size-body-2);
}

.footer-links {
    align-items: center;
    display: flex;
    gap: 3.5rem;
}