/* 
 * MOZ Websites - Premium Agency Design System (Pixel+ Style)
 * Main Stylesheet | Version 1.2 (Maio 2026)
 */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,700..800&family=Manrope:wght@400;600;700&display=swap');

/* ==========================================================================
   1. DESIGN SYSTEM & TOKENS
   ========================================================================== */
:root {
  /* Colors */
  --color-primary: #A40DBD;        /* Roxo principal */
  --color-primary-dark: #4B005B;   /* Roxo escuro */
  --color-accent: #F37920;         /* Laranja principal */
  --color-accent-hover: #D4620F;    /* Laranja escuro para hover */
  --color-bg: #07000A;             /* Fundo principal quase preto com tom roxo */
  --color-bg-card: #110018;        /* Fundo de cards roxo muito escuro */
  --color-bg-card-hover: #1A0025;  /* Hover nos cards */
  --color-border: rgba(164, 13, 189, 0.2);     /* Bordas roxo suave */
  --color-border-accent: rgba(243, 121, 32, 0.25); /* Bordas destaque laranja */
  --color-text: #FFFFFF;           /* Texto principal */
  --color-text-muted: rgba(255, 255, 255, 0.65); /* Texto secundário */
  --color-text-hint: rgba(255, 255, 255, 0.40);  /* Texto terciário */
  
  /* Fonts */
  --font-title: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Manrope', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-elastic: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  background: 
    radial-gradient(ellipse 80% 60% at 15% 30%, rgba(164, 13, 189, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(75, 0, 91, 0.15) 0%, transparent 55%),
    var(--color-bg);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p {
  color: var(--color-text-muted);
  margin-bottom: 24px; /* Mínimo exigido de 20–28px entre parágrafos */
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   3. REUSABLE UTILITIES & LAYOUT (Espaçamentos Refinados)
   ========================================================================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 120px 0; /* Aumentado para 120px para maior elegância e espaçamento */
  position: relative;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(164, 13, 189, 0.12);
  border: 1px solid rgba(164, 13, 189, 0.35);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.badge-pill.orange {
  background: rgba(243, 121, 32, 0.12);
  border: 1px solid rgba(243, 121, 32, 0.35);
}

.badge-pill .sparkle {
  color: var(--color-accent);
  animation: pulse-slow 2s infinite ease-in-out;
}

/* Section Header styling */
.section-header {
  max-width: 680px;
  margin-bottom: 70px; /* Aumentado para melhor respiro */
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-elastic);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(243, 121, 32, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(243, 121, 32, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  border: 1.5px solid rgba(164, 13, 189, 0.6);
  color: #ffffff;
  background: rgba(164, 13, 189, 0.08);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(164, 13, 189, 0.2);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(164, 13, 189, 0.25);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
}

/* Premium Background Elements */
.bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-plus {
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: rgba(164, 13, 189, 0.25);
  animation: pulse-plus 4s infinite ease-in-out;
  user-select: none;
}

.geometric-block {
  position: absolute;
  background: rgba(164, 13, 189, 0.06);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ==========================================================================
   4. NAVBAR COMPONENT
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(7, 0, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(164, 13, 189, 0.18);
}

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

/* Header Logo Image styling (Logo Real) */
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo-img-real {
  height: 44px; /* Altura ideal */
  width: auto;
  transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img-real {
  height: 36px; /* Reduz suavemente ao scrollar */
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px; /* 40px entre grupos */
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: #FFFFFF;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: var(--transition-smooth);
  transform-origin: left center;
}

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

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

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

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #0B0011;
  border-left: 1px solid rgba(164, 13, 189, 0.2);
  z-index: 105;
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer .nav-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.mobile-drawer .nav-link {
  font-size: 20px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 0, 10, 0.85);
  backdrop-filter: blur(5px);
  z-index: 104;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, #D4620F 30%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px; /* 40px entre grupos */
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px; /* 40px entre grupos */
}

.hero-media {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

/* Floating Web Mockup Box */
.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  animation: float-slow 6s infinite ease-in-out;
}

.mockup-container {
  background: linear-gradient(135deg, rgba(164, 13, 189, 0.15) 0%, rgba(17, 0, 24, 0.95) 100%);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(164, 13, 189, 0.1);
  backdrop-filter: blur(10px);
}

.mockup-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Float Badges Over mockups */
.floating-badge {
  position: absolute;
  background: rgba(17, 0, 24, 0.85);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 260px;
  z-index: 4;
}

.floating-badge-1 {
  bottom: -20px;
  left: -40px;
  animation: float-delay 6s infinite ease-in-out;
}

.floating-badge-2 {
  top: -20px;
  right: -30px;
  width: 180px;
  align-items: center;
  animation: float-slow 5s infinite ease-in-out;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(164, 13, 189, 0.2);
  border: 1px solid rgba(164, 13, 189, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.badge-content h4 {
  font-size: 14px;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.badge-content p {
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

/* Circular Rotating Text */
.rotating-circle-wrapper {
  position: absolute;
  right: -40px;
  bottom: -30px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.rotating-circle {
  width: 100%;
  height: 100%;
  animation: rotate-slow 20s linear infinite;
}

.rotating-circle svg {
  width: 100%;
  height: 100%;
}

.rotating-circle text {
  fill: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.circle-center-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(164, 13, 189, 0.4);
  font-size: 16px;
  transition: var(--transition-elastic);
}

.circle-center-btn:hover {
  background: var(--color-accent);
  box-shadow: 0 4px 15px rgba(243, 121, 32, 0.4);
  transform: scale(1.1) rotate(45deg);
}

/* ==========================================================================
   6. STATS SECTION
   ========================================================================== */
.stats-bar {
  position: relative;
  z-index: 5;
  margin-top: -50px;
  margin-bottom: 50px;
}

.stats-container {
  background: rgba(164, 13, 189, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  text-align: center;
  box-shadow: inset 0 0 20px rgba(164, 13, 189, 0.05);
}

.stat-item {
  position: relative;
  padding: 10px 0;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(164, 13, 189, 0.25);
}

.stat-number {
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(243, 121, 32, 0.15);
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ==========================================================================
   7. WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose {
  background: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 54px;
}

.why-card {
  background: linear-gradient(135deg, rgba(164, 13, 189, 0.12) 0%, rgba(17, 0, 24, 0.95) 100%);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition-elastic);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-accent);
  box-shadow: 0 15px 35px rgba(243, 121, 32, 0.08);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(164, 13, 189, 0.15);
  border: 1px solid rgba(164, 13, 189, 0.3);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  color: var(--color-accent);
  background: rgba(243, 121, 32, 0.12);
  border-color: rgba(243, 121, 32, 0.4);
}

.why-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
}

.why-card-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.why-footer {
  text-align: center;
  font-size: 14.5px;
  color: var(--color-text-hint);
}

.why-footer a {
  color: var(--color-accent);
  font-weight: 600;
}

/* ==========================================================================
   VISUAL SEPARATOR (Linha de Divisão Glow com 100px)
   ========================================================================== */
.visual-separator {
  position: relative;
  height: 1px;
  margin: 100px auto; /* 100px de separador visual */
  display: flex;
  align-items: center;
  justify-content: center;
}

.separator-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(164, 13, 189, 0.35) 50%, transparent 100%);
}

.separator-glow {
  position: absolute;
  width: 200px;
  height: 4px;
  background: radial-gradient(circle, rgba(243, 121, 32, 0.5) 0%, transparent 80%);
  filter: blur(2px);
}

/* ==========================================================================
   8. ABOUT SECTION (Margens Linha a Linha na Secção Sobre)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(164, 13, 189, 0.2);
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: brightness(0.9);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

.about-media .floating-badge {
  width: 250px;
}

.about-badge-1 {
  top: -24px;
  left: -24px;
  animation: float-slow 5s infinite ease-in-out;
}

.about-badge-2 {
  bottom: -24px;
  right: -20px;
  background: linear-gradient(135deg, rgba(164, 13, 189, 0.25) 0%, rgba(17, 0, 24, 0.95) 100%);
  width: 200px;
  padding: 20px;
}

.about-content h2 {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-text-group {
  display: flex;
  flex-direction: column;
}

/* Margens definidas Linha a Linha para os textos da Secção Sobre */
.about-p1 {
  margin-bottom: 24px !important; /* Margem da primeira linha/parágrafo */
}

.about-p2 {
  margin-bottom: 28px !important; /* Margem da segunda linha/parágrafo */
}

.about-p3 {
  margin-bottom: 0px !important;  /* Margem final zerada */
}

/* ==========================================================================
   9. SERVICES EDITORIAL SECTION (Two-Column Layout)
   ========================================================================== */
.services-editorial {
  overflow: visible;
}

.svc-ed-grid {
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: 64px;
  align-items: center;
}

.svc-ed-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.svc-ed-heading {
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.svc-ed-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.svc-ed-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.svc-arrow-group {
  display: flex;
  gap: 10px;
}

.svc-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(5px);
  flex-shrink: 0;
}

.svc-arrow-btn:hover {
  background: rgba(243,121,32,0.12);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.svc-arrow-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.svc-ed-right {
  overflow: hidden;
  border-radius: 24px;
}

.svc-ed-track {
  display: flex;
  gap: 18px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.svc-ed-card {
  flex-shrink: 0;
  width: calc(50% - 9px);
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.svc-ed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) grayscale(0.15);
  transition: transform 0.6s ease, filter 0.6s ease;
  display: block;
}

.svc-ed-card:hover .svc-ed-img {
  transform: scale(1.06);
  filter: brightness(0.5) grayscale(0.1);
}

.svc-ed-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.28) 48%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.svc-ed-card:hover .svc-ed-card-overlay {
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.4) 55%,
    transparent 100%
  );
}

.svc-ed-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}

.svc-ed-card-text h3 {
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.svc-ed-card-text p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
}

/* ==========================================================================
   10. PORTFOLIO — Curve Carousel (3D Infinite Arc)
   ========================================================================== */
.portfolio-curve {
  padding-bottom: 80px;
}

/* Header row */
.curve-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.curve-nav-group {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.curve-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(5px);
  flex-shrink: 0;
}

.curve-nav-btn:hover {
  background: rgba(243,121,32,0.14);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.curve-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Outer wrapper — clips overflow & holds edge masks */
.curve-carousel-wrapper {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  user-select: none;
}

/* Edge fade masks — subtle, just enough to soften card edges */
.curve-carousel-wrapper::before,
.curve-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 7%;
  z-index: 10;
  pointer-events: none;
}

.curve-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
}

.curve-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg) 0%, transparent 100%);
}

