/* Base */
/* Tipografía y base */
body {
  font-family: 'Archivo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #050810;
  color: #f5f5f5;
}

/* Navbar específica servicios */
.navbar {
  background: linear-gradient(90deg, #020617, #0f172a);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-link.active,
.nav-link:hover {
  color: #38bdf8 !important;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #020617;
  color: #e5e7eb;
}

/* Header */
header {
  background: linear-gradient(90deg, #020617, #0f172a);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

header p {
  margin: 0;
  font-size: 1rem;
  color: #cbd5f5;
}

/* Carrusel */
#logoCarousel {
  max-height: 320px;
  overflow: hidden;
}

#logoCarousel img {
  object-fit: cover;
  max-height: 320px;
}

/* Sección contacto */
#contacto {
  color: #e5e7eb;
}

#contacto h2 {
  font-size: 1.9rem;
  font-weight: 700;
}

#contacto p {
  color: #cbd5f5;
}

/* Datos de contacto */
#contacto a {
  color: #38bdf8;
  text-decoration: none;
}

#contacto a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

/* Formulario */
form {
  background: radial-gradient(circle at top, #0f172a, #020617 60%);
  border-radius: 0.9rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.form-label {
  font-weight: 500;
  color: #e5e7eb;
}

.form-control {
  background-color: #020617;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.form-control:focus {
  background-color: #020617;
  border-color: #38bdf8;
  box-shadow: 0 0 0 0.15rem rgba(56, 189, 248, 0.35);
}

/* Botón enviar */
.btn-primary {
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  border: none;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #0284c7, #16a34a);
}

/* Footer */
footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617 !important;
  color: #9ca3af;
}

footer a {
  color: #38bdf8;
}

footer a:hover {
  color: #0ea5e9;
}

/* Responsive */
@media (max-width: 767.98px) {
  header h1 {
    font-size: 1.8rem;
  }

  #logoCarousel {
    max-height: 240px;
  }

  #logoCarousel img {
    max-height: 240px;
  }

  form {
    padding: 1.5rem 1.25rem;
  }
}
