/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Body */
body {
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
}

/* Feature cards personalizados */
.feature {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
}

.feature i {
  transition: color 0.3s ease;
}

/* Hover efecto */
.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature:hover i {
  color: #50e3c2 !important;
}

/* Hero */
header {
  background: linear-gradient(135deg, #4a90e2, #50e3c2);
  color: white;
  padding: 60px 20px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

header h1, header p {
  color: white;
}

/* Sección Nosotros íconos */
section.bg-light i {
  color: #0078D7;
}
