﻿/* LP Campo Belo - ImobiliÃ¡ria Guia */
:root {
  --red: #C8102E;
  --red-dark: #a00d24;
  --yellow: #F5C300;
  --dark: #1a1a1a;
  --gray: #555;
  --light-gray: #f5f5f5;
  --white: #fff;
  --font: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
    overflow-x: hidden;
}
body {
  font-family: var(--font);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- HEADER ---- */
.site-header {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo img { height: 48px; }
.site-header .header-cta a {
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s;
}
.site-header .header-cta a:hover { background: var(--red-dark); }
.site-header .header-phone {
  font-size: 13px;
  color: var(--gray);
}
.site-header .header-phone strong { color: var(--dark); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(to bottom right, #0d0d0d 0%, #1c1c1c 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 0;
}
.hero-inner {
  display: flex;
  min-height: 580px;
  align-items: stretch;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px 60px 0;
  position: relative;
  z-index: 2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 70%;
  object-fit: cover;
  opacity: .35;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title span { color: var(--red); }
.hero-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  margin-bottom: 30px;
  max-width: 420px;
}
.hero-locations {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.hero-locations span {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-locations svg { width: 14px; height: 14px; fill: var(--red); flex-shrink: 0; }
.btn-primary-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary-red:hover { background: var(--red-dark); transform: translateY(-1px); color: #fff; }
.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #1a1a1a;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-yellow:hover { background: #e0b000; transform: translateY(-1px); color: #1a1a1a; }

/* Hero right panel */
.hero-right {
  width: 340px;
  flex-shrink: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px;
  position: relative;
  z-index: 2;
}
.hero-panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.hero-panel-title svg { width: 18px; height: 18px; fill: var(--red); }
.hero-panel-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.hero-panel-name {
  color: var(--red);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-panel-desc {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 20px;
}
.hero-price-box {
  background: var(--red);
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 12px;
  text-align: center;
}
.hero-price-box .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.8);
  margin-bottom: 2px;
}
.hero-price-box .price {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-price-box .price sup { font-size: 18px; font-weight: 600; vertical-align: super; }
.hero-price-box .price sub { font-size: 18px; font-weight: 600; }
.hero-entry-box {
  background: #fff;
  border-radius: 4px;
  padding: 14px 18px;
  text-align: center;
}
.hero-entry-box .pct {
  font-size: 42px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.hero-entry-box .pct-label {
  font-size: 12px;
  color: var(--dark);
  font-weight: 600;
  text-transform: uppercase;
}
.hero-entry-box .pct-sub {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

/* Hero bottom icons */
.hero-icons {
  background: rgba(0,0,0,.8);
  display: flex;
  justify-content: space-between;
  padding: 18px 50px;
  position: relative;
  z-index: 2;
}
.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  font-size: 11px;
  text-align: center;
}
.hero-icon-item svg { width: 28px; height: 28px; fill: #fff; }

/* ---- SECTION COMMONS ---- */
.section { padding: 70px 0; }
.section-alt { background: var(--light-gray); }
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title span { color: var(--red); }
.section-subtitle {
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 14px;
}
.section-subtitle.left { margin-left: 0; }
.red-line {
  width: 36px;
  height: 3px;
  background: var(--red);
  margin-bottom: 18px;
}
.red-line.center { margin: 0 auto 18px; }

/* ---- STEP SECTION ---- */
.step-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.step-img {
  height: 420px;
  object-fit: cover;
  width: 100%;
}
.step-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px;
  background: #fff;
}
.step-content .section-title { margin-bottom: 16px; }
.step-content p { color: var(--gray); font-size: 14px; margin-bottom: 12px; }

/* ---- BENEFITS GRID ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.benefit-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.benefit-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.benefit-card svg { width: 36px; height: 36px; fill: var(--red); margin-bottom: 12px; }
.benefit-card .benefit-icon { width: 52px; height: 52px; object-fit: contain; margin-bottom: 14px; display: block; margin-left: auto; margin-right: auto; }
.benefit-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.benefit-card p { font-size: 11px; color: var(--gray); }

/* ---- SEGUNDA SECTION (condicoes + qualidade + como funciona) ---- */
.segunda-section { padding: 60px 0; }
.section-title-sm {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  margin-bottom: 36px;
}
.section-title-sm span { color: var(--red); }

/* Condicoes */
.condicoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.condicao-card { text-align: center; padding: 0 16px; }
.condicao-icone {
  /*width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);*/
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.condicao-icone svg { width: 26px; height: 26px; fill: #fff; }
.condicao-icone-img { width: 66px; height: 66px; object-fit: contain; }
.condicao-label { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.condicao-valor { font-size: 32px; font-weight: 800; color: #de080b; margin-bottom: 10px; line-height: 1.15; }
.condicao-desc { font-size: 12.5px; color: var(--gray); }
.condicoes-checklist {
      list-style: none;
    display: flex;
    /*flex-wrap: nowrap;*/
    justify-content: space-around;
    gap: 0px;
    padding: 14px;
    border: 1px solid #dfdfdf;
    align-content: center;
    flex-direction: row;
    border-radius: 6px;
}
.condicoes-checklist .col-6, .condicoes-checklist .col-md-3 { padding: 10px 0px; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--dark); font-weight: 500; }
.condicoes-checklist  svg { width: 23px;
    height: 23px;
    fill: var(--red);
    flex-shrink: 0;
    border-radius: 100px;
    border: 1px solid #de080b;
    padding: 3px;}

/* Viva com mais qualidade */
.qualidade-block { margin-top: 70px; text-align: center; }
.qualidade-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--dark); }
.qualidade-eyebrow span { color: var(--red); }
.qualidade-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.qualidade-item { text-align: center; }
.qualidade-icone { width: 44px; height: 44px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; }
.qualidade-icone svg { width: 34px; height: 34px; fill: var(--red); }
.qualidade-item p { font-size: 12.5px; color: var(--gray); line-height: 1.4; }

/* Como funciona a compra */
.comofunciona-block { margin-top: 70px; text-align: center; }
.comofunciona-eyebrow { display: block; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.comofunciona-steps {
  display: flex;
  justify-content: space-between;
  gap: 0px;
  margin-top: 40px;
  position: relative;
}
.comofunciona-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #eee;
  z-index: 0;
}
.cf-step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 8px; }
.cf-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
}
.cf-circle svg { width: 26px; height: 26px; fill: var(--red); }
.cf-circle-img { width: 66px; height: 66px; object-fit: contain; }
.cf-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-step h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.cf-step p { font-size: 12px; color: var(--gray); line-height: 1.4; }

@media (max-width: 768px) {
  .condicoes-grid { grid-template-columns: 1fr; gap: 32px; }
  .qualidade-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; }
  .comofunciona-steps { flex-wrap: wrap; }
  .comofunciona-steps::before { display: none; }
  .cf-step { flex: 0 0 50%; margin-bottom: 24px; }
}

/* ---- PRICING SECTION ---- */
.pricing-section {
  padding: 50px 0px;
  /*display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;*/
  align-items: center;
}
.pricing-content { padding: 60px 60px; }
.pricing-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin: 8px 0 24px;
}
.pricing-price small { font-size: 24px; font-weight: 600; }
.check-list { list-style: none; margin-bottom: 30px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--dark);
  border-bottom: 1px solid #f0f0f0;
}
.check-list li svg { width: 18px; height: 18px; fill: var(--red); flex-shrink: 0; }
.pricing-img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* ---- MAP SECTION ---- */
.map-section {
  /*display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;*/
  align-items: start;
  background: #f1f1f1;
}
.map-content { padding: 60px 60px;  }
.map-list { 
	list-style: none;
    margin: 20px 0;
    background: #fff;
    border-radius: 12px;
    padding: 10px 30px;
    border: 2px solid #e6e6e6;
	}
.map-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 0px solid #f0f0f0;
}
.map-list li svg { width: 20px; height: 20px; fill: var(--red); flex-shrink: 0; }
.map-embed { height: 100%; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 8px;
}
.gallery-item { overflow: hidden; border-radius: 6px; }
.gallery-item a { display: block; width: 100%; height: 100%; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; cursor: zoom-in; }
.gallery-item:hover img { transform: scale(1.05); }

/* ---- IDEAL SECTION ---- */
.ideal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.ideal-item {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}
.ideal-icon { width: 52px; height: 52px; object-fit: contain; margin-bottom: 10px; }
.ideal-item p { font-size: 12px; color: var(--gray); line-height: 1.4; }

/* ---- IDEAL SECTION ---- */
.ideal-section {
  background: #fff;
  padding: 50px 0;
}
@media (max-width: 992px) {
	.ideal-section {padding: 70px 15px !important};
}

/* ---- SOBRE / BRAND SECTION ---- */
.sobre-section {
  position: relative;
  background-image: url('../img/fachada-guia.jpg');
  background-size: cover;
  background-position: center 30%;
  padding: 90px 0;
}
.sobre-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(238 238 238 / 83%) 0%, rgb(255 255 255 / 70%) 60%, rgb(255 255 255 / 47%) 100%);
}
.sobre-content {
  /*position: relative;
  z-index: 2;
  max-width: 680px;*/
    position: relative;
    z-index: 2;
    max-width: 80% !important;
    text-align: left;
    float: left;
}
@media (max-width: 992px) {
.sobre-content {
	max-width: 100% !important;
}
}
.sobre-content .red-line { background: var(--yellow); }
.sobre-content .section-title { color: #202020; }
.sobre-content .section-title span { color: #c8102e; }
.sobre-content > p { color: #202020; font-size: 15px; margin-bottom: 32px; }
.brand-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.brand-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 14px 20px;
  flex: 1;
  min-width: 140px;
  backdrop-filter: blur(6px);
}
.brand-stat svg { width: 26px; height: 26px; fill: #c8102e; flex-shrink: 0; }
.brand-stat .num { font-weight: 800; font-size: 20px; color: #202020; line-height: 1; }
.brand-stat .lbl { font-size: 11px; color: #202020; margin-top: 2px; }

/* ---- FORM SECTION ---- */
.form-section {
  background: var(--red);
  color: #fff;
  padding: 70px 0;
}
.form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.form-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; margin-bottom: 12px; color: #fff}
.form-text h2 span { color: var(--yellow); color: #fff}
.form-text p { font-size: 15px; font-weight: 700; opacity: 1; margin-bottom: 24px;color: #fff }
.form-perks { list-style: none; }
.form-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  opacity: .9;
  margin-bottom: 8px;
  color: #fff
}
.amarelo {color:#F5C300 !important}
.form-perks li svg { width: 16px; height: 16px; fill: var(--yellow); flex-shrink: 0; }
.form-box { background: #fff; border-radius: 8px; padding: 36px 32px; }
.form-box h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-box .form-sub { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.form-group input, .form-group select {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 4px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border .2s;
  color: var(--dark);
}
.form-group input:focus, .form-group select:focus { border-color: var(--red); }
.objetivo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.obj-btn {
  background: var(--light-gray);
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
}
.obj-btn svg { width: 22px; height: 22px; fill: var(--gray); }
.obj-btn img { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; border-radius: 100px; }
.obj-btn.active, .obj-btn:hover {
  border-color: var(--red);
  background: #fff0f2;
  color: var(--red);
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  color: var(--dark);
}
.form-success svg { width: 60px; height: 60px; fill: #22a856; margin-bottom: 12px; }
.form-success h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--gray); }
#btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: 4px;
  border: none;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #111;
  color: rgba(255,255,255,.75);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-logo { height: 44px; margin-bottom: 14px; }
.footer-desc { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 15px;
  transition: all .2s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-contact { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.footer-contact svg { width: 16px; height: 16px; fill: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

@media (max-width: 992px) {
	.footer-contact 
	{
	    display: flex;
        align-items: self-end;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 13px;
        text-align: center;
        flex-wrap: nowrap;
        align-content: space-around;
        justify-content: center;
        flex-direction: row;
	}
	
	.footer-social {
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
	}
}

.footer-creci { font-size: 11px; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 999;
  transition: transform .2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) { 
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .step-section, .pricing-section, .map-section, .form-inner {
    grid-template-columns: 1fr;
  }
  .step-img, .pricing-img { height: 280px; }
  .map-embed { height: 300px; }
  .step-content, .pricing-content, .map-content { padding: 40px 24px; }
  .sobre-section { padding: 60px 0; }
  .sobre-content { max-width: 100%; }
  .hero-inner { flex-direction: column; }
  .hero-right { width: 100%; }
  .hero-left { padding: 50px 24px 30px; }
  .hero-icons { padding: 16px 24px; flex-wrap: wrap; gap: 14px; }
  .ideal-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr;         text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .ideal-grid { grid-template-columns: repeat(2, 1fr); }
  .objetivo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 26px; }
  .hero-icons { justify-content: flex-start; }
  .pricing-price { font-size: 40px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ===== HERO SLIDER FULLSCREEN ===== */
.hero-slider {
  position: relative;
  width: 100%;
}

/* Logo sobreposta top-left */
.hero-logo-overlay {
  /*position: absolute;
  top: 22px;
  left: 32px;
  z-index: 30;*/
  
	position: absolute;
    top: 15x;
    left: 50%;
    z-index: 30;
    margin-left: -35%;
  
}
.hero-logo-overlay img {
  height: 60px;
  width: auto;
  /*(filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));*/
}

/* Slides */
#heroCarousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
  min-height: 580px;
  max-height: 860px;
}
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay escuro sobre o slide */
.hero-overlay {
  position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(255, 255, 255, .72) 0%, rgba(255, 255, 255, .50) 55%, rgba(255, 255, 255, .35) 100%);
    z-index: 10;
}

/* Conteudo sobre o slider */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
}

@media (max-width: 600px) {
	.hero-content {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    padding: 80px 0 100px;
    flex-direction: row;
    align-content: space-around;
    justify-content: center;
    flex-wrap: wrap;
	}
	.hero-feat-box--.row {
    background: #fff;
    padding: 5px;
    border-radius: 6px;
    text-align: left;
	opacity: 0.85;
	}
}



.hero-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  top: 35px;

}
.hero-text {
  flex: 1;
  color: #fff;
  max-width: 580px;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #3b3b3b;
}
.hero-title span { color: var(--red); }
.hero-subtitle {
  font-size: 15px;
  color: #3b3b3b;
  margin-bottom: 22px;
  max-width: 460px;
}
.hero-locations {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-locations span {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-locations svg { width: 14px; height: 14px; fill: var(--red); flex-shrink: 0; }

/* Painel direito */
.hero-panel {
  width: 310px;
  flex-shrink: 0;
  background: rgb(215 13 46);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 30px 26px;
  border: 0px solid rgba(255,255,255,.08);
  opacity: 0.8;
}
.hero-panel-label {
  font-size: 10px;
  color: #333;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.hero-panel-title svg { width: 18px; height: 18px; fill: var(--red); }
.hero-panel-name {
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-panel-desc {
  font-size: 13px;
  color: rgb(0 0 0 / 79%);
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 18px;
}
.hero-price-box {
  background: var(--red);
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 10px;
  text-align: center;
}
.hero-price-box .label {
	font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 2px;
    background: #990101;
    border-radius: 20px;
    padding: 7px;
    text-align: center;
    position: relative;
    width: 130px;
    top: -28px;
}
.hero-price-box .price {
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-price-box .price sup { font-size: 17px; font-weight: 600; vertical-align: super; }
.hero-price-box .price sub { font-size: 17px; font-weight: 600; }
.hero-entry-box {
  border: 2.5px solid #c8102e;
  background: #fff;
  border-radius: 6px;
  padding: 14px 18px;
  text-align: center;
}
.hero-entry-box .pct {
    font-size: 60px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    float: left;
    width: 100%;
    text-align: left;
    height: 35px;
}
.hero-entry-box .pct-label {
    font-size: 20px;
    color: #c8102e;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
}
.hero-entry-box .pct-sub {
	font-size: 13px;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    text-align: left;
    height: 20px;
    width: 74%;

}

/* Indicadores do carousel */
.hero-indicators {
  bottom: 0px !important;
  z-index: 25;
}
.hero-indicators button {
     font-size: 11px;
    color: var(--gray);
   
    position: relative;
    margin-top: 59px;
    width: 59%;
    text-align: left;

}
.hero-indicators button.active {
 /* background: var(--red) !important;
  border-color: var(--red) !important;
  opacity: 1 !important;*/
}

/* Barra de icones abaixo do slider */
.hero-icons-bar {
  background: rgba(15,15,15,.92);
  position: relative;
  z-index: 5;
}
.hero-icons {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  gap: 10px;
}
.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-size: 11px;
  text-align: center;
  flex: 1;
}
.hero-icon-item svg { width: 26px; height: 26px; fill: #fff; }

/* Responsive hero */
@media (max-width: 992px) { 
  #heroCarousel,
  .carousel-inner,
  .carousel-item { height: 70vh; min-height: 480px; max-height: 640px; }
  .hero-grid { flex-direction: column; gap: 20px; align-items: flex-start; }
  .hero-panel { width: 100%; }
  .hero-content { padding: 90px 0 70px; align-items: flex-end; }
  .hero-logo-overlay img { height: 44px; }
}
@media (max-width: 600px) {
  #heroCarousel,
  .carousel-inner,
  .carousel-item { height: 90vh; min-height: 920px; max-height: 1000px; }
  .hero-logo-overlay { left: 16px; top: 14px; }
      .hero-logo-overlay img {
        height: 70px;
        position: relative;
        left: 100%;
        margin-left: -35px;
    }
  .hero-content { padding: 70px 0 130px; }
  .hero-panel { display: none; }
  .hero-title { font-size: 26px; }
  .hero-icons { flex-wrap: wrap; gap: 14px; justify-content: flex-start; }
}

/* ===== HERO FEATURE BOXES (abaixo do botao CTA) ===== */
.hero-feature-boxes {
  margin-top: 28px;
}
.hero-feat-box {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 13px 13px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  text-align: left;
  line-height: 1.35;
  min-width: 90px;
  flex: 1;
  transition: background .2s, border-color .2s;
}
.hero-feat-box:hover {
  background: rgba(200,16,46,.35);
  border-color: rgba(200,16,46,.6);
}
.hero-feat-box svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  flex-shrink: 0;
}
.hero-feat-box-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Remove barra antiga se ainda existir */
.hero-icons-bar { display: none; }

@media (max-width: 600px) {
  .hero-feature-boxes { /*gap: 6px;*/ }
  .hero-feat-box { min-width: 70px; padding: 10px 8px; font-size: 10px; }
  .hero-feat-box svg { width: 20px; height: 20px; }
  .hero-feat-box-img { width: 20px; height: 20px; }
}




/* Benefit card icons outline */
.benefit-card svg.icon-outline { width: 36px; height: 36px; fill: none; margin-bottom: 12px; }

/* ===== SPRITE ICONES ===== */
.sp-icon {
  display: inline-block;
  background-image: url('../img/icones.png');
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Benefit cards: 44px */
.benefit-card .sp-icon {
  width: 44px;
  height: 44px;
  background-size: 132px 176px;
  margin-bottom: 14px;
  mix-blend-mode: multiply;
}
/* Hero feat boxes: 30px */
.hero-feat-box .sp-icon {
  width: 40px;
  height: 48px;
  background-size: 134px auto;
}

/* --- Posicoes (benefit card 44px, scale=44/140) --- */
/* row1 col1 */ .sp-pin        { background-position:   0      0;     }
/* row1 col2 */ .sp-house      { background-position: -44px    0;     }
/* row1 col3 */ .sp-bar-up     { background-position: -88px    0;     }
/* row2 col1 */ .sp-checklist  { background-position:   0    -44px;   }
/* row2 col2 */ .sp-growth     { background-position: -44px  -44px;   }
/* row2 col3 */ .sp-tree       { background-position: -88px  -44px;   }
/* row3 col1 */ .sp-house-lupa { background-position:   0    -88px;   }
/* row3 col2 */ .sp-family     { background-position: -44px  -88px;   }
/* row3 col3 */ .sp-pin-dash   { background-position: -88px  -88px;   }
/* row4 col1 */ .sp-blueprint  { background-position:   0    -132px;  }
/* row4 col2 */ .sp-gear       { background-position: -44px  -124px;  }
/* row4 col3 */ .sp-phone-icon { background-position: -88px  -132px;  }

/* Hero feat boxes: background-size 156px auto, celula=52px */
.hero-feat-box .sp-icon { background-size: 156px auto; }
.hero-feat-box .sp-pin        { background-position:    0      0;    }
.hero-feat-box .sp-house      { background-position:  -50px    -5px;    }
.hero-feat-box .sp-bar-up     { background-position: -104px    0;    }
.hero-feat-box .sp-checklist  { background-position:    -5px    -60px;  }
.hero-feat-box .sp-growth     { background-position:  -52px  -52px;  }
.hero-feat-box .sp-tree       { background-position: -104px  -52px;  }
.hero-feat-box .sp-house-lupa { background-position:    0   -104px;  }
.hero-feat-box .sp-family     { background-position:  -52px -104px;  }
.hero-feat-box .sp-pin-dash   { background-position: -104px -114px;  }
.hero-feat-box .sp-blueprint  { background-position:    -5px   -167px;  }
.hero-feat-box .sp-gear       { background-position:  -52px -169px;  }
.hero-feat-box .sp-phone-icon { background-position: -104px -156px;  }

/* Icones brancos dentro do hero carousel */
#heroCarousel .hero-feat-box .sp-icon {
  filter: brightness(0) invert(1);
}




/* ===== ICONES FOOTER SPRITE (ideal section) ===== */
/* img/icones-footer.png: 5 icones em linha horizontal */
.spf-icon {
  display: inline-block;
  background-image: url('../img/icones-footer.png');
  background-repeat: no-repeat;
  background-size: 320px auto;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.spf-1 { background-position:    0   center; } /* casa       */
.spf-2 { background-position:  -64px center; } /* familia    */
.spf-3 { background-position: -128px center; } /* grafico    */
.spf-4 { background-position: -192px center; } /* chave      */
.spf-5 { background-position: -256px center; } /* dinheiro   */

span.spf-icon img {
    max-width: 100%;
}


/* Ideal item: icone em cima, texto embaixo centralizado */
.ideal-item {
  text-align: center;
  padding: 28px 5px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.white-line {
  width: 36px;
  height: 3px;
  background: #fff;
  margin-bottom: 18px;
}

footer svg {
    fill: #fff;
}

/* ===== MODAL QUALIFICACAO ===== */
.mq-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.mq-box {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.mq-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
}
.mq-close:hover { color: #333; }
.mq-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}
.mq-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #e0e0e0;
  transition: background .3s;
}
.mq-step.done, .mq-step.current { background: var(--red); }
.mq-counter {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.mq-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.mq-desc {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 22px;
}
.mq-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mq-opt {
  background: #f7f7f7;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  padding: 13px 18px;
  text-align: left;
  font-size: 14px;
  font-family: var(--font);
  color: var(--dark);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  font-weight: 500;
}
.mq-opt:hover {
  border-color: var(--red);
  background: #fff0f2;
  color: var(--red);
}
.mq-opt.selected {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
@media (max-width: 480px) {
  .mq-box { padding: 30px 20px 24px; }
  .mq-title { font-size: 16px; }
}
