/**
 * ==========================================================
 * O UIRAPURU TEMPEROS
 * LOCALIZADOR DE PONTOS DE VENDA
 * ==========================================================
 */

:root{

    --ou-red:#ED3237;
    --ou-red-dark:#c71d27;

    --ou-blue:#096FC0;

    --ou-gold:#FADD7B;

    --ou-bg:#f6f7f9;

    --ou-card:#ffffff;

    --ou-border:#e7e7e7;

    --ou-text:#2d2d2d;

    --ou-text-light:#666;

    --ou-shadow:
        0 12px 35px rgba(0,0,0,.08);

    --ou-radius:18px;

}

*,
*:before,
*:after{

    box-sizing:border-box;

}

.ou-locator{

    width:100%;

}

.ou-locator button{

    cursor:pointer;

    font-family:inherit;

}

.ou-locator input{

    font-family:inherit;

}

.ou-locator img{

    display:block;

    max-width:100%;

}

.screen-reader-text{

    position:absolute;

    width:1px;

    height:1px;

    margin:-1px;

    overflow:hidden;

    clip:rect(0,0,0,0);

}
.ou-locator-form{

    margin-top:28px;

}

.ou-locator-form label{

    display:block;

    margin-bottom:8px;

    font-weight:700;

    color:#444;

}

.ou-locator-search-row{

    display:grid;

    grid-template-columns:

        1fr

        auto;

    gap:12px;

}

.ou-locator-search-row input{

    height:54px;

    border:1px solid var(--ou-border);

    border-radius:14px;

    padding:0 18px;

    font-size:15px;

    transition:.25s;

    background:#fafafa;

}

.ou-locator-search-row input:focus{

    outline:none;

    border-color:var(--ou-red);

    background:#fff;

    box-shadow:

        0 0 0 4px rgba(237,50,55,.12);

}
/* =========================================================
   BOTÕES PRINCIPAIS
========================================================= */

.ou-locator-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	border-radius: 12px;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease;
}

.ou-locator-button:hover,
.ou-locator-button:focus {
	transform: translateY(-1px);
}

.ou-locator-button--primary {
	height: 54px;
	color: #ffffff;
	background: var(--ou-red);
	border: 1px solid var(--ou-red);
}

.ou-locator-button--primary:hover,
.ou-locator-button--primary:focus {
	color: #ffffff;
	background: var(--ou-red-dark);
	border-color: var(--ou-red-dark);
	box-shadow: 0 9px 22px rgba(237, 50, 55, 0.24);
}

.ou-locator-button--outline {
	color: var(--ou-red);
	background: #ffffff;
	border: 1px solid var(--ou-red);
}

.ou-locator-button--outline:hover,
.ou-locator-button--outline:focus {
	color: #ffffff;
	background: var(--ou-red);
}

.ou-locator-button--light {
	color: var(--ou-text);
	background: #f7f1e9;
	border: 1px solid #eadfce;
}

.ou-locator-button--light:hover,
.ou-locator-button--light:focus {
	color: #222222;
	background: #eee1cf;
	border-color: #ddcdb7;
}

.ou-locator-button.is-loading {
	opacity: 0.72;
	cursor: wait;
}

.ou-locator-button:disabled {
	opacity: 0.68;
	cursor: wait;
	transform: none;
}

/* =========================================================
   AÇÕES SECUNDÁRIAS
========================================================= */

.ou-locator-secondary-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.ou-locator-secondary-actions .ou-locator-button {
	flex: 1 1 150px;
}

.ou-locator-clear-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 8px;
	color: var(--ou-red);
	font-family: inherit;
	font-size: 12px;
	font-weight: 800;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.ou-locator-clear-link:hover,
.ou-locator-clear-link:focus {
	color: var(--ou-red-dark);
	text-decoration: underline;
}

/* =========================================================
   FILTROS RÁPIDOS
========================================================= */

