/* ========================= */
/* INÍCIO - HERO */
/* ========================= */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 110px 0 90px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 168, 90, 0.12);
  color: var(--dourado);
  border: 1px solid rgba(200, 168, 90, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  color: var(--azul-principal);
  margin-bottom: 20px;
  max-width: 680px;
}

.hero p {
  font-size: 18px;
  color: var(--texto-suave);
  max-width: 610px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 380px;
  background: var(--branco);
  border: 1px solid var(--cinza-claro);
  border-left: 4px solid var(--dourado);
  border-radius: var(--borda-radius);
  box-shadow: var(--sombra);
  padding: 30px;
  text-align: left;
}

.hero-card-logo {
  width: 100px;
  margin-bottom: 18px;
}

.hero-card h2 {
  color: var(--azul-principal);
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-card p {
  margin-bottom: 0;
  font-size: 16px;
}
/* ====================== */
/* FIM - HERO */
/* ====================== */

/* ========================= */
/* INÍCIO - SOBRE */
/* ========================= */

.about {
  background-color: #f8fafc;
}

/* ========================= */
/* INÍCIO - TÍTULO DA SEÇÃO */
/* ========================= */

.section-title {
  margin-bottom: 50px;
}

.section-title span {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a96e;
  margin-bottom: 16px;
}

.section-title h2 {
  max-width: 700px;
  font-size: 3.4rem;
  line-height: 1.15;
  font-weight: 700;
  color: #123e6b;
}

/* ========================= */
/* FIM - TÍTULO DA SEÇÃO */
/* ========================= */

/* ========================= */
/* INÍCIO - GRID SOBRE */
/* ========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ========================= */
/* FIM - GRID SOBRE */
/* ========================= */

/* ========================= */
/* INÍCIO - TEXTO SOBRE */
/* ========================= */

.about-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #5f6f82;
  margin-bottom: 24px;
}

.about-highlight {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.12),
    rgba(18, 62, 107, 0.06)
  );
  border-left: 4px solid #c9a96e;
  padding: 18px 20px;
  border-radius: 12px;
  color: #123e6b !important;
  font-weight: 500;
  margin: 30px auto 0;
}

/* ========================= */
/* FIM - TEXTO SOBRE */
/* ========================= */

/* ========================= */
/* INÍCIO - GRÁFICO SEO */
/* ========================= */

.seo-graph {
  margin-top: 40px;
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(18, 62, 107, 0.05);
}

.seo-graph-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.seo-graph-header h4 {
  font-size: 1.2rem;
  color: #123e6b;
  margin: 0;
}

.seo-graph-header span {
  font-size: 0.9rem;
  color: #7a8795;
}

.graph-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  min-height: 180px;
  padding-top: 10px;
}

.graph-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 10px;
}

.graph-column small {
  font-size: 0.85rem;
  color: #7a8795;
}

.bar {
  width: 100%;
  max-width: 55px;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(to top, #c9a96e, #e2c58e);
  box-shadow: 0 8px 18px rgba(201, 169, 110, 0.22);
  animation: growBar 1.3s ease forwards;
  transform-origin: bottom;
}

.bar1 {
  height: 55px;
}

.bar2 {
  height: 90px;
}

.bar3 {
  height: 130px;
}

.bar4 {
  height: 165px;
}

.graph-label {
  margin-top: 20px;
  margin-bottom: 0 !important;
  font-size: 0.98rem !important;
  line-height: 1.7 !important;
  color: #6a7987 !important;
}

@keyframes growBar {
  from {
    transform: scaleY(0);
    opacity: 0.3;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ========================= */
/* FIM - GRÁFICO SEO */
/* ========================= */
/* ========================= */
/* INÍCIO - ABOUT EXTRA */
/* ========================= */

.about-extra {
  width: 100%;
  margin-top: 40px;
}

.about-highlight {
  max-width: 980px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #5f6f82;
  margin-bottom: 0;
}

/* ========================= */
/* FIM - ABOUT EXTRA */
/* ========================= */

/* ========================= */
/* INÍCIO - SEO EVOLUTION */
/* ========================= */

.seo-evolution {
  margin-top: 35px;
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 12px 35px rgba(18, 62, 107, 0.05);
  position: relative;
  overflow: hidden;
}

.seo-evolution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #123e6b 0%, #c9a96e 100%);
}

.seo-evolution-header {
  margin-bottom: 34px;
}

.seo-evolution-header span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c9a96e;
}

.seo-evolution-header h3 {
  font-size: 2.2rem;
  line-height: 1.2;
  color: #123e6b;
  margin-bottom: 16px;
  max-width: 760px;
}

.seo-evolution-header p {
  max-width: 780px;
  margin-bottom: 0;
  color: #5f6f82;
  line-height: 1.8;
  font-size: 1.02rem;
}

.seo-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.seo-timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(201, 169, 110, 0.35),
    rgba(18, 62, 107, 0.2)
  );
  z-index: 0;
}

