/* =========================================
 *  Variáveis & Reset
 * =======================================*/
:root {
  --ppr-blue:    #324252;
  --ppr-cyan:    #03b4ca;
  --ppr-blue-2:  #4b647c;
  --ppr-bg:      #f8fafd;
  --ppr-gray:    #c7c7c7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* =========================================
 *  Layout geral
 * =======================================*/
body .ppr-re-wrap {
  font-family: inherit;
  color: #111;
}

.ppr-re-wrap .wrap {
  max-width: 980px;
  margin: 0 auto;
}

#good,
#best {
  display: none;
}

/* =========================================
 *  Títulos, logo e cabeçalho
 * =======================================*/
h1 {
  color: #324252;
}

h2 {
  color: #324252;
}

.ppr-re-logo {
  width: 110px;
}

.ppr-re-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

/* =========================================
 *  Card principal / fieldset
 * =======================================*/
.card {
  background: #fff;
  border-radius: 16px;
}

fieldset {
  border: 1px solid var(--ppr-gray);
  border-radius: 12px;
  margin: 20px 0;
  padding: 20px;
}

legend {
  font-weight: 700;
  font-size: 25px;
  color: var(--ppr-blue);
  margin-bottom: 10px;
}

/* =========================================
 *  Formulários & inputs
 * =======================================*/
label {
  display: block;
  margin: 12px 0 6px;
}

input,
select,
button {
  width: 100%;
  max-width: 360px;
  border: 1px solid var(--ppr-gray);
  border-radius: 5px;
}

select,
input {
  padding: 10px;
}

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 20px;
}

.row.two {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Botões */
.btn {
  background: #33cc66;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  cursor: pointer;
  width: 200px;
  font-size: 19px;
  font-weight: 800;
}

.btn:hover {
  background-color: #1ae35d;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* Campos de lead */
.lead-form {
  border: 1px solid #efeded;
  border-radius: 12px;
  padding: 16px;
  margin-top: 6px;
  background: #efeded;
}

.lead-form h3 {
  margin: 0 0 8px 0;
  color: var(--ppr-blue);
}

/* Mensagens */
.muted {
  color: #555;
}

/* =========================================
 *  Resumo / Stats
 * =======================================*/
.summary {
  padding: 9px 10px;
  background: #324252;
  border-radius: 12px;
  text-align: left;
}

.ppr-estimate-title {
  margin: 0 0 4px 0;
  font-size: 30px;
  font-weight: 700;
  color: #ffff;
}

.ppr-estimate-sub {
  font-size: 11px;
  line-height: 1.5;
  color: #ffffff;
  font-style: italic;
}

/* Caixa branca com os 3 valores */
.ppr-estimate-values {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  background: #324252;
  border-radius: 12px;
  padding: 24px 41px 14px;
  position: relative;
}

/* Linha vermelha contínua embaixo (igual ao exemplo da GAF) */
.ppr-estimate-values::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 44px;
  height: 3px;
  background: #ffffff;
}

/* Cada coluna (Low / Average / High) */
.ppr-estimate-item {
  flex: 1;
  text-align: center;
}

/* Valor em destaque ($XXX) */
.ppr-estimate-price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

/* Rótulo (Low / Average / High) */
.ppr-estimate-label {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  z-index: 1;              /* fica por cima da linha vermelha */
}

/* Responsivo: empilhar no mobile */
@media (max-width: 640px) {
  .ppr-estimate-values {
    flex-direction: column;
    align-items: stretch;
  }

  .ppr-estimate-values::after {
    left: 20px;
    right: 20px;
    bottom: 9px;
  }
}

/* =========================================
 *  Tabela / utilidades
 * =======================================*/
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

th,
td {
  text-align: right;
  padding: 8px 10px;
}

th:first-child,
td:first-child {
  text-align: left;
}

tr {
  background: #fff;
  border: 1px solid var(--ppr-gray);
}

tr td,
tr th {
  border-top: 1px solid var(--ppr-gray);
}

.pill {
  display: inline-block;
  border-radius: 10px;
  background: var(--ppr-cyan);
  color: #fff;
  padding: 10px;
  font-weight: 600;
  text-align: center;
}

/* Esconder parágrafos vazios gerados pelo WP */
.ppr-re-wrap p:empty,
.ppr-re-wrap p:empty::before,
.ppr-re-wrap b:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.ppr-re-wrap .summary > p:empty {
  display: none !important;
}

/* =========================================
 *  Caixa de disclaimer / bloco de financiamento
 * =======================================*/
.grid2 {
  background: #fdfdfd;
  border-radius: 16px;
  padding: 28px;
}

@media (max-width: 720px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
}

#bloco_central {
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 63% 36%;
  gap: 12px;
}