.ou-locator-type-filters {
	display: flex;
	overflow-x: auto;
	gap: 8px;
	margin-top: 18px;
	padding-bottom: 5px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.ou-locator-type-filters::-webkit-scrollbar {
	display: none;
}

.ou-locator-type-filters button {
	flex: 0 0 auto;
	min-height: 38px;
	padding: 0 14px;
	color: var(--ou-text-light);
	font-family: inherit;
	font-size: 12px;
	font-weight: 800;
	background: #ffffff;
	border: 1px solid var(--ou-border);
	border-radius: 999px;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.ou-locator-type-filters button:hover,
.ou-locator-type-filters button:focus,
.ou-locator-type-filters button.is-active {
	color: #ffffff;
	background: var(--ou-red);
	border-color: var(--ou-red);
}

/* =========================================================
   RESUMO DOS RESULTADOS
========================================================= */

.ou-locator-summary {
	min-height: 22px;
	margin: 22px 0 12px;
	color: var(--ou-text-light);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
}

.ou-locator-summary strong {
	color: var(--ou-red);
	font-size: 15px;
	font-weight: 900;
}

/* =========================================================
   LISTA DE RESULTADOS
========================================================= */

.ou-locator-results {
	max-height: 405px;
	overflow-y: auto;
	padding-right: 6px;
	scrollbar-width: thin;
	scrollbar-color: #d8cbc0 transparent;
}

.ou-locator-results::-webkit-scrollbar {
	width: 7px;
}

.ou-locator-results::-webkit-scrollbar-track {
	background: transparent;
}

.ou-locator-results::-webkit-scrollbar-thumb {
	background: #d8cbc0;
	border-radius: 999px;
}

.ou-locator-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* =========================================================
   CARD DE PONTO DE VENDA
========================================================= */

.ou-locator-card {
	position: relative;
	padding: 17px;
	background: #ffffff;
	border: 1px solid var(--ou-border);
	border-radius: 15px;
	outline: none;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.ou-locator-card:hover,
.ou-locator-card:focus,
.ou-locator-card:focus-within {
	transform: translateY(-2px);
	border-color: rgba(237, 50, 55, 0.42);
	box-shadow: 0 12px 28px rgba(40, 25, 18, 0.09);
}

.ou-locator-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.ou-locator-card__title-area {
	min-width: 0;
}

.ou-locator-card__title-area h3 {
	margin: 0;
	color: var(--ou-text);
	font-size: 17px;
	font-weight: 900;
	letter-spacing: -0.015em;
	line-height: 1.25;
}

.ou-locator-card__type {
	display: inline-flex;
	align-items: center;
	margin-top: 7px;
	padding: 5px 9px;
	color: #6f5209;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	background: #fff1b4;
	border-radius: 999px;
}

.ou-locator-card__distance {
	flex: 0 0 auto;
	max-width: 115px;
	padding: 6px 9px;
	color: var(--ou-red);
	font-size: 10px;
	font-weight: 900;
	line-height: 1.3;
	text-align: center;
	background: #fff0f1;
	border-radius: 9px;
}

.ou-locator-card__address {
	margin: 12px 0 0;
	color: var(--ou-text-light);
	font-size: 12px;
	line-height: 1.55;
}

/* =========================================================
   AÇÕES DO CARD
========================================================= */

.ou-locator-card__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
	margin-top: 15px;
}

.ou-locator-card__map-button,
.ou-locator-card__route-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 41px;
	padding: 0 12px;
	font-family: inherit;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-decoration: none !important;
	border-radius: 9px;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.ou-locator-card__map-button {
	color: var(--ou-red);
	background: #ffffff;
	border: 1px solid var(--ou-red);
}

.ou-locator-card__map-button:hover,
.ou-locator-card__map-button:focus {
	color: #ffffff;
	background: var(--ou-red);
}

.ou-locator-card__route-button {
	color: #ffffff !important;
	background: var(--ou-red);
	border: 1px solid var(--ou-red);
}

.ou-locator-card__route-button:hover,
.ou-locator-card__route-button:focus {
	color: #ffffff !important;
	background: var(--ou-red-dark);
	border-color: var(--ou-red-dark);
}

/* =========================================================
   NENHUM RESULTADO
========================================================= */

.ou-locator-empty {
	padding: 30px 22px;
	text-align: center;
	background: #fff8ee;
	border: 1px solid #eadfce;
	border-radius: 15px;
}

.ou-locator-empty strong {
	display: block;
	color: var(--ou-text);
	font-size: 17px;
	font-weight: 900;
}

.ou-locator-empty span {
	display: block;
	max-width: 320px;
	margin: 8px auto 0;
	color: var(--ou-text-light);
	font-size: 13px;
	line-height: 1.55;
}
/* =========================================================
   PAINEL DO MAPA
========================================================= */

.ou-locator-map-panel {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #f3eee8;
}

.ou-locator-map-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 24px;
	background: #ffffff;
	border-bottom: 1px solid var(--ou-border);
}

.ou-locator-map-panel__header > div {
	min-width: 0;
}

.ou-locator-map-panel__header > div > span {
	display: block;
	margin-bottom: 4px;
	color: var(--ou-red);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.07em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ou-locator-map-panel__header strong {
	display: block;
	overflow: hidden;
	color: var(--ou-text);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.25;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.ou-locator-map-status {
	flex: 0 0 auto;
	padding: 7px 11px;
	color: #176b32;
	font-size: 10px;
	font-weight: 850;
	line-height: 1;
	background: #e7f7ec;
	border: 1px solid #b9dfc4;
	border-radius: 999px;
}

/* =========================================================
   ÁREA DO MAPA
========================================================= */

.ou-locator-map {
	width: 100%;
	min-height: 610px;
	background: #dfe8e9;
}

.ou-locator-map-panel .ou-locator-map {
	flex: 1;
}

/* =========================================================
   AJUSTES DO LEAFLET
========================================================= */

.ou-locator .leaflet-container {
	font-family: inherit;
	background: #dfe8e9;
}

.ou-locator .leaflet-control-container {
	font-family: inherit;
}

.ou-locator .leaflet-control-zoom {
	overflow: hidden;
	border: 0;
	border-radius: 11px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.17);
}

.ou-locator .leaflet-control-zoom a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: var(--ou-text);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	background: #ffffff;
	border-bottom-color: var(--ou-border);
}

.ou-locator .leaflet-control-zoom a:hover,
.ou-locator .leaflet-control-zoom a:focus {
	color: var(--ou-red);
	background: #fff8ee;
}

.ou-locator .leaflet-control-attribution {
	padding: 4px 7px;
	color: #6e625d;
	font-size: 9px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 7px 0 0 0;
}

.ou-locator .leaflet-control-attribution a {
	color: var(--ou-red);
}

/* =========================================================
   POPUP DO MAPA
========================================================= */

.ou-locator .leaflet-popup-content-wrapper {
	overflow: hidden;
	padding: 0;
	border-radius: 15px;
	box-shadow: 0 15px 42px rgba(0, 0, 0, 0.19);
}

.ou-locator .leaflet-popup-content {
	width: 240px !important;
	margin: 0;
}

.ou-locator .leaflet-popup-tip {
	box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.08);
}

.ou-locator .leaflet-popup-close-button {
	top: 8px;
	right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	color: #ffffff !important;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	background: rgba(33, 23, 20, 0.64);
	border-radius: 50%;
	z-index: 10;
}

.ou-locator .leaflet-popup-close-button:hover,
.ou-locator .leaflet-popup-close-button:focus {
	color: #ffffff !important;
	background: var(--ou-red);
}

/* =========================================================
   CONTEÚDO DO POPUP
========================================================= */

.ou-locator-popup {
	overflow: hidden;
	background: #ffffff;
}

.ou-locator-popup img {
	display: block;
	width: 100%;
	height: 125px;
	margin: 0;
	object-fit: cover;
	background: #f4eee7;
}

.ou-locator-popup__type {
	display: inline-flex;
	align-items: center;
	margin: 14px 14px 0;
	padding: 5px 9px;
	color: #6f5209;
	font-size: 9px;
	font-weight: 900;
	line-height: 1;
	background: #fff1b4;
	border-radius: 999px;
}

.ou-locator-popup > strong {
	display: block;
	margin: 10px 14px 0;
	color: var(--ou-text);
	font-size: 16px;
	font-weight: 900;
	letter-spacing: -0.015em;
	line-height: 1.25;
}

.ou-locator-popup > p {
	margin: 8px 14px 0;
	color: var(--ou-text-light);
	font-size: 11px;
	line-height: 1.55;
}

.ou-locator-route-button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin: 14px;
	padding: 0 14px;
	color: #ffffff !important;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-decoration: none !important;
	background: var(--ou-red);
	border-radius: 9px;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.ou-locator-route-button:hover,
.ou-locator-route-button:focus {
	color: #ffffff !important;
	background: var(--ou-red-dark);
	transform: translateY(-1px);
}

/* =========================================================
   MARCADORES PERSONALIZADOS
========================================================= */

.ou-locator-marker-wrapper {
	border: 0;
	background: transparent;
}

.ou-locator-marker {
	position: relative;
	width: 46px;
	height: 58px;
}

.ou-locator-marker__image {
	position: absolute;
	top: 0;
	left: 3px;
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 3px solid #ffffff;
	border-radius: 50%;
	background-color: #ffffff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.31);
}

.ou-locator-marker::before {
	content: "";
	position: absolute;
	top: 28px;
	left: 50%;
	width: 19px;
	height: 19px;
	margin-left: -9.5px;
	background: var(--ou-red);
	border: 3px solid #ffffff;
	border-radius: 50% 50% 50% 0;
	box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.18);
	transform: rotate(-45deg);
}

.ou-locator-marker::after {
	content: "";
	position: absolute;
	top: 37px;
	left: 50%;
	z-index: 3;
	width: 7px;
	height: 7px;
	margin-left: -3.5px;
	background: #ffffff;
	border-radius: 50%;
}

