/* =========================================================
   PAGE PRICES
========================================================= */

.ponce-prices {
  width: 100%;
  overflow-x: hidden;
}

/* =========================================================
   HERO
========================================================= */

.ponce-prices-hero {
  position: relative;

  width: 100%;
  min-height: 800px;

  overflow: hidden;

  background-image:
    url("../img/banner-precos.webp");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


/* =========================================================
   OVERLAY
========================================================= */

.ponce-prices-hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.26) 0%,
      rgba(0, 0, 0, 0.12) 45%,
      rgba(0, 0, 0, 0.02) 100%
    );
}


/* =========================================================
   CONTEÚDO
========================================================= */

.ponce-prices-hero-inner {
  position: relative;

  z-index: 2;

  width: min(100% - 40px, 1050px);
  min-height: 800px;

  margin: 0 auto;

  padding-top: 150px;
}


/* =========================================================
   CARD DA OFERTA
========================================================= */

.ponce-prices-offer {
  width: 450px;

  padding: 18px 30px 24px;

  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(22, 22, 22, 0.84) 0%,
      rgba(0, 0, 0, 0.92) 100%
    );

  color: #ffffff;

  text-align: center;
}


.ponce-prices-offer h1 {
  margin: 0 0 18px;

  color: #ffffff;

  font-size: 27px;
  font-weight: 300;
  line-height: 1.2;
}


.ponce-prices-offer h1 strong {
  font-weight: 500;
}


/* =========================================================
   PREÇOS
========================================================= */

.ponce-prices-values {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  margin-bottom: 20px;
}


/* PREÇO ANTIGO */

.ponce-prices-old-price {
  position: relative;

  color: #ffffff;

  font-size: 37px;
  font-weight: 300;
  line-height: 1;
}


.ponce-prices-old-price::after {
  content: "";

  position: absolute;

  left: -5px;
  right: -5px;

  top: 50%;

  height: 2px;

  background: #e5132a;

  transform: rotate(-1deg);
}


/* PREÇO NOVO */

.ponce-prices-new-price {
  min-width: 200px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 5px;

  padding: 8px 10px;

  border-radius: 10px;

  background: #ef6500;

  color: #ffffff;
}


.ponce-prices-new-value {
  font-size: 43px;
  font-weight: 400;
  line-height: 1;
}


.ponce-prices-new-note {
  font-size: 14px;
  line-height: 1.05;

  text-align: right;
}


.ponce-prices-new-note small {
  font-size: 14px;
}


/* =========================================================
   BOTÃO
========================================================= */