.seo-month {
  position: relative;
  background: linear-gradient(180deg, #f8fbfd 0%, #edf3f8 100%);
  border: 1px solid #dde7f0;
  border-radius: 22px;
  padding: 28px 24px 24px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  z-index: 1;
  min-height: 260px;
}

.seo-month:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(18, 62, 107, 0.1);
  border-color: #c9d8e7;
}

.seo-month::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #c9a96e;
  box-shadow: 0 0 0 7px rgba(201, 169, 110, 0.15);
}

.seo-month-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.month-number {
  display: inline-flex;
  align-self: flex-start;
  background: #123e6b;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.month-value {
  font-size: 1rem;
  font-weight: 700;
  color: #c9a96e;
}

.seo-month h4 {
  font-size: 1.2rem;
  line-height: 1.35;
  color: #123e6b;
  margin-bottom: 12px;
}

.seo-month p {
  margin: 0;
  color: #5f6f82;
  line-height: 1.75;
  font-size: 0.98rem;
}

/* ========================= */
/* INÍCIO - SEO GROWTH BAR */
/* ========================= */

.growth-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(18, 62, 107, 0.06);
}

.seo-progress-wrapper {
  margin-top: 24px;
  padding-top: 6px;
}

/* BARRA */
.seo-progress-bar {
  display: flex;
  gap: 8px;
}

.progress-step {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: #dde7f0;
  position: relative;
  overflow: hidden;
}

.progress-step.active {
  background: linear-gradient(90deg, #123e6b 0%, #8d9bb0 55%, #c9a96e 100%);
  opacity: 0.9;
}

/* LABELS */
.seo-progress-labels {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  font-size: 0.82rem;
  text-align: center;
  color: #5f6f82;
  font-weight: 600;
}

/* ========================= */
/* FIM - SEO GROWTH BAR */
/* ========================= */

/* ========================= */
/* INÍCIO - BEFORE AFTER */
/* ========================= */

.before-after {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.before-card,
.after-card {
  background: #f8fbfd;
  border: 1px solid #dde7f0;
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 10px 24px rgba(18, 62, 107, 0.04);
}

.before-card h4,
.after-card h4 {
  margin: 14px 0 14px;
  font-size: 1.2rem;
  color: #123e6b;
}

.before-card ul,
.after-card ul {
  padding-left: 18px;
  margin: 0;
}

.before-card li,
.after-card li {
  color: #5f6f82;
  line-height: 1.8;
  margin-bottom: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.before-tag {
  background: rgba(95, 111, 130, 0.12);
  color: #5f6f82;
}

.after-tag {
  background: rgba(18, 62, 107, 0.1);
  color: #123e6b;
}

/* ========================= */
/* FIM - BEFORE AFTER */
/* ========================= */

/* ========================= */
/* INÍCIO - RESPONSIVO */
/* ========================= */

@media (max-width: 1100px) {
  .seo-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-timeline::before {
    display: none;
  }

  .seo-growth-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-highlight {
    font-size: 1rem;
    line-height: 1.8;
  }

  .seo-evolution {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .seo-evolution-header h3 {
    font-size: 1.8rem;
  }

  .seo-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .seo-month {
    min-height: auto;
    padding: 24px 20px 22px;
  }

  .seo-growth-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .seo-evolution-header h3 {
    font-size: 1.55rem;
  }

  .seo-growth-bar {
    grid-template-columns: 1fr;
  }

  .month-number {
    font-size: 0.76rem;
    padding: 7px 13px;
  }

  .month-value {
    font-size: 0.95rem;
  }

  .seo-month h4 {
    font-size: 1.08rem;
  }

  .seo-month p {
    font-size: 0.95rem;
  }
}

/* ========================= */
/* FIM - RESPONSIVO */
/* ========================= */

/* ========================= */
/* FIM - SEO EVOLUTION */
/* ========================= */
/* ========================= */
/* INÍCIO - ANTES X DEPOIS */
/* ========================= */

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}

.before-card,
.after-card {
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 10px 30px rgba(18, 62, 107, 0.04);
}

.before-card h4,
.after-card h4 {
  font-size: 1.15rem;
  color: #123e6b;
  margin-top: 14px;
  margin-bottom: 18px;
}

.before-card ul,
.after-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.before-card li,
.after-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  color: #5f6f82;
  line-height: 1.7;
}

.before-card li::before,
.after-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.before-card li::before {
  background-color: #d99898;
}

.after-card li::before {
  background-color: #c9a96e;
}

.tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.before-tag {
  background-color: #fbe8e8;
  color: #b55f5f;
}

.after-tag {
  background-color: #f3ead8;
  color: #a9843f;
}

/* ========================= */
/* FIM - ANTES X DEPOIS */
/* ========================= */

/* ========================= */
/* INÍCIO - ABOUT EXTRA */
/* ========================= */

.about-extra {
  margin-top: 60px;
}

/* deixa o highlight mais largo e bonito */
.about-extra .about-highlight {
  max-width: 900px;
}

/* centraliza gráfico */
.about-extra .seo-graph {
  margin-top: 30px;
  max-width: 900px;
}

/* before/after centralizado e com largura boa */
.about-extra .before-after {
  margin: 40px auto 0;
  max-width: 1000px;
}

/* ========================= */
/* FIM - ABOUT EXTRA */
/* ========================= */

/* ========================= */
/* INÍCIO - CAIXA LATERAL */
/* ========================= */

.about-box {
  background: #edf3f8;
  border: 1px solid #d9e3ec;
  border-radius: 24px;
  padding: 38px;
  height: fit-content;
  box-shadow: 0 12px 32px rgba(18, 62, 107, 0.05);
}

.about-box h3 {
  font-size: 2rem;
  line-height: 1.25;
  color: #123e6b;
  margin-bottom: 28px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #d7e0e8;
  color: #22354a;
  font-size: 1.08rem;
  line-height: 1.5;
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list i {
  width: 22px;
  height: 22px;
  color: #c9a96e;
  flex-shrink: 0;
}

/* ========================= */
/* FIM - CAIXA LATERAL */
/* ========================= */

/* ========================= */
/* FIM - SOBRE */
/* ========================= */

/* ========================= */
/* INÍCIO - SERVIÇOS */
/* ========================= */
.services {
  background: var(--fundo);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--branco);
  border: 1px solid var(--cinza-claro);
  border-radius: var(--borda-radius);
  padding: 28px;
  box-shadow: var(--sombra);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--dourado);
}

.service-card h3 {
  color: var(--azul-principal);
  font-size: 22px;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--texto-suave);
}