/* =========================================================
   MARCADOR PADRÃO DO LEAFLET
========================================================= */

.ou-locator .leaflet-marker-icon:not(.ou-locator-marker-wrapper) {
	filter:
		hue-rotate(310deg)
		saturate(1.7)
		brightness(1.02);
}

/* =========================================================
   ERRO DE CARREGAMENTO
========================================================= */

.ou-locator-error {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 360px;
	padding: 30px;
	text-align: center;
	background: #fff3f4;
	border: 1px solid #efb9bc;
	border-radius: 14px;
}

.ou-locator-error strong {
	display: block;
	color: #8a1f24;
	font-size: 18px;
	font-weight: 900;
}

.ou-locator-error span {
	display: block;
	max-width: 420px;
	margin-top: 8px;
	color: #6d5557;
	font-size: 13px;
	line-height: 1.55;
}
/* =========================================================
   MODO COMPACTO DA HOME
========================================================= */

.ou-locator--home {
	width: 100%;
}

.ou-locator-home {
	position: relative;
	overflow: hidden;
	min-height: 470px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: var(--ou-shadow);
}

.ou-locator-home__map {
	width: 100%;
	height: 470px;
}

.ou-locator-home__map .ou-locator-map {
	width: 100%;
	height: 100%;
	min-height: 470px;
}

/* =========================================================
   CARD DE BUSCA SOBRE O MAPA
========================================================= */

.ou-locator-home__search {
	position: absolute;
	z-index: 500;
	top: 26px;
	left: 26px;
	width: min(390px, calc(100% - 52px));
	padding: 24px;
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(33, 23, 20, 0.08);
	border-radius: 18px;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.17);
	backdrop-filter: blur(10px);
}

.ou-locator-home__search .ou-locator-eyebrow {
	margin-bottom: 10px;
}

