/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background-color: #000;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}

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

/* COMPONENTES REUTILIZÁVEIS */
.container,
.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    width: min(54rem, 90%);
    margin: 0 auto;
    gap: 2rem;
}

.section {
    --gradient: linear-gradient(rgb(0 0 0 / .75));
    padding: 7.5rem 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: var(--gradient, none), var(--bg, none);
}

.title-large {
    font-size: clamp(2.25rem, 0.5357rem + 3.5714vw, 3.75rem);
    line-height: 1.1;
    font-weight: 200;
}

.title-medium {
    font-size: clamp(1.5rem, 1.0714rem + 0.8929vw, 1.875rem);
    font-weight: 300;
    line-height: 1.2;
}

.subtitle {
    max-width: 32rem;
    font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
    color: #BFBFBF;
}

.label-small {
    font-size: 0.75rem;
    font-weight: 200;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: hsl(0 0 100% / .6);
}

.text-description {
    font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
    color: #808080;
}

.text-description strong {
    color: #fff;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: #808080;
    margin: 0 auto;
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.2;
    border-radius: 50px;
    transition: 0.3s;
    gap: 10px;
}

.btn-white {
    background-color: #fff;
    color: #000;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #808080;
    color: #fff;
}

/* LISTAS */
.feature-list {
    text-align: left;
    list-style-position: inside;
}

.feature-list li {
    font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
    color: #FFFFFFCC;
}

.feature-list li:not(:last-child) {
    margin-bottom: 1.5rem
}

/* ESTILOS ESPECÍFICOS */
.hero-section {
    --bg: url(bg-d.jpg);
    min-height: 100dvh;
}

.logo img {
    width: clamp(9.5rem, 7.3571rem + 4.4643vw, 11.375rem);
}

.tagline {
    font-size: 0.875rem;
    letter-spacing: 2px;
    color: #808080;
    text-transform: uppercase;
}

.dark-section .container {
    width: min(42rem, 90%);
}

.mid-section {
    --bg: url(bg2-d.jpg);
}

.mid-section .title-medium {
    font-size: clamp(1.25rem, 0.9643rem + 0.5952vw, 1.5rem);
    color: #FFFFFFE6;
    font-weight: 200;
}

.final-section .title-medium {
    width: min(32rem, 100%);
}

.final-section .text-description {
    font-size: 1rem;
}

.footer-logo {
    margin-top: 3rem;
}

.footer-logo img {
    width: 6rem;
    opacity: .3;
}

.footer-info {
    width: min(40rem, 100%);
    display: grid;
    gap: 1rem;
    margin-top: 6rem;
    font-size: 0.875rem;
    color: #808080;
}

.footer-info strong {
    color: #FFFFFFB2;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero-section {
        --bg: url(bg-m.jpg);
    }

    .mid-section {
        --bg: url(bg2-m.jpg);
    }
}