
body {
	background-color: #DED3F6;
	margin: 0;
	font-family: 'Courier New', Courier, monospace;
	font-size: 18px;
}

.telefonesemail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #B7BFCC;
	padding: 10px 20px;
	flex-wrap: wrap;
}

.telefone, .email {
	display: flex;
	align-items: center;
	gap: 10px;
}

.telefonesemail img {
	height: 24px;
}

.telefonesemail p {
	margin: 0;
	font-family: Verdana, sans-serif;
	white-space: nowrap;
	font-size: 14px;
}

.logologin {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	background-color: #DED3F6;
}

.logo, .login {
	height: 60px;
}

.menu {
	height: 60px;
	width: 100%;
	background: linear-gradient(90deg, rgba(134,56,100,1) 55%, rgba(32,56,100,1) 100%);
}

.banner img {
	width: 100%;
	height: auto;
	display: block;
}

.meio {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 20px;
	gap: 80px;
}

.texto img {
	width: 100%;
	max-width: 1000px;
	height: auto;
}

.pabx, .cftv {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	max-width: 1000px;
	width: 100%;
}

.circulo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-color: #863864;
	display: flex;
	justify-content: center;
	align-items: center;
}

.circulo img {
	width: 80%;
	height: auto;
}

.quadrado {
	background-color: white;
	padding: 40px;
	border-radius: 40px 0 40px 40px;
	box-shadow: 10px 10px 20px rgba(0,0,0,0.2);
	text-align: justify;
}

.quadrado p {
	font-family: Optima, sans-serif;
	font-size: 18px;
	margin: 0;
}

@media (min-width: 768px) {
	.pabx, .cftv {
		flex-direction: row;
		align-items: flex-start;
	}
	.pabx .quadrado, .cftv .quadrado {
		flex: 1;
	}
	.pabx .circulo, .cftv .circulo {
		margin: 0 20px;
	}
}

@media (max-width: 450px) {
  .telefonesemail {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 4px 10px;
  }

  .telefone, .email {
    flex: 1 1 0;
    min-width: 0;
    align-items: center;
    gap: 4px;
  }

  .telefonesemail p {
    font-size: 10px;
    white-space: normal; /* Permite quebra de linha se necessário */
    overflow-wrap: break-word;
    text-align: left;
  }

  .telefonesemail img {
    height: 16px;
  }
}