.ou-locator-home__search h3 {
	margin: 0;
	color: var(--ou-text);
	font-size: 27px;
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.ou-locator-home__search > p {
	margin: 10px 0 0;
	color: var(--ou-text-light);
	font-size: 13px;
	line-height: 1.6;
}

/* =========================================================
   FORMULÁRIO DA HOME
========================================================= */

.ou-locator-home__search .ou-locator-form {
	margin-top: 20px;
}

.ou-locator-home__search .ou-locator-search-row {
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 9px;
}

.ou-locator-home__search .ou-locator-search-row input {
	height: 49px;
	padding-right: 13px;
	padding-left: 13px;
	font-size: 13px;
	border-radius: 10px;
}

.ou-locator-home__search
.ou-locator-button--primary {
	height: 49px;
	min-height: 49px;
	padding-right: 16px;
	padding-left: 16px;
	border-radius: 10px;
}

/* =========================================================
   AÇÕES DA HOME
========================================================= */

.ou-locator-home__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.ou-locator-home__actions
.ou-locator-button--outline {
	flex: 1 1 auto;
	min-height: 40px;
	padding-right: 13px;
	padding-left: 13px;
	font-size: 11px;
	border-radius: 9px;
}

.ou-locator-home__actions
.ou-locator-clear-link {
	flex: 0 0 auto;
	min-height: 40px;
}

/* =========================================================
   RESULTADOS DA HOME
========================================================= */

.ou-locator--home .ou-locator-summary {
	margin-top: 14px;
	margin-bottom: 5px;
	font-size: 11px;
}

.ou-locator--home .ou-locator-summary strong {
	font-size: 13px;
}

.ou-locator-results--home {
	max-height: 158px;
	overflow-y: auto;
	padding-right: 4px;
}

.ou-locator-results--home .ou-locator-list {
	gap: 0;
}

.ou-locator-results--home .ou-locator-card {
	padding: 10px 0;
	border: 0;
	border-bottom: 1px solid var(--ou-border);
	border-radius: 0;
	box-shadow: none;
	transform: none;
}

.ou-locator-results--home
.ou-locator-card:last-child {
	border-bottom: 0;
}

.ou-locator-results--home
.ou-locator-card:hover,
.ou-locator-results--home
.ou-locator-card:focus,
.ou-locator-results--home
.ou-locator-card:focus-within {
	background: transparent;
	border-color: var(--ou-border);
	box-shadow: none;
	transform: none;
}

.ou-locator-results--home
.ou-locator-card__top {
	display: block;
}

.ou-locator-results--home
.ou-locator-card__title-area h3 {
	font-size: 13px;
	line-height: 1.3;
}

.ou-locator-results--home
.ou-locator-card__type {
	margin-top: 4px;
	padding: 4px 7px;
	font-size: 8px;
}

.ou-locator-results--home
.ou-locator-card__distance {
	display: inline-flex;
	max-width: none;
	margin-top: 5px;
	padding: 0;
	color: var(--ou-red);
	font-size: 9px;
	text-align: left;
	background: transparent;
}

.ou-locator-results--home
.ou-locator-card__address {
	margin-top: 5px;
	font-size: 10px;
	line-height: 1.45;
}

.ou-locator-results--home
.ou-locator-card__actions {
	display: none;
}

/* =========================================================
   ESTADO VAZIO NA HOME
========================================================= */

.ou-locator--home .ou-locator-empty {
	padding: 15px 12px;
	border-radius: 10px;
}

.ou-locator--home .ou-locator-empty strong {
	font-size: 13px;
}

.ou-locator--home .ou-locator-empty span {
	margin-top: 5px;
	font-size: 10px;
	line-height: 1.45;
}

/* =========================================================
   CONTROLES DO MAPA NA HOME
========================================================= */

.ou-locator--home
.leaflet-top.leaflet-left {
	top: 12px;
	left: auto;
	right: 12px;
}

.ou-locator--home
.leaflet-bottom.leaflet-right {
	right: 8px;
	bottom: 7px;
}

/* =========================================================
   MAPA SEM ROLAGEM NA HOME
========================================================= */

.ou-locator--home .leaflet-container {
	cursor: default;
}

.ou-locator--home
.leaflet-grab {
	cursor: grab;
}
/* =========================================================
   TABLET — ATÉ 1180PX
========================================================= */

@media screen and (max-width: 1180px) {

	.ou-locator-layout {
		grid-template-columns:
			380px
			minmax(0, 1fr);
		gap: 22px;
	}

	.ou-locator-sidebar {
		padding: 26px;
	}

	.ou-locator-sidebar h2 {
		font-size: 31px;
	}

	.ou-locator-map {
		min-height: 580px;
	}

}

/* =========================================================
   TABLET — ATÉ 1024PX
========================================================= */

@media screen and (max-width: 1024px) {

	.ou-locator-layout {
		grid-template-columns:
			340px
			minmax(0, 1fr);
		gap: 18px;
	}

	.ou-locator-sidebar {
		padding: 22px;
		border-radius: 18px;
	}

	.ou-locator-map-panel {
		border-radius: 18px;
	}

	.ou-locator-sidebar__header {
		margin-bottom: 22px;
	}

	.ou-locator-sidebar h2 {
		font-size: 28px;
	}

	.ou-locator-sidebar p {
		font-size: 14px;
	}

	.ou-locator-form {
		margin-top: 22px;
	}

	.ou-locator-search-row {
		grid-template-columns: 1fr;
	}

	.ou-locator-search-row
	.ou-locator-button--primary {
		width: 100%;
	}

	.ou-locator-type-filters {
		margin-top: 15px;
	}

	.ou-locator-results {
		max-height: 370px;
	}

	.ou-locator-card__top {
		align-items: flex-start;
		flex-direction: column;
		gap: 9px;
	}

	.ou-locator-card__distance {
		max-width: none;
		text-align: left;
	}

	.ou-locator-map {
		min-height: 560px;
	}

	.ou-locator-map-panel__header {
		padding: 18px 20px;
	}

}

/* =========================================================
   TABLET VERTICAL — ATÉ 900PX
========================================================= */

@media screen and (max-width: 900px) {

	.ou-locator-layout {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.ou-locator-sidebar {
		position: relative;
		z-index: 2;
	}

	.ou-locator-map-panel {
		min-height: 520px;
	}

	.ou-locator-search-row {
		grid-template-columns:
			minmax(0, 1fr)
			auto;
	}

	.ou-locator-search-row
	.ou-locator-button--primary {
		width: auto;
	}

	.ou-locator-secondary-actions {
		display: grid;
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}

	.ou-locator-results {
		max-height: 420px;
	}

	.ou-locator-card__top {
		align-items: flex-start;
		justify-content: space-between;
		flex-direction: row;
	}

	.ou-locator-card__distance {
		max-width: 120px;
		text-align: center;
	}

	.ou-locator-map {
		min-height: 500px;
	}

}

/* =========================================================
   HOME — TABLET
========================================================= */

@media screen and (max-width: 1024px) {

	.ou-locator-home {
		min-height: 450px;
	}

	.ou-locator-home__map {
		height: 450px;
	}

	.ou-locator-home__map
	.ou-locator-map {
		height: 450px;
		min-height: 450px;
	}

	.ou-locator-home__search {
		top: 22px;
		left: 22px;
		width: min(360px, calc(100% - 44px));
		padding: 21px;
	}

	.ou-locator-home__search h3 {
		font-size: 24px;
	}

	.ou-locator-home__search
	.ou-locator-search-row {
		grid-template-columns: 1fr;
	}

	.ou-locator-home__search
	.ou-locator-button--primary {
		width: 100%;
	}

}

/* =========================================================
   AJUSTES PARA TELAS MAIS BAIXAS
========================================================= */

@media screen and (max-height: 760px) and (min-width: 901px) {

	.ou-locator-results {
		max-height: 320px;
	}

	.ou-locator-map {
		min-height: 520px;
	}

	.ou-locator-home {
		min-height: 430px;
	}

	.ou-locator-home__map {
		height: 430px;
	}

	.ou-locator-home__map
	.ou-locator-map {
		height: 430px;
		min-height: 430px;
	}

}
/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width:767px){

.ou-locator{

    border-radius:0;

}

.ou-locator-layout{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.ou-locator-sidebar{

    padding:20px;

    border-radius:16px;

}

.ou-locator-sidebar__header{

    margin-bottom:18px;

}

.ou-locator-sidebar h2{

    font-size:30px;

    line-height:1.1;

}

.ou-locator-sidebar p{

    font-size:14px;

}

.ou-locator-map-panel{

    border-radius:16px;

}

.ou-locator-map-panel__header{

    padding:16px;

}

.ou-locator-map-panel__header strong{

    font-size:15px;

}

.ou-locator-map-status{

    display:none;

}

/* ==============================
   BUSCA
================================ */

.ou-locator-search-row{

    display:grid;

    grid-template-columns:1fr;

    gap:10px;

}

.ou-locator-search-row input{

    height:52px;

    font-size:15px;

}

.ou-locator-button--primary{

    width:100%;

    height:50px;

}

.ou-locator-secondary-actions{

    display:grid;

    grid-template-columns:1fr;

    gap:10px;

}

.ou-locator-secondary-actions .ou-locator-button{

    width:100%;

}

/* ==============================
   FILTROS
================================ */

.ou-locator-type-filters{

    margin-top:16px;

    padding-bottom:4px;

}

.ou-locator-type-filters button{

    font-size:11px;

    padding:0 12px;

}

/* ==============================
   RESULTADOS
================================ */

.ou-locator-results{

    max-height:none;

    overflow:visible;

    padding-right:0;

}

.ou-locator-list{

    gap:14px;

}

.ou-locator-card{

    padding:16px;

}

.ou-locator-card__top{

    display:block;

}

.ou-locator-card__title-area h3{

    font-size:18px;

}

.ou-locator-card__distance{

    display:inline-flex;

    margin-top:8px;

    max-width:none;

    font-size:11px;

}

.ou-locator-card__address{

    font-size:13px;

}

.ou-locator-card__actions{

    display:grid;

    grid-template-columns:1fr;

    gap:10px;

}

.ou-locator-card__map-button,

.ou-locator-card__route-button{

    width:100%;

    min-height:44px;

}

/* ==============================
   MAPA
================================ */

.ou-locator-map{

    min-height:390px;

}

.leaflet-control-zoom{

    transform:scale(.90);

}

/* ==============================
   HOME
================================ */

.ou-locator-home{

    overflow:visible;

    min-height:auto;

    border-radius:0;

    box-shadow:none;

    background:none;

}

.ou-locator-home__map{

    order:2;

    height:390px;

}

.ou-locator-home__map .ou-locator-map{

    height:390px;

    min-height:390px;

    border-radius:14px;

}

.ou-locator-home{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.ou-locator-home__search{

    position:static;

    order:1;

    width:100%;

    padding:18px;

    border-radius:14px;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

    backdrop-filter:none;

}

.ou-locator-home__search h3{

    font-size:24px;

}

.ou-locator-home__search .ou-locator-search-row{

    grid-template-columns:1fr;

}

.ou-locator-home__actions{

    display:grid;

    grid-template-columns:1fr;

    gap:10px;

}

.ou-locator-home__actions .ou-locator-button{

    width:100%;

}

.ou-locator-results--home{

    max-height:220px;

}

/* ==============================
   POPUP
================================ */

.leaflet-popup-content{

    width:220px !important;

}

.ou-locator-popup img{

    height:115px;

}

.ou-locator-popup strong{

    font-size:15px;

}

.ou-locator-route-button{

    min-height:40px;

}

}
/* =========================================================
   ANIMAÇÕES SUAVES
========================================================= */

@keyframes ou-locator-fade-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ou-locator-pulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.55;
	}
}

@keyframes ou-locator-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.ou-locator-card {
	animation: ou-locator-fade-in 0.35s ease both;
}

.ou-locator-card:nth-child(2) {
	animation-delay: 0.04s;
}

.ou-locator-card:nth-child(3) {
	animation-delay: 0.08s;
}

.ou-locator-card:nth-child(4) {
	animation-delay: 0.12s;
}

.ou-locator-card:nth-child(5) {
	animation-delay: 0.16s;
}

.ou-locator-card:nth-child(n + 6) {
	animation-delay: 0.2s;
}

/* =========================================================
   ESTADO DE LOCALIZAÇÃO
========================================================= */

.ou-locator-button.is-loading {
	position: relative;
	padding-left: 42px;
	pointer-events: none;
}

.ou-locator-button.is-loading::before {
	content: "";
	position: absolute;
	left: 16px;
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: ou-locator-loading 0.7s linear infinite;
}

.ou-locator-button.is-loading::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.08);
	border-radius: inherit;
}

