@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --font-outfit: 'Outfit', sans-serif;
  --font-space-mono: 'Space Mono', monospace;
  --radius: 0.625rem;
  --background: #0b1220;
  --foreground: #eef2ff;
  --card: #0f172a;
  --card-foreground: #eef2ff;
  --popover: #0f172a;
  --popover-foreground: #eef2ff;
  --primary: #4f8bf9;
  --primary-foreground: #ffffff;
  --secondary: #0b1a2e;
  --secondary-foreground: #e2e8f0;
  --muted: #0f1f35;
  --muted-foreground: #94a3b8;
  --accent: #7dd3fc;
  --accent-foreground: #0b1220;
  --destructive: #ef4444;
  --border: rgba(255, 255, 255, 0.08);
  --input: rgba(255, 255, 255, 0.12);
  --ring: #4f8bf9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-outfit);
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  line-height: 1.6;
}

.hidden {
  display: none !important;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #22d3ee 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: var(--muted-foreground);
}

/* Glass Effect */
.glass {
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logo Loader */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #0b1220, #0f1729, #151d35);
}

.loader-background {
  position: absolute;
  inset: 0;
}

.loader-gradient-1,
.loader-gradient-2 {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: pulse-gradient 2s ease-in-out infinite;
}

.loader-gradient-1 {
  background: radial-gradient(ellipse at 30% 40%, rgba(99,102,241,0.15) 0%, transparent 60%);
}

.loader-gradient-2 {
  background: radial-gradient(ellipse at 70% 60%, rgba(34,211,238,0.12) 0%, transparent 60%);
  animation-delay: 0.5s;
}

@keyframes pulse-gradient {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.loader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 18rem;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.4));
  animation: float 3s ease-in-out infinite;
}

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

.loader-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.loader-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

.loader-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Contact Banner */
.contact-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0.75rem;
  z-index: 120;
  width: min(1100px, calc(100% - 24px));
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translate(-50%, -80px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.contact-banner-content {
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
}

@media (min-width: 640px) {
  .contact-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.contact-banner-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .contact-banner-info {
    align-items: center;
  }
}

.contact-banner-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(79, 139, 249, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-banner-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.contact-banner-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.contact-banner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

@media (min-width: 640px) {
  .contact-banner-links {
    justify-content: flex-end;
  }
}

.contact-banner-btn {
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.contact-banner-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-banner-btn.whatsapp {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}

.contact-banner-btn.whatsapp:hover {
  background: rgba(34, 197, 94, 0.25);
}

.contact-banner-close {
  padding: 0.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: background 0.2s;
}

.contact-banner-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: slideDown 0.8s ease-out;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

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

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-menu {
    display: flex;
  }
}

.navbar-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.navbar-link:hover {
  color: var(--foreground);
  transform: scale(1.1);
}

.navbar-cta {
  display: none;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3), 0 0 80px rgba(99, 102, 241, 0.15);
}

@media (min-width: 768px) {
  .navbar-cta {
    display: block;
  }
}

.navbar-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.4);
}

