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

:root {
  --orange: #ff7417;
  --orange-dark: #df5b00;
  --black: #080b0f;
  --dark: #111820;
  --gray-dark: #34363a;
  --text: #1d1d1f;
  --muted: #64676c;
  --light: #f7f7f8;
  --white: #ffffff;
  --border: #e8e8ea;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 11, 15, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 210px;
  max-height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

.header-button,
.primary-button,
.phone-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-weight: 800;
  padding: 14px 22px;
  box-shadow: 0 14px 35px rgba(255, 116, 23, 0.26);
  transition: 0.2s ease;
  border: 0;
  cursor: pointer;
}

.header-button:hover,
.primary-button:hover,
.phone-button:hover,
.submit-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 30px;
}

/* HERO HOME */
.hero {
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.96), rgba(8, 11, 15, 0.88)),
    radial-gradient(circle at 75% 20%, rgba(255, 116, 23, 0.20), transparent 34%),
    var(--black);
  color: var(--white);
  padding: 80px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 56px;
  min-height: 500px;
}

.tag {
  display: inline-flex;
  color: var(--orange);
  background: rgba(255, 116, 23, 0.12);
  border: 1px solid rgba(255, 116, 23, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 24px;
}

.hero h1,
.contact-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.8px;
  max-width: 760px;
  margin-bottom: 22px;
}

.hero h1 strong {
  display: block;
  color: var(--orange);
}

.hero p,
.contact-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  font-weight: 800;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  transition: 0.2s;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-logo-card {
  min-height: 390px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 42px;
  position: relative;
}

.hero-logo-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 116, 23, 0.20);
}

.hero-logo-card img {
  width: min(410px, 100%);
  border-radius: 18px;
  position: relative;
  z-index: 2;
}

.feature-bar {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.055);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
}

.feature-item span {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 116, 23, 0.14);
}

.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
}

/* SECTIONS */
.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading span,
.tax-content span,
.contact-card span,
.form-intro span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-heading h2,
.tax-content h2,
.contact-card h2,
.form-intro h2,
.quick-contact h2 {
  color: var(--text);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin: 10px 0 14px;
}

.section-heading p,
.form-intro p,
.quick-contact p {
  color: var(--muted);
  font-size: 16px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 116, 23, 0.45);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.10);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 22px;
  border: 2px solid var(--orange);
}

.service-card h3 {
  color: var(--text);
  font-size: 20px;
  line-height: 1.22;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.service-card a {
  color: var(--orange);
  font-size: 26px;
  font-weight: 900;
}

/* TAX SECTION */
.tax-section {
  background:
    linear-gradient(90deg, rgba(8,11,15,0.96), rgba(17,24,32,0.97)),
    radial-gradient(circle at 15% 45%, rgba(255,116,23,0.18), transparent 28%);
  color: var(--white);
  padding: 74px 0;
}

.tax-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  align-items: center;
  gap: 42px;
}

.tax-visual {
  display: flex;
  align-items: center;
  gap: 20px;
}

.map-shape {
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 116, 23, 0.45);
  color: var(--orange);
  font-size: 56px;
  font-weight: 900;
  border-radius: 45% 55% 50% 50%;
  background: rgba(255, 116, 23, 0.08);
  box-shadow: 0 0 55px rgba(255, 116, 23, 0.12);
}

.tax-badges {
  display: grid;
  gap: 16px;
}

.tax-badges span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 116, 23, 0.55);
  color: var(--orange);
  font-weight: 900;
  border-radius: 20px;
}

.tax-content h2 {
  color: var(--white);
}

.tax-content p,
.tax-list p {
  color: rgba(255, 255, 255, 0.72);
}

.tax-list {
  display: grid;
  gap: 14px;
}

.tax-list p {
  font-weight: 600;
}

.tax-list a {
  width: fit-content;
  margin-top: 8px;
  color: var(--orange);
  border: 1px solid rgba(255, 116, 23, 0.45);
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 800;
}

/* DIFFERENTIALS */
.differentials-section {
  background: var(--light);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.differential-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
}

.differential-item span {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: var(--light);
  border-radius: 999px;
  font-size: 24px;
}

.differential-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.differential-item p {
  color: var(--muted);
  font-size: 14px;
}

/* CONTACT CTA HOME */
.contact-section {
  padding: 86px 0;
}

.contact-card {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 30px;
  padding: 48px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "RM";
  position: absolute;
  right: 42px;
  bottom: -42px;
  font-size: 180px;
  color: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  line-height: 1;
}

.contact-card span,
.contact-card h2,
.contact-card p,
.phone-button {
  position: relative;
  z-index: 2;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card h2 {
  color: var(--white);
  max-width: 650px;
}

.contact-card p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.85);
}

