/* =============================================
   RESET & TOKENS
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
::selection { background: rgba(245, 130, 13, 0.4); color: #fff; }

:root {
  --bg: #0F1117; /* Rich dark slate instead of deep void */
  --bg-panel: #161922; /* Soft section contrast */
  --bg-card: #1F232F; /* Lighter slate for cards */
  --accent: #F5820D;
  --accent-hover: #FF9E3D;
  --accent-dim: rgba(245, 130, 13, 0.12);
  --text-main: #FAFAFA;
  --text-muted: #9BA0B3;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(245, 130, 13, 0.3);
  --font-heading: 'Outfit', sans-serif;
  --container: 1240px;
  --pad: clamp(20px, 5vw, 40px);
}

/* =============================================
   LAYOUT UTILS
============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
@media (max-width: 480px) {
  .container { --pad: 16px; }
}
.section {
  padding: 120px 0;
  position: relative;
}

.sec-header {
  margin-bottom: 60px;
}
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  padding: 6px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 4px;
}
.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.sec-title span {
  color: var(--accent);
}
.sec-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}
.text-center { text-align: center; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 36px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px rgba(245, 130, 13, 0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px rgba(245, 130, 13, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px 0;
  z-index: 100;
  background: rgba(11, 13, 18, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.nav.scrolled {
  padding: 15px 0;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
}
.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* =============================================
   HERO (CINEMATIC SYSTEM)
============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  transform-origin: center center;
}

/* Noise Texture Overlay */
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 5;
}

/* Video Background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.8;
  will-change: transform;
}

/* Atmospheric Glow System */
.hero-glow-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.glow-orb {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  will-change: transform;
}
.glow-1 {
  background: #00f2ff; /* cyan */
  top: -10%; left: -10%;
}
.glow-2 {
  background: #7000ff; /* deep purple */
  bottom: -10%; right: -10%;
}
.glow-3 {
  background: #0044ff; /* electric blue */
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(11, 13, 18, 0.2) 0%, 
    rgba(11, 13, 18, 0.5) 50%, 
    var(--bg) 100%
  );
  z-index: 3;
}

/* Cinematic Vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

/* Initial States for GSAP */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

.mask-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: -20px;
}
.mask-text {
  display: block;
  opacity: 0;
}
.mask-text.highlight {
  background: linear-gradient(90deg, #F5820D, #FFD166, #F5820D);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(245, 130, 13, 0.4));
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 650px;
  margin-inline: auto;
  opacity: 0;
}
.hero-btns {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
}
@media (max-width: 480px) {
  .hero-btns { gap: 12px; }
  .hero-btns .btn { width: 100%; }
}

@keyframes slideUpMask {
  0% { transform: translateY(120%) rotate(2deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(0) rotate(0); opacity: 1; }
}
@keyframes fadeInBlur {
  0% { opacity: 0; filter: blur(15px); transform: scale(0.95) translateY(20px); }
  100% { opacity: 1; filter: blur(0); transform: scale(1) translateY(0); }
}

/* =============================================
   METRICS / CREDIBILITY
============================================= */
.metrics {
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background-color: #F4F5F7;
  background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metric-card {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.05);
}
.metric-card:last-child { border-right: none; }
.metric-val {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.metric-lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555555;
}

/* Responsive Metrics */
@media (max-width: 900px) {
  .metrics-grid { 
    grid-template-columns: repeat(2, 1fr); 
    border-left: 1px solid rgba(0,0,0,0.05);
  }
  .metric-card {
    padding: 30px 15px;
    border-right: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .metric-card:nth-child(even) { border-right: none; }
  .metric-card:nth-last-child(-n+2) { border-bottom: none; }
  .metric-val { font-size: 2.5rem; }
}

/* =============================================
   SERVICES
============================================= */
#servicos {
  background-color: #FFFFFF;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  color: #1A1A1A;
}
#servicos .sec-title {
  color: #0B0D12;
}
#servicos .sec-desc {
  color: #555555;
}
#servicos .sec-tag {
  background: rgba(245, 130, 13, 0.1);
  border-color: rgba(245, 130, 13, 0.2);
  color: var(--accent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.srv-card {
  display: block;
  text-decoration: none;
  background: #F4F5F7;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 40px;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.srv-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 130, 13, 0.3);
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.srv-card:hover::before {
  transform: scaleX(1);
}
.srv-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 24px;
}
.srv-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0B0D12;
}
.srv-desc {
  color: #555555;
  line-height: 1.6;
}

