@charset "UTF-8";
/* 1. RESET ANTI-BORDES CORREGIDO */
html, body {
  background-color: #0F1115 !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.hero-container,
.nav-container,
.services-inner,
.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 30px !important;
  padding-right: 30px !important;
  box-sizing: border-box;
}

.sticky-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 55px;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  z-index: 1000;
}
.sticky-nav .nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .sticky-nav .nav-container {
    padding: 0 15px;
  }
}
.sticky-nav .nav-logo {
  display: flex;
  align-items: center;
}
.sticky-nav .nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sticky-nav .nav-logo img {
  height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* El resto del código del #migration-alert queda igual al que ya tenías */
#migration-alert {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  min-height: 45px;
  background: rgba(10, 10, 10, 0.95);
  color: #ffc107;
  padding: 10px 15px;
  z-index: 99999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 193, 7, 0.5);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  box-sizing: border-box;
}

/* ... (mantené los estilos de .alert-content, .alert-icon y .close-alert que ya tenías) */
.alert-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.alert-content p {
  margin: 0;
  line-height: 1.2;
}

.alert-icon {
  font-size: 14px;
  display: flex;
  align-items: center;
  animation: blink 1.5s step-end infinite;
}

.close-alert {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 10px;
}

/* --- AJUSTE PARA MOBILE --- */
@media (max-width: 600px) {
  #migration-alert {
    top: 60px; /* Un poquito más de aire en mobile si tu nav cambia de tamaño */
    font-size: 9px;
    letter-spacing: 0.5px;
    padding: 8px 10px;
  }
  .alert-content strong {
    display: block;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
/* Espacio extra en el body para que el cartel no tape el inicio del contenido */
body {
  padding-top: 100px; /* 55px del nav + 45px del alert */
}

.hero-section {
  width: 100%;
  min-height: 100vh;
  background-color: #050505;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  padding-top: 100px;
  padding-bottom: 60px;
  box-sizing: border-box;
}
.hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .hero-section .hero-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.hero-section .hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .hero-section .hero-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-text {
    order: 1;
  }
}
.hero-section .hero-text .lab-badge {
  font-size: 10px;
  font-family: "Courier New", monospace;
  letter-spacing: 2px;
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 4px 8px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 20px;
}
.hero-section .hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 30px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero-section .hero-text h1 {
    font-size: 2.5rem;
    text-align: left;
  }
}
.hero-section .hero-text p {
  font-size: 1.1rem;
  color: #a1a1a1;
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .hero-section .hero-text p {
    margin: 0 0 32px 0;
    text-align: left;
  }
}
.hero-section .hero-text .btn-warning {
  display: inline-block;
  background: #ffc107;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 2px;
  transition: 0.3s ease;
}
.hero-section .hero-text .btn-warning:hover {
  background: #000000;
  color: #ffc107;
  transform: translateY(-2px);
}
.hero-section .hero-text .btn-warning:hover:active {
  transform: scale(0.95);
}

@keyframes glowFlicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
  /* Evita que cualquier brillo se escape del contenedor */
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-image {
    order: 2;
    width: 100%;
    margin-top: 20px;
  }
}
.hero-image .image-wrapper {
  position: relative;
  max-width: 100%;
  display: inline-block;
  z-index: 1;
  /* Padding para que el resplandor tenga aire y no toque los bordes */
  padding: 20px;
}
.hero-image .image-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.25) 0%, transparent 70%);
  filter: blur(35px);
  z-index: -1;
  pointer-events: none;
  animation: glowFlicker 5s infinite ease-in-out;
}
.hero-image .image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: grayscale(10%) contrast(110%);
  border-radius: 4px;
  position: relative;
  z-index: 2;
  /* Quitamos el borde blanco para que no atrape luz innecesaria */
  border: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .services-grid {
    order: 3;
  }
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.services-grid .tech-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: 4px;
  position: relative;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.services-grid .tech-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.services-grid .tech-card .card-header .code {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #a1a1a1;
}
.services-grid .tech-card .card-header .indicator {
  width: 6px;
  height: 6px;
  background-color: #333;
  border-radius: 50%;
  transition: 0.3s ease;
}
.services-grid .tech-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}
.services-grid .tech-card p {
  font-size: 0.85rem;
  color: #a1a1a1;
  line-height: 1.5;
}
.services-grid .tech-card:hover {
  border-color: rgba(255, 193, 7, 0.6);
  transform: translateY(-5px);
  background: #111;
}
.services-grid .tech-card:hover .indicator {
  background-color: #ffc107;
  box-shadow: 0 0 10px #ffc107;
}
.services-grid .tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffc107;
  border-left: 2px solid #ffc107;
  opacity: 0;
  transition: 0.3s;
}
.services-grid .tech-card:hover::before {
  opacity: 1;
}

