*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:system-ui, sans-serif;
}

body{
  background:#000;
  color:white;
  overflow-x:hidden;
}



/* CANVAS ESPACIO */
#spaceCanvas{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
  pointer-events:none;
}


/* NAVBAR */
.container{

}
.navbar{
  position:fixed;
  top:0;
  width:100%;
  margin: 0 auto;
  padding:18px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(5,15,30,0.85);
  backdrop-filter:blur(10px);
  z-index:10;
}

.logo{
	width: 200px;
	cursor: pointer;
}

.logo img{
	position: relative;
	width: 35%;
}

.navbar nav{
  display:flex;
}

.navbar nav a{
  margin-left:30px;
  color:white;
  text-decoration:none;
  opacity:.8;
  position:relative;
}
.navbar nav a:hover{
	opacity:1;
	color: #c99745;
	cursor: pointer;
}

/* línea base */
.navbar nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#c99745;
  transition:width .3s ease;
}

/* hover */
.navbar nav a:hover::after{
  width:100%;
}

/* activo */
.navbar nav a.active{
  opacity:1;
  color:#c99745;
}

.navbar nav a.active::after{
  width:100%;
}

.menu-toggle{
  display:none;
  font-size:28px;
  background:none;
  border:none;
  color:white;
  cursor:pointer;
}

/* MOBILE */
@media (max-width:768px){

    /* ANIMACIÓN BOTÓN HAMBURGUESA */
  .menu-toggle{
    display:block;
    transition: transform .35s ease, opacity .2s ease;
  }

  /* estado abierto */
  .menu-toggle.active{
    transform: rotate(180deg) scale(1.1);
  }


  .navbar nav{
    position:absolute;
    top:100%;
    right:0;
    width:220px;
    background:#020617;
    flex-direction:column;
    padding:20px;
    gap:15px;
    transform:translateY(-20px);
    opacity:0;
    pointer-events:none;
    transition:.3s;
  }

  .navbar nav.open{
  	width: 100%;
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }

  .navbar nav a{
    margin:0;
  }
}


/* SECCIONES */
section{
  min-height:100vh;
  display:flex;
  justify-content: center;
  align-items:center;
  text-align:center;
  padding:120px 20px;
  position:relative;
  z-index:2;
}

/* HERO */
.hero{
  background:transparent;
}
.hero > div {
  max-width: 900px;
  margin: 0 auto;
  justify-content: flex-start; /* alinea horizontalmente a la izquierda */
  text-align: left;            /* evita que el texto quede centrado */
  overflow: visible;
}

.hero-title{
  line-height:1.1;
}

/* cada línea del título */
.hero-title .line{
  display:block;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #cfd6ff 100%
  );

  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* jerarquía visual */
.hero-title .strong{
  font-weight:800;
}

.hero-title .light{
  font-weight:500;
  opacity:.9;
}


