#planos {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 7rem;
    gap: 4rem;
    min-height: 100vh;
    box-sizing: border-box;
}

#precos {
    text-align: center;
    width: 100%;
}

#precos h2 {
    font-size: 2.5rem;
    color: #4a4a8a;
    margin-bottom: 2rem;
}

#container-precos {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: calc(100% - 14rem);
    margin: 0 auto;
}

.planos-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.planos-card h3 {
    color: #4a4a8a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.planos-card p {
    font-size: 2rem;
    color: #333;
    margin: 1rem 0;
}

.planos-card ul {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    color: #555;
}

.planos-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #f4eaff;
}

.planos-card:hover h3,
.planos-card:hover p,
.planos-card:hover ul {
    color: #000;
}

#depoimentos {
    text-align: center;
    width: 100%;
    margin-top: 7rem;
}

#depoimentos h2 {
    font-size: 2.5rem;
    color: #4a4a8a;
    margin-bottom: 2rem;
}

#container-carrossel-depoimentos {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

#carrossel-depoimentos {
    display: flex;
    gap: 2rem;
    animation: rolarDepoimentos 30s linear infinite;
    width: 200%;
}

.item-depoimento {
    flex: 0 0 25%;
    background-color: #e7e3f5;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #4a4a8a;
}

.item-depoimento:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.item-depoimento img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.item-depoimento h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #4a4a8a;
    text-align: center;
    margin-top: 0.5rem;
}

.item-depoimento p {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    line-height: 1.4;
    text-align: center;
}

@keyframes rolarDepoimentos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    #container-carrossel-depoimentos, #carrossel-depoimentos {
        flex-direction: column;
        width: 100%;
        animation: none;
    }
    .item-depoimento {
        max-width: 100%;
        margin-bottom: 1rem;
    }
}