/* =========================================================
   DESTAQUE DO CAMPO DE BUSCA
========================================================= */

.ou-locator-search-row {
	position: relative;
}

.ou-locator-search-row input {
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

.ou-locator-search-row input:hover {
	border-color: #d5c8bd;
	background: #ffffff;
}

.ou-locator-search-row input:focus-visible {
	border-color: var(--ou-red);
	box-shadow:
		0 0 0 4px rgba(237, 50, 55, 0.12),
		0 7px 18px rgba(55, 33, 22, 0.07);
}

/* =========================================================
   FOCO ACESSÍVEL
========================================================= */

.ou-locator button:focus-visible,
.ou-locator a:focus-visible,
.ou-locator input:focus-visible {
	outline: 3px solid rgba(9, 111, 192, 0.32);
	outline-offset: 3px;
}

.ou-locator-card:focus-visible {
	border-color: var(--ou-blue);
	box-shadow:
		0 0 0 3px rgba(9, 111, 192, 0.13),
		0 12px 28px rgba(40, 25, 18, 0.09);
}

/* =========================================================
   EFEITO NOS FILTROS
========================================================= */

.ou-locator-type-filters button {
	position: relative;
	overflow: hidden;
}

.ou-locator-type-filters button::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.12);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.ou-locator-type-filters button:hover::after,
.ou-locator-type-filters button:focus::after {
	opacity: 1;
}

.ou-locator-type-filters button.is-active {
	box-shadow: 0 7px 16px rgba(237, 50, 55, 0.2);
}

/* =========================================================
   EFEITO NOS CARDS
========================================================= */

.ou-locator-card::before {
	content: "";
	position: absolute;
	top: 14px;
	bottom: 14px;
	left: 0;
	width: 3px;
	background: var(--ou-red);
	border-radius: 0 999px 999px 0;
	opacity: 0;
	transform: scaleY(0.55);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.ou-locator-card:hover::before,
.ou-locator-card:focus-within::before {
	opacity: 1;
	transform: scaleY(1);
}

.ou-locator-card__title-area h3 {
	transition: color 0.2s ease;
}

.ou-locator-card:hover
.ou-locator-card__title-area h3 {
	color: var(--ou-red);
}

/* =========================================================
   BOTÕES DOS CARDS
========================================================= */

.ou-locator-card__map-button,
.ou-locator-card__route-button,
.ou-locator-route-button {
	position: relative;
	overflow: hidden;
}

.ou-locator-card__map-button::after,
.ou-locator-card__route-button::after,
.ou-locator-route-button::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition:
		width 0.35s ease,
		height 0.35s ease;
}

.ou-locator-card__map-button:hover::after,
.ou-locator-card__route-button:hover::after,
.ou-locator-route-button:hover::after {
	width: 190px;
	height: 190px;
}

/* =========================================================
   CARREGAMENTO VISUAL DOS RESULTADOS
========================================================= */

.ou-locator-results.is-loading {
	position: relative;
	min-height: 160px;
	overflow: hidden;
	pointer-events: none;
}

.ou-locator-results.is-loading::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 5;
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.85) 50%,
			rgba(255, 255, 255, 0) 100%
		);
	background-size: 220% 100%;
	animation: ou-locator-pulse 1.1s ease-in-out infinite;
}

.ou-locator-results.is-loading
.ou-locator-card {
	opacity: 0.45;
}

/* =========================================================
   ESTADO DO MAPA
========================================================= */

.ou-locator-map-status {
	position: relative;
	padding-left: 24px;
}

.ou-locator-map-status::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	width: 7px;
	height: 7px;
	background: #27a657;
	border-radius: 50%;
	transform: translateY(-50%);
	box-shadow: 0 0 0 4px rgba(39, 166, 87, 0.12);
}

.ou-locator-map-status.is-loading::before {
	animation: ou-locator-pulse 1s ease-in-out infinite;
}

/* =========================================================
   MARCADOR EM DESTAQUE
========================================================= */

.ou-locator-marker-wrapper:hover
.ou-locator-marker,
.ou-locator-marker-wrapper:focus
.ou-locator-marker {
	transform: translateY(-3px) scale(1.05);
}

.ou-locator-marker {
	transition:
		transform 0.2s ease,
		filter 0.2s ease;
}

.ou-locator-marker-wrapper:hover
.ou-locator-marker__image {
	box-shadow: 0 9px 22px rgba(0, 0, 0, 0.36);
}

/* =========================================================
   MELHORIA DE ROLAGEM
========================================================= */

.ou-locator-results {
	scroll-behavior: smooth;
	overscroll-behavior: contain;
}

.ou-locator-type-filters {
	overscroll-behavior-x: contain;
}

/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

	.ou-locator *,
	.ou-locator *::before,
	.ou-locator *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

}
/* =========================================================
   CELULARES PEQUENOS — ATÉ 480PX
========================================================= */

@media screen and (max-width: 480px) {

	.ou-locator-sidebar {
		padding: 17px;
		border-radius: 14px;
	}

	.ou-locator-sidebar__header {
		margin-bottom: 16px;
	}

	.ou-locator-eyebrow {
		padding: 7px 11px;
		font-size: 10px;
	}

	.ou-locator-sidebar h2 {
		margin-top: 14px;
		font-size: 27px;
	}

	.ou-locator-sidebar p {
		font-size: 13px;
		line-height: 1.6;
	}

	.ou-locator-form {
		margin-top: 19px;
	}

	.ou-locator-form label {
		font-size: 12px;
	}

	.ou-locator-search-row input {
		height: 50px;
		padding-right: 14px;
		padding-left: 14px;
		font-size: 14px;
		border-radius: 11px;
	}

	.ou-locator-button--primary {
		height: 49px;
		min-height: 49px;
	}

	.ou-locator-secondary-actions {
		grid-template-columns: 1fr;
	}

	.ou-locator-type-filters {
		margin-right: -17px;
		padding-right: 17px;
	}

	.ou-locator-summary {
		margin-top: 18px;
	}

	.ou-locator-card {
		padding: 14px;
		border-radius: 13px;
	}

	.ou-locator-card__title-area h3 {
		font-size: 17px;
	}

	.ou-locator-card__type {
		font-size: 9px;
	}

	.ou-locator-card__address {
		font-size: 12px;
	}

	.ou-locator-map-panel__header {
		padding: 15px;
	}

	.ou-locator-map-panel__header strong {
		font-size: 14px;
		white-space: normal;
	}

	.ou-locator-map {
		min-height: 360px;
	}

	.ou-locator-home__search {
		padding: 16px;
	}

	.ou-locator-home__search h3 {
		font-size: 22px;
	}

	.ou-locator-home__search > p {
		font-size: 12px;
	}

	.ou-locator-home__map,
	.ou-locator-home__map .ou-locator-map {
		height: 360px;
		min-height: 360px;
	}

	.ou-locator-results--home {
		max-height: 190px;
	}

	.ou-locator .leaflet-popup-content {
		width: 210px !important;
	}

	.ou-locator-popup img {
		height: 105px;
	}

}

