/* Paleta alinhada ao frontend SMS (frontend/src/index.css) */
:root {
  --bg: #F8FAFB;
  --srf: #FFFFFF;
  --srf-h: #F3F4F6;
  --srf-a: #F9FAFB;
  --brd: #F0F0F3;
  --brd-h: #E0E2E7;
  --pri-l: #FDE7F0;
  --pri-d: #8B0849;
  --txt: #111827;
  --txt-s: #6B7280;
  --txt-m: #9CA3AF;
  --primary: #C30B65;
  --primary-hover: #AA0457;
  --card-shadow: rgba(0, 0, 0, 0.04);
  --card-shadow-tight: rgba(0, 0, 0, 0.02);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --shadow-md: 0 2px 8px var(--card-shadow), 0 1px 2px var(--card-shadow-tight);
  --primary-glow: 0 0 20px rgba(195, 11, 101, 0.25);
}

.dark {
  --bg: #0F1117;
  --srf: #1A1D27;
  --srf-h: #252833;
  --srf-a: #1F222D;
  --brd: #242736;
  --brd-h: #2F3345;
  --pri-l: rgba(61, 10, 37, 0.08);
  --pri-d: #F472B6;
  --txt: #F1F3F5;
  --txt-s: #A1A7B4;
  --txt-m: #6B7280;
  --card-shadow: rgba(0, 0, 0, 0.15);
  --card-shadow-tight: rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow: hidden;
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--txt);
  background: var(--bg);
}

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

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 5rem;
  background: rgba(248, 250, 251, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brd);
}

.dark .nav {
  background: rgba(15, 17, 23, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: none;
  padding-left: 100px;
  padding-right: 100px;
}

@media (max-width: 900px) {
  .nav-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--txt);
}

.logo-image {
  height: 4rem;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--txt-s);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(195, 11, 101, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--txt);
  border: 1px solid var(--brd);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 2rem;
  min-height: 0;
  height: calc(100vh - 5rem);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-visual {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  color: var(--pri-d);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--txt);
}

.hero h1 .gold {
  color: var(--primary);
  text-shadow: var(--primary-glow);
}

.hero .cta-wrap {
  margin: 32px 0 40px;
}

.hero .cta-wrap .btn {
  margin-right: 12px;
  min-width: 240px;
  width: auto;
}

.hero .container {
  display: contents;
}

.hero-intro {
  color: var(--txt-s);
  font-size: 1.125rem;
  margin: 0 0 24px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .social-proof {
    justify-content: center;
  }
}

.social-proof-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-proof-logo {
  height: 22px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -12px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatars-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--srf-h);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--txt-s);
}

.avatars-placeholder:first-child {
  margin-left: 0;
}

.quote {
  font-size: 0.875rem;
  color: var(--txt-s);
  font-style: italic;
  max-width: 220px;
}

.hero-visual {
  position: relative;
  width: min(100%, 680px);
  justify-self: end;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

/* Notebook / laptop frame */
/* Notebook estilo MacBook — alumínio, minimalista */
.device-notebook {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 640px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.1)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
}

.device-screen {
  width: 100%;
  padding: 8px 8px 6px;
  background: linear-gradient(165deg, #e8e8ed 0%, #d2d2d7 50%, #c7c7cc 100%);
  border-radius: 8px 8px 0 0;
  box-sizing: border-box;
}

.device-screen-inner {
  width: 100%;
  aspect-ratio: 16/10;
  min-height: 340px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.device-hinge {
  width: 92%;
  height: 6px;
  background: linear-gradient(180deg, #b8b8be 0%, #d0d0d5 100%);
  border-radius: 0 0 2px 2px;
}

.device-base {
  width: 100%;
  padding: 10px 12px 14px;
  background: linear-gradient(180deg, #d8d8dd 0%, #c7c7cc 40%, #b8b8be 100%);
  border-radius: 0 0 8px 8px;
}

.device-trackpad {
  display: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(0.3);
}

.hero-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--srf-a) 0%, var(--srf-h) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-m);
  font-size: 0.875rem;
}

/* Carousel (inside device screen) */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease-out;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--srf-a) 0%, var(--srf-h) 100%);
  color: var(--txt-s);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 24px;
  box-sizing: border-box;
}

.carousel-slide.slide-1 {
  background: linear-gradient(135deg, var(--srf-a) 0%, var(--srf-h) 100%);
}

.carousel-slide.slide-2 {
  background: linear-gradient(135deg, var(--srf-a) 0%, var(--srf-h) 100%);
}

.carousel-slide.slide-3 {
  background: linear-gradient(225deg, #F0F9FF 0%, var(--srf-h) 100%);
  color: var(--txt);
}

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brd-h);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot:hover {
  background: var(--txt-m);
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--brd);
  color: var(--txt);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
  box-shadow: var(--shadow-md);
}

.carousel-arrow:hover {
  background: var(--srf);
  color: var(--primary);
}

.carousel-arrow.prev {
  left: 12px;
}

.carousel-arrow.next {
  right: 12px;
}

