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

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

:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --white:    #ffffff;
}

html, body {
  min-height: 100%;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 30%, #f0f9ff 60%, #e0f2fe 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Decorative circles ── */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::before {
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.22) 0%, transparent 70%);
}
body::after {
  bottom: -10%;
  left: -5%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(29,78,216,0.18) 0%, transparent 70%);
}

/* ── Layout ── */
main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
}

/* ── Logo icon ── */
.brand-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.brand-icon-outer {
  position: relative;
  display: inline-flex;
}
.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(59,130,246,0.35);
  animation: pulseRing 2s ease-out infinite;
}
.brand-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.brand-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
  stroke: #fff;
}

/* ── Brand name ── */
.brand-name {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.brand-sub {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 2rem;
}

/* ── Titles ── */
.main-title {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

/* ── Service pill ── */
.service-pill {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 1.25rem;
  padding: 0.9rem 1.5rem;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 500;
  color: var(--blue-700);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}
.service-pill strong { font-weight: 700; }

/* ── Countdown ── */
.countdown-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 1rem;
}
.countdown {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.counter-card {
  background: linear-gradient(135deg, rgba(30,64,175,0.08) 0%, rgba(59,130,246,0.05) 100%);
  border: 1px solid rgba(59,130,246,0.2);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.counter-value {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--blue-700);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.counter-unit {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 0.3rem;
  font-weight: 500;
}
.sep {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--blue-400);
  margin-bottom: 1.2rem;
}

/* ── Contact buttons ── */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: scale(1.05); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { box-shadow: 0 6px 24px rgba(37,211,102,0.55); }

.btn-email {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}
.btn-email:hover { box-shadow: 0 6px 24px rgba(59,130,246,0.55); }

/* ── Social ── */
.social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.social-label {
  font-size: 0.85rem;
  color: var(--gray-400);
}
.btn-facebook {
  background: #1877f2;
  box-shadow: 0 2px 12px rgba(24,119,242,0.3);
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
}
.btn-facebook:hover { box-shadow: 0 4px 18px rgba(24,119,242,0.5); }

/* ── Service cards ── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 560px;
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 600px) {
  .service-cards { grid-template-columns: repeat(4, 1fr); }
}

.scard {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease;
}
.scard:hover { box-shadow: 0 4px 16px rgba(59,130,246,0.15); }
.scard svg {
  width: 36px;
  height: 36px;
  stroke: var(--blue-500);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scard-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
}
.scard-desc {
  font-size: 0.7rem;
  color: var(--gray-500);
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem;
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ── Floating WhatsApp ── */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #fff;
}
.fab-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.fab-whatsapp svg { width: 28px; height: 28px; }
.fab-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: pulseRing 2s ease-out infinite;
}

/* ── Animations ── */
@keyframes pulseRing {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}
.d1  { animation-delay: 0.05s; }
.d2  { animation-delay: 0.15s; }
.d3  { animation-delay: 0.25s; }
.d4  { animation-delay: 0.35s; }
.d5  { animation-delay: 0.45s; }
.d6  { animation-delay: 0.55s; }
.d7  { animation-delay: 0.65s; }
.d8  { animation-delay: 0.75s; }
.d9  { animation-delay: 0.85s; }

/* ── Responsive tweaks ── */
@media (max-width: 480px) {
  .contact-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }
  .counter-card { min-width: 60px; padding: 0.75rem 0.85rem; }
  .sep { margin-bottom: 0.9rem; }
}
