/* ============================================
   FPR MARKETING - DESIGN PREMIUM 2025
   Design Sofisticado e Moderno
   ============================================ */

/*-----------------------Reset & Variables-------------------------*/
:root {
  --primary-color: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --secondary-color: #3b82f6;
  --accent-color: #f59e0b;
  --purple: #8b5cf6;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  --gradient-hero: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(59, 130, 246, 0.9) 50%, rgba(139, 92, 246, 0.9) 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*----------------------Typography-------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/*----------------------Navigation Premium-------------------------*/
.barra_menu_topo {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.barra_menu_topo.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.99);
}

.navbar-brand {
  padding: 1rem 0;
}

.navbar-brand img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover img {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

.nav_topo .nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  padding: 0.75rem 1.25rem !important;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.nav_topo .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav_topo .nav-link:hover::before,
.nav_topo .nav-link.active::before {
  transform: translateX(-50%) scaleX(1);
}

.nav_topo .nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.nav_topo ul li:nth-child(1n+2)::before {
  display: none;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/*----------------------Hero Section Premium-------------------------*/
.pagina1 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
}

.pagina1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/slider1.jpg') center/cover;
  opacity: 0.15;
  z-index: 0;
  animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.1) translateY(-20px); }
}

.pagina1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-dark);
  opacity: 0.92;
  z-index: 1;
}

/* Animated gradient overlay */
.pagina1 {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(30, 41, 59, 0.92) 25%,
    rgba(15, 23, 42, 0.95) 50%,
    rgba(30, 41, 59, 0.92) 75%,
    rgba(15, 23, 42, 0.95) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.home {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 20px 100px;
  color: var(--white);
  max-width: 1200px;
  margin: 0 auto;
}

.logoTopoPP {
  margin-bottom: 2.5rem;
  opacity: 1 !important;
  animation: fadeInDown 1s ease, float 6s ease-in-out infinite;
}

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

.fraseTopoPP {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1 !important;
  animation: fadeInUp 1s ease 0.2s both, textShine 3s ease-in-out infinite;
  line-height: 1.1;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
  position: relative;
}

@keyframes textShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.fraseTopoPP::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  opacity: 0.6;
  animation: expandWidth 1.5s ease 0.8s both;
}

@keyframes expandWidth {
  from { width: 0; opacity: 0; }
  to { width: 200px; opacity: 0.6; }
}

.chamadaTopoPP {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto 4rem;
  color: rgba(255, 255, 255, 0.95);
  opacity: 1 !important;
  animation: fadeInUp 1s ease 0.4s both;
  line-height: 1.9;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.saibaMaisTopoPP {
  opacity: 1 !important;
  animation: fadeInUp 1s ease 0.6s both;
}

.saibaMaisTopoPP a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: bounce 2s infinite, pulse 2s infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(255, 255, 255, 0); }
}

.saibaMaisTopoPP a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(8px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
  color: var(--white);
}

/*----------------------Sections Premium-------------------------*/
.pagina2 {
  padding: 120px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.pagina2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.porque-nos {
  padding: 100px 0;
}

.porque-nos .row {
  align-items: center;
}

.porque-nos img {
  border-radius: 20px;
  box-shadow: var(--shadow-2xl);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.05) contrast(1.05);
}

.porque-nos img:hover {
  transform: scale(1.03) rotate(1deg);
}

.escolher {
  padding-left: 3rem;
}

