/* ============================================
   DEVNTURE - Main Stylesheet
   ============================================ */

:root {
  --primary: #1A0B3B;
  --secondary: #8C52FF;
  --accent: #C084FC;
  --highlight: #E879F9;
  --light: #F7F4FF;
  --gray: #64748B;
  --dark: #0A0618;
  --white: #FFFFFF;
  --border: #EAE2FF;
  --shadow: 0 4px 24px rgba(140, 82, 255, 0.12);
  --shadow-lg: 0 8px 48px rgba(140, 82, 255, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
}

.display-1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.display-2 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-highlight { color: var(--highlight); }
.text-gray { color: var(--gray); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

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

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

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

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 48px; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(140, 82, 255, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}

.section-title {
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--secondary);
  position: relative;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: #7A42E8;
  border-color: #7A42E8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(140, 82, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}

.btn-outline-dark:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-highlight {
  background: var(--highlight);
  color: var(--white);
  border-color: var(--highlight);
}

.btn-highlight:hover {
  background: #d855e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 121, 249, 0.35);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: 10px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

#header.transparent {
  background: transparent;
}

#header.scrolled {
  background: rgba(26, 11, 59, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

#header.light-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 20px 0;   /* igual ao transparent — header visualmente idêntico em todas as páginas */
  box-shadow: var(--shadow);
}

#header.light-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 14px 0;   /* compacto ao rolar, igual ao .scrolled do dark */
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

#header.light-header .logo-img {
  filter: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-text-main {
  color: var(--white);
}

.logo-text-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  color: rgba(255,255,255,0.7);
  line-height: 1;
}

#header.light-header .logo-text-main { color: var(--primary); }
#header.light-header .logo-text-sub { color: var(--gray); }
#header.light-header .logo { color: var(--primary); }

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

#header.light-header .nav-links a {
  color: var(--gray);
}

#header.light-header .nav-links a:hover,
#header.light-header .nav-links a.active {
  color: var(--secondary);
  background: rgba(140, 82, 255, 0.08);
}

.nav-cta {
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

#header.light-header .hamburger span {
  background: var(--primary);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
  transition: var(--transition);
}

.mobile-menu a:hover {
  opacity: 1;
  color: var(--accent);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1A0B3B 0%, #2D1254 50%, #1A0B3B 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(140, 82, 255, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(192, 132, 252, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated background grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 132, 252, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.6s 0.4s ease both;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s 0.3s ease both;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-card-dots {
  display: flex;
  gap: 6px;
}

.hero-card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.hero-card-dots span:nth-child(1) { background: #FF5F57; }
.hero-card-dots span:nth-child(2) { background: #FFBD2E; }
.hero-card-dots span:nth-child(3) { background: #28CA41; }

.hero-card-title {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.service-list-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.service-item-preview:hover {
  background: rgba(255,255,255,0.1);
}

.service-item-preview .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-item-preview .icon.blue { background: rgba(26, 86, 219, 0.3); }
.service-item-preview .icon.cyan { background: rgba(6, 182, 212, 0.3); }
.service-item-preview .icon.orange { background: rgba(249, 115, 22, 0.3); }

.service-item-preview p {
  font-size: 0.9rem;
  font-weight: 500;
}

.service-item-preview small {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.floating-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.floating-badge .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.badge-1 {
  top: -20px;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.badge-2 {
  bottom: -20px;
  left: -20px;
  animation: float 3s 1.5s ease-in-out infinite;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--primary);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--light);
}

.services-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.services-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  flex: 0 0 calc(33.333% - 19px);
  min-width: calc(33.333% - 19px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.service-icon.blue { background: rgba(140, 82, 255, 0.1); }
.service-icon.cyan { background: rgba(192, 132, 252, 0.1); }
.service-icon.orange { background: rgba(249, 115, 22, 0.1); }
.service-icon.green { background: rgba(16, 185, 129, 0.1); }
.service-icon.purple { background: rgba(139, 92, 246, 0.1); }

.service-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--light);
  color: var(--gray);
  border: 1px solid var(--border);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: #7A42E8;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.carousel-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  width: 24px;
  background: var(--secondary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--white);
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #2D1254 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.about-image-inner {
  text-align: center;
  color: white;
}

.about-image-inner .big-icon {
  font-size: 5rem;
  margin-bottom: 24px;
}

.about-image-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.about-image-inner p {
  color: rgba(255,255,255,0.7);
}

.about-badge-float {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-float.top-right {
  top: -16px;
  right: -16px;
}

.about-badge-float.bottom-left {
  bottom: -16px;
  left: -16px;
}

.badge-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.badge-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
}

.badge-info span {
  font-size: 0.75rem;
  color: var(--gray);
}

.about-content .section-label { justify-content: flex-start; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about-feature .check {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: linear-gradient(135deg, #1A0B3B 0%, #2D1254 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(192, 132, 252, 0.1) 0%, transparent 70%);
}

.why-section .section-label {
  background: rgba(192, 132, 252, 0.15);
  color: var(--accent);
}

.why-section .section-title { color: var(--white); }
.why-section .section-desc { color: rgba(255,255,255,0.65); }

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(140, 82, 255, 0.4), rgba(6, 182, 212, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.why-card h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CLIENTS CAROUSEL
   ============================================ */
.clients-section {
  background: var(--light);
}

.clients-marquee-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 48px;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 1;
}

.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--light), transparent);
}

.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--light), transparent);
}

