:root {
  --bg-body: #020617;
  --accent: #ff7a00;
  --accent-soft: rgba(255, 122, 0, 0.12);
  --accent-strong: #f04e03;

  --accent-teal: #14b8a6;
  --accent-teal-soft: rgba(20, 184, 166, 0.16);

  --accent-blue: #3b82f6;
  --accent-blue-soft: rgba(59, 130, 246, 0.16);

  --accent-purple: #8b5cf6;
  --accent-purple-soft: rgba(139, 92, 246, 0.18);

  --accent-pink: #ec4899;
  --accent-pink-soft: rgba(236, 72, 153, 0.18);

  --accent-yellow: #eab308;
  --accent-yellow-soft: rgba(234, 179, 8, 0.16);

  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --success: #22c55e;
  --radius-lg: 1.5rem;
  --shadow-soft: 0 24px 70px rgba(15, 23, 42, 0.65);
  --transition-fast: 0.18s ease-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

/* HEADER / NAV */

header {
  top: 0;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

#header {
    position: sticky;
    z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent), var(--accent-strong));
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary,
.btn-outline {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at top left, var(--accent-strong), var(--accent));
  color: #0b1120;
  box-shadow: 0 18px 40px rgba(100, 50, 22, 0.45);
}

/* ===== BOTÃO LOADING ===== */

.btn-primary.loading {
  pointer-events: none;
  opacity: 0.85;
}

.btn-primary.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.25);
  border-top-color: #0b1120;
  border-radius: 50%;
  margin-left: 0.6rem;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 22px 55px rgba(150, 70, 22, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--text-soft);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.7);
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 1rem;
  margin-left: 0.1rem;
}

/* HERO */

main {
  padding-bottom: 4rem;
}

.hero {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.15), transparent 55%),
    var(--bg-body);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/energia-laranja.png") center / cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.15rem 0.35rem 0.15rem 0.15rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-bottom: 1.4rem;
}

.pill-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0%, var(--accent-strong), #ea580c);
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.6);
  font-size: 1rem;
}

.pill span {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.2rem, 3.5vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.1rem;
}

.hero-title span {
  background: linear-gradient(to right, #fbbf24, var(--accent), #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-soft);
  max-width: 32rem;
  margin-bottom: 1.8rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-note strong {
  color: #e5e7eb;
  font-weight: 500;
}

/* HERO CARD */

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.hero-metric-left span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.hero-metric-left strong {
  display: block;
  font-size: 1.6rem;
}

.hero-metric-left small {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.hero-badge {
  padding: 0.5rem 0.8rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.7rem;
  color: var(--text-soft);
  max-width: 12rem;
}

.hero-badge b {
  color: var(--accent-strong);
}

.hero-sites {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-site-card {
  border-radius: 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.95);
  font-size: 0.75rem;
}

.hero-site-title {
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.hero-site-tag {
  font-size: 0.7rem;
  color: var(--text-soft);
}

.hero-site-tag span {
  color: var(--accent-strong);
}

.hero-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.hero-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-main);
}

.hero-timeline span.divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(148, 163, 184, 0.4), transparent);
}

.hero-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

/* SEÇÕES GERAIS */

section {
  padding: 3.5rem 0 3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

/* CABEÇALHO DAS SEÇÕES */

.section-header {
  padding: 0;
  margin-bottom: 3.2rem;
  border: none;
  box-shadow: none;
  background: none;
}

.section-kicker {
  color: var(--text-soft);
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.section-title {
  margin-top: 0.4rem;
  font-size: 1.6rem;
  color: var(--text-main);
}

.section-subtitle {
  opacity: 0.9;
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 38rem;
}

/* FUNDOS POR SEÇÃO */

#servicos {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.22), transparent 65%),
    var(--bg-body);
}

#servicos-ofertas {
  background: radial-gradient(
      circle at top right,
      var(--accent-teal-soft),
      transparent 65%
    ),
    var(--bg-body);
}

#portfolio {
  background: radial-gradient(circle at top left, var(--accent-purple-soft), transparent 62%),
    var(--bg-body);
}

#modelos {
  background: radial-gradient(circle at top, var(--accent-blue-soft), transparent 60%),
    var(--bg-body);
}

#como-funciona {
  background: radial-gradient(circle at top, var(--accent-yellow-soft), transparent 60%),
    var(--bg-body);
}

#planos {
  background: radial-gradient(circle at top left, var(--accent-purple-soft), transparent 60%),
    var(--bg-body);
}

#contato {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.2), transparent 60%),
    var(--bg-body);
}

/* cores dos kickers */