/* Perspective stage — inner, full-size */
.curve-stage {
  width: 100%;
  height: 100%;
  perspective: 1400px;
  perspective-origin: 50% 48%;
}

/* Track holds absolutely-positioned cards */
.curve-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual card */
.curve-card {
  position: absolute;
  width: 340px;
  height: 460px;
  top: 50%;
  left: 50%;
  margin-top: -230px;
  margin-left: -170px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  backface-visibility: hidden;
}

.curve-card.curve-active {
  cursor: default;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(243,121,32,0.2),
    inset 0 0 30px rgba(164,13,189,0.07);
}

/* Background image */
.curve-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.7);
  transition: filter 0.55s ease;
}

.curve-card.curve-active .curve-card-img {
  filter: brightness(0.75) saturate(0.95);
}

/* Gradient overlay — stronger at bottom */
.curve-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    transparent 15%,
    rgba(0,0,0,0.32) 52%,
    rgba(0,0,0,0.93) 100%
  );
  z-index: 1;
}

/* Card text block */
.curve-card-info {
  position: absolute;
  bottom: 86px;
  left: 0;
  right: 0;
  padding: 0 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.curve-card-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(243,121,32,0.12);
  border: 1px solid rgba(243,121,32,0.28);
  padding: 4px 11px;
  border-radius: 50px;
  width: fit-content;
}

