/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0B1220;
  color: #FFFFFF;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  background: rgba(11, 18, 32, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 22px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 78px;
}

/* ===== NAV ===== */
.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-desktop a {
  color: #FFFFFF;
  margin-left: 24px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #32CD32, #1E88E5);
  transition: width .3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* ===== BUTTON ===== */
/* ===== BOTÃO PREMIUM TECH SHIMMER ===== */
.btn {
  padding: 12px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.2), rgba(30, 136, 229, 0.2));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(50, 205, 50, 0.3);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.5s;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.3), rgba(30, 136, 229, 0.3));
  border-color: rgba(50, 205, 50, 0.5);
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(50, 205, 50, 0.15), transparent),
    radial-gradient(circle at bottom, rgba(30, 136, 229, 0.15), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(50, 205, 50, 0.06), transparent),
    linear-gradient(240deg, transparent, rgba(30, 136, 229, 0.06), transparent);
  animation: pulse 6s infinite alternate;
  pointer-events: none;
}

@keyframes pulse {
  from {
    opacity: .4;
  }

  to {
    opacity: .9;
  }
}

.hero-content {
  max-width: 720px;
  padding: 24px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 22px;
}

.hero p {
  color: #B0BEC5;
  font-size: 18px;
  margin-bottom: 34px;
}

/* ===== SECTION ===== */
.section {
  padding: 90px 22px;
  text-align: center;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 55px;
}

/* ===== CARDS ===== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: auto;
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 34px;
  overflow: hidden;
  transition:
    transform .4s cubic-bezier(.16, 1, .3, 1),
    box-shadow .4s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(50, 205, 50, 0.18),
      rgba(30, 136, 229, 0.18),
      transparent);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .45);
}

.card h3 {
  color: #32CD32;
  margin-bottom: 16px;
}

/* ===== DARK ===== */
.dark {
  background: #070C16;
}


/* Card links */
.card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  color: #32CD32;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s ease;
}

.card a i {
  font-size: 12px;
  transition: transform .2s ease;
}

.card a:hover {
  opacity: 0.8;
}

.card a:hover i {
  transform: translateX(3px);
}

