:root {
    --primary-color: #ad23ff;
    --secondary-color: #20083f;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

html {
	overflow-x: hidden; /* Esconde o conteúdo que extrapolar a largura */
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark-color);
}
.navbar {
    background-color: var(--secondary-color);
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
section {
    padding: 4rem 0;
}
h2 {
	font-weight: 600;
}
#header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

#header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

#header .lead {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

#cta .lead {
	font-size: 1.6rem;
}

#header .container {
    position: relative;
    z-index: 2;
}

#header .col-lg-6:last-child {
    position: static;
}

#header .col-lg-6:last-child img {
    position: absolute;
    top: -5rem; /* Negativo do padding-top do header */
    bottom: -10rem; /* Negativo do padding-bottom do header */
    right: 0%;
    width: 65%;
    height: calc(100% + 20rem); /* 100% + padding-top + padding-bottom */
    object-fit: contain;
    max-height: none;
}

.icone-header {
	max-height: 200px
}

.logo-menu {
	max-width: 15vw
}

.logo-footer {
	max-width: 15vw
}

@media (max-width: 991px) {
	.logo-menu {
		max-width: 40vw;
}

	.logo-footer {
	max-width: 80vw
}
	
	.icone-header {
	max-height: 100px;
}
}

#about {
    background-color: var(--light-color);
}
#features {
    background-color: white;
}
.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#testimonials {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0;
}

.testimonial-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background-color: white;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.testimonial-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.star-rating {
    color: gold;
    font-size: 1.2rem;
    text-align: center;
}

.card-body {
    padding: 1.5rem;
}

.card-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: white;
}

.testimonial-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.testimonial-position {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.star-rating {
    color: gold;
    font-size: 1.2rem;
    text-align: center;
}

.card-body {
    padding: 1.5rem;
}

.card-text {
    font-style: italic;
    margin-bottom: 1rem;
	color: black;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.concurso-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: "\2022";  /* Código Unicode para um bullet point */
    color: var(--primary-color);  /* Usa a cor primária definida nas suas variáveis CSS */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    position: absolute;
    left: 0;
}

#pricing {
    background-color: var(--light-color);
}
#cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-align: center;
    padding: 100px 0;
}
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0;
}
footer h2 {
/*    color: var(--primary-color);*/
    margin-bottom: 20px;
}
footer ul {
    list-style-type: none;
    padding: 0;
}
footer ul li {
    margin-bottom: 10px;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    color: var(--primary-color);
}
.social-icons img {
    height: 30px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}
.salmo {
    font-size: 0.8rem;
    text-align: center;
    padding: 5px;
    background-color: var(--dark-color);
    margin-bottom: 0;
}

.cellphone-container {
    position: relative;
    height: 100%;
}

.cellphone-image {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    max-height: 450px;
    width: auto;
}

@media (max-width: 991px) {
    .cellphone-container {
        height: 300px;
        margin-bottom: 1.8rem;
    }

    .cellphone-image {
        left: 50%;
        transform: translate(-50%, -40%);
        max-height: 300px;
    }
}


@media (max-width: 768px) {
    h1 {
font-size: 2rem;
    }
    #header .lead {
		font-size: 1rem;
		max-width: 50%;
    }
	
	#cta .lead {
		font-size: 1rem;
}

/* Estilo para os links da navbar */
.navbar-nav .nav-link {
    color: white !important;
    transition: opacity 0.3s ease;
}

/* Estilo para os links da navbar quando visitados */
.navbar-nav .nav-link:visited {
    color: white !important;
}

/* Efeito hover para os links da navbar */
.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

/* Estilo para o link ativo na navbar */
.navbar-nav .nav-link.active {
    color: white !important;
    font-weight: bold;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.icon-padding {
	padding: 0px 5px;
}

@media (max-width: 991px) {
    #header {
        padding: 5rem 0;
    }

    #header .container {
        position: static;
    }

    #header .col-lg-6:first-child {
        position: relative;
        z-index: 2;
    }

    #header .col-lg-6:last-child img {
    position: absolute;
    top: 48%;
    right: -10vw; /* Ajuste este valor para mover a imagem para a direita */
    transform: translateY(-40%);
    width: 78vw; /* Ajuste este valor para controlar o tamanho da imagem */
    height: auto;
    max-height: none;
    object-fit: contain;
    opacity: 1;
}

    #header .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
	
		#cta .lead {
		font-size: 1.1rem;
	}

    #header .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}
}