.service-card {
  position: relative;
}
.service-number {
  position: absolute;
  top: 18px;
  right: 22px;

  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;

  color: rgba(18, 62, 107, 0.08);

  pointer-events: none;
  user-select: none;
}

.service-card:hover .service-number {
  color: rgba(201, 169, 110, 0.18);
}
/* ====================== */
/* FIM - SERVIÇOS */
/* ====================== */

/* ========================= */
/* INÍCIO - DIFERENCIAIS */
/* ========================= */

.differentials {
  background: var(--fundo-section);
}

.differentials .section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

.differentials .section-title span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dourado, #c9a96e);
}

.differentials .section-title h2 {
  color: var(--azul-principal);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 0;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.differential-item {
  position: relative;
  background: linear-gradient(180deg, #f8fbfd 0%, #edf3f8 100%);
  border: 1px solid #dde7f0;
  border-radius: 24px;
  padding: 30px;
  min-height: 200px;
  box-shadow: 0 10px 28px rgba(18, 62, 107, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  overflow: hidden;
}

.differential-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(201, 169, 110, 0.08),
    transparent 35%
  );
  pointer-events: none;
}

.differential-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #123e6b 0%, #c9a96e 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.differential-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(18, 62, 107, 0.08);
  border-color: #cfdbe7;
}

.differential-item:hover::after {
  opacity: 1;
}

.differential-item:hover .differential-icon {
  transform: scale(1.05);
  background: linear-gradient(
    180deg,
    rgba(18, 62, 107, 0.12) 0%,
    rgba(201, 169, 110, 0.18) 100%
  );
}

.differential-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.differential-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(18, 62, 107, 0.08) 0%,
    rgba(201, 169, 110, 0.12) 100%
  );
  border: 1px solid rgba(18, 62, 107, 0.08);
  color: var(--azul-principal);
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.differential-item:hover .differential-icon {
  transform: scale(1.05);
  background: linear-gradient(
    180deg,
    rgba(18, 62, 107, 0.12) 0%,
    rgba(201, 169, 110, 0.18) 100%
  );
}

.differential-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.differential-item h3 {
  margin: 0;
  color: var(--azul-principal);
  font-size: 1.4rem;
  line-height: 1.3;
}

.differential-item p {
  margin: 0;
  color: var(--texto-suave);
  font-size: 0.98rem;
  line-height: 1.8;
  padding-left: 60px;
}

.differential-item h3 {
  color: var(--azul-principal);
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
}

.differential-item p {
  color: var(--texto-suave);
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 95%;
}

