@font-face {
    font-family: 'Aeroport';
    src: url('../fonts/Aeroport.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Aeroport', sans-serif;
}

/* Cores auxiliares */
.text-aux3 {
    color: #9CA3AF;
}

#header {
    width: 100%;
    height: 1024px;
    background-image: url('../images/bg.png');
    background-size: auto 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    color: white;
    padding: 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 120px;
    position: relative;
}

#header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.navbar {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    width: 174px;
    height: 31px;
    flex-shrink: 0;
    color: white;
}

.logo svg {
    width: 100%;
    height: 100%;
}

.groupbuttons {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.nav-button {
    display: flex;
    padding: 16px 30px;
    align-items: center;
    border-radius: 16px;
    border: none;
    background: #181818;
    color: white;
    text-decoration: none;
    font-family: 'Aeroport', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-button.secondary {
    background: #FFF;
    color: #181818;
    border: none;
}

.nav-button.secondary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.globe-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: white;
}

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}

.hamburger svg {
    width: 24px;
    height: 24px;
}

.title {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.1;
    max-width: 800px;
    font-family: 'Aeroport', sans-serif;
    position: relative;
    z-index: 2;
}

#sobre {
    width: 100%;
    height: 931px;
    padding: 200px 80px 80px 80px;
    background: #EBEBEB;
    background-image: url('../images/muvflow.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
}

#diferencial {
    width: 100%;
    height: 931px;
    padding: 200px 80px 80px 80px;
    background: #EBEBEB;
    background-image: url('../images/mask.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
}

#aplicativo {
    width: 100%;
    height: 906px;
    background: #FFFFFF;
    background-image: url('../images/aplicativo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#distribuicao {
    width: 100%;
    height: 953px;
    background: #FFFFFF;
    background-image: url('../images/distribuicao.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 80px 200px 80px;
}

.distribuicao-content {
    display: flex;
    flex-direction: column;
    gap: 120px;
    height: 100%;
    align-items: flex-start;
}

.distribuicao-header {
    max-width: 400px;
}

.distribuicao-title {
    font-size: 3.75rem;
    line-height: 1;
    color: #181818;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
    width: 784px;
}

.card {
    margin: 0;
    padding: 0;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 220px;
}

.card-number {
    font-size: 3rem;
    line-height: 1;
    color: #181818;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

.card-subtitle {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #4D4D4D;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

.card-paragraph {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #4D4D4D;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

#beneficios {
    width: 100%;
    padding: 200px 80px 200px 80px;
    background: #FFFFFF;
    border-top: 1px solid #D1D5DB;
    border-bottom: 1px solid #D1D5DB;
}

.beneficios-container {
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: 100%;
    height: 100%;
}

.planos-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.planos-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #181818;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
    width: 250px;
}

.valores-block {
    width: auto;
    display: flex;
    gap: 80px;
}

.card-plano {
    width: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plano-name {
    font-size: 1.5rem;
    line-height: 2rem;
    color: #181818;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
    width: 180px;
    margin: 0 auto;
}

.plano-price {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #9CA3AF;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
    width: 180px;
    margin: 0 auto;
}

.plano-button {
    padding: 30px;
    border-radius: 24px;
    font-size: 1.125rem;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
    border: none;
    cursor: pointer;
}

.plano-button.basico {
    background: #EBEBEB;
    color: #181818;
}

.plano-button.pro {
    background: #181818;
    color: #FFFFFF;
}

.vantagens-block {
    width: 100%;
}

.vantagens-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vantagem-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid #D1D5DB;
}

.vantagem-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    max-width: 420px;
}

.vantagem-title {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4D4D4D;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

.vantagem-paragraph {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #9CA3AF;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

.vantagem-planos {
    display: flex;
    gap: 80px;
    margin-left: 40px;
}

.vantagem-plano {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    width: 180px;
}

.vantagem-plano-text {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #6B7280;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
    text-align: center;
}

#mercado {
    width: 100%;
    height: 940px;
    padding: 140px 80px 140px 80px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
}

.mercado-title {
    font-size: 3.75rem;
    line-height: 1;
    color: #181818;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
    max-width: 330px;
}

.numeros-block {
    width: 100%;
    height: 466px;
    gap: 140px;
    border-radius: 8px;
    background-color: #181818;
    background-image: url('../images/bg-numeros.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding: 40px;
    align-items: flex-start;
}

.numeros-subtitle {
    font-size: 1.125rem;
    line-height: 1.75rem;
    width: 122px;
    color: #FFFFFF;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

.numeros-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: auto;
    width: 100%;
}

.numeros-main-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #FFFFFF;
    width: 275px;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

.numeros-paragraph {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #FFFFFF;
    width: 684px;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

.ecossistema-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.ecossistema-title {
    font-size: 3.75rem;
    line-height: 1;
    color: #FFFFFF;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

.ecossistema-paragraph {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #FFFFFF;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

#ecossistema {
    width: 100%;
    height: 940px;
    padding: 140px 80px 200px 80px;
    background-color: #181818;
    background-image: url('../images/bg-ecossistema.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    gap: 180px;
    align-items: flex-start;
}

#ecossistema .logo {
    width: 174px;
    height: 31px;
    flex-shrink: 0;
    color: white;
}

#ecossistema .logo svg {
    width: 100%;
    height: 100%;
}

.link-section {
    width: 100%;
    padding: 80px;
    border-bottom: 1px solid #EBEBEB;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    cursor: pointer;
}

#link-cadastrar {
    width: 100%;
    padding: 80px;
    border-bottom: 1px solid #EBEBEB;
    background-color: #FFFFFF;
    cursor: pointer;
}

#link-cadastrar:hover,
#link-cadastrar:focus,
#link-cadastrar:active {
    background-color: #FFFFFF;
    background-image: url('../images/bg-link.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#link-cadastrar:hover .link-title,
#link-cadastrar:focus .link-title,
#link-cadastrar:active .link-title {
    color: #FFFFFF !important;
}

.link-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #181818;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

#contatos {
    width: 100%;
    padding: 80px;
    background: #EBEBEB;
}

.contatos-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.endereco-text {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4D4D4D;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
    max-width: 364px;
}

.contatos-links {
    display: flex;
    gap: 16px;
}

.contato-link {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #4D4D4D;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
    text-decoration: none;
}

.contatos-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    padding: 20px;
    border-radius: 999px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #181818;
}

#footer {
    width: 100%;
    padding: 140px 80px 140px 80px;
    background-color: #EBEBEB;
    background-image: url('../images/linha-de-audio.png');
    background-size: auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    gap: 180px;
    align-items: flex-start;
    position: relative;
}

