/* FUERZA OSCURO GLOBAL */
html, body {
  background-color: #000000 !important;
  color: #fff !important;
  margin: 0;
  padding: 0;
}

/* NAVBAR */
.navbar {
  background-color: #000 !important;
  border-bottom: 1px solid #222;
}

/* LINKS */
.nav-link {
  color: #d48c2e !important;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
}

/* TEXTO BRAND */
.navbar-brand,
.navbar-brand span {
  color: #fff !important;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366; /* verde WhatsApp */
  color: #ffffff;            /* icono blanco */
  border-radius: 50%;
  text-align: center;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,.5);
}


.footer-dark {
  background-color: #000;
  border-top: 1px solid #1f1f1f;
  padding: 30px 0;
  color: #aaa;
  font-size: 0.95rem;
}

.footer-dark p {
  margin: 6px 0;
}

.footer-dark a {
  color: #f39c12;
  text-decoration: none;
}

.footer-dark a:hover {
  color: #ffa726;
  text-decoration: underline;
}

.footer-dark .dev {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #666;
}

.footer-dark .dev span {
  color: #888;
}


.footer-brand-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

/* Logo */
.footer-logo img {
  width: 200px;
  height: auto;
}

/* Mapa */
.footer-map {
  width: 4000px;
  max-width: 500%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #222;
}

/* 📱 Mobile: uno debajo del otro */
@media (max-width: 768px) {
  .footer-brand-map {
    flex-direction: column;
  }

  .footer-logo img {
    width: 140px;
  }

  .footer-map {
    width: 100%;
  }
}
/* ===== MAPA CON GLOW ANIMADO ===== */
.footer-map {
  width: 4000px;
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #222;
  animation: glowPulse 4s infinite;
  transition: transform .4s ease;
}

.footer-map:hover {
  transform: scale(1.05);
}

/* Pulso suave */
@keyframes glowPulse {
  0%   { box-shadow: 0 0 10px rgba(243,156,18,.15); }
  50%  { box-shadow: 0 0 25px rgba(243,156,18,.45); }
  100% { box-shadow: 0 0 10px rgba(243,156,18,.15); }
}

/* ===== REDES SOCIALES ===== */
.footer-social {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social .social {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

/* Hover general */
.footer-social .social:hover {
  transform: translateY(-6px) scale(1.05);
}

/* COLORES POR RED */
.social.ig:hover {
  box-shadow: 0 0 18px rgba(225,48,108,.8);
  color: #e1306c;
}

.social.fb:hover {
  box-shadow: 0 0 18px rgba(24,119,242,.8);
  color: #1877f2;
}

.social.wa:hover {
  box-shadow: 0 0 18px rgba(37,211,102,.8);
  color: #25d366;
}

/* TOOLTIP */
.social::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -34px;
  background: #000;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: all .3s ease;
  white-space: nowrap;
}

.social:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FADE IN AL SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-map {
    width: 100%;
  }
}

.hero {
  position: relative;
  height: 90vh;
  background: url("/img/1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
}

.hero-logo {
  height: 110px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 25px;
}
/* ALTURA DEL CAROUSEL */
#carouselExample {
  max-height: 400px;
}

/* ITEMS */
#carouselExample .carousel-item {
  height: 400px;
}

/* IMÁGENES */
#carouselExample .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: scale-down;
}

.logo-brother {
  width: 180px;                 /* ajustá tamaño */
  transition: all 0.4s ease;    /* animación suave */
  cursor: pointer;
}

