/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh; /* Garantir altura mínima */
}

/* CSS Variables - Luxury Space Theme */
:root {
  --brand-red: #ef4444;
  --cosmic-black: #000000;
  --deep-space: #0a0a0f;
  --space-blue: #1e3a8a;
  --electric-blue: #3b82f6;
  --cosmic-cyan: #06b6d4;
  --stellar-white: #ffffff;
  --platinum: #e5e7eb;
  --space-gray: #374151;
  --dark-matter: #1f2937;

  /* Removendo tons rosa/magenta e focando em azuis espaciais */
  --gradient-cosmic: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 30%, #06b6d4 60%, #ffffff 100%);
  --gradient-galaxy: radial-gradient(
    ellipse at center,
    rgba(30, 58, 138, 0.4) 0%,
    rgba(59, 130, 246, 0.3) 25%,
    rgba(6, 182, 212, 0.2) 50%,
    transparent 70%
  );
  --gradient-nebula: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(30, 58, 138, 0.4) 0%, transparent 40%);

  --shadow-cosmic: 0 0 40px rgba(59, 130, 246, 0.6);
  --shadow-stellar: 0 0 50px rgba(6, 182, 212, 0.5);
  --shadow-platinum: 0 0 30px rgba(255, 255, 255, 0.3);

  --border-radius: 16px;
  --border-radius-lg: 24px;

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Universe Background - Agora Global */
.universe-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* Mais baixo para ficar atrás de tudo */
  background: radial-gradient(ellipse at top, #1e3a8a 0%, transparent 50%),
    radial-gradient(ellipse at bottom, #0f172a 0%, #000000 50%),
    linear-gradient(180deg, #000000 0%, #0f172a 50%, #1e3a8a 100%);
}

.stars-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

.star.small {
  width: 1px;
  height: 1px;
  opacity: 0.8;
}

.star.medium {
  width: 2px;
  height: 2px;
  opacity: 0.9;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.star.large {
  width: 3px;
  height: 3px;
  opacity: 1;
  box-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

.star.colored {
  animation: colorTwinkle 4s infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes colorTwinkle {
  0%,
  100% {
    opacity: 0.5;
    filter: hue-rotate(0deg);
  }
  25% {
    opacity: 1;
    filter: hue-rotate(90deg);
  }
  50% {
    opacity: 0.7;
    filter: hue-rotate(180deg);
  }
  75% {
    opacity: 1;
    filter: hue-rotate(270deg);
  }
}

.galaxy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-galaxy);
  animation: galaxyRotate 60s linear infinite;
}

@keyframes galaxyRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.nebula-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-nebula);
  animation: nebulaFloat 40s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes nebulaFloat {
  0%,
  100% {
    transform: translateX(0) translateY(0) scale(1);
  }
  25% {
    transform: translateX(20px) translateY(-30px) scale(1.05);
  }
  50% {
    transform: translateX(-15px) translateY(20px) scale(0.95);
  }
  75% {
    transform: translateX(25px) translateY(10px) scale(1.02);
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 2rem 0;
  background: transparent; /* Remover background próprio */
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 550px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content */
.hero-content {
  max-width: 700px;
}

.brand-logo {
  margin-bottom: 4rem;
  text-align: left;
}

.brand-text {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  text-transform: lowercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 30px rgba(99, 102, 241, 0.8), 0 0 60px rgba(6, 182, 212, 0.4);
  animation: brandPulse 3s ease-in-out infinite;
  display: block;
}

.brand-text .dot {
  color: #ef4444;
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.8), 0 0 40px rgba(239, 68, 68, 0.4);
  -webkit-text-fill-color: #ef4444 !important;
  background: none !important;
}

.brand-subtitle {
  font-family: "Orbitron", monospace;
  font-size: 0.875rem;
  color: var(--gray-medium);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 0.5rem;
  opacity: 0.8;
}

@keyframes brandPulse {
  0%,
  100% {
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.8), 0 0 60px rgba(6, 182, 212, 0.4);
  }
  50% {
    text-shadow: 0 0 40px rgba(99, 102, 241, 1), 0 0 80px rgba(6, 182, 212, 0.6);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.cosmic-text {
  background: var(--gradient-cosmic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: cosmicGlow 2s ease-in-out infinite alternate;
}

.cosmic-text::after {
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #ffffff);
  opacity: 0.2;
  filter: blur(15px);
  z-index: -1;
  animation: cosmicBlur 2s ease-in-out infinite alternate;
}

@keyframes cosmicGlow {
  0% {
    filter: brightness(1) saturate(1);
  }
  100% {
    filter: brightness(1.3) saturate(1.5);
  }
}

@keyframes cosmicBlur {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  100% {
    opacity: 0.4;
    transform: scale(1.1);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-subtitle strong {
  color: var(--stellar-white);
  font-weight: 600;
  background: linear-gradient(135deg, var(--cosmic-cyan), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-glow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: statGlow 3s ease-in-out infinite;
}

@keyframes statGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-cosmic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-medium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-light);
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
}

.feature-pulse {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--cosmic-cyan);
  border-radius: 50%;
  animation: featurePulse 2s ease-in-out infinite;
}

@keyframes featurePulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.5);
    box-shadow: 0 0 20px rgba(6, 182, 212, 1);
  }
}

.feature-icon {
  font-size: 1.25rem;
  filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.8));
}

/* Seção CTA Separada - Centralizada Horizontal e Verticalmente */
.cta-section {
  min-height: auto; /* Remover altura mínima */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0 2rem 0; /* Adicionar padding-bottom para criar espaçamento visual */
  margin-top: -2rem; /* Aproximar da hero */
  background: transparent;
}