/* =========================================================
   CELULARES MUITO PEQUENOS — ATÉ 360PX
========================================================= */

@media screen and (max-width: 360px) {

	.ou-locator-sidebar {
		padding: 14px;
	}

	.ou-locator-sidebar h2 {
		font-size: 24px;
	}

	.ou-locator-search-row input {
		font-size: 13px;
	}

	.ou-locator-button {
		padding-right: 13px;
		padding-left: 13px;
		font-size: 12px;
	}

	.ou-locator-type-filters button {
		padding-right: 11px;
		padding-left: 11px;
		font-size: 10px;
	}

	.ou-locator-card__title-area h3 {
		font-size: 16px;
	}

	.ou-locator-card__address {
		font-size: 11px;
	}

	.ou-locator-map {
		min-height: 330px;
	}

	.ou-locator-home__map,
	.ou-locator-home__map .ou-locator-map {
		height: 330px;
		min-height: 330px;
	}

}

/* =========================================================
   CELULAR NA HORIZONTAL
========================================================= */

@media screen and (max-width: 900px) and (orientation: landscape) {

	.ou-locator-map {
		min-height: 430px;
	}

	.ou-locator-home {
		display: grid;
		grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.15fr);
		gap: 14px;
		align-items: stretch;
	}

	.ou-locator-home__search {
		position: static;
		order: 1;
		width: 100%;
		height: 100%;
	}

	.ou-locator-home__map {
		order: 2;
		height: 430px;
	}

	.ou-locator-home__map
	.ou-locator-map {
		height: 430px;
		min-height: 430px;
	}

}

/* =========================================================
   COMPATIBILIDADE COM SAFARI
========================================================= */

@supports (-webkit-touch-callout: none) {

	.ou-locator-search-row input {
		font-size: 16px;
	}

	.ou-locator-home__search {
		-webkit-backdrop-filter: blur(10px);
	}

	.ou-locator-type-filters {
		-webkit-overflow-scrolling: touch;
	}

}

/* =========================================================
   NAVEGADORES SEM BACKDROP-FILTER
========================================================= */

@supports not (
	(backdrop-filter: blur(10px))
	or
	(-webkit-backdrop-filter: blur(10px))
) {

	.ou-locator-home__search {
		background: rgba(255, 255, 255, 0.99);
	}

}

/* =========================================================
   ALTO CONTRASTE
========================================================= */

@media (prefers-contrast: more) {

	.ou-locator-sidebar,
	.ou-locator-map-panel,
	.ou-locator-card,
	.ou-locator-search-row input {
		border-color: #8a817c;
	}

	.ou-locator-button--outline,
	.ou-locator-card__map-button {
		border-width: 2px;
	}

	.ou-locator-card__type,
	.ou-locator-popup__type {
		color: #332400;
		background: #ffdf5d;
	}

}

/* =========================================================
   MODO ESCURO DO NAVEGADOR
   Mantém o visual claro da identidade O Uirapuru.
========================================================= */

@media (prefers-color-scheme: dark) {

	.ou-locator {
		color-scheme: light;
	}

	.ou-locator input,
	.ou-locator button,
	.ou-locator select {
		color-scheme: light;
	}

}

/* =========================================================
   IMPRESSÃO
========================================================= */

@media print {

	.ou-locator {
		display: none !important;
	}

}
/* =========================================================
   RESET ESPECÍFICO DO PLUGIN
========================================================= */

.ou-locator,
.ou-locator *,
.ou-locator *::before,
.ou-locator *::after {
	box-sizing: border-box;
}

.ou-locator button,
.ou-locator input,
.ou-locator select,
.ou-locator textarea {
	font-family: inherit;
}

.ou-locator button {
	margin: 0;
	text-transform: none;
	box-shadow: none;
}

.ou-locator a {
	text-decoration: none;
}

.ou-locator img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ou-locator ul,
.ou-locator ol {
	margin: 0;
	padding: 0;
}

.ou-locator h2,
.ou-locator h3,
.ou-locator p {
	margin-top: 0;
}

/* =========================================================
   EVITA CONFLITOS COM BOTÕES DO TEMA
========================================================= */

.ou-locator
.ou-locator-button,
.ou-locator
.ou-locator-card__map-button,
.ou-locator
.ou-locator-card__route-button,
.ou-locator
.ou-locator-route-button,
.ou-locator
.ou-locator-clear-link,
.ou-locator
.ou-locator-type-filters button {
	appearance: none;
	-webkit-appearance: none;
	min-width: 0;
	letter-spacing: normal;
	text-shadow: none;
	box-shadow: none;
}

.ou-locator
.ou-locator-button::before,
.ou-locator
.ou-locator-button::after {
	pointer-events: none;
}

/* =========================================================
   EVITA CONFLITOS COM INPUTS DO TEMA
========================================================= */

