body {
  background-color: #1e2a38;
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.navbar {
  background-color: #0d1b2a;
}
.navbar-brand img {
  height: 40px;
}
.hero {
  background: url("../img/tec1.jpg") center center / cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  color: #ffffff;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(14, 24, 38, 0.75);
  z-index: 1;
}
.hero > * {
  position: relative;
  z-index: 2;
}
.section {
  padding: 60px 20px;
}
.section h2 {
  margin-bottom: 30px;
  color: #00aaff;
}
.card {
  background-color: #243447;
  border: none;
  text-align: center;
  color: white;
}
.card-title {
  color: #00aaff;
}
.card i {
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
}
footer {
  background-color: #0d1b2a;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}

.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #e9ecef;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0d6efd;
}
.currency {
  font-size: 1.2rem;
  color: #6c757d;
}
.period {
  font-size: 0.9rem;
  color: #6c757d;
}
.plan-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(45deg, #0d6efd, #0dcaf0);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}
.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f8f9fa;
}
.features-list i {
  color: #28a745;
  margin-right: 10px;
}
.about-section {
  background: linear-gradient(135deg, #1e2a38 0%, #1e2a38 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
/* Quienes somos Styles*/
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;*/
}

.about-content {
  position: relative;
  z-index: 2;
}

.mission-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ffffff, #64b5f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mission-title i {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  padding: 15px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
}

.vision-objectives-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
}

.objectives-list {
  list-style: none;
  padding: 0;
}

.objectives-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.objectives-list li:hover {
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.objectives-list li:last-child {
  border-bottom: none;
}

.objectives-list i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 3px;
  min-width: 20px;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: scale(1.05);
}

.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(30, 60, 114, 0.3),
    rgba(42, 82, 152, 0.3)
  );
  z-index: 1;
}

.image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.stats-row {
  margin-top: 60px;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #64b5f6;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 10px;
}

.placeholder-img {
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.3);
}
.section-title {
  font-size: 2.2rem;
}
.mission-title {
  font-size: 1.8rem;
}
.mission-card {
  padding: 25px;
}
.vision-objectives-container {
  padding: 25px;
}
