:root {
  --bg: #ffffff;
  --fg: #111827;
  --muted: #6b7280;
  --accent: #111827;
  --border: #e5e7eb;
  --primary: #3b82f6;
  --success: #10b981;
  --warning: #f59e0b;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
  z-index: 10;
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  padding: 20px 0;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.8);
  margin: 0 -24px 24px -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(107, 114, 128, 0.1);
  color: var(--fg);
  transform: translateY(-1px);
}
/* ===== BACKGROUND ANIMATIONS ===== */
.bg-animations {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite linear;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  bottom: 30%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  top: 40%;
  left: 60%;
  animation-delay: -15s;
}

.shape-5 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #fa709a, #fee140);
  top: 70%;
  right: 30%;
  animation-delay: -8s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* ===== MAIN ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-4px);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.bounce-animation {
  animation: bounce 2s infinite;
}

.rotating-icon {
  animation: rotate 3s linear infinite;
}

.typing-animation {
  overflow: hidden;
  border-right: 2px solid transparent;
  white-space: nowrap;
  animation: typing 2s steps(20, end) 0.8s forwards;
}

.hero {
  padding: 60px 0 80px 0;
  display: grid;
  gap: 12px;
  place-items: center;
  text-align: center;
  min-height: 80vh;
  position: relative;
}
/* ===== CONSTRUCTION ELEMENTS ===== */
.construction-icon {
  text-align: center;
  margin-bottom: 24px;
}

.construction-icon i {
  font-size: 48px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.progress-container {
  margin: 32px 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.progress-label {
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  font-size: 14px;
}

.progress-bar {
  background: rgba(148, 163, 184, 0.2);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}

.progress-fill {
  background: linear-gradient(90deg, #10b981, #059669);
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 0.1s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 20px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(20px);
  }
}

.progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.progress-percentage {
  font-weight: 600;
  color: var(--success);
}

/* ===== STATUS INDICATORS ===== */
.status-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.status-dot.active {
  background: var(--success);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.status-dot.in-progress {
  background: var(--warning);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
  animation: pulse 2s infinite;
}

.status-dot.in-progress::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  margin-top: 32px;
}

.contact-info {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  color: var(--primary);
}

/* ===== RESPONSIVE GRID UTILITIES ===== */
.grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-info {
    gap: 32px;
  }
  
  .status-indicators {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ===== ENHANCED BACKGROUND & PREMIUM STYLING ===== */
body {
  background: 
    radial-gradient(1400px 900px at 0% 0%, #eef2ff 0%, rgba(238, 242, 255, 0) 70%),
    radial-gradient(1200px 800px at 100% 0%, #ecfeff 0%, rgba(236, 254, 255, 0) 65%),
    radial-gradient(1000px 700px at 50% 100%, #fef3c7 0%, rgba(254, 243, 199, 0) 50%),
    radial-gradient(800px 600px at 80% 20%, #f0f9ff 0%, rgba(240, 249, 255, 0) 60%),
    #ffffff;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    linear-gradient(45deg, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

.headline {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #0f172a 0%, #334155 50%, #0f172a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
}

@media (min-width: 768px) {
  .headline {
    font-size: 64px;
  }
}

.lead {
  font-size: 18px;
  color: #475569;
  margin: 0 0 16px;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.glass {
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  padding: 48px 32px;
  box-shadow: 
    0 20px 40px rgba(15, 23, 42, 0.1),
    0 1px 3px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  transition: all 0.4s ease;
}

.glass:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 32px 64px rgba(15, 23, 42, 0.15),
    0 1px 3px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 16px;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 
    0 8px 25px rgba(16, 185, 129, 0.3),
    0 3px 8px rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.whatsapp-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: left 0.6s;
}

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

.whatsapp-btn:hover {
  text-decoration: none;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(16, 185, 129, 0.4),
    0 5px 15px rgba(16, 185, 129, 0.3);
}

.whatsapp-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.wa-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.7);
  color: #0f172a;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.pill:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.9);
}

.accent-ring {
  position: relative;
  z-index: 5;
}

.accent-ring::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.1) 0%,
    rgba(59, 130, 246, 0.1) 25%,
    rgba(168, 85, 247, 0.1) 50%,
    rgba(236, 72, 153, 0.1) 75%,
    rgba(16, 185, 129, 0.1) 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  z-index: -1;
  animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { 
    background: linear-gradient(135deg, 
      rgba(16, 185, 129, 0.1) 0%,
      rgba(59, 130, 246, 0.1) 25%,
      rgba(168, 85, 247, 0.1) 50%,
      rgba(236, 72, 153, 0.1) 75%,
      rgba(16, 185, 129, 0.1) 100%);
  }
  25% { 
    background: linear-gradient(135deg, 
      rgba(59, 130, 246, 0.1) 0%,
      rgba(168, 85, 247, 0.1) 25%,
      rgba(236, 72, 153, 0.1) 50%,
      rgba(16, 185, 129, 0.1) 75%,
      rgba(59, 130, 246, 0.1) 100%);
  }
  50% { 
    background: linear-gradient(135deg, 
      rgba(168, 85, 247, 0.1) 0%,
      rgba(236, 72, 153, 0.1) 25%,
      rgba(16, 185, 129, 0.1) 50%,
      rgba(59, 130, 246, 0.1) 75%,
      rgba(168, 85, 247, 0.1) 100%);
  }
  75% { 
    background: linear-gradient(135deg, 
      rgba(236, 72, 153, 0.1) 0%,
      rgba(16, 185, 129, 0.1) 25%,
      rgba(59, 130, 246, 0.1) 50%,
      rgba(168, 85, 247, 0.1) 75%,
      rgba(236, 72, 153, 0.1) 100%);
  }
}

/* ===== MOBILE RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 768px) {
  .headline {
    font-size: 36px;
  }
  
  .glass {
    padding: 32px 24px;
    margin: 0 16px;
  }
  
  .construction-icon i {
    font-size: 40px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 12px;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    padding: 6px 12px;
    font-size: 13px;
  }
}