/* Coluna esquerda */
#left_in {
  width: 100%;
}

/* Coluna direita */
#rigth_in {
  width: 100%;
}

.finance-box {
  background: #207e20;
  border-radius: 16px;
  padding: 12px 18px;
  text-align: center;
  margin: 11px 7px 15px 7px;
  color: #fff;
  font-size: 41px;
}

.min_letter {
  font-size: 11px;
  text-align: center;
  color: #666666;
  font-weight: 500;
  margin-bottom: 40px;
}

.letter_nor {
  font-size: 19px;
  color: #666666;
  padding: 6px;        /* corrigido */
  text-align: center;
  padding-top: 12px;
  font-weight: 400;
}

.letter_nor_2 {
  font-size: 14px;
  color: #666666;
  padding: 10px;        /* corrigido */
  text-align: justify;
  margin: 11px 20px 8px 7px;
}

#title_bc_c {
  font-size: 34px;
  text-align: center;
  color: #324252;
}

p {
  color: #666666;
}

#blo_hori {
  padding-top: 10px;
}

.btn_fin {
  background: #207e20;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  cursor: pointer;
  width: 200px;
  font-size: 19px;
  font-weight: 800;
}

.btn_fin:hover {
  background-color: #1ae35d;
  color: #fff;
}

.btn_fin:disabled {
  opacity: .5;
  cursor: not-allowed;
}

#div_bnt_finance {
  text-align: center;
  padding-top: 42px;
  margin-bottom: 30px;
}

/* RESPONSIVO – mobile */
@media (max-width: 768px) {
  #bloco_central {
    grid-template-columns: 1fr;
  }
	.letter_nor{
		font-size:16px;
	}
	
	.finance-box{
		font-size: 39px;
	}
}

/* =========================================
 *  Thank-you box
 * =======================================*/
.thank-you {
  border: 1px solid var(--ppr-gray);
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
  background: #324252;
}

.thank-you h3 {
  margin: 0 0 6px 0;
  color: var(--ppr-blue);
  text-align: center;
}

.thank-you p {
  margin: 0;
  color: #333;
  font-size: 14px;
}

/* =========================================
 *  Ícone de info
 * =======================================*/
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #03b4ca;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
}

/* =========================================
 *  Pitch (cards horizontais)
 * =======================================*/
.pitch-field {
  position: relative;
  margin-top: 8px;
}

#pitch {
  width: 180px;
  padding: 10px;
  font-size: 14px;
}

.pitch-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.pitch-option {
  border: 1px solid var(--ppr-gray);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  min-width: 114px;
  max-width: 90px;
  height: 155px;
  transition:
    border-color .15s ease,
    box-shadow .15s ease,
    transform .1s ease;
}

.pitch-option .pitch-icon {
  width: 56px;
  height: 56px;
  display: block;
 
}

.pitch-text {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.pitch-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--ppr-gray);
  background: #fff;
}

.pitch-option.is-active {
  border-color: var(--ppr-cyan);
  box-shadow: 0 0 0 2px rgba(3,180,202,.15);
  transform: translateY(-1px);
}

.pitch-option.is-active .pitch-dot {
  background: var(--ppr-cyan);
  border-color: var(--ppr-cyan);
}

@media (max-width: 600px) {
  .pitch-group {
    justify-content: flex-start;
  }
	#rigth_in{
		display:flex;
		justify-content:center
	}
	
	#bloco_central{
		justify-content: center;
	}
	
	.letter_nor{
		font-size:17px;
	}
}

/* =========================================
 *  Modal POP-UP (lead form)
 * =======================================*/
.ppr-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ppr-modal.is-open {
  display: flex;
}

.ppr-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0 0 0 / 19%);
  backdrop-filter: blur(5px);
}

.ppr-modal__dialog {
  position: relative;
  z-index: 1;
  background: #efeded;
  border-radius: 25px;
  padding: 24px 24px 20px;
  max-width: 522px;
  width: 90%;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  box-sizing: revert;
}

.ppr-modal__title {
  color: var(--ppr-blue);
  font-size: 20px;
  line-height: 1.35;
}

