@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #0d1b32, #000000);
  color: #ffffff;
  padding-top: 100px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 15px 0;
  z-index: 100;
  animation: fadeIn 1.2s ease-out;
}

.navbar a {
  color: #8ecbff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #66b3ff;
}

.logo {
  width: 120px;
  height: auto;
  margin-right: 30px;
  filter: drop-shadow(0 0 12px #4da6ff) drop-shadow(0 0 25px rgba(0,212,255,0.5));
  transition: all 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 20px #00d4ff) drop-shadow(0 0 40px rgba(0,212,255,0.8));
  transform: scale(1.05);
}

/* TITULOS */
h1 {
  font-size: 3rem;
  color: #7fbfff;
  text-shadow: 0 0 18px #3d8bff;
  text-align: center;
  margin-bottom: 40px;
  animation: slideDown 1s ease-out;
}

/* CONTENEDORES */
.box, .service-card {
  max-width: 1000px;
  margin: auto;
  background: rgba(255,255,255,0.06);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 25px rgba(77,166,255,0.25);
  animation: fadeIn 1.2s ease-out;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: scale(1.03);
}

/* BOTONES */
.button {
  display: inline-block;
  padding: 14px 32px;
  color: white;
  background: linear-gradient(135deg, #1476ff, #40a5ff);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 20px;
  transition: 0.25s;
  box-shadow: 0 0 10px rgba(77,166,255,0.4);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(77,166,255,0.7);
}

/* SERVICIOS EN GRID */
.services {
  max-width: 1100px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px #00d4ff);
  animation: float 3s ease-in-out infinite;
}

.service-card:nth-child(2) .service-image svg {
  animation-delay: 0.5s;
}

.service-card:nth-child(3) .service-image svg {
  animation-delay: 1s;
}

/* INTRO SECTION */
.intro-section {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.intro-image {
  flex: 0 0 250px;
  text-align: center;
}

.intro-image svg {
  width: 250px;
  height: 250px;
  filter: drop-shadow(0 0 15px #00d4ff);
  animation: pulse-glow 2s ease-in-out infinite;
}

.intro-text {
  flex: 1;
  min-width: 300px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 15px #00d4ff); }
  50% { filter: drop-shadow(0 0 25px #1476ff); }
}

/* FOOTER */
footer {
  margin-top: 80px;
  text-align: center;
  padding: 25px;
  color: #77b8ff;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ABOUT PAGE STYLES */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 0 0 250px;
  text-align: center;
}

.about-image svg {
  width: 250px;
  height: 250px;
  filter: drop-shadow(0 0 15px #00d4ff);
  animation: bounce 2s ease-in-out infinite;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.intro-text {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #ffffff;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.objectives-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.objectives-list li {
  font-size: 1.35rem;
  margin: 15px 0;
  padding: 12px;
  background: rgba(20,118,255,0.15);
  border-left: 4px solid #00d4ff;
  border-radius: 8px;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.objectives-list li:hover {
  background: rgba(20,118,255,0.3);
  transform: translateX(10px);
}

.values-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(255,255,255,0.12);
}

.values-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.value-card {
  background: linear-gradient(135deg, rgba(20,118,255,0.2), rgba(64,165,255,0.2));
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(77,166,255,0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: linear-gradient(135deg, rgba(20,118,255,0.4), rgba(64,165,255,0.4));
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(77,166,255,0.3);
}

.value-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 1.3rem;
  color: #7fbfff;
  font-weight: 600;
}

.cta-button {
  text-align: center;
  margin-top: 50px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ANIMACIONES */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shine {
  0% { text-shadow: 0 0 8px #3d8bff; }
  50% { text-shadow: 0 0 20px #00d4ff, 0 0 30px #1476ff; }
  100% { text-shadow: 0 0 8px #3d8bff; }
}

/* CTA SECTION */
.cta-section {
  animation: pulse 2s ease-in-out infinite;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-section p {
  animation: shine 3s ease-in-out infinite;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.features p {
  background: linear-gradient(135deg, rgba(20,118,255,0.2), rgba(64,165,255,0.2));
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(77,166,255,0.3);
  transition: all 0.3s ease;
  animation: fadeIn 1.2s ease-out;
}

.features p:hover {
  background: linear-gradient(135deg, rgba(20,118,255,0.4), rgba(64,165,255,0.4));
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(77,166,255,0.3);
  border-color: rgba(77,166,255,0.6);
}