/* =============================================
   TECH MARQUEE
============================================= */
.tech-marquee {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  overflow: hidden;
  white-space: nowrap;
}
.tech-track {
  display: inline-block;
  animation: scrollText 30s linear infinite;
}
.tech-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0 40px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tech-track span i {
  color: var(--accent);
  font-size: 1.5rem;
}
@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   PROCESS (LIGHT BREAK)
============================================= */
.process-section {
  background-color: #F4F5F7;
  background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  color: #1A1A1A;
}
.process-section .sec-title {
  color: #0B0D12;
}
.process-section .sec-title span {
  color: var(--accent);
  text-shadow: none;
}
.process-section .sec-desc {
  color: #555555;
}
.process-section .sec-tag {
  background: rgba(245, 130, 13, 0.1);
  border-color: rgba(245, 130, 13, 0.2);
  color: var(--accent);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.process-step {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 40px 30px;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.process-step:hover, .process-step.active {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: rgba(245, 130, 13, 0.3);
}
.step-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(245, 130, 13, 0.15);
  margin-bottom: 20px;
  line-height: 1;
  transition: color 0.3s;
}
.process-step:hover .step-num, .process-step.active .step-num {
  color: var(--accent);
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0B0D12;
}
.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
}

/* =============================================
   PORTFOLIO (TECH STYLE)
============================================= */
.portfolio {
  background: var(--bg-panel);
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}
.filter-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(245, 130, 13, 0.3);
}

/* Portfolio Mobile Refinement */
@media (max-width: 768px) {
  .portfolio-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    margin: 0 calc(var(--pad) * -1) 30px;
    padding-left: var(--pad);
    padding-right: var(--pad);
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 8px;
  }
  .portfolio-filters::-webkit-scrollbar { display: none; }
  .filter-btn {
    white-space: nowrap;
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.port-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  animation: fadeInPort 0.5s ease forwards;
}
.port-item.hide {
  display: none;
}
@keyframes fadeInPort {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.port-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: grayscale(80%) contrast(1.2);
}
.port-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1);
}
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.port-tag {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.port-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
  background-color: #FFFFFF;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  color: #1A1A1A;
}
.testimonials .sec-title {
  color: #0B0D12;
}
.testimonials .sec-tag {
  background: rgba(245, 130, 13, 0.1);
  border-color: rgba(245, 130, 13, 0.2);
  color: var(--accent);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.test-card {
  background: #F4F5F7;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 40px;
  border-radius: 8px;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.test-stars {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.test-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 30px;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
}
.test-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent);
}
.test-author span {
  font-size: 0.85rem;
  color: #555555;
}