.navbar-cta:active {
  transform: scale(0.95);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu-link:hover {
  color: var(--foreground);
}

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-backdrop {
  position: absolute;
  inset: 0;
}

.popup-content {
  position: relative;
  max-width: 28rem;
  width: 100%;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.popup-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.popup-desc {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.popup-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.popup-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.popup-link:hover {
  transform: translateX(5px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
}

.popup-link:active {
  transform: scale(0.98);
}

.popup-link-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(79, 139, 249, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.2s;
}

.popup-link:hover .popup-link-icon {
  background: rgba(79, 139, 249, 0.2);
}

.popup-link-icon.whatsapp {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.popup-link:hover .popup-link-icon.whatsapp {
  background: rgba(34, 197, 94, 0.2);
}

.popup-link-content {
  flex: 1;
}

.popup-link-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.popup-link-value {
  font-weight: 500;
}

.popup-link svg:last-child {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.popup-link:hover svg:last-child {
  color: var(--primary);
}

.popup-link.whatsapp:hover .popup-link-arrow {
  color: #22c55e;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3), 0 0 80px rgba(99, 102, 241, 0.15);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.4);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--foreground);
  position: relative;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #6366f1 0%, #22d3ee 50%, #a855f7 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn-secondary:hover {
  transform: scale(1.05);
}

.btn-secondary:active {
  transform: scale(0.95);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.15) 0%, transparent 70%);
}

.hero-bg-circle {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(128px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-bg-circle-1 {
  top: 25%;
  left: 25%;
  background: rgba(99, 102, 241, 0.2);
}

.hero-bg-circle-2 {
  bottom: 25%;
  right: 25%;
  background: rgba(34, 211, 238, 0.2);
  animation-delay: 1s;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 3rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.8s both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted-foreground);
  animation: fadeIn 1.5s ease-out both, bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
.section-label {
  color: var(--accent);
  font-family: var(--font-space-mono);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* About Section */
.about-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.about-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(34,211,238,0.1) 0%, transparent 50%);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-text {
  animation: fadeInLeft 0.8s ease-out both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.feature-card:hover {
  transform: scale(1.05) translateY(-5px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(79, 139, 249, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.feature-card:hover .feature-icon {
  background: rgba(79, 139, 249, 0.2);
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Services Section */
.services-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.services-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(99,102,241,0.1) 0%, transparent 50%);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.service-automation::before {
  background: linear-gradient(to bottom right, rgba(14, 165, 233, 0.1), rgba(29, 78, 216, 0.1));
}

.service-marketing::before {
  background: linear-gradient(to bottom right, rgba(34, 211, 238, 0.1), rgba(37, 99, 235, 0.1));
}

.service-photo::before {
  background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.1));
}

.service-web::before {
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
}

.service-card:hover {
  transform: scale(1.02) translateY(-5px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon-automation {
  background: linear-gradient(to bottom right, #0ea5e9, #1d4ed8);
  color: white;
}

.service-icon-marketing {
  background: linear-gradient(to bottom right, #22d3ee, #2563eb);
  color: white;
}

.service-icon-photo {
  background: linear-gradient(to bottom right, #6366f1, #3b82f6);
  color: white;
}

.service-icon-web {
  background: linear-gradient(to bottom right, #10b981, #14b8a6);
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s;
}

.service-card:hover .service-title {
  text-decoration-color: rgba(79, 139, 249, 0.6);
}

.service-desc {
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-foreground);
}

/* Advantages Section */
.advantages-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.advantages-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.1) 0%, transparent 50%);
}

.advantages-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.advantage-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.3s;
}

.advantage-card:hover {
  transform: scale(1.03);
}

.advantage-number {
  position: absolute;
  right: -1rem;
  top: -1rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  transition: color 0.3s;
}

.advantage-card:hover .advantage-number {
  color: rgba(79, 139, 249, 0.1);
}

.advantage-num-label {
  color: var(--primary);
  font-family: var(--font-space-mono);
  font-size: 0.875rem;
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.advantage-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Contacts Section */
.contacts-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contacts-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(34,211,238,0.1) 0%, transparent 50%);
}

.contacts-container {
  max-width: 48rem;
  margin: 0 auto;
}

.contacts-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contacts-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.contacts-desc {
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  text-align: center;
}

.contacts-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.contact-link:hover {
  transform: translateX(5px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
}

.contact-link:active {
  transform: scale(0.98);
}

.contact-link-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(79, 139, 249, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.2s;
}

.contact-link:hover .contact-link-icon {
  background: rgba(79, 139, 249, 0.2);
}

.contact-link-icon.whatsapp {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.contact-link:hover .contact-link-icon.whatsapp {
  background: rgba(34, 197, 94, 0.2);
}

.contact-link-content {
  flex: 1;
}

.contact-link-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-link-value {
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-link svg:last-child {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.contact-link:hover svg:last-child {
  color: var(--primary);
}

.contact-link.whatsapp:hover .contact-link-arrow {
  color: #22c55e;
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
  }
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}