
/* ENVIAR Premium Clean v1.2 - Ideiaup */
:root {
  --primary: #f7c600;
  --primary-dark: #e5b400;
  --accent: #22c55e;
  --dark: #020617;
  --dark-soft: #0b1120;
  --bg-soft: #f5f5f7;
  --text-main: #111827;
  --text-muted: #6b7280;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
}

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

html, body {
  height: 100%;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #92400e;
  background-color: #fef3c7;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0.2rem auto 0;
  font-size: 0.95rem;
}

/* ============================
   NAVBAR
============================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: radial-gradient(circle at top left, rgba(247, 198, 0, 0.12), rgba(2, 6, 23, 0.96));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  height: 80px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #f9fafb;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.88rem;
}

.nav-links a {
  color: #e5e7eb;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  opacity: 0.9;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transition: width 0.18s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background-color: #f9fafb;
  color: #020617;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.nav-toggle {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #f9fafb;
}

@media (max-width: 800px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #020617;
    padding: 0.8rem 1.5rem 1.2rem;
    gap: 1rem;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.85);
  }
}

/* ============================
   HERO + SLIDER
============================ */
.hero {
  background: radial-gradient(circle at top left, #facc15 0, #020617 52%, #020617 100%);
  color: #f9fafb;
  padding: 4.2rem 0 4.6rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.6);
  background-color: rgba(15, 23, 42, 0.7);
  font-size: 0.78rem;
  color: #fefce8;
  margin-bottom: 0.9rem;
}

.hero-badge span.tag {
  background-color: rgba(250, 204, 21, 0.18);
  padding: 0.14rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #facc15;
}

.hero-title {
  font-size: 2.7rem;
  line-height: 1.08;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #f97316, #facc15);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  color: #e5e7eb;
  font-size: 0.98rem;
  max-width: 520px;
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-primary {
  border: none;
  border-radius: 999px;
  padding: 0.98rem 1.9rem;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111827;
  font-size: 0.94rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(250, 204, 21, 0.6);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 22px 55px rgba(250, 204, 21, 0.75);
}

.btn-outline {
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(248, 250, 252, 0.4);
  background-color: rgba(15, 23, 42, 0.4);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  color: #e5e7eb;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.12s ease;
}

.btn-outline:hover {
  background-color: #f9fafb;
  color: #020617;
  border-color: #f9fafb;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: #e5e7eb;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* HERO RIGHT - SLIDER CARD */
.hero-card-wrap {
  position: relative;
}

.hero-card {
  background-color: rgba(15, 23, 42, 0.96);
  border-radius: 26px;
  padding: 1.8rem 1.7rem 1.9rem;
  color: #e5e7eb;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 999px;
  padding: 0.24rem 0.7rem;
  background-color: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-card-badge span.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.hero-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  font-size: 0.78rem;
}

.hero-stat {
  background-color: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.hero-stat-label {
  color: #9ca3af;
  font-size: 0.7rem;
}

.hero-stat-value {
  font-weight: 600;
  margin-top: 0.05rem;
}

/* Slider block */
.hero-slider {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background-color: #020617;
  position: relative;
}

.hero-slide {
  display: none;
  padding: 1.2rem 1.4rem 1.4rem;
  min-height: 160px;
  background-size: cover;
  background-position: center;
}

.hero-slide-inner {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.9));
  padding: 1.1rem 1.1rem 1.2rem;
  border-radius: 14px;
  color: #f9fafb;
}

.hero-slide h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.hero-slide p {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.hero-slide.active {
  display: block;
}

.hero-dots {
  position: absolute;
  bottom: 0.75rem;
  right: 0.95rem;
  display: flex;
  gap: 0.35rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.7);
  background-color: transparent;
  cursor: pointer;
  opacity: 0.7;
}

.hero-dot.active {
  background-color: #facc15;
  border-color: #facc15;
  opacity: 1;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    padding-top: 3.6rem;
  }
  .hero-card {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

/* ============================
   POR QUE ENVIAR
============================ */
.why {
  background-color: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.why-card {
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  background-color: #0b1120;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.4);
  color: #e5e7eb;
  font-size: 0.9rem;
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #facc15, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  color: #020617;
}

.why-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
  color: #f9fafb;
}

.why-card p {
  color: #cbd5f5;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================
   QUEM SOMOS
============================ */
.qs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.4rem;
  align-items: center;
}

.qs-tagbox {
  background-color: #020617;
  color: #f9fafb;
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-soft);
  max-width: 360px;
}

.qs-tagbox h3 {
  font-size: 0.95rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #facc15;
  margin-bottom: 0.5rem;
}

.qs-tagbox .big-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.qs-tagbox .small-text {
  font-size: 0.86rem;
  color: #e5e7eb;
}

.qs-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.qs-body span.highlight {
  font-weight: 600;
  color: #b45309;
}

.qs-apps {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  background-color: #020617;
  color: #f9fafb;
  border-radius: 999px;
  font-size: 0.85rem;
}

.btn-store img {
  height: 18px;
  width: auto;
}

@media (max-width: 900px) {
  .qs-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .qs-tagbox {
    max-width: 100%;
  }
}

/* ============================
   MÉTRICAS
============================ */
.metrics {
  background-color: #020617;
  color: #e5e7eb;
}

.metrics .section-title {
  color: #f9fafb;
}

.metrics .section-subtitle {
  color: #cbd5f5;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.metric-card {
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  background: radial-gradient(circle at top left, #facc15 0, #0b1120 52%);
  border: 1px solid rgba(248, 250, 252, 0.1);
  text-align: left;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.75);
}

.metric-number {
  font-size: 1.7rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 0.2rem;
}

.metric-label {
  font-size: 0.86rem;
  color: #020617;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.4rem;
  }
}