/* =============================================
   CTA / CONTACT
============================================= */
.cta-section {
    background-color: var(--bg-panel);
    background-image: 
      radial-gradient(circle at center, rgba(245, 130, 13, 0.15) 0%, transparent 75%), 
      linear-gradient(to right, var(--bg-panel) 0%, transparent 15%, transparent 85%, var(--bg-panel) 100%), 
      linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), 
      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 25px 25px, 25px 25px;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
}
.cta-box {
  position: relative;
  z-index: 10;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section .sec-title {
  color: #fff;
  text-shadow: none;
  text-align: center;
  margin-bottom: 16px;
  width: 100%;
}
.cta-section .sec-desc,
.cta-section .cta-subtitle {
  color: #b8bcc8;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
  max-width: 34rem;
}
.cta-actions,
.cta-section .cta-btns {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-top: 32px;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions .btn,
.cta-section .cta-btns .btn {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  min-height: 52px;
  padding-left: 28px;
  padding-right: 28px;
}
.cta-section .btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 10px 30px rgba(245, 130, 13, 0.3);
}
.cta-section .btn-primary:hover {
  background: #FFB84D;
  transform: translateY(-2px);
}
.cta-section .btn-outline {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}
.cta-section .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

@media (max-width: 600px) {
  .cta-section {
    padding: 80px 0;
  }
  .cta-actions,
  .cta-section .cta-btns {
    max-width: none;
    margin-top: 28px;
    gap: 12px;
  }
  .cta-section .sec-title {
    margin-bottom: 14px;
  }
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--accent);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-logo {
  height: 40px;
  margin-bottom: 24px;
}
.footer-about {
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}
.footer-col.brand .footer-desc {
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: #000;
  color: var(--accent);
  border-color: #000;
  transform: translateY(-3px);
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover {
  color: #000;
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.footer-contact i {
  color: #000;
  font-size: 1rem;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.85rem;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: #1a1a1a;
}
.footer-legal a:hover {
  color: #000;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}



/* =============================================
   BLOG
============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 130, 13, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-tag {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--accent);
  color: #000;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.3;
}
.blog-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}
.blog-time {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-link {
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.blog-card:hover .blog-link {
  gap: 10px;
}

/* =============================================
   CAROUSEL SYSTEM
============================================= */
.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  text-align: left;
}
.flex-header .sec-desc {
  margin-inline: 0 !important;
}
.carousel-nav {
  display: none;
  gap: 10px;
}
.nav-btn {
  width: 44px; height: 44px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.1);
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
}
.testimonials .nav-btn {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text-main);
}
.nav-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

@media (max-width: 900px) {
  .flex-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
  }
  .carousel-nav {
    display: flex;
    align-self: flex-end;
  }
  .carousel-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    margin: 0 -20px;
    padding: 0 20px 30px; /* Added bottom padding for shadows */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
  .carousel-track {
    display: flex !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    align-items: stretch; /* Ensure cards have equal height if content varies */
  }
  .carousel-track::-webkit-scrollbar {
    display: none;
  }
  .carousel-track > * {
    scroll-snap-align: start;
    width: 82vw;
    max-width: 82vw;
    flex: 0 0 82vw;
    white-space: normal;
  }
  
  .process-grid, .test-grid, .blog-grid {
    grid-template-columns: none;
    margin-top: 0;
  }

  .blog-card-content {
    padding: 20px; /* Reduced from 30px for mobile */
  }
}