.curve-card-title {
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

/* CTA button — bottom of card, appears on active */
.curve-card-cta {
  position: absolute;
  bottom: 22px;
  left: 26px;
  right: 26px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(243,121,32,0.16);
  border: 1.5px solid rgba(243,121,32,0.42);
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.38s ease 0.15s, transform 0.38s ease 0.15s, background 0.3s ease, gap 0.3s ease;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.curve-card.curve-active .curve-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.curve-card-cta:hover {
  background: rgba(243,121,32,0.32);
  border-color: var(--color-accent);
  gap: 16px;
}

/* Dots pagination */
.curve-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.curve-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.curve-dot.curve-dot-active {
  width: 26px;
  border-radius: 4px;
  background: var(--color-accent);
}

/* Bottom CTA */
.curve-cta {
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 991px) {
  .curve-carousel-wrapper { height: 480px; }
  .curve-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
}

@media (max-width: 767px) {
  .curve-carousel-wrapper { height: 420px; }
  .curve-card {
    width: 270px;
    height: 370px;
    margin-top: -185px;
    margin-left: -135px;
  }
  .curve-card-title { font-size: 17px; }
}

/* ==========================================================================
   11. PRICING SECTION (Linear-inspired)
   ========================================================================== */
.pricing {
  position: relative;
}

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

.price-card {
  background: rgba(14, 0, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 36px 30px;
  transition: var(--transition-elastic);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

.price-card.featured {
  background: rgba(22, 0, 38, 0.98);
  border: 1.5px solid rgba(164, 13, 189, 0.55);
  box-shadow: 0 20px 50px rgba(164, 13, 189, 0.14);
  transform: translateY(-10px);
}

.price-card:hover {
  border-color: rgba(164, 13, 189, 0.45);
  box-shadow: 0 16px 40px rgba(164, 13, 189, 0.12);
  transform: translateY(-6px);
}

.price-card.featured:hover {
  border-color: rgba(164, 13, 189, 0.8);
  box-shadow: 0 24px 60px rgba(164, 13, 189, 0.22);
  transform: translateY(-14px);
}

/* Card Badge */
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* New Header layout */
.price-header-new {
  text-align: center;
  margin-bottom: 20px;
}

.price-tier-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.featured .price-tier-label {
  color: var(--color-accent);
}

.price-tier-value {
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.price-tier-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0;
}

/* Billing toggle inside featured card */
.price-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 10px;
}

.billing-opt {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
}

.billing-opt-active {
  color: #FFFFFF;
  font-weight: 700;
}

.billing-pill {
  width: 40px;
  height: 22px;
  border-radius: 50px;
  background: rgba(164,13,189,0.7);
  position: relative;
  border: 1px solid rgba(164,13,189,0.9);
  flex-shrink: 0;
}

.billing-pill-thumb {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  top: 2px;
  right: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

/* Divider line */
.price-divider-line {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 0 24px;
}

.featured .price-divider-line {
  background: rgba(164,13,189,0.3);
}

/* Features list */
.price-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.feature-item i {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.featured .feature-item i {
  color: var(--color-primary);
}

/* New button styles */
.btn-price-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-elastic);
  border: 1.5px solid rgba(255,255,255,0.14);
  color: #FFFFFF;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
}

.btn-price-outline:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

.btn-price-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-elastic);
  background: #FFFFFF;
  color: #0D0013;
  text-decoration: none;
}

.btn-price-white:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.14);
}

