:root {
  --primary-color: #8D6298;
  --secondary-color: #2d5c88;
  --light-bg: #f5f5f5;
  --white: #ffffff;
}

body {
  background-color: var(--light-bg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 18px;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.smooth-text {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1;
}

.navbar {
  background-color: var(--primary-color) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 5px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white) !important;
}

.nav-link {
  color: var(--white) !important;
  margin: 0 10px;
  transition: all 0.3s;
}

.nav-link:hover {
  color: #ffc107 !important;
  transform: translateY(-2px);
}

.hero-section {
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 10px;
  opacity: 0.95;
}

/* Rest of your classes remain mostly unchanged except for fixes below */

.table thead {
  background-color: var(--primary-color);
  color: var(--white);
  text-transform: uppercase;
}

.float-button {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s;
  text-decoration: none;
}

.call-button    { bottom: 100px; right: 30px; background-color: var(--primary-color); }
.whatsapp-button { bottom: 30px;  right: 30px; background-color: #25D366; }

footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 30px 0;
  text-align: left;
}

a { text-decoration: none; }
.txtpinko {text-decoration: none;color:#8D6298;}

/* Removed invalid / duplicated / conflicting rules:
   - font-display: swap (not valid on body)
   - font-smooth, -webkit-font-smoothing:subpixel-antialiased
   - text-decoration:uppercase
   - duplicate .section-title rules
   - conflicting color overrides
   - .list-unstyled inside media query (invalid nesting)
*/