/* =============================================
   MOBILE MENU
============================================= */
.mobile-menu-btn {
  display: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1.5rem;
  padding: 8px;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 13, 18, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.active {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.mobile-menu-close {
  background: transparent;
  color: var(--text-main);
  font-size: 1.8rem;
  padding: 8px;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu-links a:hover, .mobile-menu-links a.active {
  color: var(--accent);
}
.mobile-cta {
  margin-top: auto;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .port-grid { grid-template-columns: 1fr; gap: 20px; }
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }
  
  .section { padding: 80px 0; }
  .sec-header { margin-bottom: 40px; }
  .sec-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
  .footer-col.brand {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .footer-logo { margin-inline: auto; }
  .footer-socials { justify-content: center; }
  
  .hero-title { font-size: 2.8rem; }
  .hero-desc { font-size: 1rem; margin-bottom: 30px; }
}

/* =============================================
   COOKIE CONSENT (LGPD)
============================================= */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  padding: 18px 0 calc(18px + env(safe-area-inset-bottom, 0px));
  background: rgba(11, 13, 18, 0.98);
  border-top: 1px solid rgba(245, 130, 13, 0.35);
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.55);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.cookie-consent.cookie-consent--visible {
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-consent-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media (min-width: 768px) {
  .cookie-consent-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
}
.cookie-consent-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: left;
  max-width: 52rem;
}
.cookie-consent-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-consent-text a:hover {
  color: #ffb04d;
}
.cookie-consent-actions {
  flex-shrink: 0;
}
.cookie-consent .cookie-consent-accept {
  width: 100%;
  min-height: 48px;
}
@media (min-width: 768px) {
  .cookie-consent .cookie-consent-accept {
    width: auto;
    min-width: 168px;
  }
}
html.cookie-consent-open .floating-contact-system {
  bottom: calc(30px + var(--cookie-banner-h, 100px)) !important;
}

/* =============================================
   FLOATING CONTACT SYSTEM
============================================= */
.floating-contact-system {
  position: fixed;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 1000 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 15px !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Floating Buttons */
.float-btn {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.8rem !important;
  color: #fff !important;
  cursor: pointer;
  /* Enhanced shadow with separation ring for visibility on orange background */
  box-shadow: 0 0 0 2px var(--bg), 0 15px 35px rgba(0,0,0,0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: none !important;
  text-decoration: none !important;
  margin: 0 !important;
}
.float-btn:hover {
  transform: scale(1.1) translateY(-5px);
  color: #fff;
  box-shadow: 0 0 0 3px var(--bg), 0 25px 50px rgba(0,0,0,0.6);
}
.float-btn i { font-size: inherit !important; margin: 0 !important; }

.wpp-float {
  background: #25D366;
  order: 1;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4) !important;
}
.wpp-float:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.6) !important;
}
.form-float {
  background: var(--accent);
  order: 2;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4) !important;
}
.form-float:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.6) !important;
}

/* Form Widget */
.contact-form-widget {
  position: absolute;
  bottom: 170px;
  right: 0;
  width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom right;
  max-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
}
.contact-form-widget.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.widget-header {
  background: var(--accent);
  padding: 20px 25px;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.widget-header h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}
.widget-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #000;
}

.widget-body {
  padding: 25px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.widget-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.widget-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.widget-form input, .widget-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.widget-form input:focus, .widget-form textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
  outline: none;
}
.widget-form textarea { height: 100px; resize: none; }

.widget-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}
.widget-submit:hover {
  filter: brightness(1.1);
  box-shadow: 0 5px 15px rgba(245, 130, 13, 0.3);
}