.cta-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-content {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  padding: 3rem 4rem;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.cta-content p {
  color: var(--gray-light);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.highlight {
  color: var(--cosmic-cyan);
  font-weight: 600;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
}

/* Responsive para CTA Section */
@media (max-width: 768px) {
  .cta-section {
    min-height: auto; /* Remover altura mínima */
    padding: 1rem 0; /* Manter um pouco de espaço no mobile */
    margin-top: 0; /* Resetar margin no mobile */
  }

  .cta-content {
    padding: 2.5rem 2rem;
  }

  .cta-content p {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .cta-section {
    min-height: auto; /* Remover altura mínima */
    padding: 1rem 0; /* Manter espaço no mobile */
    margin-top: 0; /* Resetar margin no mobile */
  }

  .cta-content {
    padding: 2rem 1.5rem;
  }

  .cta-content p {
    font-size: 1.125rem;
  }
}

/* Right Form */
.hero-form {
  position: relative;
}

.form-container {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.form-cosmic-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-cosmic);
  border-radius: var(--border-radius-lg);
  padding: 2px;
  z-index: -1;
}

.form-cosmic-border::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: rgba(10, 10, 15, 0.95);
  border-radius: calc(var(--border-radius-lg) - 2px);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  background: var(--gradient-cosmic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  color: var(--gray-medium);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--stellar-cyan);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 50px;
}

.guarantee-icon {
  font-size: 1rem;
  filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.8));
}

.cosmic-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--stellar-cyan);
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.form-group input::placeholder {
  color: var(--gray-medium);
}

.input-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-cosmic);
  border-radius: var(--border-radius);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.form-group input:focus + .input-glow,
.form-group select:focus + .input-glow {
  opacity: 0.2;
  animation: inputPulse 2s ease-in-out infinite;
}

@keyframes inputPulse {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.02);
  }
}

.form-group label {
  position: absolute;
  top: -8px;
  left: 16px;
  background: var(--deep-space);
  padding: 0 8px;
  font-size: 0.75rem;
  color: var(--gray-medium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--deep-space);
  color: var(--white);
}

.cosmic-submit {
  position: relative;
  background: transparent;
  color: var(--white);
  border: none;
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  z-index: 1;
}

.btn-cosmic-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-cosmic);
  border-radius: var(--border-radius);
  z-index: -1;
  transition: var(--transition);
}

.cosmic-submit:hover .btn-cosmic-bg {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.cosmic-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-cosmic);
}

.cosmic-submit:active {
  transform: translateY(-1px);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.cosmic-submit:hover .btn-particles::before,
.cosmic-submit:hover .btn-particles::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  animation: particles 1s ease-out;
}

.cosmic-submit:hover .btn-particles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.cosmic-submit:hover .btn-particles::after {
  bottom: 20%;
  right: 20%;
  animation-delay: 0.3s;
}

@keyframes particles {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0) translateY(-20px);
  }
}

/* Cosmic Elements */
.cosmic-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cosmic-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-1 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  top: 20%;
  left: 10%;
  animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
  top: 60%;
  right: 15%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
  bottom: 30%;
  left: 20%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -20px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 40px) scale(0.9);
  }
  75% {
    transform: translate(40px, 20px) scale(1.05);
  }
}

@keyframes orbFloat2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-40px, 30px) scale(1.2);
  }
  66% {
    transform: translate(20px, -40px) scale(0.8);
  }
}

@keyframes orbFloat3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -30px) scale(1.3);
  }
}

/* Footer com Overlay */
.footer {
  background: transparent; /* Remover background próprio */
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding: 3rem 0 2rem;
  margin-top: 0; /* Remover margin negativo */
  position: relative;
  z-index: 1;
}

/* Overlay Escuro no Footer */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Diminuir para 40% de transparência */
  backdrop-filter: blur(20px); /* Aumentar blur */
  z-index: -1;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  flex: 1;
}

.footer-brand .brand-logo {
  margin-bottom: 0;
}

.footer-brand .brand-text {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  display: block;
}

.footer-brand .brand-subtitle {
  margin-top: 0.25rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--platinum);
  text-decoration: none;
  font-size: 1.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-cosmic);
  opacity: 0;
  transition: var(--transition);
  border-radius: 50%;
}

.social-link:hover .social-glow {
  opacity: 0.3;
}

.social-link:hover {
  border-color: var(--cosmic-cyan);
  color: var(--cosmic-cyan);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.social-link i {
  position: relative;
  z-index: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.footer-bottom p {
  color: var(--platinum);
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-brand-name {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--stellar-white);
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

.footer-dot {
  color: #ef4444 !important;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
  font-weight: 900;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-content {
    margin-bottom: 2rem;
  }

  .footer-brand .brand-text {
    font-size: 1.5rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-social {
    font-size: 1.5rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-social {
    gap: 1rem;
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: var(--transition);
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .form-container {
    padding: 2rem;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.5rem;
  }

  .hero-cta-section {
    margin-top: 3rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
  }

  .hero-cta-text {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem 0;
  }

  .hero-title {
    font-size: 2.rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .form-container {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .brand-text {
    font-size: 2rem;
  }

  .hero-cta-section {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .hero-cta-text {
    padding: 1.5rem 1rem;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading .btn-text::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Selection */
::selection {
  background: rgba(99, 102, 241, 0.3);
  color: var(--white);
}

::-moz-selection {
  background: rgba(99, 102, 241, 0.3);
  color: var(--white);
}
