
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f7f0f5;
    color: #4b3049;
    line-height: 1.6;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3F2243;
    padding: 15px 20px;
}
.logo {
    /*font-size: 24px;
    color: #fff;**/
	background-image: url('logo.png');
}

#explicacao, #historia {
	max-width: 800px;
	margin: 20px auto;
	padding: 0 20px;
	text-align: justify;
}
		
#compras {
	max-width: 800px;
	margin: 20px auto;
	text-align: center;
	height: 300px;
}
        

.logo-image {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

nav {
    display: flex;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
}
.auth-links a {
    margin-left: 15px;
    color: #f4a261;
    text-decoration: none;
}
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    background: url('hero.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.hero h1 {
    position: relative;
    font-size: 2.5rem;
    z-index: 1;
}
.how-it-works, .testimonials, .packages {
    text-align: center;
    padding: 40px 20px;
}
footer {
    background-color: #2e2134;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
	z-index: 3;
}

.close_entrar {
	position: absolute;
	top: 10px;
	right: 15px;
	color: #aaa;
	font-size: 24px;
	cursor: pointer;
}


@media (max-width: 768px) {
    nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
	#chat-container, #message-form {
		padding: 10px;
	}

	#chat-container {
		margin: 20px;
	}	
}

.how-it-works {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f5ff;
}
.steps-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.step-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 320px;
    flex: 1;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.step-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}
.step1 { background-image: url('step1.jpg'); }
.step2 { background-image: url('step2.jpg'); }
.step3 { background-image: url('step3.jpg'); }
.step-content {
    padding: 20px;
}
.step-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.step-content p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Estilos para a seção de Depoimentos */
.testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: #3b2a4f; /* Roxo escuro místico */
    color: #f9f5ff;
}


/* Estilos para a seção de Depoimentos */
.testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: #e8dff5; /* Roxo claro suave */
    color: #4b3049;
	border-top: 4px solid #bfa8d1; /* Detalhe em roxo suave */
}

/* Estilos para a seção de Pacotes de Créditos */
.packages {
    text-align: center;
    padding: 50px 20px;
    background-color: #d7e6f9; /* Azul claro suave */
    color: #2e3a4b;
    border-top: 4px solid #bfa8d1; /* Detalhe em roxo suave */
}
.package1 { background-image: url('package1.jpg'); }
.package2 { background-image: url('package2.jpg'); }
.package3 { background-image: url('package3.jpg'); }




/* Modal styles */
.modal2 {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content2 {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    position: relative;
	z-index: 3;
}
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
label {
    margin-bottom: 5px;
}
input {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
button:hover {
    background-color: #45a049;
}
.error {
    color: red;
    font-size: 14px;
}

 .tarot-images {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 800px;
	margin: 20px auto;
	padding: 0 20px;
}

.tarot-images .box {
	background-color: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.tarot-images img {
	max-width: 20%;
	height: auto;
	border-radius: 8px;
}
#chat-container {
	max-width: 800px;
	margin: 20px auto;
	padding: 0 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#chat-box {
	height: 600px;
	overflow-y: auto;
	padding: 15px;
	border-bottom: 1px solid #ccc;
}
 #message-input {
	flex-grow: 1;
	width: calc(100% - 100px);
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-right: 10px;
}