#servicos .section-kicker {
  color: var(--accent-strong);
}
#servicos-ofertas .section-kicker {
  color: var(--accent-teal);
}
#portfolio .section-kicker {
  color: var(--accent-purple);
}
#modelos .section-kicker {
  color: var(--accent-blue);
}
#como-funciona .section-kicker {
  color: var(--accent-yellow);
}
#planos .section-kicker {
  color: var(--accent-purple);
}
#depoimentos .section-kicker {
  color: var(--accent-blue);
}
#contato .section-kicker {
  color: var(--accent-strong);
}

/* SERVIÇOS + PARA QUEM É */

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.services-title {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.pill-list span {
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-soft);
}

.services-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 24rem;
}

/* CARDS GERAIS */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  border-radius: 1.2rem;
  padding: 1.3rem 1.4rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  position: relative;
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  background: radial-gradient(
    circle at top,
    rgba(249, 115, 22, 0.2),
    rgba(15, 23, 42, 0.95)
  );
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.card-text {
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* SERVIÇOS OFERECIDOS */

.services-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card::before {
  border-left-color: rgba(20, 184, 166, 0.75);
}

.services-offers-grid .card-icon {
  border-color: rgba(20, 184, 166, 0.85);
  background: radial-gradient(
    circle at top,
    rgba(20, 184, 166, 0.25),
    rgba(15, 23, 42, 0.98)
  );
}

.service-list {
  list-style: none;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-list li::before {
  content: "•";
  margin-right: 0.3rem;
  color: var(--accent-teal);
}

.services-offers-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Botões de WhatsApp nos cards de serviço */
.btn-whats {
  margin-top: 0.9rem;
  width: 100%;
  justify-content: center;
  font-size: 0.8rem;
}

/* PORTFÓLIO */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.portfolio-card {
  border-radius: 1.1rem;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 0.95)
  );
  border: 1px solid rgba(129, 140, 248, 0.55);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
}

.portfolio-thumb {
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.35), transparent 70%),
    #020617;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
  padding: 0.5rem;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.05);
}

.portfolio-thumb img {
  transition: transform 0.35s ease;
}

.portfolio-body {
  padding: 0.95rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.portfolio-title {
  font-size: 0.95rem;
}

.portfolio-meta {
  font-size: 0.8rem;
  color: var(--text-soft);
}



/* MODELOS (reutiliza planos) */

.modelos-grid .plan::before {
  border-left-color: rgba(148, 163, 184, 0.5);
}

/* PLANOS / CARDS GERAIS */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: stretch;
}

.plan {
  border-radius: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.3rem 1.4rem;
  position: relative;
  background: rgba(15, 23, 42, 0.96);
}

.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-left: 3px solid rgba(148, 163, 184, 0.5);
  pointer-events: none;
}

.plan.highlight::before {
  border-left-color: rgba(129, 140, 248, 0.9);
}

.plan.highlight {
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.25), transparent 65%),
    rgba(15, 23, 42, 0.98);
}

.plan-badge {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(129, 140, 248, 0.16);
  color: var(--accent-purple);
  border: 1px solid rgba(129, 140, 248, 0.7);
}

