iconify-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
}

.landing__container {
    height: 100%;
    padding: 30px;
    margin: 16px auto;
    background: #fff;
    width: 95%;
    max-width: 850px;
}
.landing__container h1 {
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.landing__logo {
    width: 200px;
    height: 100%;
    object-fit: contain;
}
.title-small {
    letter-spacing: 1.6px;
    margin: 0;
    color: var(--teal);
    text-transform: uppercase;
    font-size: 12px;
}
hr {
    border-color: #eeeeee;
    margin: 24px 0;
}
@media (max-width: 950px) {
    body {
        text-align: center;
    }
    .landing__logo {
        margin: auto;
    }
}

/* INIT HEADER */
.landing__header h1 {
    margin-bottom: 0;
}
.landing__header p {
    margin: 0;
}
.landing__header {
    margin-bottom: 32px;
}
/* END HEADER */

/* INIT BEFORE APPLY */
.before-apply {
    background: #f7fefe;
    border-left: 3px solid var(--teal);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px 16px;
    margin-bottom: 20px;
}
.before-apply__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
}
.before-apply__grid-item {
    text-align: center;
    color: #555;
    font-size: 12px;
    margin-bottom: 0;
}
.before-apply__grid-item-icon {
    display: block;
    margin: 16px auto;
    font-size: 36px;
    color: #1a1a1a;
}
@media (max-width: 950px) {
    .before-apply__grid {
        grid-template-columns: 1fr;
    }
}
/* END BEFORE APPLY */

/* INIT ALCOOL */
.alcool__flex {
    background: #f0faf9;
    border: 1px solid #b2e4e2;
    border-radius: 8px;
    padding: 12px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 32px;
}
.alcool__flex * {
    margin: 0;
}
.alcool__flex p {
    font-size: 12px;
}
.alcool__flex-icon {
    font-size: 32px;
}
@media (max-width: 950px) {
    .alcool__flex {
        flex-direction: column;
    }
}
/* END ALCOOL */

/* INIT STEPS */
.steps__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    counter-reset: count;
    gap: 16px;
}
@media (max-width: 950px) {
    .steps__grid {
        grid-template-columns: 1fr;
    }
}
.steps__card {
    border: 0.5px solid #e0e0e0;
    border-radius: 24px;
    overflow: hidden;
}
.steps__card-header {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: var(--teal);
    position: relative;
    padding: 8px 16px;
}
.steps__card-header-title {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: start;
    width: 100%;
    margin: 0;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
}
.steps__card-header-title::before {
    counter-increment: count;
    content: counter(count);
    color: var(--teal);
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.steps__card-body {
    padding: 16px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.steps__card-body-img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin: auto;
}
.steps__card-body p {
    margin: 0;
    font-size: 12px;
}
/* END STEPS */

/* INIT WARNING */
.warning {
    border: 1px solid #00b5ad;
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #f7fefe;
}
.warning__icon {
    font-size: 48px;
    color: var(--teal);
}
.warning ul {
    list-style: none;
    padding-left: 5px;
    font-size: 12px;
}
.warning ul > li:before {
    content: "\2713";
    color: var(--teal);
    padding: 8px;
}
@media (max-width: 950px) {
    .warning {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
    }
}
/* END WARNING */

/* INIT FOOTER */
.landing__footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.landing__footer ul {
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 16px;
    list-style-position: inside;
    margin-bottom: 0;
}
.landing__footer ul > li::marker {
    color: var(--teal);
}
.landing__footer p {
    margin: 0;
    text-align: end;
}
.landing__footer p:has(strong) {
    color: var(--teal);
}
@media (max-width: 950px) {
    .landing__footer {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 24px;
        align-items: center;
    }
}
/* END FOOTER */