.ppr-modal__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

.ppr-modal__close {
  position: absolute;
  top: 9px;
  right: 11px;
  border: 2px solid #8d8a8a;
  border-radius: 21px;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #777;
  width: 26px;
  height: 26px;
}

.ppr-modal__close:hover {
  color: #000;
}

#button_pop {
  text-align: center;
}

/* =========================================
 *  Banner "Need Help?"
 *  (aparece só depois do cálculo)
 * =======================================*/
.need-help-banner {
  margin-top: 40px;
  padding: 32px 24px;
  background: #f4f7fb;
}

.need-help-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

/* Colunas internas (texto + imagem) */
.need-help-section > div {
  flex: 1;
  min-width: 260px;
}

/* Título e texto */
.need-help-banner h2 {
  color: #324252;
  font-size: 32px;
  margin-bottom: 12px;
}

.need-help-banner p {
  color: #666666;
  font-size: 16px;
  line-height: 1.5;
}

/* Bloco de contato */
.need-help-contact {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.5;
  color: #324252;
}

/* Botão do banner reaproveita .btn, mas se quiser algo específico: */
.need-help-banner .btn {
  width: auto;
  padding-inline: 28px;
}

/* Caixa da imagem (lado direito) */
.need-help-image-box {
  width: 100%;
  max-width: 330px;
  height: 260px;
  margin: 0 auto;
  border-radius: 12px;
  background: #e9eef2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8a;
  font-size: 14px;
}

/* Responsivo: empilha no mobile */
@media (max-width: 768px) {
  .need-help-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .need-help-banner h2 {
    font-size: 26px;
  }
}

/* =========================================
 *  Seção "Why Homeowners in Florida..."
 *  + FREE Roof Inspection / imagem carro
 * =======================================*/
#why-choose-us {
  margin-top: 60px;
}

/* PRIMEIRO BLOCO: texto + imagem lado a lado */
#why-choose-us > section:first-of-type {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

#why-choose-us > section:first-of-type > div {
  flex: 1;
  min-width: 300px;
}

/* Título principal da seção */
#why-choose-us h2 {
  color: #324252;
  font-size: 29px;
  margin-bottom: 18px;
}

/* Subtítulos e bullets */
#why-choose-us b {
  font-size: 17px;
}

#why-choose-us {
  color: #666666;
  line-height: 1.5;
}

/* Caixa da imagem do lado direito (família) */
.wc-hero-image-box {
  width: 100%;
  max-width: 420px;
  height: 300px;
  margin: 0 auto;
  border-radius: 12px;
  background: #e9eef2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8a;
  font-size: 14px;
}

#free_inspection {
  margin-top: 40px;
}

#btn_sch_now {
  text-align: right;
  display: flex;
  margin-top: 10px;
  justify-content: flex-end;
}

#img_wcar {
  object-fit: cover;
  display: block;
  width: 100%;
}

div_img_wcar {
  overflow: hidden;   /* corrigido de 'hide' */
}

/* =========================================
 *  Depoimentos (What clients are saying...)
 * =======================================*/
.testimonials-section {
  width: 100%;
  background: #e6e6e6;
  padding: 0;
}

/* LINHA PRINCIPAL */
.testimonials-row {
  display: grid;
  grid-template-columns: 29% 71%; /* título | depoimentos */
  background: #00bcd4;
  color: #fff;
  padding: 19px;
}

/* TÍTULO */
.testimonials-title {
  display: flex;
  align-items: center;
}

.testimonials-title h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

/* LISTA DE DEPOIMENTOS */
.testimonials-list {
  display: grid;
  grid-template-columns: 1fr 1fr; /* dois depoimentos lado a lado */
  gap: 20px;
}

/* ITEM DEPOIMENTO */
.testimonial-item .quote {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #fff;
}

.quote_1 {
  color: #fff;
  font-size: 13px;
}

.testimonial-item .author {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* RODAPÉ */
.testimonials-footer {
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #4a4a4a;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonials-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonials-list {
    grid-template-columns: 1fr;
  }
}

/* =========================================
 *  Seção "Why Homeowners in Florida Choose Us"
 *  (layout com linhas azul e imagem ao lado)
 * =======================================*/
.why-choose {
  margin-top: 40px;
}

/* GRID: TEXTO | IMAGEM */
.why-choose__grid {
  display: grid;
  grid-template-columns: 48% 49%; /* ~55% / 45% */
  gap: 24px;
  align-items: start;
}