.phone-button {
  background: var(--white);
  color: var(--orange-dark);
  white-space: nowrap;
  box-shadow: none;
}

/* CONTACT PAGE */
.contact-hero {
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.97), rgba(8, 11, 15, 0.90)),
    radial-gradient(circle at 78% 25%, rgba(255, 116, 23, 0.22), transparent 35%),
    var(--black);
  color: var(--white);
  padding: 76px 0;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 48px;
  align-items: center;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-info-card img {
  width: 230px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 24px;
}

.contact-info-card h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}

.contact-info-list {
  display: grid;
  gap: 12px;
}

.contact-info-list a,
.contact-info-list span {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 13px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.form-section {
  padding: 86px 0;
  background: var(--light);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 110px;
}

.form-benefits {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.form-benefits div {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.form-benefits strong {
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--orange);
}

.form-benefits p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 116, 23, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
}

.checkbox-group input {
  margin-top: 4px;
  accent-color: var(--orange);
}

.submit-button {
  width: 100%;
  font-size: 16px;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.quick-contact {
  padding: 70px 0;
  background: var(--white);
}

.quick-contact-grid {
  background: var(--black);
  color: var(--white);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.quick-contact h2 {
  color: var(--white);
  margin-top: 0;
}

.quick-contact p {
  color: rgba(255, 255, 255, 0.72);
}

/* FOOTER */
.site-footer {
  background: var(--black);
  padding: 34px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-content img {
  width: 180px;
  max-height: 56px;
  object-fit: contain;
}

.footer-content nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-content a,
.footer-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: var(--black);
    padding: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .header-button {
    display: none;
  }

  .hero-grid,
  .tax-grid,
  .contact-hero-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-bar,
  .services-grid,
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card,
  .quick-contact-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 165px;
  }

  .hero,
  .contact-hero {
    padding-top: 54px;
  }

  .hero-logo-card {
    min-height: 280px;
    padding: 26px;
  }

  .feature-bar,
  .services-grid,
  .differentials-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .tax-visual {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card,
  .quick-contact-grid,
  .contact-form {
    padding: 28px;
  }

  .contact-info-card img {
    width: 190px;
  }
}


/* =========================================================
   HOMEPAGE PROFISSIONAL - RM CONTADORES
   ========================================================= */

.premium-hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(8, 11, 15, 0.98) 0%, rgba(13, 18, 24, 0.96) 48%, rgba(28, 19, 13, 0.94) 100%),
    radial-gradient(circle at 80% 20%, rgba(255, 116, 23, 0.26), transparent 34%),
    radial-gradient(circle at 15% 70%, rgba(255, 255, 255, 0.07), transparent 30%);
  overflow: hidden;
  padding: 86px 0 0;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.premium-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 60px;
  align-items: center;
  min-height: 610px;
}

.premium-kicker {
  display: inline-flex;
  color: var(--orange);
  background: rgba(255, 116, 23, 0.12);
  border: 1px solid rgba(255, 116, 23, 0.30);
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
}

.premium-hero h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -2.4px;
  max-width: 860px;
  margin-bottom: 24px;
}

.premium-hero h1 strong {
  display: block;
  color: var(--orange);
}

.premium-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  max-width: 690px;
  margin-bottom: 32px;
}

.premium-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.premium-link-button {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  transition: 0.2s;
}

.premium-link-button:hover {
  background: rgba(255,255,255,0.08);
}

.premium-trust-row {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 800px;
}

.premium-trust-row div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
}

.premium-trust-row strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

.premium-trust-row span {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

.premium-hero-panel {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 80px rgba(0,0,0,0.34);
  padding: 34px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
}

.panel-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: -70px;
  background: radial-gradient(circle, rgba(255,116,23,0.44), transparent 68%);
  pointer-events: none;
}

.premium-hero-panel img {
  position: relative;
  z-index: 2;
  width: 300px;
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.35));
}

.executive-card {
  position: relative;
  z-index: 2;
  background: rgba(8,11,15,0.72);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 26px;
  padding: 28px;
}

.executive-card span,
.premium-heading span,
.method-content span,
.reform-content span,
.premium-cta span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.executive-card h2 {
  color: var(--white);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.7px;
  margin: 10px 0 22px;
}

.executive-list {
  display: grid;
  gap: 11px;
}

.executive-list p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.executive-list b {
  color: var(--orange);
  margin-right: 8px;
}