.logo-brother:hover {
  transform: scale(1.08);       /* agranda un poco */
  filter: brightness(1.1);      /* resalta */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.logo-brother {
  width: 180px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3b60a3;
}

.neon-author {
  margin-top: 6px;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f39c12;
  text-shadow:
    0 0 5px #f39c12,
    0 0 10px #f39c12,
    0 0 20px #ffae42,
    0 0 40px #ffae42;
  animation: neonFlicker 3.5s infinite;
}

/* ========================= */
/* NEÓN AUTOR (DESKTOP ONLY) */
/* ========================= */

.neon-author {
  margin-top: 6px;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6ecbff; /* azul hielo */
  text-shadow:
    0 0 6px rgba(110,203,255,.6),
    0 0 12px rgba(110,203,255,.7),
    0 0 22px rgba(110,203,255,.8),
    0 0 42px rgba(110,203,255,.9);
  animation: neonFlickerSync 4s ease-in-out infinite;
}
.neon-author2 {
  margin-top: 6px;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #da9022; /* azul hielo */
  text-shadow:
    0 0 6px rgba(110,203,255,.6),
    0 0 12px rgba(110,203,255,.7),
    0 0 22px rgba(110,203,255,.8),
    0 0 42px rgba(110,203,255,.9);
  animation: neonFlickerSync 4s ease-in-out infinite;
}

/* Sincronizado con el float del logo */
@keyframes neonFlickerSync {
  0%   { opacity: 1; }
  45%  { opacity: .85; }
  50%  { opacity: .6; }
  55%  { opacity: .9; }
  100% { opacity: 1; }
}

/* ========================= */
/* MOBILE: APAGAR EFECTO     */
/* ========================= */

@media (max-width: 768px) {
  .neon-author {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-separator {
    width: 90%;
    margin: 20px auto;
  }
}
.section-separator {
  height: 2px;
  background: linear-gradient(90deg, transparent, #f39c12, transparent);
  margin: 40px 0;
} 

/* =======================
   ABOUT
======================= */
.about-section {
  padding: 50px 0;
  background-color: #0f1113;
}

.about-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #eaf6ff;
  letter-spacing: 1px;
}

.about-title i {
  color: #6ecbff;
  margin-right: 8px;
  text-shadow: 0 0 12px rgba(110,203,255,.7);
}

.about-text {
  max-width: 900px;
  margin: 0 auto 15px auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffffff;
  text-align: center;
}

/* =======================
   SERVICES
======================= */
.services-section {
  padding: 50px 0;
  background-color: #111417;
}

.services-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 35px;
  color: #ffffff;
}

.service-card {
  background: #151a1f;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,.4);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card i {
  font-size: 2.5rem;
  color: #6ecbff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(110,203,255,.6);
}

.service-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.service-card p {
  color: #cfd8dc;
  font-size: .95rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(110,203,255,.25);
}

/* =======================
   ANIMACIÓN FADE IN SCROLL
======================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.about-section {
  padding: 4rem 0;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #60b5e6;
}

.about-img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-call {
  margin-top: 35px;
  text-align: center;
}

.about-call a {
  background: linear-gradient(135deg, #f39c12, #ffae42);
  color: #000;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(243,156,18,.4);
  transition: transform .3s ease, box-shadow .3s ease;
}

.about-call a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 35px rgba(243,156,18,.7);
}
.about-whatsapp-cta {
  margin-top: 20px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: #cfd8dc;
}

/* Manito */
.hand-point {
  display: block;              /* clave para que no se superponga */
  margin-top: 6px;
  text-align: center;
  font-size: 1.8rem;
  color: #25D366;
  animation: pointDown 1.4s infinite;
  pointer-events: none;        /* no interfiere con clicks */
}

/* Animación */
@keyframes pointDown {
  0%   { transform: translateY(0); opacity: 0.7; }
  50%  { transform: translateY(8px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.7; }
}
.title-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
  padding: 0 10px;
}

.title-text {
  font-size: clamp(1.4rem, 5vw, 2.6rem);
  font-weight: 700;
  color: #ff8c00; /* naranja */
  white-space: nowrap;
  text-align: center;
}

.line {
  flex: 1;
  max-width: 120px;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    #ff8c00,
    transparent
  );
}

.title-lines {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.title-neon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  padding: 0 12px;
}

/* TEXTO NEÓN */
.title-text {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #ff9f1c;
  text-align: center;
  white-space: nowrap;
  text-shadow:
    0 0 5px #ff9f1c,
    0 0 10px #ff7b00,
    0 0 20px #ff7b00,
    0 0 40px rgba(255,123,0,0.8);
  animation: neonPulse 2.5s ease-in-out infinite;
}

/* LÍNEAS */
.line {
  height: 3px;
  width: 0;
  background: linear-gradient(
    to right,
    transparent,
    #ff9f1c,
    transparent
  );
  box-shadow:
    0 0 6px #ff9f1c,
    0 0 12px #ff7b00;
}
/* CONTENEDOR */
.title-neon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  padding: 0 12px;
  animation: fadeUp 1s ease forwards;
}

/* TEXTO NEÓN FRÍO */
.title-text {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #4fd1ff;
  white-space: nowrap;
  text-align: center;
  position: relative;

  text-shadow:
    0 0 6px #4fd1ff,
    0 0 14px #1bbcff,
    0 0 28px #00e5ff,
    0 0 52px rgba(0,229,255,0.85);

  animation: neonPulseCold 3s ease-in-out infinite;
  transition: transform 0.4s ease;
}

/* PULSE AL HOVER */
.title-neon:hover .title-text {
  transform: scale(1.05);
}

/* VAPOR FRÍO */
.title-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 140%;
  height: 18px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(180,240,255,0.4),
    transparent 70%
  );
  filter: blur(8px);
  animation: coldMist 4s ease-in-out infinite;
  pointer-events: none;
}

/* LÍNEAS */
.line {
  height: 3px;
  width: 0;
  background: linear-gradient(
    to right,
    transparent,
    #4fd1ff,
    transparent
  );
  box-shadow:
    0 0 6px #4fd1ff,
    0 0 14px #1bbcff,
    0 0 22px #00e5ff;
}