.price-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-sales-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  transition: color 0.3s ease;
  text-decoration: none;
  padding: 2px 0;
}

.price-sales-link:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   12. FAQ ACCORDION SECTION
   ========================================================================== */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(164, 13, 189, 0.05) 0%, rgba(17, 0, 24, 0.95) 100%);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(164, 13, 189, 0.45);
  box-shadow: 0 5px 15px rgba(164, 13, 189, 0.05);
}

.faq-item.active {
  border-color: var(--color-border-accent);
  background: linear-gradient(135deg, rgba(164, 13, 189, 0.1) 0%, rgba(17, 0, 24, 0.98) 100%);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  color: #FFFFFF;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  gap: 20px;
  transition: var(--transition-smooth);
}

.faq-question:focus {
  outline: none;
}

.faq-icon {
  color: var(--color-accent);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 30px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ==========================================================================
   13. NEWSLETTER SECTION
   ========================================================================== */
.newsletter-card {
  background: linear-gradient(135deg, rgba(164, 13, 189, 0.08) 0%, rgba(11, 0, 18, 0.95) 100%);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: inset 0 0 30px rgba(164, 13, 189, 0.03);
}

.newsletter-card h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.newsletter-card p {
  margin-bottom: 32px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background: rgba(164, 13, 189, 0.06);
  border: 1.5px solid var(--color-border);
  border-radius: 50px;
  padding: 14px 24px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 15px rgba(243, 121, 32, 0.15);
  background: rgba(164, 13, 189, 0.1);
}

.newsletter-form .btn {
  padding: 14px 30px;
}

/* ==========================================================================
   14. FINAL CTA SECTION ("Pronto para crescer?")
   ========================================================================== */
.cta-block {
  padding-bottom: 120px;
}

.cta-card {
  background: linear-gradient(135deg, #1A0025 0%, #0D0013 50%, #1A0025 100%);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-card-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-card p {
  font-size: 18px;
  margin-bottom: 40px; /* 40px entre grupos */
  color: var(--color-text-muted);
}

.cta-card .btn {
  padding: 16px 36px;
  font-size: 16px;
}

/* Asymmetric corner decors in CTA */
.cta-decor-1 {
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: rgba(164, 13, 189, 0.15);
  border-radius: 50%;
  filter: blur(40px);
}

.cta-decor-2 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(243, 121, 32, 0.08);
  border-radius: 50%;
  filter: blur(50px);
}

/* ==========================================================================
   15. FOOTER COMPONENT (SVG Reais com Hover Laranja)
   ========================================================================== */
.footer {
  background-color: #07000A;
  border-top: 1px solid rgba(164, 13, 189, 0.2);
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 35fr 20fr 20fr 25fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px; /* 10px entre logo e desc */
}

.footer-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  font-size: 14.5px;
  color: var(--color-text-muted);
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-item i {
  color: var(--color-accent);
  font-size: 16px;
}

/* Social links circle - Custom real SVG designs with Orange Hover */
.social-links {
  display: flex;
  gap: 12px; /* 12px gap */
  margin-top: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(164, 13, 189, 0.12);
  border: 1px solid rgba(164, 13, 189, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--transition-smooth);
}

/* Hover de Destaque Laranja Oficial (#F37920) */
.social-btn:hover {
  background-color: var(--color-accent) !important; /* Laranja */
  border-color: var(--color-accent) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(243, 121, 32, 0.35);
}

.social-btn svg {
  transition: transform 0.3s ease;
}

.social-btn:hover svg {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-hint);
}