@media (max-width: 480px) {
  /* Botões flutuantes menores */
  .floating-contact-system {
    right: 16px !important;
    bottom: 16px !important;
    gap: 10px !important;
  }
  .float-btn {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.3rem !important;
  }

  /* Widget vira bottom-sheet full-width */
  .contact-form-widget {
    position: fixed !important;
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    border-radius: 20px 20px 0 0 !important;
    transform-origin: bottom center !important;
    max-height: 92vh !important;
    transform: translateY(100%) scale(1) !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  .contact-form-widget.active {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .widget-body {
    padding: 16px 20px 20px;
    max-height: calc(92vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .widget-body p {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }
  .widget-form {
    gap: 10px;
  }
  .widget-form textarea {
    height: 70px;
  }
  .widget-form input,
  .widget-form textarea {
    padding: 12px 14px;
    font-size: 1rem; /* evita zoom no iOS */
  }
  .widget-submit {
    padding: 15px;
    font-size: 1rem;
    position: sticky;
    bottom: 0;
  }
}

/* =============================================
   SIDEBAR PREMIUM
============================================= */
.sidebar-panel {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 2000;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0,0,0,0.5);
}
.sidebar-panel.active { right: 0; }

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

.sidebar-header {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo { height: 40px; }
.sidebar-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s;
}
.sidebar-close:hover { transform: rotate(90deg) color: var(--accent); }

.sidebar-content {
  padding: 40px;
  overflow-y: auto;
  flex: 1;
}
.sidebar-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid var(--border);
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}
.sidebar-title span { color: var(--accent); }
.sidebar-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.sidebar-contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-info-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(245, 130, 13, 0.1);
  border: 1px solid rgba(245, 130, 13, 0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-info-text p { font-size: 1rem; color: #fff; font-weight: 500; line-height: 1.4; }

.sidebar-footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.sidebar-socials { display: flex; gap: 15px; }
.sidebar-socials a {
  width: 40px; height: 40px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.sidebar-socials a:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: translateY(-3px);
}


/* Navbar Sidebar Button */
.nav-sidebar-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 15px;
}
.nav-sidebar-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: rotate(180deg);
}
@media (max-width: 900px) {
  .nav-sidebar-btn { display: none; }
}




/* =============================================
   WPP LEAD CAPTURE MODAL
============================================= */
.wpp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
.wpp-modal-overlay.active { opacity: 1; visibility: visible; }

.wpp-modal {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 340px;
  background: var(--bg-card);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  z-index: 1999;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
  transform-origin: bottom right;
  overflow: hidden;
}
.wpp-modal.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.wpp-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 18px;
  background: linear-gradient(135deg, #1a2e22 0%, #0d1f16 100%);
  border-bottom: 1px solid rgba(37,211,102,0.15);
}
.wpp-modal-icon {
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.wpp-modal-header h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.2;
}
.wpp-modal-header p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.wpp-modal-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.6);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-left: auto;
}
.wpp-modal-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

.wpp-modal-form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wpp-field-group { position: relative; }
.wpp-field-group input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem; /* ≥16px evita zoom no iOS */
  transition: all 0.3s;
  outline: none;
}
.wpp-field-group input:focus {
  border-color: #25D366;
  background: rgba(37,211,102,0.05);
  box-shadow: 0 0 0 3px rgba(37,211,102,0.1);
}
.wpp-field-group input.invalid { border-color: #ff4757; }
.wpp-field-group input::placeholder { color: rgba(255,255,255,0.3); }

.wpp-modal-submit {
  width: 100%;
  padding: 15px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(37,211,102,0.25);
  margin-top: 4px;
}
.wpp-modal-submit:hover { background: #1db954; transform: translateY(-2px); }

.wpp-modal-skip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s;
  margin-top: 5px;
  width: 100%;
}
.wpp-modal-skip:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
.wpp-modal-skip:active { transform: scale(0.98); }

.lgpd-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.lgpd-label input[type=checkbox] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--accent);
  cursor: pointer;
  margin-top: 2px;
}
.lgpd-label span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.lgpd-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  15%      { transform: translateX(-6px); }
  30%      { transform: translateX(6px); }
  45%      { transform: translateX(-4px); }
  60%      { transform: translateX(4px); }
  75%      { transform: translateX(-2px); }
  90%      { transform: translateX(2px); }
}
.shake { animation: shake 0.5s ease; }

.wpp-modal-success {
  padding: 30px 20px;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.wpp-modal-success.show { display: flex; }
.wpp-modal-success-icon {
  width: 56px; height: 56px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #25D366;
}
.wpp-modal-success h5 { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; margin: 0; }
.wpp-modal-success p  { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }

/* Overlay escuro quando widget de formulário aberto no mobile */
.widget-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
}
.widget-backdrop.active { display: block; }

@media (max-width: 480px) {
  /* WPP Modal: bottom-sheet centralizado */
  .wpp-modal {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 80px;
    border-radius: 16px;
    transform-origin: bottom center;
  }
  .wpp-modal-form {
    padding: 16px;
    gap: 12px;
  }
  .wpp-field-group input {
    padding: 14px 14px;
    font-size: 1rem;
  }
  .wpp-modal-submit {
    padding: 16px;
    font-size: 1.05rem;
  }
}
