html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

  .seccion-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.imagen-fondo-hero {
  width: 100%;
  height: 80%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.seccion-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
  z-index: -1;
}
.navegacion-principal {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.contenedor-principal {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.menu-navegacion {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.menu-navegacion a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-navegacion a:hover {
  color: #007bff;
}

.boton-contacto {
  background: #007bff;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.boton-contacto:hover {
  background: #0069d9;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.contenido-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  z-index: 10;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.titulo-principal {
  color: white;
  font-size: clamp(1rem, 4vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subtitulo-hero {
  color: white;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-bottom: 3rem;
}

.descripcion-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.quienes-somos {
  padding: 6rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.contenedor-quienes {
  max-width: 900px;
  margin: 0 auto;
}

.titulo-seccion {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* Detalle decorativo debajo del título */
.titulo-seccion::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #007bff;
  border-radius: 2px;
}

.descripcion-quienes {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.softwares {
  padding: 4rem 0;
}

.software-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tarjeta-software{
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.seccion-imagen-software{
  position: relative;
  flex: 1;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.seccion-imagen-software:hover .software-img {
  transform: scale(1.05);
}

.seccion-imagen-software h3{
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.informacion-software{
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
.informacion-software p{
  margin-bottom: 2rem;
}

.informacion-software a{
  display: inline-block;
  text-decoration: none;
  color: white;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  background-color: #30034e; /* Color primario */
  font-weight: 500;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(48, 3, 78, 0.2);
}

.informacion-software a:hover{
  background-color: #52007f;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(48, 3, 78, 0.3);
}

/* Estilo secundario para el segundo botón */
.informacion-software a:last-child {
  background-color: transparent;
  color: #30034e;
  border: 2px solid #30034e;
  box-shadow: none;
}

.informacion-software a:last-child:hover {
  background-color: #30034e;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .tarjeta-software {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  
  .seccion-imagen-software, 
  .informacion-software {
    width: 100%;
    flex: none;
  }

  .seccion-imagen-software {
    height: 250px;
  }

  .titulo-principal {
    font-size: 2.5rem;
  }
}