.ou-locator
.ou-locator-search-row input[type="search"] {
	width: 100%;
	max-width: none;
	margin: 0;
	color: var(--ou-text);
	background-color: #fafafa;
	border-style: solid;
	border-width: 1px;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.ou-locator
.ou-locator-search-row input[type="search"]::-webkit-search-decoration,
.ou-locator
.ou-locator-search-row input[type="search"]::-webkit-search-cancel-button,
.ou-locator
.ou-locator-search-row input[type="search"]::-webkit-search-results-button,
.ou-locator
.ou-locator-search-row input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

.ou-locator
.ou-locator-search-row input[type="search"]::placeholder {
	color: #8d817b;
	opacity: 1;
}

/* =========================================================
   EVITA CONFLITOS COM GRID E CONTAINERS DO TEMA
========================================================= */

.ou-locator-layout,
.ou-locator-home,
.ou-locator-sidebar,
.ou-locator-map-panel,
.ou-locator-home__map,
.ou-locator-home__search {
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
}

.ou-locator-sidebar,
.ou-locator-map-panel,
.ou-locator-card,
.ou-locator-home__search {
	box-sizing: border-box;
}

/* =========================================================
   PROTEÇÃO CONTRA ESTILOS DE ARTIGOS E CONTEÚDO
========================================================= */

.entry-content .ou-locator h2,
.entry-content .ou-locator h3,
.entry-content .ou-locator p,
.page-content .ou-locator h2,
.page-content .ou-locator h3,
.page-content .ou-locator p {
	max-width: none;
}

.entry-content .ou-locator ul,
.page-content .ou-locator ul {
	margin-left: 0;
	padding-left: 0;
}

.entry-content .ou-locator li,
.page-content .ou-locator li {
	margin: 0;
	padding-left: 0;
}

.entry-content .ou-locator a,
.page-content .ou-locator a {
	text-decoration: none;
}

/* =========================================================
   INTEGRAÇÃO COM A PÁGINA ONDE ENCONTRAR
========================================================= */

.ou-locations-map-card__content .ou-locator {
	width: 100%;
}

.ou-locations-map-card__content .ou-locator-layout {
	gap: 0;
	overflow: hidden;
	border: 1px solid var(--ou-border);
	border-radius: 18px;
	box-shadow: none;
}

.ou-locations-map-card__content .ou-locator-sidebar {
	border-radius: 0;
	box-shadow: none;
	border-right: 1px solid var(--ou-border);
}

.ou-locations-map-card__content .ou-locator-map-panel {
	border-radius: 0;
	box-shadow: none;
}

.ou-locations-map-card__content {
	overflow: visible;
}

/* =========================================================
   INTEGRAÇÃO COM A HOME
========================================================= */

.ou-home-location-map .ou-locator--home,
.ou-home-map .ou-locator--home,
.ou-home-onde-encontrar .ou-locator--home {
	width: 100%;
}

.ou-home-location-map .ou-locator-home,
.ou-home-map .ou-locator-home,
.ou-home-onde-encontrar .ou-locator-home {
	margin: 0;
}

/* =========================================================
   CORREÇÕES DO LEAFLET DENTRO DO WORDPRESS
========================================================= */

.ou-locator .leaflet-pane,
.ou-locator .leaflet-tile,
.ou-locator .leaflet-marker-icon,
.ou-locator .leaflet-marker-shadow,
.ou-locator .leaflet-tile-container,
.ou-locator .leaflet-pane > svg,
.ou-locator .leaflet-pane > canvas,
.ou-locator .leaflet-zoom-box,
.ou-locator .leaflet-image-layer,
.ou-locator .leaflet-layer {
	position: absolute;
	top: 0;
	left: 0;
}

.ou-locator .leaflet-container {
	position: relative;
	overflow: hidden;
	-webkit-tap-highlight-color: transparent;
	outline: 0;
}

.ou-locator .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	padding: 0 !important;
	opacity: 1;
}

.ou-locator .leaflet-marker-icon,
.ou-locator .leaflet-marker-shadow {
	max-width: none !important;
	max-height: none !important;
}

.ou-locator .leaflet-popup {
	position: absolute;
	margin-bottom: 20px;
	text-align: center;
}

.ou-locator .leaflet-popup-content-wrapper {
	text-align: left;
}

.ou-locator .leaflet-popup-content {
	line-height: 1.4;
}

.ou-locator .leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: auto;
}

.ou-locator .leaflet-top,
.ou-locator .leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
}

.ou-locator .leaflet-top {
	top: 0;
}

.ou-locator .leaflet-right {
	right: 0;
}

.ou-locator .leaflet-bottom {
	bottom: 0;
}

.ou-locator .leaflet-left {
	left: 0;
}

.ou-locator .leaflet-top .leaflet-control {
	margin-top: 10px;
}

.ou-locator .leaflet-left .leaflet-control {
	margin-left: 10px;
}

.ou-locator .leaflet-right .leaflet-control {
	margin-right: 10px;
}

.ou-locator .leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
}

/* =========================================================
   CORREÇÃO DE Z-INDEX
========================================================= */

.ou-locator {
	position: relative;
	z-index: 1;
}

.ou-locator-sidebar {
	position: relative;
	z-index: 5;
}

.ou-locator-map-panel {
	position: relative;
	z-index: 1;
}

.ou-locator-home__search {
	z-index: 600;
}

.ou-locator .leaflet-popup-pane {
	z-index: 700;
}

.ou-locator .leaflet-marker-pane {
	z-index: 600;
}

.ou-locator .leaflet-tooltip-pane {
	z-index: 650;
}

/* =========================================================
   CORREÇÃO DE ALTURA DO MAPA
========================================================= */

.ou-locator-map,
.ou-locator-map.leaflet-container {
	display: block;
	width: 100%;
}

.ou-locator-map-panel .ou-locator-map {
	height: 100%;
}

.ou-locator-map:empty {
	min-height: 610px;
}

/* =========================================================
   CORREÇÃO PARA ADMIN BAR DO WORDPRESS
========================================================= */

.admin-bar .ou-locator-map-panel,
.admin-bar .ou-locator-home__search {
	scroll-margin-top: 120px;
}

/* =========================================================
   TABLET E MOBILE — INTEGRAÇÃO COM O TEMA
========================================================= */

@media screen and (max-width: 900px) {

	.ou-locations-map-card__content
	.ou-locator-layout {
		border-radius: 15px;
	}

	.ou-locations-map-card__content
	.ou-locator-sidebar {
		border-right: 0;
		border-bottom: 1px solid var(--ou-border);
	}

}