.ponce-prices-hero-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 165px;
  min-height: 42px;

  padding: 0 22px;

  border-radius: 999px;

  background: #d85b00;
  color: #ffffff;

  font-size: 15px;
  font-weight: 400;

  text-decoration: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.ponce-prices-hero-btn:hover {
  background: #c64f00;
  color: #ffffff;

  transform: translateY(-2px);
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.ponce-prices-hero-description {
  margin: 18px 0 0;

  color: #ffffff;

  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
}


/* =========================================================
   OBSERVAÇÕES DO HERO
========================================================= */

.ponce-prices-hero-notes {
  position: absolute;

  left: 30px;
  bottom: 125px;

  color: #ffffff;

  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;

  text-align: center;
}


.ponce-prices-hero-notes p {
  margin: 0;
}

/* =========================================================
   TABELA DE PREÇOS
========================================================= */

.ponce-prices-tabela-section {
  position: relative;

  width: 100%;

  padding: 0 20px 0;

  background: #ffffff;

  text-align: center;
}

/* CARD LARANJA */

.ponce-prices-tabela {
  position: relative;

  z-index: 10;

  width: 100%;
  max-width: 750px;
  
  margin: 0 auto;

  transform: translateY(-50px);

  padding: 38px 48px 26px;

  display: grid;

  grid-template-columns:
    1fr
    1.15fr
    1.15fr;

  column-gap: 40px;
  row-gap: 0;

  border-radius: 17px;

  background: #ef6500;

  color: #ffffff;

  text-align: left;
}

/* COLUNAS */

.ponce-prices-coluna h3 {
  margin: 0 0 9px;

  color: #ffffff;

  font-size: 18px;
  font-weight: 400;

  line-height: 1.2;
}

.ponce-prices-coluna p {
  margin: 0px 0 7px;

  color: #ffffff;

  font-size: 1rem;
  font-weight: 300;

  line-height: 1.2;
}

/* BOTÃO + OBSERVAÇÃO DENTRO DO CARD */

.ponce-prices-tabela-acao {
  grid-column: 1 / -1;

  margin-top: 17px;

  text-align: center;
}

.ponce-prices-btn-preto {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 242px;
  min-height: 42px;

  padding: 7px 26px;

  background: #000000;
  color: #ffffff;

  border-radius: 999px;

  font-size: 16px;
  font-weight: 400;

  text-decoration: none;

  transition: 0.3s;
}

.ponce-prices-btn-preto:hover {
  background: #ff8052;
  color: #ffffff;
  transform: translatey(-4px);
}

.ponce-prices-tabela-observacao {
  margin: 10px 0 0;

  color: #ffffff;

  font-size: 13px;
  font-weight: 400;

  line-height: 1.15;

  text-align: center;
}

/* =========================================================
   TEXTO ABAIXO DO CARD
========================================================= */

.ponce-prices-explicacao {
  width: 100%;
  max-width: 980px;

  margin: -20px auto 0;

  text-align: center;
}

.ponce-prices-explicacao p {
  max-width: 970px;

  margin: 0 auto 22px;

  color: #111111;

  font-size: .98rem;
  font-weight: 400;

  line-height: 1.25;

  text-align: center;
}

.ponce-prices-explicacao-mob {
	display: none;
}

/* BOTÃO LARANJA */

.ponce-prices-btn-laranja {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 240px;
  min-height: 42px;

  padding: 10px 27px;

  background: #d85b00;
  color: #ffffff;

  border-radius: 999px;

  font-size: 16px;
  font-weight: 400;

  line-height: 1;

  text-decoration: none;
  margin-bottom: 40px;
  margin-top: 10px;	
  transition: 0.3s;	
}

.ponce-prices-btn-laranja:hover {
  background: #ff8052;
  color: #ffffff;
  transform: translatey(-4px);
}

/* =========================================================
   CURVA SUPERIOR - BLOCO LARANJA
========================================================= */

.ponce-prices-beneficios {
  position: relative;

  width: 100%;

  background: #ef6500;

  padding: 100px 20px 35px;
  margin-top: 0px;
  margin-bottom: 80px;	
  overflow: hidden;
}

/* CONTEÚDO FICA ACIMA DA CURVA */

.ponce-prices-beneficios-inner {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 960px;

  margin: 0 auto;

  text-align: center;

  transform: translatey(-50px);	

}

/* TEXTO SUPERIOR */

.ponce-prices-beneficios-texto {
  max-width: 950px;

  margin: 0 auto;

  color: #ffffff;

  font-size: 19px;
  font-weight: 300;
  line-height: 1.35;

  text-align: center;
}

/* FRASE CENTRAL */

.ponce-prices-beneficios-titulo {
  margin: 38px auto 18px;

  color: #ffffff;

  font-size: 27px;
  font-weight: 300;
  line-height: 1.2;

  text-align: center;
}

/* BOTÃO */

.ponce-prices-beneficios-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 245px;
  min-height: 42px;

  padding: 8px 28px;

  background: #000000;
  color: #ffffff;

  border-radius: 999px;

  font-size: 16px;
  font-weight: 400;

  text-decoration: none;
  transition: 0.3s;
}

.ponce-prices-beneficios-btn:hover {
  background: #FF8052;
  color: #ffffff;
  transform: translatey(-4px);
}

/* =========================================================
   SEÇÃO - A PONCEPARK É A MELHOR ESCOLHA
========================================================= */

