/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #0f0f12;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/*header*/
.main-header {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  border-bottom: 2px solid #00c6ff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}


.nav-menu a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
  color: #00c6ff;
}

/* HERO CON IMAGEN DE FONDO */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: url("../img/fondo.jpg") center center no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 60px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.5rem;
    color: #dbeafe;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Botón llamativo */
.btn {
    padding: 14px 30px;
    background: linear-gradient(90deg, #023a5f, #0072ff);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.4);
}

.btn:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #0072ff, #025686);
}

/* SERVICIOS CON IMAGEN A LA IZQUIERDA */
.servicio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    border-bottom: 1px solid #333;
    max-width: 1000px;
    margin: auto;
}
.servicio img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin: 20px;
}
.servicio .contenido {
    flex: 1;
    max-width: 500px;
    margin: 20px;
}
.servicio h2 {
    color: #00c6ff;
    margin-bottom: 10px;
}







/*pasos de movil*/
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #00111f;
  color: #f1f5f9;
}

header {
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  padding: 40px;
  text-align: center;
  color: white;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.proceso-web {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.proceso-web h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #38bdf8;
}

.paso {
  background: #1e293b;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 6px solid #38bdf8;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.paso:hover {
  transform: scale(1.02);
  background: #334155;
}

.paso h3 {
  margin-top: 0;
  color: #7dd3fc;
}

footer {
  text-align: center;
  padding: 30px;
}

.boton-volver {
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.boton-volver:hover {
  background: #1e40af;
}



/*proyectos*/
.proyectos {
    background-color: #0f172a;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.proyectos h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #38bdf8;
    text-transform: uppercase;
}

.galeria-proyectos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.proyecto {
    
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.proyecto:hover {
    transform: scale(1.03);
}

.proyecto img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.proyecto h3 {
    margin: 15px 0 5px;
    font-size: 1.3rem;
    color: #7dd3fc;
}

.proyecto p {
    padding: 0 15px;
    color: #cbd5e1;
    font-size: 0.95rem;
}


/*apartado de bloque */
.desarrollo-software {
  color: #fff;
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  border-top: 1px solid #333;
}

.desarrollo-software h2 {
  text-align: center;
  font-size: 2.5em;
  color: #00c6ff;
  margin-bottom: 10px;
}

.desarrollo-software .intro {
  text-align: center;
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 50px;
}

.desarrollo-software .bloque {
  margin-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-left: 4px solid #00c6ff;
  border-radius: 10px;
}

.desarrollo-software h3 {
  color: #00c6ff;
  font-size: 1.6em;
  margin-bottom: 20px;
}

.desarrollo-software ul {
  list-style: none;
  padding: 0;
}

.desarrollo-software ul li {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #ccc;
}

.desarrollo-software ul li strong {
  color: #fff;
}





/*Metodologias */
.metodologia {
  color: #fff;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  border-top: 1px solid #333;
}

.metodologia h2 {
  font-size: 2.5em;
  text-align: center;
  color: #00c6ff;
  margin-bottom: 20px;
}

.metodologia .intro {
  text-align: center;
  color: #ccc;
  font-size: 1.1em;
  margin-bottom: 50px;
}

.metodo {
  display: flex;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.03);
  margin-bottom: 30px;
  padding: 20px;
  border-left: 4px solid #00c6ff;
  border-radius: 10px;
}

.metodo .numero {
  font-size: 2em;
  font-weight: bold;
  color: #00c6ff;
  margin-right: 20px;
  min-width: 50px;
}

.metodo .contenido h3 {
  color: #00c6ff;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.metodo .contenido p {
  color: #ccc;
  line-height: 1.6;
}


/*FOOTER*/
.main-footer {
  background: #111;
  padding: 30px 20px;
  border-top: 2px solid #00c6ff;
  text-align: center;
}
.footer-content {
  max-width: 900px;
  margin: auto;
}
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-links {
  margin-top: 10px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #00c6ff;
}
.footer-copy {
  margin-top: 15px;
  font-size: 0.8rem;
  opacity: 0.7;
}