.plan-name {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.plan-tagline {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 0.7rem;
}

.plan-price {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.plan-price span {
  font-size: 0.8rem;
  color: var(--text-soft);
  font-weight: 400;
}

.plan-detail {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 0.8rem;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}

.plan-features li::before {
  content: "✓";
  margin-right: 0.4rem;
  color: var(--accent-strong);
}

/* COMO FUNCIONA */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  position: relative;
  padding: 1.2rem 1.3rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.96);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(234, 179, 8, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  color: var(--accent-yellow);
  background: rgba(15, 23, 42, 0.9);
}

.step-title {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.step-text {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.steps-details {
  margin-top: 1.3rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.steps-details summary {
  cursor: pointer;
}

/* CONTATO / FORM */

.contact-section {
  padding: 3.5rem 0 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.contact-highlight {
  border-radius: 1.4rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.96);
}

.contact-highlight h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.contact-highlight p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.contact-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.contact-highlights-list li::before {
  content: "•";
  margin-right: 0.4rem;
  color: var(--accent-strong);
}

.contact-form-wrapper {
  border-radius: 1.4rem;
  padding: 1.7rem 1.6rem 1.5rem;
  border: 1px solid rgba(249, 115, 22, 0.6);
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.25), transparent 70%),
    rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.contact-form-title {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.contact-form-subtitle {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 0.9rem;
  max-width: 100%;
  overflow: hidden;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.78rem;
  color: var(--text-soft);
}

input,
select,
textarea {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.6rem 0.75rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out,
    background 0.18s ease-out;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

textarea {
  min-height: 90px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.5);
  background: rgba(15, 23, 42, 1);
}

/* feedback visual campos obrigatórios */
input:required:invalid,
select:required:invalid,
textarea:required:invalid {
  border-color: rgba(239, 68, 68, 0.9);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.35);
}

input:required:valid,
select:required:valid,
textarea:required:valid {
  border-color: var(--success);
}

/* ===== DEPOIMENTOS PROFISSIONAL ===== */

#feedback {
  padding: 4rem 0;
}

.section-header.center {
  text-align: center;
  margin-bottom: 3rem;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(
    to bottom right,
    rgba(15,23,42,0.98),
    rgba(15,23,42,0.95)
  );
  border-radius: 26px;
  padding: 2rem;
  border: 1px solid rgba(59,130,246,0.7);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  transition: transform .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

/* avaliação */
.rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.stars i {
  color: #fbbf24;
  margin-right: 2px;
}

/* texto */
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

/* rodapé */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-footer strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-footer span {
  font-size: 0.8rem;
  color: var(--text-soft);
}



.plan {
  display: flex;
  flex-direction: column;
}

.plan-features {
  flex: 1;
}

.btn-plan {
  margin-top: 1.4rem;
  width: 100%;
  justify-content: center;
}

/* ===== GRID SOMENTE DOS PLANOS (4 COLUNAS) ===== */

#planos .plans-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ===== MODELOS VOLTA PARA 3 COLUNAS ===== */

#modelos .plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


.payment-info {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ALERT CUSTOM */
.custom-alert-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.custom-alert-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.custom-alert-box {
  background: radial-gradient(
      circle at top left,
      rgba(249, 115, 22, 0.25),
      transparent 65%
    ),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(249, 115, 22, 0.6);
  border-radius: 1.4rem;
  padding: 1.8rem 1.6rem 1.6rem;
  width: min(360px, 90%);
  text-align: center;
  box-shadow: var(--shadow-soft);
  animation: alert-pop 0.25s ease;
}

.custom-alert-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.custom-alert-title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.custom-alert-message {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.custom-alert-btn {
  width: 100%;
  justify-content: center;
}

@keyframes alert-pop {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.5rem 0 1.3rem;
  font-size: 0.78rem;
  color: var(--text-soft);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), #020617);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-left img {
  height: 22px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.72rem;
}

.footer-social {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text-soft);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* BOTÃO WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  overflow: visible; /* importante para o efeito */
}

/* O "sonar" */
.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: whatsapp-sonar 2.8s infinite ease-out;
  z-index: -1;
}

.whatsapp-float::after {
  animation-delay: 1.4s;
}

/* Hover continua bonito */
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.65);
}

/* Animação do sonar */
@keyframes whatsapp-sonar {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}





/* ===== COMPACTAÇÃO DOS CARDS DE PLANOS (somente #planos) ===== */

#planos .plan {
  padding: 1rem 1rem;              /* antes 1.3 / 1.4 */
}

#planos .plan-name {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

#planos .plan-tagline {
  font-size: 0.72rem;
  margin-bottom: 0.5rem;
}

#planos .plan-price {
  font-size: 1.05rem;              /* antes 1.3rem */
  margin-bottom: 0.15rem;
}

#planos .plan-price span {
  font-size: 0.7rem;
}

#planos .plan-detail {
  font-size: 0.72rem;
  margin-bottom: 0.55rem;
}

#planos .plan-features {
  gap: 0.22rem;                    /* antes 0.35 */
  font-size: 0.74rem;
  margin-bottom: 0.6rem;
}

#planos .btn-plan {
  margin-top: 0.9rem;
  padding: 0.55rem 0.8rem;
  font-size: 0.75rem;
}


@media (max-width: 1100px) {
  #planos .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    margin-top: 2rem;
  }
}

/* RESPONSIVO GERAL */

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.3rem;
  }

  .hero-content {
    order: 1;
  }

  .hero-card {
    order: 2;
  }
  .feedback-grid {
    grid-template-columns: 1fr;
  }
  .logo {
    display: none;
  }
  .benefits-grid,
  .portfolio-grid,
  .plans-grid,
  .testimonials,
  .contact-grid,
  .steps,
  .services-layout,
  .services-offers-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-offers-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .logo {
    display: block;
  }
  .nav-links {
    display: none;
  }

  .nav-cta .btn-outline {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  #planos .plans-grid {
    grid-template-columns: 1fr;
  }
  #planos .plans-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
   #modelos .plans-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  form {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .hero {
    padding-top: 3rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}