/* ========================= */
/* RESPONSIVO - DIFERENCIAIS */
/* ========================= */

@media (max-width: 900px) {
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .differential-item {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .differentials .section-title {
    margin-bottom: 30px;
  }

  .differential-item {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .differential-header {
    gap: 12px;
    margin-bottom: 12px;
  }

  .differential-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .differential-icon svg {
    width: 20px;
    height: 20px;
  }

  .differential-item h3 {
    font-size: 1.2rem;
  }

  .differential-item p {
    font-size: 0.96rem;
    padding-left: 54px;
  }
}

/* ====================== */
/* FIM - DIFERENCIAIS */
/* ====================== */

/* ========================= */
/* INÍCIO - CTA */
/* ========================= */
.cta {
  background: linear-gradient(
    135deg,
    var(--azul-principal),
    var(--azul-secundario)
  );
}

.cta-box {
  text-align: center;
  color: var(--branco);
}

.cta-box h2 {
  color: var(--branco);
  font-size: 38px;
  margin-bottom: 16px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 24px;
}
/* ====================== */
/* FIM - CTA */
/* ====================== */

/* ========================= */
/* INÍCIO - CONTATO */
/* ========================= */
/* .contact {
  background: var(--fundo);
}

.contact-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--branco);
  border: 1px solid var(--cinza-claro);
  border-radius: var(--borda-radius);
  box-shadow: var(--sombra);
  padding: 35px;
  text-align: center;
}

.contact-card p {
  color: var(--texto);
  margin-bottom: 10px;
}

.contact-card .btn {
  margin-top: 20px;
} */
/* ====================== */
/* FIM - CONTATO */
/* ====================== */

/* =========================
INÍCIO - CONTATO
========================= */
.contact-section {
  padding: 100px 20px;
  background: #f7f9fc;
}

.contact-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.contact-section .section-title span {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #caa64b;
  margin-bottom: 18px;
}

.contact-section .section-title h2 {
  font-size: 3.4rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--azul-principal);
  margin: 18px auto;
}

.contact-section .section-title p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5f6f82;
}

.contact-form-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  padding: 45px;
  box-shadow: 0 18px 45px rgba(15, 76, 138, 0.08);
  border: 1px solid #e7edf3;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  font-size: 0.98rem;
  font-weight: 700;
  color: #17375e;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9e2ec;
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 1rem;
  color: #17375e;
  background: #fff;
  outline: none;
  transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #caa64b;
  box-shadow: 0 0 0 4px rgba(202, 166, 75, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.free-analysis-box {
  margin-top: 24px;
  padding: 18px 20px;
  background: #fbf8ef;
  border: 1px solid rgba(202, 166, 75, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.free-analysis-box input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #caa64b;
}

.free-analysis-box label {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #17375e;
  font-weight: 600;
}

.btn-contact-submit {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  border: none;
  border-radius: 14px;
  padding: 16px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  background: #caa64b;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  background: #b79237;
}
/* =========================
FIM - CONTATO
========================= */

/* =========================
INÍCIO - RESPONSIVO CONTATO
========================= */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 16px;
  }

  .contact-section .section-title h2 {
    font-size: 2.3rem;
  }

  .contact-section .section-title p {
    font-size: 1rem;
  }

  .contact-form-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .btn-contact-submit {
    width: 100%;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-text {
    font-size: 0.82rem;
    bottom: 72px;
  }
}
/* =========================
FIM - RESPONSIVO CONTATO
========================= */

/* ========================= */
/* INÍCIO - RESPONSIVIDADE */
/* ========================= */
@media (max-width: 992px) {
  .hero-content,
  .about-grid,
  .services-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .menu {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 2.6rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-around;
    padding: 16px 0;
  }

  .menu {
    justify-content: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p,
  .about-text p,
  .service-card p,
  .differential-item p,
  .contact-card p {
    font-size: 16px;
  }

  .section {
    padding: 70px 0;
  }

  .cta-box h2,
  .section-title h2 {
    font-size: 28px;
  }

  .seo-progress-labels {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 6px;
  }
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 35px;
  }

  .section-title h2 {
    font-size: 2.1rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .seo-graph {
    padding: 22px 18px;
  }

  .seo-graph-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .graph-bars {
    gap: 12px;
    min-height: 150px;
  }

  .bar {
    max-width: 45px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .about-box {
    padding: 28px 22px;
  }

  .about-box h3 {
    font-size: 1.6rem;
  }

  .about-list li {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .differential-header {
    align-items: flex-start;
  }

  .differential-item p {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .logo {
    width: 72px;
  }
}
/* ====================== */
/* FIM - RESPONSIVIDADE */
/* ====================== */