@media (max-width: 640px) {
  .metrics-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================
   SERVIÇOS
============================ */
.servicos {
  background-color: #ffffff;
}

.serv-grid-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.3rem;
}

.serv-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  padding: 1.7rem 1.6rem;
}

.serv-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.2rem;
}

.serv-card h4 {
  font-size: 0.9rem;
  text-align: center;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.8rem;
}

.serv-card hr {
  border: none;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  margin: 0.6rem 0 0.9rem;
}

.serv-card p,
.serv-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.serv-card ul {
  list-style: none;
  padding-left: 0;
}

.serv-card li {
  margin-bottom: 0.28rem;
}

.serv-card li i {
  color: #16a34a;
  margin-right: 0.4rem;
}

.serv-card small {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.serv-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.serv-mini {
  border-radius: 16px;
  background-color: var(--bg-soft);
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1.2rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.serv-mini b {
  color: #111827;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .serv-grid-top {
    grid-template-columns: minmax(0, 1fr);
  }
  .serv-grid-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .serv-grid-bottom {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================
   COMO FUNCIONA
============================ */
.cf-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.cf-card {
  text-align: center;
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 1.5rem 1.1rem;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.cf-card img {
  max-width: 72px;
  margin: 0 auto 0.8rem;
}

.cf-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.cf-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .cf-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cf-steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================
   SEJA PARCEIRO
============================ */
.parceiro {
  background: linear-gradient(135deg, #020617, #0b1120);
  color: #e5e7eb;
}

.parc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.parc-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.parc-text p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: #d1d5db;
}

.parc-tags {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.parc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
}

.parc-form {
  background-color: rgba(15, 23, 42, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 1.5rem 1.6rem 1.8rem;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.9);
}

.parc-form h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.parc-form p {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  color: inherit;
}

input,
select,
textarea {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.55rem 0.9rem;
  font-family: inherit;
  font-size: 0.84rem;
  outline: none;
  color: #111827;
}

textarea {
  border-radius: 14px;
  min-height: 80px;
  resize: vertical;
  padding-top: 0.6rem;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

.btn-whats-form {
  margin-top: 0.9rem;
  width: 100%;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

@media (max-width: 900px) {
  .parc-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================
   CLIENTES
============================ */
.clientes {
  background-color: #ffffff;
}

.clientes-strip {
  margin-top: 1.8rem;
  border-radius: var(--radius-lg);
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 1.2rem 1.4rem;
  overflow-x: auto;
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.cliente-logo {
  flex: 0 0 auto;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  filter: grayscale(0.1);
  transition: opacity 0.15s ease, filter 0.15s ease, transform 0.15s ease;
}

.cliente-logo img {
  max-height: 100%;
  width: auto;
}

.cliente-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-1px);
}

/* ============================
   CONTATO
============================ */
.contato {
  background-color: #020617;
  color: #e5e7eb;
}

.contato .section-title {
  color: #f9fafb;
}

.contato .section-subtitle {
  color: #d1d5db;
}

.contato-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.ct-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #facc15;
  margin-bottom: 0.6rem;
}

.ct-phone {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.ct-mail {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.ct-mail a {
  color: #facc15;
  font-weight: 500;
}

.ct-social {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.8rem;
  font-size: 1.3rem;
}

.ct-social a {
  color: #f9fafb;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.ct-social a:hover {
  opacity: 1;
}

.ct-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn-webmail {
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  border: 1px solid #facc15;
  background: transparent;
  color: #facc15;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.ct-form-card {
  background-color: rgba(15, 23, 42, 0.95);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 1.6rem 1.6rem 1.9rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
}

.ct-form-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.ct-form-card p {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.ct-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 0.9rem;
}

.ct-form-grid .form-group.full {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .contato-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .ct-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================
   FOOTER
============================ */
footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.4rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  background-color: #f9fafb;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-right {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.footer-right img {
  height: 22px;
  width: auto;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================
   WHATSAPP FLOAT BUTTON
============================ */
.whats-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 1000;
}

.whats-float button {
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.55);
  cursor: pointer;
}

.whats-float i {
  font-size: 1.3rem;
}

@media (max-width: 480px) {
  .whats-float button span.text {
    display: none;
  }
  .whats-float button {
    padding: 0.8rem 0.9rem;
  }
}