.clients-track {
  display: flex;
  gap: 32px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 88px;
  transition: var(--transition);
}

.client-logo-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}

.client-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--gray);
  opacity: 0.5;
}

.client-logo-placeholder .logo-icon-placeholder {
  font-size: 1.8rem;
}

.client-logo-placeholder span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Logo real: oculta por padrão, visível ao carregar ── */
.client-logo-img {
  display: none;           /* escondido até o onload confirmar */
}

/* Imagem carregou com sucesso → exibe logo, oculta placeholder */
.client-logo-card.has-logo .client-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(80%) opacity(0.65);
  transition: filter 0.3s ease;
}
.client-logo-card.has-logo .client-logo-placeholder {
  display: none;
}
.client-logo-card.has-logo:hover .client-logo-img {
  filter: grayscale(0%) opacity(1); /* colorida ao passar o mouse */
}

/* Todos os formatos falharam → garante placeholder visível */
.client-logo-card.no-logo .client-logo-img {
  display: none;
}
.client-logo-card.no-logo .client-logo-placeholder {
  display: flex;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #1A0B3B 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(192, 132, 252, 0.2) 0%, transparent 60%);
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 40px; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1A0B3B 0%, #2D1254 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.mission-vision {
  background: var(--light);
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mv-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.mv-icon.blue { background: rgba(140, 82, 255, 0.1); }
.mv-icon.cyan { background: rgba(192, 132, 252, 0.1); }
.mv-icon.orange { background: rgba(249, 115, 22, 0.1); }

.mv-card h3 { color: var(--primary); margin-bottom: 16px; }
.mv-card p { color: var(--gray); line-height: 1.8; }

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

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}

.value-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(140, 82, 255, 0.12);
  line-height: 1;
  flex-shrink: 0;
}

.value-item h4 { color: var(--primary); margin-bottom: 8px; }
.value-item p { color: var(--gray); font-size: 0.95rem; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.05;
}

.service-detail-card.card-blue::after { background: var(--secondary); }
.service-detail-card.card-cyan::after { background: var(--accent); }
.service-detail-card.card-orange::after { background: var(--highlight); }

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.sdc-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.sdc-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.sdc-icon.blue { background: rgba(140, 82, 255, 0.1); }
.sdc-icon.cyan { background: rgba(192, 132, 252, 0.1); }
.sdc-icon.orange { background: rgba(249, 115, 22, 0.1); }

.sdc-header h3 { color: var(--primary); margin-bottom: 8px; }
.sdc-header p { color: var(--gray); font-size: 0.95rem; }

.sdc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.sdc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--primary);
}

.sdc-feature .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}

.process-section {
  background: var(--light);
}

.process-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px var(--light);
}

.process-step h4 { color: var(--primary); margin-bottom: 8px; }
.process-step p { color: var(--gray); font-size: 0.9rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  background: var(--light);
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 48px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(192, 132, 252, 0.15) 0%, transparent 70%);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  position: relative;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item .ci-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-item .ci-value {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 12px;
  position: relative;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--gray);
  margin-bottom: 32px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(140, 82, 255, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aab;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--accent);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .service-card { flex: 0 0 calc(50% - 14px); min-width: calc(50% - 14px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-wrap: wrap; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .service-card { flex: 0 0 calc(100% - 0px); min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .sdc-features { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 24px; }
  .contact-info-card { padding: 40px 28px; }
  .hero-actions { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .process-steps { flex-direction: column; }
  .hero-content { text-align: center; }
  .about-badge-float { display: none; }
  .floating-badge { display: none; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITY
   ============================================ */
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }
.mt-lg { margin-top: 48px; }

.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--primary); }

.hidden { display: none; }

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* Notification Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: white;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.4s ease;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   SALESFORCE ECOSYSTEM ELEMENTS
   ============================================ */

/* --- Trust / Partner Bar --- */
.sf-trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
}

.sf-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.sf-trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
  white-space: nowrap;
  opacity: 0.7;
}