/* TÍTULO */
.why-choose__title {
  color: #324252;
  font-size: 32px;
  margin-bottom: 24px;
}

/* LISTA DE ITENS */
.why-choose__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 7px 0;
	border-top: 3px solid #03b4ca;
}

/* REMOVE LINHA DO ÚLTIMO */
.why-choose__item:last-child {
  border-bottom: none;
}

/* ÍCONE (CHECK) */
.why-choose__icon {
  font-size: 42px;
  color: #03b4ca;
  line-height: 1;
	display:flex;
	align-items:center;
}

/* TEXTOS DO ITEM */
.why-choose__content h3 {
  margin: 0 0 6px 0;
  font-size: 17px;
  font-weight: 700;
  color: #324252;
}

.why-choose__content p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

/* COLUNA DA IMAGEM */
.why-choose__image {
  width: 100%;
  display: flex;
  justify-content: center; /* CENTRALIZA HORIZONTALMENTE */
  align-items: center;     /* CENTRALIZA VERTICALMENTE */
}

.why-choose__image img {
	width: 100%;
  height: 100%;
  object-fit: cover; /* preenche mantendo proporções */
  border-radius: 4px;
}

.why-choose__text{
	
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .why-choose__grid {
    grid-template-columns: 1fr;
  }

  .why-choose__image {
    order: -1; /* se quiser a imagem primeiro no mobile */
  }

  .why-choose__title {
    font-size: 26px;
  }
}

/* =========================================
 *  Steps financing (cards com borda animada)
 * =======================================*/
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 5px;
  margin: 30px 0;
}

/* Card básico */
.step-card {
  position: relative;
  padding: 32px 18px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 60%, #f3f3f3 100%);
  border: 1px solid #e1e1e1;
  box-shadow: 0 4px 10px rgba(0,0,0,.04);
  text-align: left;
  overflow: hidden;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
	text-align: center;
}

/* Número grande "1, 2, 3..." em outline */
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #cfd3da;
  text-stroke: 1px #cfd3da;
  opacity: .8;
	text-align: center;
}

/* Conteúdo do card */
.step-card h3 {
  margin-top: 40px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #555;
	text-align:center;
}

.step-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}

/* Borda com efeito de luz */
.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, #03b4ca, #33cc66, #03b4ca);
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

/* Hover: levanta o card e ativa a luz na borda */
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  border-color: transparent;
}

.step-card:hover::after {
  opacity: 1;
  animation: borderRun 1.4s linear infinite;
}

/* Animação da luz correndo */
@keyframes borderRun {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsivo: cards */
@media (max-width: 600px) {
  .step-card {
    text-align: center;
  }

  .step-card h3 {
    margin-top: 36px;
  }
}

/* ============================
   FULL WIDTH REAL – SEM ERROS
   ============================ */

#need-help-banner.need-help-banner {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background-image: url('https://pprstaging.allysonbelo.com/wp-content/uploads/2025/11/need-help.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 60px 0;
}

/* remove qualquer scroll lateral */
html, body {
  overflow-x: hidden !important;
}

/* Conteúdo interno alinhado */
.need-help-inner {
  max-width: 1157px;
  margin: 0 auto;
  padding: 0 107px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

/* Coluna de texto */
.need-help-text {
  flex: 1;
  min-width: 350px;
	max-width:463px;
}

.nh-title {
  font-size: 40px;
  font-weight: 700;
  color: #324252;
  margin-bottom: 20px;
}

.nh-paragraph {
  font-size: 17px;
  line-height: 1.55;
  color: #324252;
  margin-bottom: 25px;
}

.nh-contact {
  font-size: 16px;
  color: #324252;
  margin-bottom: 30px;
}

#bnt_left_6{
	text-align: right;
}

.nh-btn {
  background: #33cc66;
  padding: 14px 28px;
  border-radius: 40px;
  color: #fff !important;
  font-weight: 400;
  display: inline-block;
}

/* Remove a coluna da imagem (não é mais usada) */
.need-help-image {
  display: none;
}

/* Responsivo */
@media (max-width: 900px) {
  .need-help-inner {
    flex-direction: column;
    text-align: left;
  }
	#need-help-banner.need-help-banner{
		background-size:auto;
	}
	
	#need-help-banner.need-help-banner p{
		color:#ffff;
	}
	
	
	
}