* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.menu-toggle {
    display: none;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 140px;
    background-color: #29332B;
    /* background-color: #99bba4; */
    border-bottom: 2px solid #29332B;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;    
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    color: black;
}

.logo .chat {
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    font-size: 35px;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.nav-links li a {
    font-size: 20px;
}

.nav-links a:hover {
    color: #99bba4;
}

.login-btn {
    --color: #2816ee;
    font-family: inherit;
    display: inline-block;
    width: 8em;
    height: 2.6em;
    line-height: 2.5em;
    margin: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid var(--color);
    transition: color 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--color);
}

.login-btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
}

.login-btn:hover a {
    color: #fff;
}

.login-btn:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.login-btn:hover:before {
    top: -30px;
    left: -30px;
}

.login-btn:active:before {
    background: #2816ee;
    transition: background 0s;
}

.login-btn a {
    text-decoration: none;
    padding: 8px 35px;
    color: black;
}

.promo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: white;
}

.promo-section-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-top: 2px solid #29332B;
    border-bottom: 2px solid #29332B;
    background-color: #29332B;
}

.promo-section-2 h1 {
    color: white;
}

.promo-content {
    max-width: 600px;
    margin-right: 30px;
}

.promo-content h1 {
    font-size: 2.5rem;
    color: #29332B;
    margin-bottom: 20px;
}

.promo-content p {
    font-size: 1.2rem;
    color: black;
    font-weight: 400;
    margin-bottom: 30px;
}

.cta-button {
    --color: #334E3B;
    font-family: inherit;
    display: inline-block;
    width: 16em;
    height: 3.6em;
    line-height: 2.5em;
    margin: 0px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid var(--color);
    transition: color 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 35px;
    color: var(--color);
}

.cta-button:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--color);
    height: 150px;
    width: 500px;
    border-radius: 40%;
}

.cta-button:hover {
    color: #fff;
}

.cta-button:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.cta-button:hover:before {
    top: -30px;
    left: -30px;
}

.cta-button:active:before {
    background: #334E3B;
    transition: background 0s;
}

.promo-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20%;
    height: auto;
}

.section-img {
    width: 100%;    
    align-items: center;
    display: flex;
    flex-direction: column-reverse;
}

.card-funcionalidades {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #F9F9F9;
}

.task {
    position: relative;
    color: #2e2e2f;
    cursor: move;
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
    margin-bottom: 1rem;
    border: 3px solid #334E3B;
    max-width: 400px;
    min-width: 200px;
    flex: 1 1 calc(30% - 15px);
}

.task:hover {
    box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
    border-color: rgba(162, 179, 207, 0.2) !important;
}

.task p {
    font-size: 15px;
    margin: 1.2rem 0;
}

.tag {
    border-radius: 100px;
    padding: 4px 13px;
    font-size: 15px;
    color: #ffffff;
    background-color: #334E3B;
}

.tags {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.viewer span {
    height: 30px;
    width: 30px;
    background-color: rgb(28, 117, 219);
    margin-right: -10px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: grid;
    align-items: center;
    text-align: center;
    font-weight: bold;
    color: #fff;
    padding: 2px;
}

.viewer span svg {
    stroke: #fff;
}

.container-funcionalidades {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.card {
    background-color: rgba(243, 244, 246, 1);
    padding: 1rem;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 20px 30px -20px rgba(5, 5, 5, 0.24);
    border-bottom: 4px solid blue !important;
  }
  
  .header {
    display: flex;
    align-items: center;
    grid-gap: 1rem;
    gap: 1rem;
  }
  
  .header .image {
    height: 4rem;
    width: 4rem;
    border-radius: 9999px;
    object-fit: cover;
    background-color: royalblue;
  }
  
  .stars {
    display: flex;
    grid-gap: 0.125rem;
    gap: 0.125rem;
    font-weight: 900;
    color: #2816ee;
  }
  
  .name {
    margin-top: 0.25rem;
    font-size: 1.125rem;
    line-height: 0.75rem;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, 1);
  }
  
  .message {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-top: 1rem;
    color: black;
    font-weight: 600;
  }

  .cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #29332B;
    color: white;
    border-top: 2px solid #29332B;
    border-bottom: 2px solid #29332B;
}

.cta-content {
    max-width: 50%;
}

.cta-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-images {
    max-width: 45%;    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image {
    border-radius: 15%;
    max-width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .cta-images {
        max-width: 100%;
    }

}

.pricing-plans {
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
    padding: 0 20px;
    max-width: 1200px;
}

.plan-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    width: 30%;
    border: 3px solid #334E3B;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.plan-card h2 {
    font-size: 24px;
    color: #333;
}

.plan-card .price {
    font-size: 28px;
    color: #334E3B;
    margin: 15px 0;
}

.plan-card hr {
    margin: 20px 0;
}

.plan-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.plan-card .backcolor {
    background-color: #334E3B;
    padding: 10px;
    border-radius: 10%;
    color: white;
}

.plan-card ul {
    list-style: none;
    padding: 0;
}

.plan-card ul li {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
    display: flex;
    align-items: center;
}

.plan-card ul li i {
    color: green;
    margin-right: 10px;
}

.plan-card ul .not-included i {
    color: #ccc;
}

.plan-card ul .not-included {
    color: #ccc;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #6a00ff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #5500cc;
}

@media (max-width: 768px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 80%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .login-btn {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        margin-left: auto;
        cursor: pointer;
    }

    .login-btn {
        font-size: 15px;
        width: 7em;
        height: 2.2em;
        line-height: 2.2em;
    }
}

@media (max-width: 480px) {

    .navbar {
        padding: 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .navbar.responsive .nav-links {
        display: flex;
    }

    .login-btn {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        font-size: 24px; /* Tamanho do ícone */
        margin-left: auto;
    }

    .login-btn {
        font-size: 14px;
        width: 6.5em;
        height: 2em;
        line-height: 2em;
    }
}