*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}   

html {
  scroll-behavior: smooth;
}

/* evitar scroll horizontal inesperado */
html, body {
  overflow-x: hidden;   /* ya está, reafirmamos */
}

/* limitar elementos que puedan provocar overflow */
img, .image-gradient, .layer-blur {
  max-width: 100vw;
  height: auto;
  right: 0;
}

/* ---------------- Robot view - recortar la parte inferior --------------- */
:root{
  --robot-visible-height: 360px;
  --robot-full-height: 420px;
}

.robot-sticky{
    position: fixed;
    top: 18vh;
    width: 420px;
    height: var(--robot-visible-height);
    overflow: hidden;
    z-index: 9999;
    pointer-events: none;
    transform-origin: center;
    transition: left .45s cubic-bezier(.22,.9,.35,1), right .45s cubic-bezier(.22,.9,.35,1), transform .25s ease, opacity .25s ease;
    will-change: transform, opacity;
}

.robot-sticky .robot-3d{
    width: 100%;
    height: var(--robot-full-height);
    display: block;
    pointer-events: auto;
    transform: translateY(calc(var(--robot-visible-height) - var(--robot-full-height) - 10px));
}

.robot-sticky.right{
    right: 6%;
    left: auto;
}

.robot-sticky.left{
    left: 6%;
    right: auto;
}

.robot-sticky.hidden{
    opacity: 0;
    transform: translateY(20px) scale(.95) !important;
    pointer-events: none;
}

.robot-sticky.suppress-side{
  transition: transform .25s ease, opacity .25s ease !important;
}

/* QUITAR DUPLICADOS Y CONFLICTIVOS - elimina esto si está más abajo en tu CSS */
/* (revisar que no haya otra regla .robot-sticky que sobrescriba estas) */

/* --------------------------------------------------------- */
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: black;
    color: #e7e7e7;
    min-height: 100vh;
    line-height: 1.5;
}

/* IMAGEN DEGRADADA */
.image-gradient{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
}

.layer-blur{
    height: 0;
    width: 30rem;
    position: absolute;
    top: 20%;
    right: 0;
    box-shadow: 0 0 700px 15px white;
    rotate: -30deg;
    z-index: -1;
}

/* CONTAINER */
.container{
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: visible; /* cambiado: permitir que el robot fixed no se recorte */
}

/* HEADER */

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
}

.logo{
    max-height: 55px;
}

nav{
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: -5%;
}

nav a{
    font-size: 1rem;
    letter-spacing: 0.1rem;
    transition: color 0.2s ease;
    text-decoration: none;
    color: inherit;
    z-index: 999;
}

nav a:hover{
    color: #49cbda;
}

/*  --------------------------------------------------------- MAIN CONTENT */
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(90vh - 6rem);
}

.inicio{
    height: 100vh;  
    max-width: 40rem;
    margin-right: 10%;
    z-index: 999;
}

@keyframes animateGradient {
    to{
        background-position: 200%;
    }
}

.inicio h1{
    font-size: 2.2rem;
    color: #49cbda;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 2rem 2rem;
    line-height: 1.2;
    text-shadow: 0 0 10px rbga(128, 128, 128, 0.418);   
}

.description{
    font-size: 1.2rem;
    margin: 2rem 2rem;
    letter-spacing: 0.05em;
    max-width: 35rem;
    color: gray;
}  

.buttons{
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    margin-right: 2rem;
}

.btn-signing-main{
    text-decoration: none;
    background-color: lightgrey;
    color: black;
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease;
    margin-left: 32px;
}

.btn-signing-main:hover{
    background-color: #49cbda;
}

/*  --------------------------------------------------------- SERVICIOS */

.servicios-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* alineado a la derecha */
    padding: 2rem clamp(1rem, 4vw, 6rem);
    box-sizing: border-box;
}

.servicios-content {
    max-width: 650px;
    width: 100%;
}

.servicios-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    text-align: right;
    margin-bottom: 1.2rem;
    color: #49cbda;
}

/* GRID VERTICAL */
.servicios-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

/*TARJETAS*/
.servicio-card {
    background: transparent;
    border-radius: 1rem;
    padding: 0.8rem 1rem;
    width: clamp(230px, 30vw, 330px);
    text-align: right;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 0 rgba(0, 180, 255, 0);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.servicio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.45);
    border-color: rgba(0, 180, 255, 0.6);
}

.icon {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.servicio-card h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    max-width: 100%;
    white-space: normal;
    color: #49cbda;
}

.servicio-card p {
    font-size: 0.9rem;
    line-height: 1.25;
    opacity: 0.8;
}

.servicios h1{
    font-size: 2.2rem;
    color: #49cbda;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 2rem 2rem;
    line-height: 1.2;
    text-shadow: 0 0 10px rbga(128, 128, 128, 0.418);   
}

/* --------------------------------------------------------- PRODUCTOS */

.productos-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 4vw;
}

.productos-container {
    max-width: 600px;
    text-align: left;
}

.productos-container h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    color: #49cbda;
    letter-spacing: 0.05em;
}

/* TARJETA DEL PRODUCTO */
.producto-card {
    background: transparent;
    padding: 1.5rem 1.8rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 0 rgba(0,180,255,0);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.producto-card:hover {
    box-shadow: 0 0 25px rgba(0, 180, 255, 0.45);
    border-color: rgba(0,180,255,0.6);
}

.producto-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #49cbda;
}

.producto-card p {
    font-size: 1.05rem;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 1.8rem;
    max-width: 500px;
}

/*  --------------------------------------------------------- CONTACTO */