/* Mockups do app */
.mockup-app {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  height: 100%;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--srf);
  border: 1px solid var(--brd);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mockup-bar {
  height: 28px;
  background: var(--srf-h);
  border-bottom: 1px solid var(--brd);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.mockup-bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mockup-bar-dot:nth-child(1) {
  background: #EF4444;
}

.mockup-bar-dot:nth-child(2) {
  background: #F59E0B;
}

.mockup-bar-dot:nth-child(3) {
  background: #22C55E;
}

.mockup-body {
  display: flex;
  flex: 1;
  min-height: 0;
}

.mockup-sidebar {
  width: 52px;
  flex-shrink: 0;
  background: var(--srf);
  border-right: 1px solid var(--brd);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mockup-sidebar-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--primary);
  margin-bottom: 10px;
}

.mockup-sidebar-section {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--txt-m);
  margin-top: 8px;
  margin-bottom: 4px;
  width: 100%;
  text-align: center;
}

.mockup-sidebar-section:first-of-type {
  margin-top: 0;
}

.mockup-sidebar-item {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--srf-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--txt-m);
}

.mockup-sidebar-item.active {
  background: var(--pri-l);
  color: var(--pri-d);
  font-weight: 700;
}

.mockup-main {
  flex: 1;
  min-width: 0;
  padding: 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.mockup-header {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: -0.01em;
}

.mockup-tabs {
  display: flex;
  gap: 4px;
  padding: 3px;
  background: var(--srf-a);
  border-radius: 8px;
  border: 1px solid var(--brd);
  width: fit-content;
}

.mockup-tab {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--txt-s);
  background: transparent;
}

.mockup-tab.active {
  background: var(--primary);
  color: #fff;
}

.mockup-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mockup-card {
  background: var(--srf-a);
  border: 1px solid var(--brd);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.mockup-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mockup-card-icon.sent {
  background: rgba(56, 189, 248, 0.15);
  color: #0ea5e9;
}

.mockup-card-icon.delivered {
  background: rgba(52, 211, 153, 0.15);
  color: #10b981;
}

.mockup-card-icon.failed {
  background: rgba(251, 113, 133, 0.15);
  color: #f43f5e;
}

.mockup-card-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--txt-m);
  font-weight: 600;
}

.mockup-card-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--txt);
  letter-spacing: -0.02em;
}

.mockup-card.primary {
  background: linear-gradient(135deg, var(--primary) 0%, #AA0457 100%);
  border: none;
  color: #fff;
}

.mockup-card.primary .mockup-card-value {
  color: #fff;
  font-size: 12px;
}

.mockup-card.primary .mockup-card-label {
  color: rgba(255, 255, 255, 0.9);
}

.mockup-chart-wrap {
  flex: 1;
  min-height: 64px;
  border-radius: 8px;
  border: 1px solid var(--brd);
  background: linear-gradient(180deg, rgba(195, 11, 101, 0.06) 0%, transparent 100%);
  padding: 10px 12px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.mockup-chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(195, 11, 101, 0.4) 100%);
  min-height: 8px;
}

.mockup-chart-bar:nth-child(1) {
  height: 35%;
}

.mockup-chart-bar:nth-child(2) {
  height: 55%;
}

.mockup-chart-bar:nth-child(3) {
  height: 45%;
}

.mockup-chart-bar:nth-child(4) {
  height: 70%;
}

.mockup-chart-bar:nth-child(5) {
  height: 50%;
}

.mockup-chart-bar:nth-child(6) {
  height: 85%;
}

.mockup-chart-bar:nth-child(7) {
  height: 60%;
}

.mockup-table {
  border: 1px solid var(--brd);
  border-radius: 8px;
  overflow: hidden;
  font-size: 10px;
  flex: 1;
  min-height: 0;
}

.mockup-table th,
.mockup-table td {
  padding: 8px 10px;
  text-align: left;
}

.mockup-table th {
  background: var(--srf-h);
  color: var(--txt-m);
  font-weight: 600;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mockup-table tr:nth-child(even) {
  background: var(--srf-a);
}

.mockup-table .badge {
  display: inline-block;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
}

.mockup-table .badge-ok {
  background: #D1FAE5;
  color: #065F46;
}

.mockup-table .badge-pending {
  background: #FEF3C7;
  color: #92400E;
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-height: 0;
}

.mockup-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--srf-a);
  border: 1px solid var(--brd);
  border-radius: 8px;
  font-size: 11px;
  color: var(--txt);
}

.mockup-list-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pri-l);
  color: var(--pri-d);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-list-info {
  min-width: 0;
}

.mockup-list-name {
  font-weight: 600;
  color: var(--txt);
}

.mockup-list-phone {
  font-size: 10px;
  color: var(--txt-m);
  margin-top: 1px;
}

.floating-stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--brd);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: bounce-slow 3s ease-in-out infinite;
}

.dark .floating-stats {
  background: rgba(26, 29, 39, 0.85);
}

@keyframes bounce-slow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.floating-stats .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--txt-s);
  margin-bottom: 4px;
}