.ponce-prices-escolha {
  position: relative;

  width: 100%;
  height: 610px;

  overflow: hidden;

  background: #111111;
	
}

/* =========================================================
   IMAGEM
========================================================= */

.ponce-prices-escolha-imagem {
  position: absolute;

  inset: 0;

  z-index: 1;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}

/* =========================================================
   OVERLAY ESCURO
========================================================= */

.ponce-prices-escolha-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.42) 48%,
      rgba(0, 0, 0, 0.28) 100%
    );
}

/* =========================================================
   CONTAINER
========================================================= */

.ponce-prices-escolha-inner {
  position: relative;

  z-index: 3;

  width: min(100% - 40px, 1050px);
  height: 100%;

  margin: 0 auto;
}

/* =========================================================
   TEXTO - A PONCEPARK É A MELHOR ESCOLHA
========================================================= */

.ponce-prices-escolha-conteudo {
  position: absolute;

  top: 105px;
  left: 0;

  width: 650px;

  color: #ffffff;
}


.ponce-prices-escolha-conteudo h2 {
  margin: 0 0 4px;

  color: #ff9a50;

  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}


.ponce-prices-escolha-conteudo p {
  width: 100%;

  margin: 0 0 18px;

  color: #ffffff;

  font-size: 23px;
  font-weight: 600;
  line-height: 1.22;

  white-space: normal;
}

.ponce-prices-escolha-frase {
	color: #ff8052;
}

/* BOTÃO */

.ponce-prices-escolha-btn {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 242px;
  min-height: 42px;

  margin: 0 auto;

  padding: 8px 25px;

  background: #d85b00;
  color: #ffffff;

  border-radius: 999px;

  font-size: 16px;
  font-weight: 400;

  text-decoration: none;

  transition: 0.3s;
}


.ponce-prices-escolha-btn:hover {
  background: #ff8052;
  color: #ffffff;

  transform: translateY(-4px);
}

/* =========================================================
   RECARGA PARA VEÍCULOS ELÉTRICOS
========================================================= */

.ponce-recarga {
  position: relative;

  width: 100%;
  height: 950px;

  margin-top: -79.9px;
  padding: 0;

  overflow: hidden;

  background: #111111;
	
}

/* =========================================================
   IMAGEM
========================================================= */

.ponce-recarga-img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  z-index: 1;
}


/* =========================================================
   OVERLAY
========================================================= */

.ponce-recarga-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.12) 42%,
      rgba(0, 0, 0, 0.58) 70%,
      rgba(0, 0, 0, 0.72) 100%
    );
}


/* =========================================================
   CONTAINER
========================================================= */

.ponce-recarga-inner {
  position: relative;

  z-index: 3;

  width: min(100% - 40px, 1100px);
  height: 100%;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.ponce-recarga-conteudo {
  width: 600px;

  color: #ffffff;

  text-align: left;
  transform: translatex(50px);	
}

/* KICKER */

.ponce-recarga-kicker {
  display: block;

  margin-bottom: 12px;

  color: #ff6500;

  font-family: "Urbanist", sans-serif;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 1.5px;
}


/* TÍTULO */

.ponce-recarga-conteudo h2 {
  margin: 0 0 18px;

  color: #ffffff;

  font-family: "Urbanist", sans-serif;

  font-size: 40px;
  font-weight: 400;

  line-height: 1.05;

  letter-spacing: -0.5px;
}


/* TEXTO */

.ponce-recarga-conteudo p {
  margin: 0 0 18px;

  max-width: 470px;

  color: #ffffff;

  font-family: "Urbanist", sans-serif;

  font-size: 19px;
  font-weight: 300;

  line-height: 1.4;
}


/* FRASE DE IMPACTO */

.ponce-recarga-frase {
  display: block;

  margin-bottom: 24px;

  color: #ffffff;

  font-family: "Urbanist", sans-serif;

  font-size: 20px;
  font-weight: 500;
}


/* =========================================================
   BOTÃO
========================================================= */

.ponce-recarga-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 220px;

  padding: 12px 28px;

  background: #ff8052;

  border-radius: 999px;

  color: #ffffff;

  font-family: "Urbanist", sans-serif;

  font-size: 16px;
  font-weight: 400;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}


