@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter_18pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter_18pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter_18pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter_18pt-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #0D1117;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(11,31,58,0.85) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background-color: rgba(13,17,23,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

.logo img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  transition: opacity 0.22s ease;
}

.logo:hover img {
  opacity: 0.75;
}

main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.page-card {
  text-align: center;
  max-width: 520px;
  width: 100%;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.75rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #3B82F6;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.page-title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.page-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contact-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}

.contact-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.contact-buttons {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: default;
  white-space: nowrap;
  text-decoration: none;
}

.btn-phone {
  background: #0B1F3A;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-email {
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.14);
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social-row-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-right: 4px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(1.15);
}

.social-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-facebook { background: #1877F2; }
.social-whatsapp { background: #25D366; }

.site-footer {
  position: relative;
  z-index: 10;
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}

@media (max-width: 480px) {
  .site-header     { padding: 0 1rem; }
  .site-footer     { padding: 1rem; }
  .page-card       { padding: 0 0.25rem; }
  .contact-box     { padding: 1.25rem 1rem; }
  .contact-buttons { flex-direction: column; align-items: center; }
  .btn             { width: 100%; justify-content: center; }
}