/* ELECTRICIDAD DESDE EL CENTRO */
.line.left {
  animation: growLeft 1.1s ease-out forwards, electric 2.5s linear infinite;
}

.line.right {
  animation: growRight 1.1s ease-out forwards, electric 2.5s linear infinite;
}

/* KEYFRAMES */
@keyframes growLeft {
  from { width: 0; }
  to { width: 120px; }
}

@keyframes growRight {
  from { width: 0; }
  to { width: 120px; }
}

@keyframes electric {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.4); }
  100% { filter: brightness(1); }
}

@keyframes neonPulseCold {
  0%, 100% {
    text-shadow:
      0 0 6px #4fd1ff,
      0 0 14px #1bbcff,
      0 0 28px #00e5ff;
  }
  50% {
    text-shadow:
      0 0 12px #b6f3ff,
      0 0 28px #4fd1ff,
      0 0 52px #00e5ff;
  }
}

@keyframes coldMist {
  0%, 100% {
    opacity: 0.35;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-50%) translateY(-6px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .line.left,
  .line.right {
    animation: none;
    width: 70px;
  }

  .title-text::after {
    width: 110%;
  }
}
/* CONTENEDOR LOGO + ESTAMPA */
.logo-wrapper {
  position: relative;
  display: inline-block;
  z-index: 5;              /* base */
}

.stamp-link {
  position: absolute;
  top: 50px;               /* ajustá */
  right: 275px;            /* ajustá */
  z-index: 40;             /* MÁS ALTO */
  pointer-events: auto;
  text-decoration: none;
}

.stamp {
  pointer-events: auto;
  cursor: pointer;
}


/* ESTAMPA */
.stamp {
  position: absolute;
  top: 50%;
  right: -60px;

  background: transparent;
  border: 3px solid #67cdec;
  color: #2a95d3;

  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;

  padding: 10px 14px;
  transform: rotate(18deg);

  letter-spacing: 1px;
  pointer-events: none;
  user-select: none;

  box-shadow: 0 0 0 2px rgba(255,59,59,0.15);
}

/* EFECTO ESTAMPA */
.stamp::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(66, 224, 217, 0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stamp {
    right: -30px;
    font-size: 12px;
    padding: 8px 10px;
  }
}
/* CONTENEDOR LOGO + ESTAMPA */
.logo-wrapper {
  position: relative;
  display: inline-block;
}

/* ESTAMPA SELLO FRÍO – ULTRA SUTIL */
.stamp {
  position: absolute;
  top: 50%;
  right: 185px; /* más a la derecha */

  background: transparent;
  border: 2px solid #c72c21;
  color: #dd3d28;

  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;

  padding: 10px 18px;
  transform: rotate(-18deg);

  letter-spacing: 1.6px;
  pointer-events: none;
  user-select: none;

/* Glow casi imperceptible */
  box-shadow:
    0 0 2px rgba(180, 230, 255, 0.15);

  /* Animación de entrada */
  opacity: 0;
  animation: selloEntrada 1s ease-out forwards;
}

/* BORDE SELLADO */
.stamp::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(210, 240, 255, 0.45);
}
/* ANIMACIÓN SUAVE */
@keyframes selloEntrada {
  0% {
    opacity: 0;
    transform: translateY(-10px) rotate(-18deg) scale(0.85);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-18deg) scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stamp {
    right: -70px;
    font-size: 12px;
    padding: 15px 12px;
  }
}
.stamp-link {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.stamp-link .stamp {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stamp-link:hover .stamp {
  transform: scale(1.05);
}
html {
  scroll-behavior: smooth;
}
.stamp-link {
  position: absolute;        /* o relative según tu layout */
  z-index: 9999;             /* MUY IMPORTANTE */
  pointer-events: auto;
  text-decoration: none;
}

.stamp {
  pointer-events: auto;
  cursor: pointer;
}
.neon-author,
.neon-author2 {
  position: relative;
  z-index: 1;              /* por debajo de la estampa */
  pointer-events: none;    /* no capturan el click */
}
.stamp:hover {
  transform: scale(1.05);
}
.service-card {
  display: block;
  height: 100%;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card i {
  font-size: 36px;
  color: #134b8a;
  margin-bottom: 15px;
}
html {
  scroll-behavior: smooth;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: #134b8a;   /* 👈 ESTE es el fix */
  color: #fff;
  text-decoration: none;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-card:link,
.service-card:visited {
  color: #fff;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: #0f3f73;
}
.service-card i {
  font-size: 40px;
  margin-bottom: 18px;
  color: #fff;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

* {
  pointer-events: auto !important;
}
.color-brother {
  color: #2ecbff;
  text-shadow: 0 0 6px rgba(46, 203, 255, 0.4);
}
.carousel-indicators {
  bottom: -30px; /* más abajo del carrusel */
}