.ponce-recarga-btn:hover {
  color: #ffffff;

  transform: translateY(-4px);

  opacity: 0.9;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.ponce-prices-hero {
		min-height: 680px;

		background-position: 63% center;
	}

	.ponce-prices-hero-inner {
		width: min(100% - 28px, 1050px);

		min-height: 680px;

		padding-top: 80px;
	}

	.ponce-prices-offer {
		width: 100%;

		max-width: 360px;

		margin: 0 auto;

		padding: 20px;
	}

	.ponce-prices-offer h1 {
		font-size: 23px;
	}

	.ponce-prices-values {
		gap: 10px;
	}

	.ponce-prices-old-price {
		font-size: 28px;
	}

	.ponce-prices-new-price {
		min-width: 160px;
	}

	.ponce-prices-new-value {
		font-size: 34px;
	}

	.ponce-prices-hero-description {
		font-size: 14px;
	}

	.ponce-prices-hero-notes {
		left: 50%;
		bottom: 70px;

		width: calc(100% - 40px);

		transform: translateX(-50%);

		font-size: 12px;
	}
	
	.ponce-recarga {
		height: 650px;
	}

	.ponce-recarga-img {
		object-position: 42% center;
	}

	.ponce-recarga-overlay {
		background:
			linear-gradient(
				0deg,
				rgba(0, 0, 0, 0.78) 0%,
				rgba(0, 0, 0, 0.62) 48%,
				rgba(0, 0, 0, 0.10) 100%
			);
	}

	.ponce-recarga-inner {
		width: 100%;

		padding: 0 24px 45px;

		align-items: flex-end;
		justify-content: center;
	}

	.ponce-recarga-conteudo {
		width: 100%;

		text-align: center;
	}

	.ponce-recarga-kicker {
		font-size: 12px;
	}

	.ponce-recarga-conteudo h2 {
		font-size: 32px;

		line-height: 1.08;
	}

	.ponce-recarga-conteudo h2 br {
		display: none;
	}

	.ponce-recarga-conteudo p {
		max-width: 100%;

		font-size: 17px;
	}

	.ponce-recarga-frase {
		font-size: 18px;
	}	

	.ponce-prices-tabela-section {
		padding:
			0
			16px
			60px;
	}

	.ponce-prices-tabela {
		max-width: 520px;

		margin-top: 20px;

		padding:
			28px
			22px
			24px;

		grid-template-columns:
			1fr
			1fr;

		gap:
			24px
			18px;
	}

	.ponce-prices-periodo {
		grid-column: 1 / -1;
	}

	.ponce-prices-coluna h3 {
		font-size: 16px;
	}

	.ponce-prices-coluna p {
		font-size: 14px;
	}

	.ponce-prices-explicacao {
		display: none;
	}	
	
	.ponce-prices-explicacao-mob {
		display: block;
		text-align: justify;
	}

	/* BOTÃO LARANJA */

	.ponce-prices-btn-laranja-mob {
		display: flex;

		align-items: center;
		justify-content: center;

		width: fit-content;
		min-width: 240px;
		min-height: 42px;

		padding: 10px 27px;

		background: #d85b00;
		color: #ffffff;

		border-radius: 999px;

		font-size: 16px;
		font-weight: 400;
		line-height: 1;

		text-decoration: none;

		/* CENTRALIZA O BOTÃO */
		margin: 10px auto 40px;

		transition: 0.3s;
	}

	.ponce-prices-btn-laranja-mob:hover {
		background: #ff8052;
		color: #ffffff;
		transform: translateY(-4px);
	}

	.ponce-prices-beneficios {
		padding: 32px 18px;
	}

	.ponce-prices-beneficios-texto {
		font-size: 15px;
		line-height: 1.4;
	}

	.ponce-prices-beneficios-titulo {
		margin-top: 30px;

		font-size: 22px;
	}
	
	.ponce-prices-escolha {
		margin-top: -70px;
		height: 420px;
	} 
	
	.ponce-prices-escolha-conteudo h2 {
		font-size: 26px;
	}
	
	.ponce-prices-escolha-conteudo p {
		font-size: 16px;
	}
	
	.ponce-prices-escolha-btn {
		display: flex;

		width: fit-content;
		min-width: 220px;
		min-height: 44px;

		align-items: center;
		justify-content: center;

		position: relative;
		left: 50%;

		transform: translate(-100%, 50px);

		margin: 0;

		padding: 9px 24px;

		font-size: 15px;
	}
	
	.ponce-prices-beneficios {
		margin-top: 0px;
	}
	
	.ponce-prices-beneficios-inner {
		margin-top: 50px;
	}
	
	.ponce-recarga {
        position: relative;

        width: 100%;
        min-height: 650px;

        overflow: hidden;
    }


    /* IMAGEM */
    .ponce-recarga-img {
        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }


    /* OVERLAY */
    .ponce-recarga-overlay {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;
    }


    /* CONTAINER */
    .ponce-recarga-inner {
        position: relative;

        width: 100%;
        min-height: 650px;

        display: flex;

        align-items: center;
        justify-content: center;

        padding: 45px 24px;

        z-index: 3;
    }


    /* CONTEÚDO */
    .ponce-recarga-conteudo {
        position: static;

        width: 100%;
        max-width: 100%;

        margin: 0 auto;
        padding: 0;

        transform: none;

        text-align: center;
    }


    /* TEXTO LARANJA */
    .ponce-recarga-kicker {
        display: block;

        width: 100%;

        margin: 0 auto 18px;

        color: #ff7b46;

        font-size: 13px;
        line-height: 1.25;

        font-weight: 500;

        letter-spacing: 3px;

        text-align: center;
    }


    /* TÍTULO */
    .ponce-recarga-conteudo h2 {
        width: 100%;
        max-width: 350px;

        margin: 0 auto 24px;

        font-size: 31px;
        line-height: 1.12;

        font-weight: 400;

        text-align: center;
    }


    /* REMOVE A QUEBRA DO DESKTOP */
    .ponce-recarga-conteudo h2 br {
        display: none;
    }


    /* PARÁGRAFO */
    .ponce-recarga-conteudo p {
        width: 100%;
        max-width: 350px;

        margin: 0 auto 26px;

        font-size: 17px;
        line-height: 1.45;

        font-weight: 300;

        text-align: center;
    }


    /* FRASE */
    .ponce-recarga-frase {
        display: block;

        width: 100%;
        max-width: 350px;

        margin: 0 auto 30px;

        font-size: 18px;
        line-height: 1.3;

        font-weight: 600;

        text-align: center;
    }


    /* BOTÃO */
    .ponce-recarga-btn {
        display: flex;

        align-items: center;
        justify-content: center;

        width: fit-content;
        min-width: 245px;
        min-height: 46px;

        margin: 0 auto;

        padding: 10px 25px;

        font-size: 16px;

        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        transform: none;
    }


    .ponce-recarga-btn:hover {
        transform: translateY(-4px);
    }

}