.premium-strip {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

.premium-strip div {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.premium-strip div:last-child {
  border-right: 0;
}

.premium-strip span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.premium-strip strong {
  color: var(--white);
  font-size: 15px;
}

.premium-section,
.segments-section {
  padding: 96px 0;
  background: var(--white);
}

.premium-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.premium-heading.center {
  text-align: center;
  margin-inline: auto;
}

.premium-heading h2,
.method-content h2,
.reform-content h2,
.premium-cta h2 {
  color: var(--text);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.09;
  letter-spacing: -1.4px;
  margin: 10px 0 14px;
}

.premium-heading p,
.method-content p,
.reform-content p,
.premium-cta p {
  color: var(--muted);
  font-size: 16px;
  max-width: 760px;
}

.premium-services-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 22px;
}

.premium-service-card {
  min-height: 330px;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, #ffffff, #fbfbfb);
  box-shadow: 0 16px 45px rgba(0,0,0,0.055);
  transition: 0.25s ease;
}

.premium-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.10);
  border-color: rgba(255,116,23,0.42);
}

.premium-service-card.featured {
  grid-row: span 2;
  background:
    linear-gradient(145deg, rgba(8,11,15,0.96), rgba(20,27,36,0.96)),
    radial-gradient(circle at right top, rgba(255,116,23,0.18), transparent 36%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-number {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,116,23,0.12);
  color: var(--orange);
  border: 1px solid rgba(255,116,23,0.32);
  font-weight: 900;
  margin-bottom: 28px;
}

.premium-service-card h3 {
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.premium-service-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.premium-service-card.featured p {
  color: rgba(255,255,255,0.72);
}

.premium-service-card a {
  color: var(--orange);
  font-weight: 900;
}

.method-section {
  padding: 96px 0;
  background: var(--light);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.method-steps {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.method-steps div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}

.method-steps strong {
  display: block;
  color: var(--text);
  margin-bottom: 5px;
}

.method-steps p {
  margin: 0;
  font-size: 14px;
}

.method-dashboard {
  border-radius: 32px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(8,11,15,0.98), rgba(18,25,34,0.98));
  color: var(--white);
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.dash-header span {
  color: var(--orange);
  font-weight: 900;
}

.dash-header b {
  color: rgba(255,255,255,0.78);
}

.dash-line {
  margin-bottom: 22px;
}

.dash-line span {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  margin-bottom: 8px;
}

.dash-line div {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}

.dash-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffae67);
}

.dash-note {
  margin-top: 28px;
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.dash-note strong {
  color: var(--white);
}

.reform-premium {
  padding: 96px 0;
  background: var(--black);
  color: var(--white);
}

.reform-card {
  display: grid;
  grid-template-columns: 0.62fr 1fr 0.9fr;
  gap: 34px;
  align-items: center;
  border-radius: 36px;
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    radial-gradient(circle at left top, rgba(255,116,23,0.22), transparent 30%);
  border: 1px solid rgba(255,255,255,0.10);
}

.reform-visual {
  min-height: 250px;
  position: relative;
}

.orb {
  width: 160px;
  height: 160px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 42px;
  font-weight: 900;
  border: 1px solid rgba(255,116,23,0.55);
  background: rgba(255,116,23,0.10);
  box-shadow: 0 0 60px rgba(255,116,23,0.18);
}

.orb.secondary {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 118px;
  height: 118px;
  font-size: 32px;
  background: rgba(255,255,255,0.06);
}

.reform-content h2 {
  color: var(--white);
}

.reform-content p {
  color: rgba(255,255,255,0.72);
}

.reform-checklist {
  display: grid;
  gap: 13px;
}

.reform-checklist p {
  color: rgba(255,255,255,0.78);
  font-weight: 650;
}

.reform-checklist a {
  margin-top: 12px;
  width: fit-content;
  color: var(--orange);
  border: 1px solid rgba(255,116,23,0.46);
  padding: 13px 17px;
  border-radius: 12px;
  font-weight: 900;
}

.segments-section {
  background: var(--white);
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.segments-grid div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
}

.segments-grid h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.segments-grid p {
  color: var(--muted);
  font-size: 14px;
}

.premium-cta-section {
  padding: 0 0 96px;
  background: var(--white);
}

.premium-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  padding: 50px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.premium-cta::after {
  content: "RM";
  position: absolute;
  right: 28px;
  bottom: -54px;
  font-size: 210px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.10);
}

.premium-cta span,
.premium-cta h2,
.premium-cta p,
.cta-actions {
  position: relative;
  z-index: 2;
}

.premium-cta span {
  color: rgba(255,255,255,0.78);
}

.premium-cta h2 {
  color: var(--white);
  max-width: 760px;
}

.premium-cta p {
  color: rgba(255,255,255,0.86);
}

.cta-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.premium-whatsapp {
  color: var(--white);
  font-weight: 900;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.36);
  padding: 14px 16px;
  border-radius: 12px;
}