.escolher p:nth-child(1) {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-align: left;
  margin-bottom: 2rem;
  padding-top: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.escolher p:nth-child(1) span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.escolher p:nth-child(1)::after {
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  background: var(--gradient-primary);
  margin: 25px 0;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.escolher p:nth-child(2) {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 2rem;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 400;
}

.escolher p:nth-child(3) {
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.9;
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin-top: 1rem;
}

.escolher p strong {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1em;
}

/*----------------------Services Section Premium-------------------------*/
.pagina3 {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.pagina3::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.pagina3::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

.servicos_titulo {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 5rem;
  padding: 0;
  letter-spacing: -0.02em;
  position: relative;
}

.servicos_titulo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.servicos_titulo::after {
  content: '';
  display: block;
  width: 120px;
  height: 5px;
  background: var(--gradient-primary);
  margin: 25px auto 0;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.servicos {
  background: var(--white);
  padding: 3rem;
  height: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.servicos::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.servicos:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-2xl), var(--shadow-glow);
  border-color: rgba(16, 185, 129, 0.3);
}

.servicos:hover::before {
  transform: scaleX(1);
}

.servicos:hover::after {
  opacity: 1;
}

.servicos p img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 2rem;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.servicos:hover p img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 12px 24px rgba(16, 185, 129, 0.3));
}

.servicos p:nth-child(2) {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
  text-align: left;
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.servicos p:nth-child(3) {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.85;
  text-align: left;
  position: relative;
  z-index: 2;
}

.servicos-anime-inicio {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.servicos-anime-start {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/*----------------------Statistics Section Premium-------------------------*/
.estatisticas {
  padding: 120px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.estatisticas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/estatistica.png') center/cover;
  opacity: 0.08;
  z-index: 0;
  animation: backgroundMove 25s ease-in-out infinite;
}

.estatisticas::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.estatisticas .container {
  position: relative;
  z-index: 1;
}

.estat_subtitulo {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.estat_subtitulo::after {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  margin: 25px auto;
}

.estat_titulo {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 5rem;
  padding-bottom: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.estat_icon {
  font-size: 3.5rem;
  color: var(--primary-light);
  padding-bottom: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

.estat_icon:hover {
  transform: scale(1.1) rotate(5deg);
  color: var(--white);
}

.estat_nun {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.02em;
}

.estat_nun::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: var(--gradient-primary);
  margin-top: 20px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.estat_descricao {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 0;
  margin-top: 0.75rem;
  font-weight: 600;
}

/*----------------------Process Section Premium-------------------------*/
.pc {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  padding: 120px 0;
  position: relative;
}

.processo-trabalho {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 5rem;
  padding: 0;
  letter-spacing: -0.02em;
}

.processo-trabalho span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.processo-trabalho::after {
  content: '';
  display: block;
  width: 120px;
  height: 5px;
  background: var(--gradient-primary);
  margin: 25px auto 0;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.p-col {
  text-align: center;
  padding: 2.5rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  position: relative;
}

.p-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.p-col:hover::before {
  opacity: 1;
}

.p-col:hover {
  transform: translateY(-15px) scale(1.05);
}

.p-col img {
  max-width: 140px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.p-col:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 12px 24px rgba(16, 185, 129, 0.3));
}

.p-col p {
  font-weight: 700;
  color: var(--dark);
  margin-top: 1.5rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.p-seta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  position: relative;
  min-width: 60px;
}

/* Seta CSS moderna e animada */
.p-seta::before {
  content: '';
  position: absolute;
  width: 100%;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--primary-color) 0%, 
    var(--secondary-color) 50%, 
    var(--primary-color) 100%);
  background-size: 200% 100%;
  animation: arrowFlow 2s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.p-seta::after {
  content: '';
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  border-left: 12px solid var(--primary-color);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  filter: drop-shadow(2px 2px 4px rgba(16, 185, 129, 0.3));
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes arrowPulse {
  0%, 100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(3px) scale(1.1);
    opacity: 0.8;
  }
}

.p-seta:hover::before {
  background-size: 100% 100%;
  animation-duration: 1s;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.5);
}

.p-seta:hover::after {
  transform: translateX(5px) scale(1.15);
  animation-duration: 1s;
}

/* Mobile: Resetar contador e adicionar números nos cards */
@media (max-width: 768px) {
  .pc {
    counter-reset: processo-counter;
  }

  .p-col::before {
    content: counter(processo-counter);
    counter-increment: processo-counter;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    border: 4px solid var(--white);
    z-index: 10;
    line-height: 1;
  }

  /* Remover hover effects no mobile */
  .p-col:hover {
    transform: none;
  }

  .p-col:hover img {
    transform: none;
  }

  .p-col:hover::before {
    opacity: 1;
  }
}

/*----------------------Clients Section Premium-------------------------*/
.logo-clientes {
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

.frase2 {
  text-align: center;
  font-size: 1.3rem;
  color: var(--gray);
  margin: -25px auto 50px;
  font-style: italic;
  font-weight: 500;
}

.logo-clientes-lista {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  width: max-content;
  will-change: transform;
  animation: clientesMarquee 36s linear infinite;
}

.logo-clientes-lista li {
  flex: 0 0 auto;
  width: 220px;
  height: 120px;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.logo-clientes-lista li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  transition: left 0.5s ease;
}

.logo-clientes-lista li:hover::before {
  left: 100%;
}

.logo-clientes-lista li:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(16, 185, 129, 0.3);
}

.logo-clientes-lista li a img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.logo-clientes-lista li:hover a img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.03);
}

.logo-clientes:hover .logo-clientes-lista {
  animation-play-state: paused;
}

@keyframes clientesMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*----------------------Contact Section Premium-------------------------*/
#contato {
  background: var(--gradient-dark);
  padding: 120px 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

#contato::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

#contato::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

.titulo-contato {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 4rem;
  padding: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.endereco {
  color: rgba(255, 255, 255, 0.95);
  line-height: 2.2;
  text-align: center;
  padding-top: 0;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.endereco span {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 1.2em;
  text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.redes-sociais {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.redes-sociais a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.redes-sociais a:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px) scale(1.1);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
  color: var(--white);
}

/*----------------------Form Premium-------------------------*/
.formulario {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.form-control {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
  color: var(--white);
  outline: none;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--gradient-primary);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-dark::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.5s ease;
}

.btn-dark:hover::before {
  left: 100%;
}

.btn-dark:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
  background: var(--gradient-primary);
}

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

.email-ok {
  color: var(--primary-light);
  font-size: 1.3rem;
  text-align: center;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  font-weight: 600;
}

/*----------------------Footer Premium-------------------------*/
.barra-final {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 2.5rem 0;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.95rem;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.barra-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

/*----------------------Animations Premium-------------------------*/
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}

/*----------------------Responsive Premium-------------------------*/
@media (max-width: 992px) {
  .escolher {
    padding-left: 0;
    margin-top: 3rem;
  }

  .escolher p:nth-child(1) {
    text-align: center;
  }

  .escolher p:nth-child(1)::after {
    margin: 25px auto;
  }
}

@media (max-width: 768px) {
  .home {
    padding: 120px 20px 80px;
  }

  .pagina2,
  .pagina3,
  .pc,
  #contato {
    padding: 80px 0;
  }

  /* Esconder seção de estatísticas no mobile */
  .estatisticas {
    display: none !important;
  }

  .servicos {
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
  }

  .logo-clientes-lista {
    gap: 0.9rem;
    animation-duration: 24s;
  }

  .logo-clientes-lista li {
    width: 170px;
    height: 96px;
    padding: 0.9rem;
  }

  /* Processo de trabalho - layout vertical completo para mobile */
  .pc .row {
    flex-direction: column;
    align-items: stretch;
  }

  .p-col {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 1.5rem;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border: 2px solid var(--gray-light);
  }

  .p-col img {
    max-width: 100px;
    margin-bottom: 1.5rem;
    width: auto;
    height: auto;
  }

  .p-col p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 0.5rem;
    line-height: 1.4;
  }

  .p-seta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0 1rem 0;
    padding: 1rem 0;
    min-width: auto;
  }

  /* Seta vertical para mobile */
  .p-seta::before {
    width: 2px;
    height: 40px;
    max-width: none;
    background: linear-gradient(180deg, 
      var(--primary-color) 0%, 
      var(--secondary-color) 50%, 
      var(--primary-color) 100%);
    background-size: 100% 200%;
    animation: arrowFlowVertical 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  }

  .p-seta::after {
    bottom: 0;
    right: auto;
    top: auto;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--primary-color);
    border-bottom: none;
    filter: drop-shadow(2px 2px 4px rgba(16, 185, 129, 0.3));
    animation: arrowPulseVertical 2s ease-in-out infinite;
  }

  @keyframes arrowFlowVertical {
    0%, 100% {
      background-position: 50% 0%;
    }
    50% {
      background-position: 50% 100%;
    }
  }

  @keyframes arrowPulseVertical {
    0%, 100% {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    50% {
      transform: translateY(3px) scale(1.1);
      opacity: 0.8;
    }
  }

  .p-seta:hover::after {
    transform: translateY(5px) scale(1.15);
  }


  .formulario {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    width: 90px;
  }

  .home {
    padding: 95px 16px 56px;
  }

  .logoTopoPP {
    margin-bottom: 1rem;
  }

  .logoTopoPP img {
    max-width: 110px !important;
    height: auto;
  }

  .fraseTopoPP {
    font-size: clamp(2rem, 12vw, 2.6rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    word-break: normal;
  }

  .fraseTopoPP::after {
    width: 110px;
    bottom: -6px;
  }

  .chamadaTopoPP {
    font-size: 1rem;
    line-height: 1.45;
    max-width: 92%;
    margin: 0 auto 2rem;
  }

  .servicos p:nth-child(2) {
    font-size: 1.2rem;
  }

  .estat_icon {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .estat_nun {
    text-align: center;
  }

  .estat_nun::after {
    margin: 20px auto 0;
  }

  .redes-sociais a {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .logo-clientes-lista {
    animation-duration: 20s;
  }

  .logo-clientes-lista li {
    width: 148px;
    height: 84px;
    padding: 0.7rem;
    border-radius: 12px;
  }

  .logo-clientes-lista li a img {
    max-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-clientes-lista {
    animation: none;
  }
}

/*----------------------Utilities-------------------------*/
.frm-nao-aparece {
  display: none !important;
}

.frm-aparece {
  display: block !important;
}

.load {
  display: none;
  text-align: center;
  margin: 2rem 0;
}

/*----------------------Scrollbar Premium-------------------------*/
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 6px;
  border: 2px solid var(--gray-light);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/*----------------------Selection-------------------------*/
::selection {
  background: var(--primary-color);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white);
}