.sf-vdivider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Salesforce Logo Block */
.sf-logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-wordmark {
  height: 36px;   /* taller to keep "salesforce" text legible inside the cloud */
  width: auto;
  display: block;
}

.sf-partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E5F4FC;
  color: #006396;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0,161,224,0.25);
  white-space: nowrap;
}

.sf-partner-pill svg { flex-shrink: 0; }

/* Cloud product chips */
.sf-cloud-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sf-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 8px;
  white-space: nowrap;
}

.sf-chip .sf-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sf-chip.sales   { background: rgba(0,161,224,0.08);  color: #005987; border: 1px solid rgba(0,161,224,0.2); }
.sf-chip.service { background: rgba(0,163,139,0.08);  color: #005548; border: 1px solid rgba(0,163,139,0.2); }
.sf-chip.mktg    { background: rgba(255,113,0,0.08);  color: #7A3500; border: 1px solid rgba(255,113,0,0.2); }
.sf-chip.exp     { background: rgba(21,137,238,0.08); color: #003D99; border: 1px solid rgba(21,137,238,0.2); }
.sf-chip.plat    { background: rgba(140,82,255,0.1);  color: #5319A8; border: 1px solid rgba(140,82,255,0.25); }

.sf-chip.sales   .sf-chip-dot { background: #00A1E0; }
.sf-chip.service .sf-chip-dot { background: #00A38A; }
.sf-chip.mktg    .sf-chip-dot { background: #FF7100; }
.sf-chip.exp     .sf-chip-dot { background: #1589EE; }
.sf-chip.plat    .sf-chip-dot { background: #8C52FF; }

/* Cert count badge */
.sf-cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.sf-cert-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00A1E0, #1589EE);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Hero Salesforce decorations --- */
.hero-sf-cloud {
  position: absolute;
  pointer-events: none;
  fill: #ffffff;
  overflow: visible; /* nunca cortar o path dentro do SVG */
}

.hero-sf-cloud.cloud-tl {
  top: 40px;
  left: 20px;
  width: 400px;
  opacity: 0.045;
  animation: float 10s ease-in-out infinite;
}

.hero-sf-cloud.cloud-br {
  bottom: 40px;
  right: 20px;
  width: 260px;
  opacity: 0.03;
  animation: float 7s 3s ease-in-out infinite;
}

.hero-sf-cloud.cloud-mr {
  top: 38%;
  right: 30px;
  width: 160px;
  opacity: 0.05;
  animation: float 8s 1.5s ease-in-out infinite;
}

/* --- Hero card SF cloud product icons --- */
.sf-product-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sf-product-icon svg { width: 22px; height: 22px; }

.sf-product-icon.sales   { background: rgba(0,161,224,0.15); }
.sf-product-icon.service { background: rgba(0,163,139,0.15); }
.sf-product-icon.mktg    { background: rgba(255,113,0,0.12); }
.sf-product-icon.exp     { background: rgba(21,137,238,0.12); }

/* --- Astro mascot float --- */
.sf-astro-float {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 148px;
  z-index: 4;
  pointer-events: none;
  animation: float 4s 0.8s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0,161,224,0.3));
}

.sf-astro-float img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Codey / mascot section in about --- */
.sf-mascot-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(0,161,224,0.05);
  border: 1px solid rgba(0,161,224,0.15);
  border-radius: var(--radius);
  margin-top: 24px;
}

.sf-mascot-strip img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0,161,224,0.2));
}

.sf-mascot-strip p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0 !important;
}

.sf-mascot-strip strong {
  color: #006396;
}

/* --- Service card SF cloud icon header --- */
.sdc-sf-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sdc-sf-icon svg { width: 32px; height: 32px; }

.sdc-sf-icon.sales    { background: rgba(0,161,224,0.1); }
.sdc-sf-icon.service  { background: rgba(0,163,139,0.1); }
.sdc-sf-icon.mktg     { background: rgba(255,113,0,0.1); }
.sdc-sf-icon.apex     { background: rgba(140,82,255,0.1); }
.sdc-sf-icon.int      { background: rgba(245,158,11,0.1); }
.sdc-sf-icon.ams      { background: rgba(16,185,129,0.1); }

/* --- Team cert badge row --- */
.sf-team-certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.sf-team-cert {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,161,224,0.07);
  color: #005987;
  border: 1px solid rgba(0,161,224,0.2);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .sf-trust-inner { gap: 16px; }
  .sf-vdivider    { display: none; }
  .sf-astro-float { width: 100px; right: -16px; bottom: -16px; }
  .sf-cloud-chips { justify-content: center; }
  .sf-mascot-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .sf-trust-bar { display: none; }
  .sf-astro-float { display: none; }
}