.footer-logo {
    width: 174px;
    height: 31px;
    flex-shrink: 0;
    color: black;
}

.footer-logo svg {
    width: 100%;
    height: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.footer-links {
    display: flex;
    gap: 120px;
    align-items: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #4D4D4D;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #9CA3AF;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
    text-decoration: none;
}

.footer-link:hover {
    color: #6B7280;
}

.footer-platform-content {
    display: flex;
    gap: 120px;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-block {
    max-width: 575px;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.about-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #181818;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

.about-paragraph {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #6B7280;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    #header {
        padding: 32px 20px;
        gap: 80px;
        height: 1024px;
        background-size: auto 100%;
        background-position: 0 0;
    }

    .groupbuttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .title {
        font-size: 4rem;
        max-width: 100%;
    }

    #sobre {
        padding: 100px 20px 40px 20px;
        height: auto;
        min-height: 600px;
    }

    #diferencial {
        padding: 100px 20px 40px 20px;
        height: auto;
        min-height: 600px;
    }

    #sobre {
        padding: 32px 20px;
        height: auto;
        min-height: 400px;
    }

    #diferencial {
        padding: 32px 20px;
        height: auto;
        min-height: 400px;
    }

    .text-block {
        max-width: 100%;
        gap: 24px;
    }

    .about-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .about-paragraph {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    #distribuicao {
        padding: 100px 20px 100px 20px;
        height: auto;
        min-height: 600px;
    }

    .distribuicao-header {
        max-width: 100%;
    }

    .distribuicao-title {
        font-size: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
    }

    #beneficios {
        padding: 32px 20px;
        height: auto;
        min-height: 400px;
    }

    .beneficios-container {
        gap: 40px;
    }

    .planos-block {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .planos-title {
        font-size: 1.5rem;
        width: 100%;
    }

    .valores-block {
        width: 100%;
        flex-direction: column;
        gap: 32px;
    }

    .card-plano {
        width: 100%;
    }

    .plano-name, .plano-price {
        width: 100%;
    }

    .plano-button {
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 20px;
    }

    .nav-button {
        border-radius: 12px;
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    #mercado {
        padding: 32px 20px;
        height: auto;
        min-height: 500px;
        gap: 32px;
    }

    .mercado-title {
        font-size: 2rem;
        max-width: 100%;
    }

    .numeros-block {
        height: auto;
        min-height: 300px;
        gap: 32px;
        padding: 24px;
    }

    .numeros-subtitle {
        width: 100%;
    }

    .numeros-content {
        flex-direction: column;
        gap: 32px;
        margin-top: 0;
    }

    .numeros-main-title {
        width: 100%;
        font-size: 1.5rem;
    }

    .numeros-paragraph {
        width: 100%;
        font-size: 1rem;
    }

    #ecossistema {
        padding: 32px 20px;
        height: auto;
        min-height: 500px;
        gap: 40px;
    }

    .ecossistema-content {
        max-width: 100%;
        gap: 32px;
    }

    .ecossistema-title {
        font-size: 2rem;
    }

    .ecossistema-paragraph {
        font-size: 1rem;
    }

    .link-section {
        padding: 32px 20px;
    }

    .link-title {
        font-size: 1.5rem;
    }

    #contatos {
        padding: 32px 20px;
    }

    .contatos-container {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .endereco-text {
        max-width: 100%;
        font-size: 1rem;
    }

    .contatos-links {
        flex-direction: column;
        gap: 12px;
    }

    #footer {
        padding: 32px 20px;
        height: auto;
        min-height: 300px;
        gap: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .footer-platform-content {
        flex-direction: column;
        gap: 40px;
    }

    .text-block {
        max-width: 100%;
        gap: 32px;
    }

    .about-title {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .about-paragraph {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

@media (max-width: 480px) {
    #header {
        padding: 32px;
        gap: 80px;
        height: 768px;
        background-size: auto 100%;
        background-position: -150px 0;
    }

    .groupbuttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .title {
        font-size: 4rem;
        max-width: 100%;
    }

    .logo {
        width: 174px;
        height: 31px;
    }

    #sobre {
        padding: 100px 32px 100px 32px;
        height: auto;
        min-height: 668px;
        background-size: auto 35%;
        background-position: -45px bottom;
    }

    #diferencial {
        padding: 100px 32px 100px 32px;
        height: auto;
        min-height: 868px;
        background-size: auto 50%;
        background-position: center bottom;
    }

    #aplicativo {
        padding: 100px 32px 100px 32px;
        height: auto;
        min-height: 468px;
        background-size: auto 100%;
        background-position: -210px bottom;
    }

    .text-block {
        max-width: 100%;
        gap: 24px;
    }

    .about-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .about-paragraph {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    #distribuicao {
        padding: 100px 32px 100px 32px;
        height: auto;
        min-height: 600px;
        background-size: auto 35%;
        background-position: -340px 160px ;
    }

    .distribuicao-header {
        max-width: 100%;
    }

    .distribuicao-title {
        font-size: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
    }

    #beneficios {
        padding: 100px 32px 100px 32px;
        height: auto;
        min-height: 400px;
    }

    .beneficios-container {
        gap: 40px;
    }

    .planos-block {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .planos-title {
        font-size: 1.5rem;
        width: 100%;
    }

    .valores-block {
        width: 100%;
        flex-direction: row;
        gap: 32px;
    }

    .card-plano {
        width: 100%;
    }

    .plano-name, .plano-price {
        width: 100%;
    }

    .plano-button {
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 20px;
    }

    .nav-button {
        border-radius: 12px;
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    #mercado {
        padding: 100px 32px 100px 32px;
        height: auto;
        min-height: 500px;
        gap: 64px;
    }

    .mercado-title {
        font-size: 2rem;
        max-width: 100%;
    }

    .numeros-block {
        height: auto;
        min-height: 300px;
        gap: 120px;
        padding: 32px;
    }

    .numeros-subtitle {
        width: 100%;
    }

    .numeros-content {
        flex-direction: column;
        gap: 32px;
        margin-top: 0;
    }

    .numeros-main-title {
        width: 100%;
        font-size: 1.5rem;
    }

    .numeros-paragraph {
        width: 100%;
        font-size: 1rem;
    }

    #ecossistema {
        padding: 100px 32px 100px 32px;
        height: auto;
        min-height: 500px;
        gap: 100px;
    }

    .ecossistema-content {
        max-width: 100%;
        gap: 32px;
    }

    .ecossistema-title {
        font-size: 2rem;
    }

    .ecossistema-paragraph {
        font-size: 1rem;
    }

    .link-section {
        padding: 32px 32px;
    }

    #link-cadastrar {
        padding: 32px 32px;
    }

    .link-title {
        font-size: 1.5rem;
    }

    #contatos {
        padding: 32px 32px;
    }

    .contatos-container {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .endereco-text {
        max-width: 100%;
        font-size: 1rem;
    }

    .contatos-links {
        flex-direction: column;
        gap: 12px;
    }

    #footer {
        padding: 100px 32px 100px 32px;
        height: auto;
        min-height: 300px;
        gap: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .footer-platform-content {
        flex-direction: column;
        gap: 40px;
    }

    .vantagens-planos {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
        margin-left: 0;
        width: 100%;
    }

    .vantagem-plano {
        width: auto;
        padding: 12px;
        justify-content: center;
    }

    .vantagem-plano-text {
        text-align: center;
    }

    .text-block {
        max-width: 100%;
        gap: 32px;
    }

    .about-title {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .about-paragraph {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .vantagem-item {
        flex-direction: column;
        gap: 24px;
    }

    .vantagem-content {
        max-width: 100%;
    }

    .vantagem-planos {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        margin-left: 0;
        width: 100%;
    }

    .vantagem-plano {
        width: 100%;
        padding: 12px 0;
        justify-content: flex-start;
    }

    .vantagem-plano-text {
        text-align: left;
    }
}