@media screen and (max-width: 767px) {

	.ou-locations-map-card__content {
		padding-right: 0;
		padding-left: 0;
	}

	.ou-locations-map-card__content
	.ou-locator-layout {
		overflow: visible;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.ou-locations-map-card__content
	.ou-locator-sidebar {
		border-radius: 14px;
	}

	.ou-locations-map-card__content
	.ou-locator-map-panel {
		border-radius: 14px;
	}

}

/* =========================================================
   ACESSIBILIDADE DA CLASSE SCREEN READER
========================================================= */

.ou-locator .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
/* =========================================================
   AJUSTES FINAIS DE ESPAÇAMENTO
========================================================= */

.ou-locator-layout {
	align-items: stretch;
}

.ou-locator-sidebar {
	min-height: 610px;
}

.ou-locator-map-panel {
	min-height: 610px;
}

.ou-locator-sidebar__header > :last-child,
.ou-locator-home__search > :last-child,
.ou-locator-popup > :last-child {
	margin-bottom: 0;
}

.ou-locator-sidebar__header h2,
.ou-locator-home__search h3 {
	word-break: normal;
	overflow-wrap: break-word;
}

.ou-locator-card__title-area,
.ou-locator-card__top,
.ou-locator-card__actions {
	min-width: 0;
}

.ou-locator-card__address {
	overflow-wrap: anywhere;
}

.ou-locator-popup > strong,
.ou-locator-popup > p {
	overflow-wrap: anywhere;
}

/* =========================================================
   ALTURA E DISTRIBUIÇÃO DOS RESULTADOS
========================================================= */

.ou-locator-sidebar {
	display: flex;
	flex-direction: column;
}

.ou-locator-sidebar .ou-locator-form {
	flex: 0 0 auto;
}

.ou-locator-sidebar .ou-locator-summary {
	flex: 0 0 auto;
}

.ou-locator-sidebar .ou-locator-results {
	flex: 1 1 auto;
	min-height: 120px;
}

.ou-locator-results:empty {
	min-height: 0;
}

/* =========================================================
   ESTADO SEM PONTOS CADASTRADOS
========================================================= */

.ou-locator-summary:empty {
	display: none;
}

.ou-locator-results:empty::before {
	content: "Nenhum ponto de venda disponível.";
	display: block;
	padding: 28px 20px;
	color: var(--ou-text-light);
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
	background: #fff8ee;
	border: 1px solid #eadfce;
	border-radius: 14px;
}

/* =========================================================
   MELHORIAS NOS BOTÕES
========================================================= */

.ou-locator-button,
.ou-locator-card__map-button,
.ou-locator-card__route-button,
.ou-locator-route-button {
	white-space: nowrap;
}

.ou-locator-button--primary,
.ou-locator-card__route-button,
.ou-locator-route-button {
	box-shadow: 0 7px 18px rgba(237, 50, 55, 0.18);
}

.ou-locator-button--primary:active,
.ou-locator-card__map-button:active,
.ou-locator-card__route-button:active,
.ou-locator-route-button:active {
	transform: translateY(0);
	box-shadow: none;
}

/* =========================================================
   MELHORIAS NO CAMPO DE BUSCA
========================================================= */

.ou-locator-search-row input[type="search"] {
	caret-color: var(--ou-red);
}

.ou-locator-search-row input[type="search"]:disabled {
	color: #8a817c;
	background: #f3f0ed;
	cursor: not-allowed;
}

.ou-locator-search-row input[type="search"]:-webkit-autofill,
.ou-locator-search-row input[type="search"]:-webkit-autofill:hover,
.ou-locator-search-row input[type="search"]:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--ou-text);
	-webkit-box-shadow: 0 0 0 1000px #ffffff inset;
	transition: background-color 9999s ease-in-out 0s;
}

/* =========================================================
   FILTRO ATIVO
========================================================= */

.ou-locator-type-filters button[aria-pressed="true"] {
	color: #ffffff;
	background: var(--ou-red);
	border-color: var(--ou-red);
	box-shadow: 0 7px 16px rgba(237, 50, 55, 0.2);
}

/* =========================================================
   CARTÃO SELECIONADO
========================================================= */

.ou-locator-card.is-active {
	border-color: var(--ou-red);
	box-shadow:
		0 0 0 3px rgba(237, 50, 55, 0.11),
		0 12px 28px rgba(40, 25, 18, 0.09);
}

.ou-locator-card.is-active::before {
	opacity: 1;
	transform: scaleY(1);
}

.ou-locator-card.is-active
.ou-locator-card__title-area h3 {
	color: var(--ou-red);
}

/* =========================================================
   POPUP SEM IMAGEM
========================================================= */

.ou-locator-popup:not(:has(img)) {
	padding-top: 4px;
}

.ou-locator-popup:not(:has(img))
.ou-locator-popup__type {
	margin-top: 14px;
}

/* Fallback para navegadores sem :has */
@supports not selector(:has(*)) {

	.ou-locator-popup {
		padding-top: 1px;
	}

	.ou-locator-popup img {
		margin-top: -1px;
	}

}

/* =========================================================
   CORREÇÃO DOS TILES DO MAPA
========================================================= */

.ou-locator .leaflet-tile-container img {
	width: 256px !important;
	height: 256px !important;
	max-width: none !important;
}

.ou-locator .leaflet-fade-anim
.leaflet-tile {
	will-change: opacity;
}

.ou-locator .leaflet-zoom-animated {
	will-change: transform;
}

/* =========================================================
   MELHORIA DO MARCADOR DO CLIENTE
========================================================= */

.ou-locator .leaflet-interactive {
	outline: none;
}

.ou-locator .leaflet-marker-pane svg {
	overflow: visible;
}

/* =========================================================
   HOME — AJUSTES FINAIS
========================================================= */

.ou-locator--home
.ou-locator-home__search {
	max-height: calc(100% - 52px);
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #d8cbc0 transparent;
}

.ou-locator--home
.ou-locator-home__search::-webkit-scrollbar {
	width: 6px;
}

.ou-locator--home
.ou-locator-home__search::-webkit-scrollbar-thumb {
	background: #d8cbc0;
	border-radius: 999px;
}

.ou-locator--home
.ou-locator-home__search::-webkit-scrollbar-track {
	background: transparent;
}

/* =========================================================
   TABLET — AJUSTES FINAIS
========================================================= */

@media screen and (max-width: 900px) {

	.ou-locator-sidebar,
	.ou-locator-map-panel {
		min-height: 0;
	}

	.ou-locator-sidebar .ou-locator-results {
		min-height: 0;
	}

	.ou-locator-map-panel {
		overflow: hidden;
	}

}

/* =========================================================
   MOBILE — AJUSTES FINAIS
========================================================= */

@media screen and (max-width: 767px) {

	.ou-locator-layout {
		width: 100%;
	}

	.ou-locator-sidebar,
	.ou-locator-map-panel {
		width: 100%;
		min-width: 0;
	}

	.ou-locator-sidebar {
		min-height: 0;
	}

	.ou-locator-map-panel {
		min-height: 390px;
	}

	.ou-locator-card__distance {
		width: auto;
	}

	.ou-locator-button,
	.ou-locator-card__map-button,
	.ou-locator-card__route-button {
		white-space: normal;
		line-height: 1.25;
	}

	.ou-locator--home
	.ou-locator-home__search {
		max-height: none;
		overflow: visible;
	}

	.ou-locator--home
	.leaflet-control-attribution {
		max-width: 75%;
		font-size: 8px;
		line-height: 1.2;
	}

}

/* =========================================================
   CORREÇÃO PARA O CONTAINER DA PÁGINA
========================================================= */

.ou-locations-map-card__content
.ou-locator-map {
	min-height: 610px;
}

@media screen and (max-width: 900px) {

	.ou-locations-map-card__content
	.ou-locator-map {
		min-height: 500px;
	}

}

@media screen and (max-width: 767px) {

	.ou-locations-map-card__content
	.ou-locator-map {
		min-height: 390px;
	}

}

/* =========================================================
   CLASSE UTILITÁRIA PARA OCULTAR
========================================================= */

.ou-locator [hidden] {
	display: none !important;
}



.ou-locator-map {
	display: block !important;
	width: 100% !important;
	height: 610px !important;
	min-height: 610px !important;
	background: #dfe8e9 !important;
}

/* =========================================================
   FIM DO LOCALIZADOR
========================================================= */