/* ==========================================================================
   16. ANIMATIONS & TRANSITIONS (SCROLL & KEYFRAMES)
   ========================================================================== */
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes rotate-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes pulse-plus {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.2); }
}

/* Intersection Observer Scroll States (Animações Suaves e Modernas) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 150ms; }
.reveal-delay-2 { transition-delay: 300ms; }
.reveal-delay-3 { transition-delay: 450ms; }

/* ==========================================================================
   17. MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 60px;
  }
  .section-title {
    font-size: 40px;
  }
  .portfolio-card {
    padding: 40px 30px;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .rotating-circle-wrapper {
    right: 20px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .stat-item {
    padding: 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-media {
    max-width: 480px;
    margin: 0 auto;
  }

  /* Services editorial tablet */
  .svc-ed-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-ed-heading {
    font-size: 36px;
  }
  .svc-ed-card {
    width: calc(55% - 9px);
    height: 380px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 35px;
  }
  .price-card.featured {
    transform: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {

  /* ── Espaçamentos gerais ────────────────────────────────────── */
  .section-padding {
    padding: 64px 0;
  }

  .visual-separator {
    margin: 48px auto;
  }

  /* ── Navbar ─────────────────────────────────────────────────── */
  .navbar {
    padding: 14px 0;
  }
  .navbar.scrolled {
    padding: 10px 0;
  }
  .hamburger {
    display: flex;
  }
  .nav-menu:not(.mobile-drawer .nav-menu),
  .navbar .btn {
    display: none;
  }

  /* ── Hero ───────────────────────────────────────────────────── */
  .hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .hero-title {
    font-size: 36px;
    letter-spacing: -0.5px;
    line-height: 1.1;
  }
  .hero-text {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  /* Esconder floating badges que transbordam em mobile */
  .floating-badge-1,
  .floating-badge-2 {
    display: none;
  }
  /* Reposicionar círculo rotativo para dentro do viewport */
  .rotating-circle-wrapper {
    right: 8px;
    bottom: -10px;
    width: 100px;
    height: 100px;
  }
  .circle-center-btn {
    width: 38px;
    height: 38px;
  }

  /* ── Stats ──────────────────────────────────────────────────── */
  .stat-number {
    font-size: 40px;
  }
  .stat-label {
    font-size: 13px;
  }

  /* ── Why cards ──────────────────────────────────────────────── */
  .why-card {
    padding: 28px 24px;
  }
  .why-card-title {
    font-size: 20px;
  }

  /* ── Section headers ────────────────────────────────────────── */
  .section-title {
    font-size: 28px;
    line-height: 1.2;
  }
  .section-subtitle {
    font-size: 15px;
  }
  .section-header {
    margin-bottom: 40px;
  }

  /* ── Sobre ──────────────────────────────────────────────────── */
  .about-content h2 {
    font-size: 30px;
  }
  /* Esconder badges flutuantes que transbordam */
  .about-badge-1,
  .about-badge-2 {
    display: none;
  }
  .about-media {
    overflow: hidden;
  }

  /* ── Serviços ───────────────────────────────────────────────── */
  .svc-ed-heading {
    font-size: 26px;
  }
  .svc-ed-card {
    width: calc(82% - 9px);
    height: 300px;
  }
  .svc-ed-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .svc-ed-footer .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Portfolio Curve Carousel ──────────────────────────────── */
  .curve-carousel-wrapper {
    height: 390px;
  }
  .curve-stage {
    perspective: 900px;
  }
  .curve-card {
    width: 220px;
    height: 310px;
    margin-top: -155px;
    margin-left: -110px;
    border-radius: 16px;
  }
  .curve-card-info {
    bottom: 68px;
    padding: 0 18px;
  }
  .curve-card-title {
    font-size: 16px;
  }
  .curve-card-cat {
    font-size: 8.5px;
    padding: 3px 9px;
  }
  .curve-card-cta {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 12.5px;
  }
  .curve-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 16px;
  }

  /* ── Pricing ────────────────────────────────────────────────── */
  .pricing-grid {
    max-width: 100%;
    padding: 0 4px;
  }
  .price-tier-value {
    font-size: 28px;
  }
  .price-card {
    padding: 28px 22px;
  }
  .price-card.featured {
    transform: none;
  }

  /* ── FAQ ────────────────────────────────────────────────────── */
  .faq-question {
    font-size: 15px;
    padding: 18px 20px;
    gap: 12px;
  }
  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  /* ── Newsletter ─────────────────────────────────────────────── */
  .newsletter-card {
    padding: 36px 20px;
  }
  .newsletter-card h2 {
    font-size: 26px;
  }
  .newsletter-card p {
    font-size: 14px;
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .newsletter-input {
    width: 100%;
  }
  .newsletter-form .btn {
    width: 100%;
  }

  /* ── CTA Final ──────────────────────────────────────────────── */
  .cta-card {
    padding: 44px 20px;
    border-radius: 20px;
  }
  .cta-card h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .cta-card p {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .cta-card .btn {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
  }

  /* ── Footer ─────────────────────────────────────────────────── */
  .footer {
    padding: 56px 0 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }
  .footer-desc {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ── Ecrãs muito pequenos (iPhone SE, 375px) ────────────────── */
@media (max-width: 480px) {
  .section-padding {
    padding: 52px 0;
  }

  .hero-title {
    font-size: 30px;
  }
  .hero-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .svc-ed-card {
    width: calc(86% - 9px);
    height: 270px;
  }

  .curve-carousel-wrapper {
    height: 350px;
  }
  .curve-card {
    width: 190px;
    height: 270px;
    margin-top: -135px;
    margin-left: -95px;
  }
  .curve-card-title {
    font-size: 14px;
  }
  .curve-card-cta {
    font-size: 11.5px;
    padding: 9px 12px;
    gap: 7px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .cta-card h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 16px;
  }

  .price-tier-value {
    font-size: 24px;
  }

  .newsletter-card h2 {
    font-size: 22px;
  }

  .mockup-container {
    padding: 8px;
  }
}

/* ==========================================================================
   18. CUSTOM MOUSE CURSOR (Premium Glow Effect)
   ========================================================================== */
/* Hide default cursor globally for custom cursor effect */
* {
  cursor: none !important;
}

/* Small precise dot cursor */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.1s ease;
  will-change: transform;
  box-shadow: 0 0 8px rgba(243, 121, 32, 0.8);
}

/* Large trailing ring cursor */
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(164, 13, 189, 0.55);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  will-change: transform;
  backdrop-filter: none;
}

/* Spotlight glow that follows mouse */
.cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 13, 189, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: opacity 0.5s ease;
}

/* Hover effect: ring expands over interactive elements */
body.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--color-accent);
  background: rgba(243, 121, 32, 0.06);
}

body.cursor-hover .cursor-dot {
  transform: translate(-50%, -50%) scale(1.5);
  background: var(--color-primary);
  box-shadow: 0 0 12px rgba(164, 13, 189, 0.9);
}

/* Cursor click press effect */
body.cursor-click .cursor-ring {
  width: 32px;
  height: 32px;
  border-color: var(--color-accent);
  background: rgba(243, 121, 32, 0.15);
}

/* ==========================================================================
   19. WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  z-index: 9990;
  transition: var(--transition-elastic);
  animation: float-slow 4s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

/* WhatsApp pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2s infinite ease-out;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   20. SMOOTH SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(243, 121, 32, 0.5);
}