.floating-stats .value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.floating-stats .badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pri-l);
  margin-top: 8px;
}

/* Services */
.services {
  padding: 6rem 0;
  background: var(--srf-a);
}

.services h2 {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 16px;
  color: var(--txt);
}

.services .sub {
  text-align: center;
  color: var(--txt-s);
  margin-bottom: 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--srf);
  border: 1px solid var(--brd);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-icon.blue {
  background: var(--pri-l);
  color: var(--pri-d);
}

.service-icon.amber {
  background: var(--pri-l);
  color: var(--primary);
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--txt);
}

.service-card p {
  margin: 0;
  color: var(--txt-s);
  font-size: 0.9375rem;
}

/* Pricing */
.pricing {
  padding: 6rem 0;
}

.pricing h2 {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 48px;
  color: var(--txt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--srf);
  border: 1px solid var(--brd);
  box-shadow: var(--shadow-md);
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid rgba(195, 11, 101, 0.4);
  box-shadow: 0 0 40px rgba(195, 11, 101, 0.12);
}

.pricing-card .pill {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  margin: 0 0 16px;
  color: var(--txt);
}

.pricing-card .price {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--txt);
}

.pricing-card .price-note {
  font-size: 0.875rem;
  color: var(--txt-s);
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-card li {
  padding: 8px 0;
  color: var(--txt-s);
  font-size: 0.9375rem;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 8px;
}

/* Contact CTA */
.contact-cta {
  padding: 6rem 0;
}

.contact-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 48px;
  border-radius: 2.5rem;
  background: var(--srf);
  border: 1px solid var(--brd);
  box-shadow: var(--shadow-md);
}

.contact-box h2 {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
  color: var(--txt);
}

.contact-box .sub {
  text-align: center;
  color: var(--txt-s);
  margin-bottom: 40px;
}

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

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

.form-group {
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--txt-m);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--brd-h);
  color: var(--txt);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(195, 11, 101, 0.2);
}

.form-group textarea {
  rows: 3;
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  margin-top: 32px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.4);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--brd);
}

.footer-social a {
  color: var(--txt-m);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--primary);
}

.link-paco {
  color: grey;
  text-decoration: none;
}

.link-paco:hover {
  text-decoration: underline;
}

.link-paco {
  font-weight: 600;
}

/* ========== Mobile responsive (desktop unchanged) ========== */
@media (max-width: 900px) {
  html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  main {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .nav {
    height: 4rem;
    width: 100%;
  }

  .nav .container,
  .nav-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .logo {
    min-width: 0;
    flex-shrink: 1;
  }

  .logo-image {
    height: 2.5rem !important;
    max-width: 180px;
    width: auto;
    object-fit: contain;
  }

  .nav .btn {
    padding: 10px 18px;
    font-size: 0.8125rem;
    width: auto;
    min-width: 100px;
    flex-shrink: 0;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 2rem 16px 2.5rem;
    gap: 2rem;
    align-items: center;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .hero .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero > .container > div:first-child {
    min-width: 0;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 16px;
    overflow-wrap: break-word;
  }

  .hero-intro {
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero .cta-wrap {
    margin: 24px 0 28px;
  }

  .hero .cta-wrap .btn {
    width: 100%;
    min-width: unset;
    margin-right: 0;
    padding: 14px 20px;
    box-sizing: border-box;
  }

  .social-proof,
  .social-proof-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    min-width: 0;
  }

  .quote {
    max-width: 100%;
    text-align: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .device-notebook,
  .device-screen,
  .device-screen-inner,
  .carousel,
  .carousel-track,
  .carousel-slide {
    max-width: 100%;
    box-sizing: border-box;
  }

  .device-notebook {
    width: 100%;
  }

  .device-screen-inner {
    min-height: 260px;
    aspect-ratio: 16/10;
  }

  .mockup-app {
    min-height: 240px;
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }

  .mockup-body,
  .mockup-main {
    min-width: 0;
  }

  .mockup-app {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .carousel-arrow.prev {
    left: 8px;
  }

  .carousel-arrow.next {
    right: 8px;
  }

  .carousel-dots {
    bottom: 12px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .contact-box {
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .services,
  .pricing,
  .contact-cta {
    padding: 3rem 16px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  img:not(.logo-image):not(.social-proof-logo) {
    max-width: 100%;
    height: auto;
  }

  .social-proof-logo {
    height: 22px;
    max-width: 70px;
    width: auto;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .nav .container,
  .nav-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo-image {
    height: 2rem !important;
    max-width: 140px;
  }

  .hero {
    padding: 1.5rem 12px 2rem;
    gap: 1.5rem;
  }

  .hero-badge {
    font-size: 0.6875rem;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .hero-intro {
    font-size: 0.9375rem;
    margin-bottom: 16px;
  }

  .hero .cta-wrap .btn {
    padding: 12px 16px;
    font-size: 0.875rem;
  }

  .device-screen-inner {
    min-height: 200px;
  }

  .mockup-app {
    min-height: 200px;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-box {
    padding: 1.5rem 1rem;
  }
}
