<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* .slider-container-delivery {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.slides-delivery {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide-banner-delivery {
  width: 100%;
  flex: 0 0 auto;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-banner-delivery img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  position: absolute; 
  top: 0;
  left: 0;
}

h2 {
  color: #8a6e2f;
  font-size: 24px;
}

p {
  font-size: 16px;
  color: #333;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background: black;
}
 */


.container-title-delivery {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.container-title-delivery h2 {
	color: #4f610a;
	font-family: 'Boomi', Sans-serif;
	font-size: 33px;
}


.body {
	font-family: sans-serif;
	margin: 0;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
/* 	margin-bottom: 10rem; */
}

.delivery-section {
	display: flex;
	max-width: 900px; /* Ajuste conforme necessÃ¡rio */
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

.map-container {
	flex: 1; /* Ocupa metade do espaÃ§o */
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#mapa-brasil {
	width: 100%;
	max-width: 400px; /* Ajuste o tamanho mÃ¡ximo do mapa */
	height: auto;
	stroke: #fff; /* Cor das bordas entre estados */ 
	stroke-width: 500px;
}

/* Estilos base para os estados */
#mapa-brasil path {
	fill: #FFEFA1; /* Cor padrÃ£o para estados nÃ£o selecionados/nÃ£o ativos */
	transition: fill 0.3s ease;
	cursor: pointer;
}

#mapa-brasil path:hover {
	fill: #A35E0A; /* Cor ao passar o mouse sobre um estado */
}

/* Classes de destaque para grupos de estados */
#mapa-brasil path.highlight-norte-nordeste-co {
	fill: url(#meuGradienteVerde);
}

#mapa-brasil path.highlight-sp {
	fill: url(#meuGradienteVerde)
}

#mapa-brasil path.highlight-sul-sudeste {
	fill: url(#meuGradienteVerde)
}


.info-container {
	flex: 1; /* Ocupa a outra metade */
	padding: 30px 40px;
	color: #333;
}

.info-container h2 {
	font-size: 1.4em;
	color: #4F610A; /* Cor do tÃ­tulo */
	margin-top: 0;
	margin-bottom: 15px;
	font-family: 'Boomi', sans-serif; /* Fonte similar */
}

.info-container ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-family: 'MuseoSans', serif;
}

.info-container ul li {
	margin-bottom: 10px;
	font-size: 0.95em;
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
}
.info-container ul li::before {
	content: 'âœ”'; /* Checkmark */
	color: #5d6624;
	margin-right: 8px;
	font-weight: bold;
}

/* Responsividade bÃ¡sica */
@media (max-width: 768px) {
	.delivery-section {
		flex-direction: column;
	}
	.map-container, .info-container {
		flex: none;
		width: 100%;
	}
	.map-container {
		padding-bottom: 0;
	}
}</pre></body></html>