/* ===== BASE STYLES ===== */
/* Fuente Alexandria de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@400;500;700&display=swap');

/* Layout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Alexandria', 'Segoe UI', Arial, sans-serif !important;
}

main {
  flex: 1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

/* ===== CARDS ===== */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.card-body {
  padding: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #eaa666 0%, #a2754b 100%);
  border: none;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, rgb(197, 146, 99) 0%, #a2754b 100%);
  border: none;
}

/* ===== FORMS ===== */
.form-control, .form-select {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: #eaa166;
  box-shadow: 0 0 0 0.2rem rgba(234, 172, 102, 0.25);
}

/* ===== IMAGES ===== */
.img-fluid {
  border-radius: 8px;
}

/* ===== UTILITIES ===== */
.shadow-sm {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.shadow-lg {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
}

.text-gradient {
  background: linear-gradient(135deg, rgb(197, 146, 99) 0%, #a2754b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.fade-in {
  animation: fadeIn 0.5s ease-out;
}

/* ===== OCULTAR TEMPORALMENTE TODO LO RELACIONADO CON SERVICIOS ===== */
a[href*="servicios"],
a[href*="Mis-servicios"],
a[href*="/services/"],
a[href*="/servicios/"],
#services-section,
#servicios,
.nav-link[href*="servicios"],
button[href*="servicios"],
.sidebar a[href*="servicios"],
.card a[href*="servicios"] {
  display: none !important;
}