/* ===== FOOTER ===== */
footer {
  padding: 56px 22px 34px;
  text-align: center;
  color: #B0BEC5;
  background: #050910;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: left;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #78909C;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}

.footer-col ul li a:hover {
  color: #32CD32;
}

.footer-col p {
  color: #78909C;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a {
  color: #78909C;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: #32CD32;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  font-size: 13px;
  color: #546E7A;
}

/* ===== MENU MOBILE ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 28px;
  background: #fff;
  margin: 5px 0;
  border-radius: 3px;
  transition: .4s;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 270px;
  height: 100vh;
  background: #070C16;
  display: flex;
  flex-direction: column;
  padding: 110px 32px;
  gap: 26px;
  transition: right .4s ease;
  z-index: 1000;
}

.mobile-menu a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: .4s;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* ===== SCROLL ANIMATIONS – TECH PREMIUM ===== */

[data-animate] {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  filter: blur(12px);
  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.16, 1, .3, 1),
    filter .9s ease;
  will-change: transform, opacity;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Cascata para cards */
.card {
  transition-delay: var(--delay, 0ms);
}

/* Parallax hero */
.hero {
  overflow: hidden;
}



/* ===== TYPING EFFECT ===== */
.type-effect {
  color: #32CD32;
  position: relative;
}

.cursor {
  display: inline-block;
  width: 3px;
  background-color: #fff;
  animation: blink 0.8s infinite;
  margin-left: 2px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ===== SOCIAL ICONS ===== */
.social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.social i {
  font-size: 24px;
  color: #fff;
}

.social a:hover {
  transform: translateY(-3px) scale(1.08);
  background: linear-gradient(135deg, #1E88E5, #32CD32);
  box-shadow: 0 10px 25px rgba(30, 136, 229, 0.4);
}

/* ===== CARD ICONS ===== */
.card i {
  font-size: 42px;
  color: #32CD32;
  margin-bottom: 18px;
  display: block;
}

/* ===== GRID DIGITAL BACKGROUND ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.15;
  z-index: -1;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 160px 160px;
  }
}

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #32CD32, #1E88E5);
  z-index: 2000;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #1EBE57);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
  animation: pulseWhats 2.5s infinite;
  z-index: 1500;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes pulseWhats {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

/* Garante que nada fique invisível se JS falhar */
.no-js [data-animate] {
  opacity: 1;
  transform: none;
  filter: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(50, 205, 50, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(30, 136, 229, 0.08), transparent 40%);
  animation: ambientMove 18s ease-in-out infinite alternate;
  z-index: -2;
  pointer-events: none;
}

@keyframes ambientMove {
  from {
    transform: translateY(0) translateX(0);
  }

  to {
    transform: translateY(-40px) translateX(40px);
  }
}

/* FUNDO ANIMADO */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at top, #0c0f1a, #05060a);
  overflow: hidden;
}

#techCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* GARANTE LEITURA */
section,
footer {
  position: relative;
  z-index: 1;
}

/* EFEITO SUAVE NO HERO */
.hero {
  background: transparent;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  margin-bottom: 30px;
  font-size: 18px;
  color: #B0BEC5;
}

.contact-info a {
  color: #32CD32;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ===== SERVICES LINKS ===== */

.services-links {
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
}

.services-links h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.services-links ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.services-links li a {
  display: block;
  padding: 16px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}

.services-links li a:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #1E88E5, #32CD32);
  box-shadow: 0 18px 40px rgba(30, 136, 229, 0.35);
}

.services-list {
  list-style: none;
  max-width: 700px;
  margin: 40px auto;
  padding: 0;
}

.services-list li {
  margin-bottom: 18px;
}

.services-list a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.services-list a span {
  font-size: 14px;
  color: #B0BEC5;
}

.services-list a:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

.services-cta {
  margin-top: 50px;
}

.contact-bar {
  position: fixed;
  padding-left: 20px;
  bottom: 0;
  left: 0;
  width: calc(100% - 24px);
  max-width: 600px;
  background: rgba(0, 0, 0, 0.45);
  /* azul com transparência */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 12px 16px;
  z-index: 999;
  font-family: 'Poppins', sans-serif;
}


.contact-bar span {
  font-size: 14px;
}

.contact-bar a {
  background: #25d366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.contact-bar a:hover {
  background: #1ebe5d;
}

/* Evita que a barra cubra o conteúdo */
body {
  padding-bottom: 50px;
}

/* ===== HEADER – REFINED GLASS ===== */
header {
  background: rgba(11, 18, 32, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* ===== NAV DESKTOP ===== */
.dropdown {
  position: relative;
}

.nav-desktop a,
.dropdown-toggle {
  color: rgba(255, 255, 255, 0.85);
  margin-left: 28px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
}

.nav-desktop a:hover,
.dropdown:hover .dropdown-toggle {
  color: #32CD32;
}

/* Arrow Animation */
.dropdown-toggle .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 11px;
  margin-left: 5px;
}

.dropdown:hover .dropdown-toggle .arrow {
  transform: rotate(180deg);
}

/* ===== DROPDOWN MENU – MODERN TECH ===== */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 28px;
  /* Mantém o alinhamento com o margin-left */
  transform: translateY(10px);
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  min-width: 260px;
  padding: 10px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Triangle/Pointer */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 24px;
  /* Alinhado à esquerda */
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-left: 0 !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.dropdown-menu a i {
  font-size: 18px;
  color: #32CD32;
}

.dropdown-menu a:hover {
  background: rgba(50, 205, 50, 0.08);
  color: #fff !important;
  transform: translateX(4px);
}

/* TIMELINE & OTHERS MANTIDOS */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: rgba(50, 205, 50, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 60px;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: #0B1220;
  border: 2px solid #32CD32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 15px rgba(50, 205, 50, 0.2);
}

.timeline-icon i {
  color: #32CD32;
  font-size: 24px;
}

.timeline-content h3 {
  color: #32CD32;
  margin-bottom: 8px;
  font-size: 20px;
}

.timeline-content p {
  color: #B0BEC5;
  font-size: 16px;
  line-height: 1.6;
}

/* MOBILE MENU MODERNO (ACCORDION) */
.mobile-menu {
  background: rgba(7, 12, 22, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-item a,
.accordion-toggle {
  width: 100%;
  padding: 18px 0;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-toggle {
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
  padding-left: 14px;
}

.accordion-content a {
  padding: 14px 0;
  font-size: 15px;
  color: #B0BEC5;
}

.accordion.open .accordion-content {
  max-height: 500px;
}

.accordion.open .arrow {
  transform: rotate(180deg);
}

.arrow {
  transition: transform 0.3s ease;
}

.mobile-item a:active,
.accordion-toggle:active {
  background: rgba(255, 255, 255, 0.06);
}

/* CONTACT BAR */
.contact-bar {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1500;
}

.contact-bar span {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
}

.contact-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.contact-main {
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.2), rgba(30, 136, 229, 0.2));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(50, 205, 50, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.contact-main::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: 0.5s;
}

.contact-main:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.3), rgba(30, 136, 229, 0.3));
  border-color: rgba(50, 205, 50, 0.5);
  box-shadow: 0 12px 32px rgba(50, 205, 50, 0.3);
}

.contact-main:hover::before {
  left: 100%;
}

.contact-options {
  display: flex;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px) scale(0.96);
  pointer-events: none;
  transition: all 0.22s ease;
}

.contact-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.contact-options a {
  padding: 10px 14px;
  font-size: 14px;
  color: #fff;
  background: rgba(32, 205, 170, 0.1);
  border: 1px solid rgba(32, 205, 170, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.contact-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(32, 205, 170, 0.65);
}

.contact-options a:hover {
  background: rgba(32, 205, 170, 0.22);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .contact-bar {
    bottom: 10px;
    width: calc(100% - 16px);
    padding: 8px 12px;
    border-radius: 20px;
    gap: 8px;
  }

  .contact-bar span {
    font-size: 13px;
    font-weight: 500;
  }

  .contact-main {
    padding: 10px 16px;
    font-size: 11px;
    border-radius: 14px;
  }

  /* Popup Mobile "App-Style" */
  .contact-options {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    left: 0;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px) scale(0.95);
    width: auto;
  }

  .contact-options.active {
    transform: translateY(0) scale(1);
  }

  .contact-options a {
    padding: 14px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    justify-content: center;
    width: 100%;
  }

  .contact-options a:active {
    background: rgba(50, 205, 50, 0.15);
    transform: scale(0.98);
  }
}