@media (max-width: 1080px) {
  .premium-hero-grid,
  .method-grid,
  .reform-card {
    grid-template-columns: 1fr;
  }

  .premium-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .premium-service-card.featured {
    grid-row: auto;
  }

  .segments-grid,
  .premium-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .premium-hero {
    padding-top: 58px;
  }

  .premium-hero-grid {
    gap: 34px;
    min-height: auto;
  }

  .premium-hero h1 {
    letter-spacing: -1.5px;
  }

  .premium-trust-row,
  .premium-services-grid,
  .segments-grid,
  .premium-strip {
    grid-template-columns: 1fr;
  }

  .premium-hero-panel {
    min-height: auto;
    padding: 24px;
  }

  .premium-hero-panel img {
    width: 240px;
    margin-bottom: 28px;
  }

  .premium-section,
  .method-section,
  .reform-premium,
  .segments-section {
    padding: 70px 0;
  }

  .reform-card,
  .premium-cta {
    padding: 30px;
    border-radius: 26px;
  }

  .orb.secondary {
    position: static;
    margin-top: 14px;
  }
}


/* Contatos adicionais: WhatsApp + telefone fixo */
.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.outline-phone-button,
.premium-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 900;
  padding: 14px 18px;
  transition: 0.2s ease;
}

.outline-phone-button {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.08);
}

.outline-phone-button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}

.premium-phone {
  color: var(--white);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.08);
}

.premium-phone:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}

/* Endereço e minimapa Google */
.google-map-box {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.google-map-box iframe {
  width: 100%;
  height: 210px;
  display: block;
  border: 0;
  filter: grayscale(12%) contrast(105%);
}

.map-open-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 900;
}

.cta-address {
  margin-top: 14px;
  color: rgba(255,255,255,0.90) !important;
  font-weight: 700;
  max-width: 760px;
}



/* Ajuste do rodapé da página de contato: WhatsApp com a mesma cor do telefone */
.quick-contact .contact-buttons .outline-phone-button {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}

.quick-contact .contact-buttons .outline-phone-button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}



/* WhatsApp sem caixa e sem ícone */
.whatsapp-text-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 900;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  text-align: left;
}

.whatsapp-text-link:hover {
  color: var(--white);
  text-decoration: underline;
  transform: none !important;
  background: transparent !important;
}

.quick-contact .contact-buttons .whatsapp-text-link,
.cta-actions .whatsapp-text-link {
  color: var(--white);
}

.contact-info-list a[href*="wa.me"] {
  gap: 0;
}


/* Ícone miniatura do WhatsApp */
.whatsapp-mini-icon {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 18px;
}

.whatsapp-text-link,
.outline-phone-button,
.contact-info-list a[href*="wa.me"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}



/* Ajuste fino: alinhamento do ícone do WhatsApp com o número sem span interno */
.contact-info-list a[href*="wa.me"],
.whatsapp-text-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start;
  gap: 8px;
  line-height: 1.2;
}

.whatsapp-mini-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex: 0 0 20px;
  display: inline-block;
  object-fit: contain;
  border-radius: 4px;
  margin: 0;
  vertical-align: middle;
}



/* Correção: telefone fixo sem span interno no rodapé/bloco de contato */
.outline-phone-button span {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}



/* Padronização dos 3 botões de contato */
.contact-info-list {
  display: grid;
  gap: 12px;
}

.contact-info-list a,
.contact-info-list span {
  width: 100%;
  min-height: 56px;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 16px;
  box-sizing: border-box;
  border-radius: 16px;
  line-height: 1.25;
}

.contact-info-list a[href*="wa.me"],
.contact-info-list a[href^="tel:"],
.contact-info-list a[href^="mailto:"] {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-info-list a[href*="wa.me"] img.whatsapp-mini-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.contact-info-list a[href^="tel:"],
.contact-info-list a[href^="mailto:"] {
  white-space: normal;
}

.contact-info-list a[href^="tel:"]::before,
.contact-info-list a[href^="mailto:"]::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  flex: 0 0 18px;
}

.contact-info-list a[href^="tel:"]::before {
  content: "☎️";
}

.contact-info-list a[href^="mailto:"]::before {
  content: "✉️";
}



/* Botão do Instagram na página de contato */
.instagram-contact-button {
  width: 100%;
  min-height: 56px;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 16px;
  box-sizing: border-box;
  border-radius: 16px;
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
}

.instagram-contact-button:hover {
  transform: translateY(-2px);
}

.instagram-mini-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex: 0 0 18px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
