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

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ===== LAYOUT ===== */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #27272a;
  padding: 16px 40px;
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #a1a1aa;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #fff;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HEADER ===== */
.header {
  text-align: center;
  margin-bottom: 80px;
  padding-top: 80px;
}

.header h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header p {
  font-size: 1.15rem;
  color: #a1a1aa;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #60a5fa;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s ease-in-out infinite;
}

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

.hero .subtitle {
  font-size: 1.25rem;
  color: #a1a1aa;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(96, 165, 250, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(96, 165, 250, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #f5f5f5;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  border: 1px solid #3f3f46;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #60a5fa;
  color: #60a5fa;
  transform: translateY(-2px);
}

/* ===== SERVICES GRID ===== */
.services-section {
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: #3f3f46;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.service-card p {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin-bottom: 16px;
}

.service-card .features {
  list-style: none;
  padding: 0;
}

.service-card .features li {
  font-size: 0.82rem;
  color: #71717a;
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.service-card .features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: 600;
}

.service-card .link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.service-card .link:hover {
  color: #93c5fd;
}

.service-card .link::after {
  content: ' \2192';
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.badge-blue {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.badge-purple {
  background: rgba(167, 139, 250, 0.15);
  color: #a78bfa;
}

.badge-green {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.badge-orange {
  background: rgba(251, 146, 60, 0.15);
  color: #fb923c;
}

/* ===== ICON BACKGROUNDS ===== */
.icon-blue { background: rgba(96, 165, 250, 0.12); }
.icon-purple { background: rgba(167, 139, 250, 0.12); }
.icon-green { background: rgba(74, 222, 128, 0.12); }
.icon-orange { background: rgba(251, 146, 60, 0.12); }
.icon-red { background: rgba(248, 113, 113, 0.12); }
.icon-cyan { background: rgba(34, 211, 238, 0.12); }
.icon-yellow { background: rgba(250, 204, 21, 0.12); }

/* ===== COMING SOON ===== */
.coming-soon {
  position: relative;
}

.coming-soon::after {
  content: 'PR\00D3XIMAMENTE';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(251, 146, 60, 0.15);
  color: #fb923c;
}

/* ===== DIVIDER ===== */
.divider {
  border: none;
  border-top: 1px solid #27272a;
  margin: 60px 0;
}

/* ===== ABOUT CARD ===== */
.about-section {
  margin-bottom: 80px;
  text-align: center;
}

.about-card {
  background: linear-gradient(135deg, #18181b 0%, #1e1b4b 100%);
  border: 1px solid #312e81;
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-card .role {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a78bfa;
  margin-bottom: 16px;
}

.about-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.about-card .bio {
  font-size: 1rem;
  color: #a1a1aa;
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.about-card .skills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.about-card .skill-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(96, 165, 250, 0.1);
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

/* ===== CUSTOM SERVICES / OFFER ===== */
.custom-services {
  margin-bottom: 80px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.offer-item {
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.offer-item:hover {
  border-color: #a78bfa;
  transform: translateY(-2px);
}

.offer-item .offer-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.offer-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 0.82rem;
  color: #71717a;
}

/* ===== STATS ===== */
.stats-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 60px;
}

.stat {
  text-align: center;
}

.stat .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}

.stat .label {
  font-size: 0.8rem;
  color: #71717a;
  margin-top: 4px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  margin: 60px 0;
  padding: 48px 32px;
  background: linear-gradient(135deg, #1e3a5f 0%, #1e1b4b 50%, #18181b 100%);
  border-radius: 20px;
  border: 1px solid #312e81;
}

.cta-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-section p {
  color: #a1a1aa;
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.cta-btn:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.cta-btn svg {
  width: 22px;
  height: 22px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a1a1aa;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 10px;
  color: #f5f5f5;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #60a5fa;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(96, 165, 250, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(96, 165, 250, 0.4);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #27272a;
}

.footer p {
  color: #71717a;
  font-size: 0.85rem;
}

.footer .contact {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #a1a1aa;
}

.footer a {
  color: #60a5fa;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page {
    padding: 40px 20px;
  }

  .navbar {
    padding: 12px 20px;
  }

  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid #27272a;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-toggle {
    display: block;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .header h1 {
    font-size: 2.2rem;
  }

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

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

  .stats-row {
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== PRINT ===== */
@media print {
  body {
    background: #fff;
    color: #1a1a1a;
  }

  .navbar {
    display: none;
  }

  .service-card {
    background: #f9fafb;
    border-color: #e5e7eb;
    break-inside: avoid;
  }

  .service-card h3 {
    color: #1a1a1a;
  }

  .header h1,
  .hero h1 {
    -webkit-text-fill-color: #2563eb;
    color: #2563eb;
  }

  .section-heading {
    color: #1a1a1a;
  }
}
