html, body {
  overflow-x: hidden;
}

body{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #E83170;
    display: flex;
    align-items: center;
    padding-left: 20px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(232, 49, 112, 0.3);
}

.pai{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%; 
}

.topo{
    background-color: #E83170;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 93%;
    height: 100%;
    padding: 15px;
}

.btn-1{
    background-color: white;
    color: #E83170;
    width: 200px;
    height: 50px;
    margin: 10px 0px;
    border: 0;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.384);
}

.btn-2{
    background-color: #E83170;
    color: white;
    border: 0;
    border-radius: 20px;
    width: 200px;
    height: 50px;
    margin: 10px 0px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.384);
}

.quemsomos{
 background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 93%;
    height: 100%;
    padding: 15px;
}

.card-qsm{
    width: 91%;
    background-color: white;
    border-radius: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Sombra demoníaca */
    transition: transform 0.3s ease-in-out;
}

.card-info{
    width: 91%;
    background-color: white;
    border-radius: 10px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Sombra demoníaca */
    transition: transform 0.3s ease-in-out;
    padding: 10px;
    margin: 15px 0px;
}

.clientes{
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 93%;
    height: 100%;
    padding: 15px;
}


.perguntas{
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 93%;
    height: 100%;
    padding: 15px;

}

.card-qsm:hover {
    transform: scale(1.03); /* Zoomzinho na alma */
}

.card-info:hover {
    transform: scale(1.03); /* Zoomzinho na alma */
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomFade {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Classes utilitárias */
.animate-fade-in {
    animation: fadeInScale 0.8s ease forwards;
}
.animate-slide-left {
    animation: slideFromLeft 0.8s ease forwards;
}
.animate-slide-right {
    animation: slideFromRight 0.8s ease forwards;
}
.animate-zoom-fade {
    animation: zoomFade 0.8s ease forwards;
}

.depoimento-card {

    width: 91%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    margin: 20px 0px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.bolinha{
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: #E83170;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Sombra demoníaca */
    margin-right: 5px;
}
.bolinha2{
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: #FBBB37;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Sombra demoníaca */
    margin-right: 5px;
}
.bolinha3{
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: #2AC83D;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Sombra demoníaca */
    margin-right: 5px;
}

.barrinha{
    width: 90%;
    height: 2px;
    background-color: #E83170;
    border: 10px;
}

.stars {
    color: #ffc107; /* dourado sujo */
    font-size: 20px;
}

.perguntas-card{
    width: 91%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    margin: 20px 0px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}


.footer{
    background-color: #E83170;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 93%;
    height: 100%;
    padding: 15px;
}

.card-footer{
    width: 91%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    padding: 10px;
    margin: 20px 0px;
    position: relative;
    bottom: 30px;
}