/* ============================================================
   SECCIÓN TESTIMONIOS - BRICKELL LAB (SISTEMA FINAL CORREGIDO)
   ============================================================ */
.testimonials-section {
  padding: 80px 0;
  background-color: #000000;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  /* --- FLECHAS --- */
  /* --- PAGINACIÓN --- */
}
.testimonials-section .services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.testimonials-section .testimonial-title {
  color: #fff;
  font-size: clamp(26px, 5vw, 32px);
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -1px;
  text-align: left;
}
.testimonials-section .testimonial-carousel {
  width: 100%;
  position: relative;
  overflow: visible;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .testimonials-section .testimonial-carousel {
    padding: 40px 60px;
    overflow: hidden;
  }
}
.testimonials-section .testimonial-card {
  min-height: 240px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  /* MOBILE: Sin transformaciones */
  opacity: 1;
  transform: scale(1);
}
@media (min-width: 1024px) {
  .testimonials-section .testimonial-card {
    opacity: 0.15;
    transform: scale(0.6);
    filter: blur(2px);
    pointer-events: none;
  }
  .testimonials-section .testimonial-card.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    border-color: rgba(255, 193, 7, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 10;
    pointer-events: all;
  }
}
.testimonials-section .testimonial-text {
  color: #a1a1a1;
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 25px;
}
.testimonials-section .testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Contenedor de info para poner uno abajo del otro */
}
.testimonials-section .testimonial-user .avatar-wrapper img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonials-section .testimonial-user .user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonials-section .testimonial-user .user-name {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
}
.testimonials-section .testimonial-user .user-role {
  color: #ffc107;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.testimonials-section .swiper-slide-active .avatar-wrapper img {
  filter: grayscale(0%);
  border-color: #ffc107;
}
.testimonials-section .lab-arrow {
  color: #ffc107;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  display: none;
}
@media (min-width: 1024px) {
  .testimonials-section .lab-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.testimonials-section .lab-arrow::after {
  font-size: 20px;
  font-weight: 900;
}
.testimonials-section .lab-arrow:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.testimonials-section .swiper-button-prev {
  left: 10px;
}
.testimonials-section .swiper-button-next {
  right: 10px;
}
.testimonials-section .swiper-pagination {
  position: relative !important;
  margin-top: 40px !important;
  text-align: center !important;
  bottom: 0 !important;
}
.testimonials-section .swiper-pagination .swiper-pagination-bullet {
  background: #333 !important;
  opacity: 1 !important;
  border-radius: 0 !important;
  width: 6px;
  height: 6px;
  transition: 0.3s;
}
.testimonials-section .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffc107 !important;
  width: 25px !important;
}

.mobile-divider-tech {
  display: none;
}
@media (max-width: 768px) {
  .mobile-divider-tech {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    background-color: #000000;
    position: relative;
    overflow: hidden;
  }
  .mobile-divider-tech .ping-container {
    position: relative;
    width: 40px;
    height: 60px;
    display: flex;
    justify-content: center;
  }
  .mobile-divider-tech .ping-ball {
    width: 8px;
    height: 8px;
    background-color: #ffc107;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    box-shadow: 0 0 10px #ffc107;
    animation: techBounce 2s infinite ease-in-out;
  }
  .mobile-divider-tech .ping-wave {
    width: 20px;
    height: 20px;
    border: 1px solid #ffc107;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    opacity: 0;
    animation: waveExpand 2s infinite ease-in-out;
  }
  .mobile-divider-tech .divider-label {
    font-family: "Courier New", monospace;
    font-size: 8px;
    color: rgba(255, 193, 7, 0.5);
    margin-top: 10px;
    letter-spacing: 2px;
  }
}