/* CONTENEDOR */
.contacto {
  background: #000;              /* Fondo negro */
  padding: 100px 30px;
  text-align: center;
  width: 100%;
}

.contacto h2 {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 40px;
}

/* FORMULARIO MÁS ANCHO */
.contacto-form {
  background: #111;              /* Caja un poco más clara */
  padding: 40px;
  border-radius: 15px;
  max-width: 850px;              /* Más ancho */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* CAMPOS */
.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 18px;
  border: none;
  background: #222;              /* Fondo oscuro */
  border-radius: 10px;
  font-size: 1.1rem;
  color: #fff;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: 2px solid #0078ff;
}

/* BOTÓN */
.btn-contacto {
  background-color: #0078ff;
  color: white;
  padding: 16px;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-contacto:hover {
  background-color: #005fcc;
}

/*  --------------------------------------------------------- FOOTER */

.footer {
  background: #000;
  color: #fff;
  padding: 35px 20px 15px; /* ⬅ reducido */
  width: 100%;
}

.footer-content {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 50px; /* ⬅ menos espacio entre columnas */
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.footer-logo img {
  width: 140px; /* ⬅ más pequeño */
  filter: brightness(1.2);
}

/* Contacto */
.footer-contact {
  text-align: left;
}

.footer-contact h4 {
  font-size: 1.2rem; /* ⬅ más chico */
  margin-bottom: 8px; /* ⬅ menos separación */
  color: #00a2ff;
}

.footer-contact p {
  margin-bottom: 5px; /* ⬅ mucho más compacto */
  font-size: 0.95rem;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #00a2ff;
}

/* Línea inferior */
.footer-bottom {
  text-align: center;
  margin-top: 20px; /* ⬅ menos espacio */
  border-top: 1px solid #111;
  padding-top: 12px; /* ⬅ más compacto */
  font-size: 0.85rem; /* ⬅ más discreto */
  color: #777;
}

/* ----------------------------- */
/*           RESPONSIVE          */
/* ----------------------------- */

@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 25px; /* ⬅ menos separación vertical */
  }

  .footer-contact {
    text-align: center;
  }

  .footer-logo img {
    width: 120px; /* ⬅ más pequeño para mobile */
  }
}

/* Reserva espacio para el robot cuando está a la izquierda/derecha
   -- REMOVIDAS las reglas que cambiaban padding del main para evitar mover contenido --
   (se controlará sólo la posición del robot sin desplazar layout) */

/* Mantener tamaño del robot */
.robot-sticky{
    position: fixed;
    top: 18vh;
    width: 420px;
    height: var(--robot-visible-height);    /* recortamos aquí */
    overflow: hidden;                       /* recorta la parte baja del viewer */
    z-index: 9999; /* arriba de todo */
    pointer-events: none;
    transform-origin: center;
    transition: transform .25s ease, opacity .25s ease; /* quitar trans de left/right para evitar parpadeos */
    will-change: transform, opacity;
}

/* posicionamos el viewer más alto para que la parte inferior quede oculta */
.robot-sticky .robot-3d{
    width: 100%;
    height: var(--robot-full-height);
    display: block;
    pointer-events: auto;
    transform: translateY(calc(var(--robot-visible-height) - var(--robot-full-height) - 10px));
}

/* evitar animación lateral durante supresión */
.robot-sticky.suppress-side{
  transition: transform .25s ease, opacity .25s ease !important;
}

/* small safety: no permitir que fixed se salga horizontalmente */
.robot-sticky{
  right: clamp(0.75rem, 6%, 6%);
  left: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/*  --------------------------------------------------------- TABLET RESPONSIVE */
@media (max-width: 1100px){
    header
    {
        padding: 1rem 0.5rem;
    }

    nav{
        margin: 0.5rem 5rem;
    }
    nav a{
    font-size: 0.8rem;
    }

    .robot-3d {
        position: static;   /* vuelve al flujo normal */
        scale: 0.9;
        margin: 2rem 0;     /* espacio arriba y abajo */
        margin-left: 2rem; /* lo empuja hacia la derecha */
        width: 100%;
    }

    .inicio {
        margin-top: 1rem;   /* mucho más controlado */
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: visible; /* deja que se muestre todo el robot */
    }

}

/*  --------------------------------------------------------- MOBILE RESPONSIVE */

@media (max-width: 850px){
    header{
        padding: 1rem 0.1rem;
    }

    nav{
        display: none;
    }

    header h1{
        font-size: 2rem;
    }

    .inicio{
        margin-top: 25rem;
    }

    .robot-3d{
        position: static;   /* vuelve al flujo normal */
        scale: 0.8;
    }

    .inicio{
        max-width: 30rem;
        margin-left: 10%;
    }
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: visible; /* deja que se muestre todo el robot */
    }

    .inicio h1{
        font-size: 2.5rem;
    }

    .description{
        font-size: 1rem;
    }
        .servicios-section {
        height: auto;
        padding-top: 1rem;
        padding-bottom: 1.5rem;
    }

    .servicios-title {
        text-align: center;
    }

    .servicios-grid {
        align-items: center;
    }

    .servicio-card {
        width: clamp(230px, 75vw, 320px);
        text-align: center;
    }

    .contacto-form {
        padding: 25px;
        max-width: 95%;
    }
    .contacto h2 {
        font-size: 2rem;
    }


}

/* cuando suprimimos para ocultar, evitar animación lateral que causa parpadeo */
.robot-sticky.suppress-side {
  transition: transform .25s ease, opacity .25s ease !important;
  right: var(--robot-right, auto);
  left: var(--robot-left, auto);
}