/* ----------------- */
/* RESET */
/* ----------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
    color: #1a1a1a;
}

/* ----------------- */
/* HEADER */
/* ----------------- */
.header {
    background: #15212a;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 60px;
}

/* MENU MOBILE */
.hamburger {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    display: block;
}

.nav {
    display: none;
    flex-direction: column;
    margin-top: 10px;
}

.nav a {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    margin-top: -25px;
}

/* ----------------- */
/* CARDS */
/* ----------------- */
.cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    align-items: center;
}

.card {
    width: 80%;
    background: linear-gradient(#2dd6c6, #22b4e5);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

/* ----------------- */
/* FRASE */
/* ----------------- */
.frase-section {
    background: #15212a;
    padding: 50px 20px;
    text-align: center;
}

.frase {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: gray;
    border-radius: 50%;
}

.dot.active {
    background: white;
}

/* ----------------- */
/* INFO SECTION */
/* ----------------- */
.info {
    text-align: center;
    padding: 50px 20px;
}

.info-img {
    width: 90%;
    max-width: 350px;
}

.info-text {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    background: #00c89d;
    color: white;
    padding: 12px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* ----------------- */
/* FOOTER */
/* ----------------- */
.footer {
    background: #15212a;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.footer-img {
    width: 150px;
    margin-bottom: 20px;
}

/* ----------------- */
/* DESKTOP VERSION */
/* ----------------- */

@media (min-width: 900px) {

    .hamburger {
        display: none;
    }

    .nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        margin-top: px;
    }

    .cards {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .card {
        width: 250px;
    }

    .info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        padding: 80px;
        text-align: left;
    }

    .info-text {
        max-width: 450px;
    }

    .footer-img {
        width: 200px;
    }
}