@keyframes techBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(40px);
  }
}
@keyframes waveExpand {
  0%, 45% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
/* ============================================================
   SECCIÓN CONTACTO - BRICKELL LAB (ULTRA MODERN - READABLE)
   ============================================================ */
.contact-section {
  padding: 80px 0;
  background-color: #000000;
}
.contact-section .services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-section .contact-title {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}
.contact-section .fs-form {
  max-width: 600px;
}
.contact-section .fs-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .contact-section .fs-form .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.contact-section .fs-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  position: relative;
}
.contact-section .fs-field .fs-label {
  /* MEJORADO: Subí de 0.4 a 0.8 para que NOMBRE/EMAIL se lean claro */
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}
.contact-section .fs-field .fs-input {
  background-color: transparent;
  border: none;
  /* MEJORADO: Línea un poco más blanca para ver el límite */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 10px 0;
  transition: all 0.3s ease;
  outline: none;
}
.contact-section .fs-field .fs-input::-moz-placeholder {
  /* MEJORADO: Subí de 0.2 a 0.5 para que el ejemplo sea legible */
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.contact-section .fs-field .fs-input::placeholder {
  /* MEJORADO: Subí de 0.2 a 0.5 para que el ejemplo sea legible */
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.contact-section .fs-field .fs-input:focus {
  border-bottom-color: #ffc107;
  box-shadow: 0 1px 0 #ffc107;
  /* El label cambia a amarillo al escribir */
}
.contact-section .fs-field .fs-input:focus + .fs-label {
  color: #ffc107;
}
.contact-section .fs-field textarea.fs-input {
  resize: none;
  min-height: 80px;
}
.contact-section .form-actions {
  margin-top: 10px;
}
.contact-section .form-actions .btn-submit {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #ffc107;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #ffc107;
  padding: 10px 30px;
  font-size: 11px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.contact-section .form-actions .btn-submit:hover {
  color: #000;
  background-color: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}
.contact-section .form-actions .btn-submit:active {
  transform: scale(0.95);
}

/* ============================================================
   FOOTER - BRICKELL LAB (SISTEMA_OPERATIVO_V.1.0)
   ============================================================ */
.main-footer {
  background-color: #0a0a0a;
  padding: 60px 0 40px 0;
  font-family: "Inter", sans-serif;
  /* Navegación - Solo Desktop */
  /* Redes Sociales - Instagram */
  /* Copyright y Legal */
}
.main-footer .services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.main-footer .footer-top {
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .main-footer .footer-top {
    /* En mobile, logo a la izquierda e Instagram a la derecha */
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
}
.main-footer .footer-logo {
  height: 30px;
  width: auto;
  opacity: 0.9;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .main-footer .footer-logo {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .main-footer .footer-nav {
    display: none;
  }
}
.main-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-footer .footer-links li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-footer .footer-links li a:hover {
  color: #ffc107;
}
.main-footer .footer-actions {
  margin-top: 25px; /* Separación de los links en desktop */
  line-height: 0; /* Evita espacios extra en el link */
  /* Estilo ajustado para logos SIN transparencia */
}
@media (max-width: 768px) {
  .main-footer .footer-actions {
    margin-top: 0;
  }
}
.main-footer .footer-actions .insta-link {
  display: inline-block;
  text-decoration: none;
}
.main-footer .footer-actions .footer-social-icon {
  width: 20px !important;
  height: 20px !important;
  -o-object-fit: cover;
     object-fit: cover; /* Cambiamos a cover para asegurar que llene el espacio si no es cuadrado */
  border-radius: 4px; /* Un toque sutil para redondear las esquinas del bloque */
  /* ELIMINAMOS EL FILTER QUE HACÍA EL BLOQUE GRIS/BLANCO */
  filter: none !important;
  opacity: 0.8; /* Un poco de transparencia general para que no brille tanto */
  transition: all 0.3s ease;
}
.main-footer .footer-actions .footer-social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.main-footer .footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}
.main-footer .footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .main-footer .footer-bottom .copyright {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.main-footer .footer-bottom .legal-tag {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}/*# sourceMappingURL=main.css.map */