@media (min-width: 768px) and (max-width: 1024px) {
	/* =====================================================
	   PÁGINA PREÇOS - TEXTO EXPLICATIVO - TABLET / IPAD
	===================================================== */

	.ponce-prices-explicacao {
		width: 100% !important;
		max-width: 100% !important;

		margin: 0 auto !important;

		padding:
			42px
			36px
			54px !important;

		text-align: center !important;
	}


	/* TEXTO */

	.ponce-prices-explicacao p {
		width: 100% !important;
		max-width: 920px !important;

		margin:
			0
			auto
			34px !important;

		font-size: 22px !important;
		line-height: 1.45 !important;

		font-weight: 400 !important;

		text-align: center !important;
	}


	/* REMOVE QUEBRAS MANUAIS DO DESKTOP */

	.ponce-prices-explicacao br {
		display: none !important;
	}


	/* BOTÃO */

	.ponce-prices-btn-laranja {
		min-width: 300px !important;
		min-height: 50px !important;

		display: inline-flex !important;

		align-items: center !important;
		justify-content: center !important;

		margin: 0 auto !important;

		padding:
			10px
			32px !important;

		font-size: 18px !important;
	}
	
	/* =====================================================
	   PÁGINA PREÇOS - BLOCO "MELHOR ESCOLHA"
	   TABLET / IPAD
	===================================================== */

	.ponce-prices-escolha {
		position: relative !important;

		min-height: 680px !important;

		overflow: hidden !important;
	}


	/* IMAGEM */

	.ponce-prices-escolha-imagem {
		width: 100% !important;
		height: 100% !important;

		position: absolute !important;

		inset: 0 !important;

		object-fit: cover !important;
		object-position: center center !important;
	}


	/* OVERLAY */

	.ponce-prices-escolha-overlay {
		position: absolute !important;

		inset: 0 !important;

		background:
			linear-gradient(
				90deg,
				rgba(0, 0, 0, .62) 0%,
				rgba(0, 0, 0, .42) 55%,
				rgba(0, 0, 0, .18) 100%
			) !important;

		z-index: 1 !important;
	}


	/* CONTAINER */

	.ponce-prices-escolha-inner {
		position: relative !important;

		z-index: 2 !important;

		width: 100% !important;
		min-height: 680px !important;

		padding:
			42px
			34px
			54px !important;
	}


	/* FRASE SUPERIOR */

	.ponce-prices-escolha-frase {
		position: absolute !important;

		top: 18px !important;
		left: 34px !important;

		margin: 0 !important;

		color: #ff8a4a !important;

		font-size: 20px !important;
		line-height: 1.2 !important;

		font-weight: 400 !important;
	}

	.ponce-prices-escolha-frase strong {
		font-weight: 700 !important;
	}


	/* CONTEÚDO PRINCIPAL */

	.ponce-prices-escolha-conteudo {
		position: absolute !important;

		top: 145px !important;
		left: 34px !important;

		width: calc(100% - 68px) !important;
		max-width: 720px !important;

		margin: 0 !important;
	}


	/* TÍTULO */

	.ponce-prices-escolha-conteudo h2 {
		margin:
			0
			0
			14px !important;

		color: #ff914d !important;

		font-size: 38px !important;
		line-height: 1.08 !important;

		font-weight: 700 !important;
	}


	/* PARÁGRAFO */

	.ponce-prices-escolha-conteudo p {
		width: 100% !important;
		max-width: 690px !important;

		margin:
			0
			0
			28px !important;

		color: #ffffff !important;

		font-size: 22px !important;
		line-height: 1.35 !important;

		font-weight: 400 !important;
	}


	/* REMOVE AS QUEBRAS MANUAIS DO DESKTOP */

	.ponce-prices-escolha-conteudo p br {
		display: none !important;
	}


	/* BOTÃO */

	.ponce-prices-escolha-btn {
		min-width: 290px !important;
		min-height: 50px !important;

		display: inline-flex !important;

		align-items: center !important;
		justify-content: center !important;

		margin: 0 !important;

		padding:
			10px
			30px !important;

		border-radius: 999px !important;

		font-size: 18px !important;
	}
	
	/* =====================================================
	   PÁGINA PREÇOS - BENEFÍCIOS
	   TABLET / IPAD
	===================================================== */

	.ponce-prices-beneficios {
		width: 100% !important;

		padding:
			48px
			34px
			58px !important;

		background: #f56600 !important;
	}


	/* CONTAINER */

	.ponce-prices-beneficios-inner {
		width: 100% !important;
		max-width: 980px !important;

		margin: 0 auto !important;

		text-align: center !important;
	}


	/* TEXTO SUPERIOR */

	.ponce-prices-beneficios-texto {
		width: 100% !important;
		max-width: 920px !important;

		margin:
			50px
			auto
			34px !important;

		color: #ffffff !important;

		font-size: 21px !important;
		line-height: 1.42 !important;

		font-weight: 400 !important;

		text-align: center !important;
	}


	/* REMOVE QUEBRAS MANUAIS DO DESKTOP */

	.ponce-prices-beneficios-texto br {
		display: none !important;
	}


	/* TÍTULO */

	.ponce-prices-beneficios-titulo {
		width: 100% !important;
		max-width: 760px !important;

		margin:
			0
			auto
			26px !important;

		color: #ffffff !important;

		font-size: 31px !important;
		line-height: 1.24 !important;

		font-weight: 400 !important;

		text-align: center !important;
	}


	/* REMOVE A QUEBRA MANUAL DO TÍTULO */

	.ponce-prices-beneficios-titulo br {
		display: none !important;
	}


	/* BOTÃO */

	.ponce-prices-beneficios-btn {
		min-width: 300px !important;
		min-height: 50px !important;

		display: inline-flex !important;

		align-items: center !important;
		justify-content: center !important;

		margin: 0 auto !important;

		padding:
			10px
			32px !important;

		border-radius: 999px !important;

		font-size: 18px !important;
	}
	
	/* =====================================================
	   RECARGA ELÉTRICA - TABLET / IPAD
	===================================================== */

	.ponce-recarga {
		position: relative !important;

		min-height: 620px !important;

		overflow: hidden !important;

	}

	/* IMAGEM */

	.ponce-recarga-img {
		position: absolute !important;

		inset: 0 !important;

		width: 100% !important;
		height: 100% !important;

		object-fit: cover !important;

		object-position: center center !important;
	}

	/* OVERLAY */

	.ponce-recarga-overlay {
		position: absolute !important;

		inset: 0 !important;

		z-index: 1 !important;

		background:
			linear-gradient(
				90deg,
				rgba(0, 0, 0, .70) 0%,
				rgba(0, 0, 0, .52) 55%,
				rgba(0, 0, 0, .34) 100%
			) !important;
	}

	/* CONTAINER */

	.ponce-recarga-inner {
		position: relative !important;

		z-index: 2 !important;

		width: 100% !important;
		min-height: 620px !important;

		display: flex !important;
		align-items: center !important;

		padding:
			48px
			42px !important;
	}

	/* CONTEÚDO */

	.ponce-recarga-conteudo {
		width: 100% !important;
		max-width: 650px !important;

		margin: 0 !important;

		text-align: left !important;
	}

	/* KICKER */

	.ponce-recarga-kicker {
		display: block !important;

		margin-bottom: 14px !important;

		color: #ff6a00 !important;

		font-size: 16px !important;
		line-height: 1.2 !important;

		letter-spacing: 3px !important;

		font-weight: 500 !important;
	}

	/* TÍTULO */

	.ponce-recarga-conteudo h2 {
		max-width: 640px !important;

		margin:
			0
			0
			18px !important;

		color: #ffffff !important;

		font-size: 44px !important;
		line-height: 1.08 !important;

		font-weight: 400 !important;
	}

	/* REMOVE A QUEBRA FORÇADA DO DESKTOP */

	.ponce-recarga-conteudo h2 br {
		display: none !important;
	}

	/* TEXTO */

	.ponce-recarga-conteudo p {
		max-width: 620px !important;

		margin:
			0
			0
			20px !important;

		color: #ffffff !important;

		font-size: 20px !important;
		line-height: 1.45 !important;

		font-weight: 400 !important;
	}

	/* FRASE */

	.ponce-recarga-frase {
		display: block !important;

		margin-bottom: 26px !important;

		color: #ffffff !important;

		font-size: 20px !important;
		line-height: 1.3 !important;

		font-weight: 500 !important;
	}

	/* BOTÃO */

	.ponce-recarga-btn {
		min-width: 280px !important;
		min-height: 50px !important;

		display: inline-flex !important;

		align-items: center !important;
		justify-content: center !important;

		margin: 0 !important;

		padding:
			10px
			30px !important;

		border-radius: 999px !important;

		font-size: 18px !important;
	}
	
}