.hero h1{
  font-size:64px;
  margin-bottom:20px;
}
.hero p{
  width: 60%;
  opacity:.7;
  margin-bottom:30px;

}
.btn-sygnus {
  background: #e2b25f;
  color: #0b0d17;
  padding: 14px 34px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-sygnus:hover {
  background: #c99745; /* tono más profundo, más serio */
  transform: scale(1.03); /* efecto suave, no “gamificado” */
}

/* ---------- CONTEXTO SUPERIOR ---------- */
.hero-eyebrow{
  display:block;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.6;
  margin-bottom:18px;
  font-weight:500;
}

/* ---------- TITULO ---------- */
.hero-title{
  margin-bottom:22px;
  line-height:1.05;
}

/* líneas del título */
.hero-title .line{
  display:block;
}

/* primera línea poderosa */
.hero-title .strong{
  font-size: clamp(48px, 6vw, 72px);
  font-weight:800;
}

/* segunda línea más ligera y más grande visualmente */
.hero-title .light{
  font-size: clamp(52px, 6.5vw, 80px);
  font-weight:500;
  opacity:.95;
}

/* ---------- GRADIENT TIPOGRÁFICO SUTIL ---------- */
.hero-title{
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #d6d6d6 55%,
    #ffffff 100%
  );
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* estado inicial */
.hero-animate{
  opacity:0;
  transform: translateY(30px);
  filter: blur(12px);
}

/* estado visible */
.hero-animate.show{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 1s ease,
    transform 1.2s cubic-bezier(.19,1,.22,1),
    filter 1.2s ease;
}


/* ================================
   SERVICES SECTION BASE
================================ */
.services{
  background: white;
  color: #020617;
  z-index: 3;
}

.services-container{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* ================================
   HEADER TYPOGRAPHY
================================ */

/* etiqueta superior */
.services-eyebrow{
  display:block;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
  color:#CA9745;
  margin-bottom:18px;
}

/* título principal */
.services-title{
  font-size: clamp(32px, 4vw, 46px);
  font-weight:600;
  line-height:1.15;
  margin-bottom:22px;
}

/* texto introductorio */
.services-intro{
  max-width:620px;
  margin:0 auto 70px auto;
  font-size:18px;
  line-height:1.6;
  opacity:.7;
}


/* ================================
   GRID LAYOUT
================================ */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
  margin-bottom: 3rem;
}


/* ================================
   SERVICE CARD
================================ */
.service-card{
  background:white;
  padding:34px 30px;
  border-radius:14px;

  /* borde fino elegante */
  border:1px solid rgba(2,6,23,.06);

  /* profundidad sutil */
  box-shadow:
    0 10px 30px rgba(2,6,23,.04);

  text-align:left;

  /* transición premium */
  transition:
    transform .35s cubic-bezier(.19,1,.22,1),
    box-shadow .35s ease,
    border-color .35s ease;
}


/* línea acento superior */
.service-card::before{
  content:"";
  display:block;
  width:38px;
  height:2px;
  background:#CA9745;
  margin-bottom:18px;
  opacity:.7;
}


/* título card */
.service-card h3{
  font-size:19px;
  font-weight:600;
  margin-bottom:12px;
}


/* texto card */
.service-card p{
  font-size:15.5px;
  line-height:1.65;
  opacity:.7;
}


/* ================================
   HOVER PREMIUM
================================ */
.service-card:hover{
  transform: translateY(-8px);

  border-color: rgba(202,151,69,.35);

  box-shadow:
    0 18px 45px rgba(2,6,23,.08),
    0 4px 12px rgba(2,6,23,.05);
}

.service-card:hover::before{
  opacity:1;
  width:52px;
  transition:.35s ease;
}


/* ================================
   RESPONSIVE
================================ */

/* tablet */
@media (max-width: 1024px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 640px){

  .services-container{
    text-align:left;
  }

  .services-intro{
    margin-left:0;
    margin-right:0;
  }

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

  .service-card{
    padding:26px 24px;
  }
}


/* =================================
   SECTION SKY (ABOUT)
================================= */

.section-sky{
  background: transparent;
  padding: 160px 40px;
}

/* PANEL PRINCIPAL */
.about-panel{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  background: rgba(5,15,35,0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 22px;
  padding: 80px 70px;

  border: 1px solid rgba(202,151,69,0.25);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.45),
    inset 0 0 80px rgba(255,255,255,0.02);

  color: white;
  text-align: center;

  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s cubic-bezier(.2,.8,.2,1);
}

/* panel visible al entrar */
.about-panel.visible{
  opacity: 1;
  transform: translateY(0);
}

/* glow sutil hover */
.about-panel:hover{
  border-color: rgba(202,151,69,0.45);
  box-shadow:
    0 0 0 1px rgba(202,151,69,0.15),
    0 20px 60px rgba(0,0,0,0.6);
}

/* reflejo glass estrellas */
.about-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03), transparent 40%);
  pointer-events:none;
}

/* =================================
   HEADERS
================================= */

.about-eyebrow{
  letter-spacing: 4px;
  font-size: 12px;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: 18px;
}

.about-title{
  font-size: 44px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 25px;
}

.about-description{
  max-width: 720px;
  margin: 0 auto 60px;
  opacity: .75;
  line-height: 1.6;
}

/* =================================
   COLUMNAS SUPERIORES
================================= */

.about-features{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 60px;
  margin-bottom: 70px;
}

.about-feature{
  opacity: 0;
  transform: translateY(25px);
  transition: .8s ease;
}

.about-panel.visible .about-feature:nth-child(1){transition-delay:.2s}
.about-panel.visible .about-feature:nth-child(2){transition-delay:.35s}
.about-panel.visible .about-feature:nth-child(3){transition-delay:.5s}

.about-panel.visible .about-feature{
  opacity:1;
  transform:translateY(0);
}

.about-feature h3{
  margin-bottom:10px;
  font-weight:600;
}

.about-feature p{
  opacity:.65;
  line-height:1.5;
}

/* =================================
   CONTADOR
================================= */

.about-counter{
  margin: 40px 0 60px;
}

