:root{
  --sky-50:#f0f9ff;
  --sky-100:#e0f2fe;
  --sky-200:#bae6fd;
  --sky-600:#0284c7;
  --sky-700:#0369a1;

  --slate-900:#4a80ff;
  --slate-800:#ff5e00;
  --slate-600:#475569;
  --slate-500:#64748b;
  --slate-400:#ffffff;
}

/* About Hero Section */
.about-hero {
  background-image: url("images/Conocenos_Imagen.png"); /* ← tu imagen */
  background-size: cover;
  background-position: center;
  color: rgb(0, 2, 47);
  padding: 80px 0;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.652);
}

.about-hero-content p {
  font-size: 20px;
  opacity: 0.9;
  color: rgb(255, 255, 255);
  text-shadow: 0 2px 6px rgba(0, 9, 0, 0.922);

}

/* Company Info Section */
.company-info {
  padding: 80px 0;
  background: white;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-text h2 {
  font-size: 36px;
  color: #1f2937;
  margin-bottom: 24px;
}

.info-text p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.info-image {
  width: 100%;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 120px;
}

/* Mission Vision Values Section */
.mvv-section {
  padding: 80px 0;
  background: #f8fafc;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.mvv-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 32px;
}

.mvv-card h3 {
  font-size: 24px;
  color: #1f2937;
  margin-bottom: 16px;
}

.mvv-card p {
  color: #6b7280;
  line-height: 1.6;
}

.mvv-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.mvv-card ul li {
  color: #6b7280;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.mvv-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-card {
  text-align: center;
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: white;
}

.team-section h2 {
  text-align: center;
  font-size: 36px;
  color: #1f2937;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 18px;
  margin-bottom: 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-member {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.team-photo {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 48px;
}

.team-member h3 {
  font-size: 20px;
  color: #1f2937;
  margin-bottom: 8px;
}

.team-position {
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-bio {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #f8fafc;
}

.services-section h2 {
  text-align: center;
  font-size: 36px;
  color: #1f2937;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  color: #1f2937;
  margin-bottom: 12px;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-section h2 {
  text-align: center;
  font-size: 36px;
  color: #1f2937;
  margin-bottom: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.contact-info-box {
  background: #f8fafc;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.contact-info-box h3 {
  font-size: 24px;
  color: #1f2937;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: #1f2937;
  margin-bottom: 4px;
}

.contact-item p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 32px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-placeholder {
    height: 300px;
    font-size: 80px;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}