.about-number{
  font-size: 90px;
  font-weight: 300;
}

.about-number span{
  color:#CA9745;
}

.about-counter-text{
  opacity:.65;
}

/* =================================
   BLOQUE FINAL
================================= */

.about-quote{
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity:.75;
  line-height:1.7;
}

/* =================================
   RESPONSIVE
================================= */

@media (max-width:900px){

  .about-panel{
    padding: 60px 30px;
  }

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

  .about-title{
    font-size:32px;
  }

  .about-number{
    font-size:64px;
  }
}


/* CONTACTO */
.contact{
  background:#020617;
}

/* FOOTER */
footer{
  background:#020617;
  padding:40px;
  text-align:center;
  opacity:.6;
  position:relative;
  z-index:2;
}


/* ==============================
   CONTACT SECTION
============================== */

.contact{
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,1);
}

.contact-panel{
  width:min(900px, 92%);
  margin:auto;
  padding:70px 60px;
  border-radius:24px;

  background:#ffffff;
  color:#0f172a;

  box-shadow:
  0 25px 70px rgba(0,0,0,.12),
  0 2px 8px rgba(0,0,0,.05);

  border:1px solid rgba(0,0,0,.06);

  opacity:0;
  transform:translateY(40px);
  transition:1s cubic-bezier(.16,1,.3,1);
}



.contact-panel.visible{
  opacity:1;
  transform:none;
}


/* HEADER */
.contact-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 50px;
}

.contact-eyebrow{
  letter-spacing:.2em;
  font-size:.7rem;
  color:#CA9745;
}

.contact-title{
  font-size:clamp(2rem,4vw,2.8rem);
  margin:12px 0 16px;
}

.contact-intro{
  color:rgba(15,23,42,.7);
}


/* FORM */
.contact-form{
  max-width: 520px;
  margin: 0 auto;
}

/* separación vertical */
.form-group{
  margin-bottom: 18px;
}

/* INPUTS Y TEXTAREA */
.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 18px 20px;              /* altura real */
  font-size: 16px;
  font-family: inherit;

  border-radius: 10px;
  border: 1.5px solid #dcdfe6;

  background: #ffffff;
  color: #0f172a;                  /* texto real */

  outline: none;
  transition: all .25s ease;
}

/* placeholder azul oscuro */
.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: #1e293b;
  opacity: .75;
  font-weight: 500;
}

/* FOCUS DORADO */
.contact-form input:focus,
.contact-form textarea:focus{
  border-color: #c8a96a;
  box-shadow: 0 0 0 3px rgba(200,169,106,0.15);
}

/* textarea resize controlado */
.contact-form textarea{
  resize: vertical;
  min-height: 140px;
}



/* BOTON */
.contact .btn-sygnus{
  display:block;
  margin:0 auto;
}


/* ==============================
   MOBILE
============================== */

@media (max-width:700px){

  .contact-panel{
    padding:45px 26px;
  }

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

}



.footer{
  background: #0b1a2e; /* azul oscuro institucional */
  color: rgba(255,255,255,.85);
  padding-top: 70px;
}

/* layout principal */
.footer-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 50px;
  color: #ffffff;          /* blanco puro */
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}

/* columnas */
.footer-col h4{
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff;          /* blanco puro */
}

/* LOGO */
.footer-brand{
   width: 33%;
}
.footer-brand img{
	width: 80%;
}
.footer-logo{
  height: 38px;
  margin-bottom: 18px;
}

.footer-brand p{
  color: #ffffff;          /* blanco puro */
  max-width: 220px;        /* controla el salto de línea */
  line-height: 1.5;
}


/* MENU */
.footer-menu ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li{
  margin-bottom: 10px;
}

.footer-menu a{
  text-decoration: none;
  color: rgba(255,255,255,.8);
  transition: .25s ease;
}

.footer-menu a:hover{
  color: #c8a96a; /* dorado */
}

/* CONTACTO */
.footer-contact p{
  margin-bottom: 8px;
  color: rgba(255,255,255,.75);
}

/* redes */
.footer-social{
  margin-top: 14px;
  display: flex;
  gap: 16px;
}

.footer-social a{
  text-decoration: none;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: .25s ease;
}

.footer-social a:hover{
  color: #c8a96a;
}

/* linea inferior */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 22px 0;
  font-size: 14px;
  color: rgba(255,255,255,.5);
}


@media (max-width: 900px){

  .footer-container{
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand p{
    margin: 0 auto;
  }

  .footer-social{
    justify-content: center;
  }

}


