html, body {
  min-height: 100dvh; /* 🔥 mejor para mobile */
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}

@font-face {
  font-family: 'Orbitron';
  src: url('./fonts/Orbitron/Orbitron-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* variable font soporta rangos de peso */
  font-style: normal;
  font-display: swap; /* importante para que no desaparezca el texto */
    
}

@font-face {
  font-family: 'Exo2';
  src: url('./fonts/Exo2/Exo2-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* variable font soporta rangos de peso */
  font-style: normal;
  font-display: swap; /* importante para que no desaparezca el texto */
    
}




.toast-success{
  position: fixed;
  top: 25px;
  right: 25px;
  width: 340px;
  max-width: calc(100% - 30px);

  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(255,140,0,0.35);

  border-radius: 18px;
  padding: 18px 20px;

  display: flex;
  align-items: center;
  gap: 14px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 0 20px rgba(255,140,0,0.18),
    0 0 40px rgba(255,140,0,0.08);

  z-index: 99999;

  animation: toastSlide 0.45s ease;
  transition:
    opacity .35s ease,
    transform .35s ease;

  overflow: hidden;
}

.toast-success.hide{
  opacity: 0;
  transform: translateX(120%);
  pointer-events: none;
}

.toast-success::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background: linear-gradient(to bottom,#ff9900,#ff5e00);
}

.toast-icon{
  font-size: 26px;
  flex-shrink:0;
}

.toast-text{
  display:flex;
  flex-direction:column;
  line-height:1.3;
}

.toast-text strong{
  color:#fff;
  font-size:15px;
  letter-spacing:.5px;
}

.toast-text span{
  color:#cfcfcf;
  font-size:14px;
}

.toast-close{
  margin-left:auto;

  width:30px;
  height:30px;

  border:none;
  border-radius:50%;

  background: rgba(255,255,255,0.08);
  color:#fff;

  cursor:pointer;

  font-size:16px;
  transition:.25s;
}

.toast-close:hover{
  background: rgba(255,140,0,0.25);
  transform: rotate(90deg);
}

@keyframes toastSlide{
  from{
    opacity:0;
    transform: translateX(100px);
  }
  to{
    opacity:1;
    transform: translateX(0);
  }
}

@media(max-width:768px){

  .toast-success{
    top: 15px;
    right: 15px;
    left: 15px;
    width:auto;
    padding:16px;
  }

}






body {
	
	display: flex;
  flex-direction: column;
	
  margin: 0;
font-family: 'Exo2', sans-serif !important;

  
  color: #fff;
  /*background: linear-gradient(to bottom, #0a0a0a 0%, #000 200px, #000 100%);*/
  background: #050505; /* 🔥 simple, sin gradiente pesado */
user-select: auto;
}

img, .btn-modern, .call-btn {
  user-select: none;
}

p {
  font-weight: 300;
  color: #ccc;
}

strong {
  font-weight: 600;
}

main {
  flex: 1;
}

	
/* Centrar títulos y subtítulos de todas las secciones */
section {
  text-align: center;
  padding:50px;
}

section h2 {
  font-family: 'Orbitron', monospace !important;
  font-size: 33px;
  font-weight: 900 !important;
  letter-spacing: 1.5px;
  text-align: center !important;
  color: #f5c542 !important;

  text-shadow:
    0 0 1px #fff,
    0 0 2px rgba(255,215,0,0.6),
    0 0 4px rgba(255,140,0,0.5)  !important;

  position: relative;
}

section h1,
section .subtitle {
  text-align: center !important; 
  font-size:20px !important;
  
}


.form-label {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #f5c542; /* opcional, estilo tuyo */
  font-weight: 600;
  margin-bottom: 12px;
  gap: 6px; /* 🔥 espacio entre texto y input */
}

/* Header layout */
.sticky-header {
  position: fixed;
  left: 0;
  right: 0; /* 👈 mejor que width */
  top: 0;
  /*background: #0a0a0a;	*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 40px; /* 🔥 más horizontal */
  z-index: 1000;
  border-bottom: none;
  /*transition: all 0.3s ease;*/
  /*transition: box-shadow 1.8s ease-out; /* más lento */
  background: transparent; /* 🔥 transparente al inicio */
  transition: all 0.4s ease;
}

.sticky-header.scrolled {
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); /*iPhone */
  background: rgba(10,10,10,0.95);

}

.sticky-header::after {
  display: none;
}

/* animación tipo energía */
@keyframes electricGlow {
  0% {
    box-shadow:
      0 0 4px rgba(255,165,0,0.3),
      0 0 8px rgba(255,140,0,0.2);
  }
  50% {
    box-shadow:
      0 0 12px rgba(255,165,0,0.6),
      0 0 25px rgba(255,140,0,0.4);
  }
  100% {
    box-shadow:
      0 0 6px rgba(255,165,0,0.4),
      0 0 15px rgba(255,140,0,0.3);
  }
}

/* animación tipo energía  Sutil*/
@keyframes electricGlowSutil {
  0% {
    box-shadow:
      0 0 2px rgba(255,165,0,0.3),
      0 0 4px rgba(255,140,0,0.2);
  }
  50% {
    box-shadow:
      0 0 6px rgba(255,165,0,0.6),
      0 0 12px rgba(255,140,0,0.4);
  }
  100% {
    box-shadow:
      0 0 3px rgba(255,165,0,0.4),
      0 0 7px rgba(255,140,0,0.3);
  }
}

.fade-in { 
	opacity: 0; transform: translateY(40px);
	transition: all 1s ease; 
} 
.fade-in.show { 
	opacity: 1; 
	transform: translateY(0); 
}


.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔥 2 columnas desktop */
  justify-content: center; /* 👈 centra el grid */
  gap: 25px 40px;
  margin-top: 30px;

}

.grid a > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  #services .grid {
    grid-template-columns: repeat(2, 280px); /* 👈 tamaño fijo */
    justify-content: center; /* 👈 centra el grid */
    gap: 25px 40px;
  }
  
  #services {
	scroll-margin-top: 70px;
  }
  
  #quote {
	scroll-margin-top: 45px;
  }
  
  #reviews {
	scroll-margin-top: 100px;
  }
  
}



.service-text {
  display: block;
  text-align: center;
  line-height: 1.2;

  /* 🔥 permite saltos naturales */
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .service-text {
    font-size: 14px;
  }
  .grid {
	 gap: 0px 13px; /* 🔥 más compacto */
  }
}

.mobile-break-services {
  display: none;
}

@media (max-width: 600px) {
  .mobile-break-services {
    display: inline;
  }
}



/*MOBILE (1 columna)*/
@media (max-width: 420px) {
  .grid {
    grid-template-columns: 1fr;
	 gap: 8px 10px; /* 🔥 más compacto */
  }
  .mobile-break-services {
  display: none;
 }
}


.grid a {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #222;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid transparent; /* ✅ ya ocupa espacio */
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: none; /* sin glow inicial */
}

.grid a:hover {
	color: #f5c542; /* amarillo */
	transform: none; /* 🔥 clave */
	border: 1px solid orange;
	box-shadow: 0 0 6px rgba(255,165,0,0.3);
	/*
	text-shadow:
    0 0 4px rgba(255,215,0,0.6),
    0 0 8px rgba(255,165,0,0.4);*/
	
	text-shadow:
  0 0 2px rgba(255,215,0,0.4),
  0 0 6px rgba(255,165,0,0.25);
	
	/*animation: electricGlowSutil 3.2s infinite alternate;*/
	animation-iteration-count: 3;
}

/* ✨ línea tipo reflejo diagonal */
.grid a::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 250%;
  height: 250%;

  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.08) 48%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.08) 52%,
    transparent 60%
  );

  transform: rotate(25deg);
  pointer-events: none;

  opacity: 0;
  animation: mirrorSweep 4s ease-in-out infinite;
}

@keyframes mirrorSweep {
  0% {
    top: -120%;
    left: -120%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  40% {
    top: 120%;
    left: 120%;
    opacity: 0;
  }

  100% {
    top: 120%;
    left: 120%;
    opacity: 0;
  }
}

.grid a img {
	width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 10px; /* espacio con texto */
  opacity: 0.9;
    filter: brightness(1);
  transition: all 0.3s ease;
}

.grid a:hover img {
  width: 55px;
  height: 55px;
  object-fit: contain;

  display: block;
  margin-bottom: 10px;

  transform-origin: center;

  filter:
    brightness(1.6)
    drop-shadow(0 0 1px orange)
    drop-shadow(0 0 3px rgba(255,140,0,0.8))
    drop-shadow(0 0 4px rgba(255,165,0,0.6));
}


/*.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:15px}
.grid div{background:#222;padding:20px;text-align:center}*/



@media (max-width: 768px) {
  .grid a img {
    width: 40px;
    height: 40px;
  }
  
  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-modern {
    width: 100%;
    max-width: 300px;
	font-size: 14px;
    padding: 12px 18px;
    gap: 6px;
  }
  
   .btn-modern img {
    width: 16px;
    height: 16px;
  }
}


.logo {
  height: 60px;
  position: relative;
  z-index: 2;

  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: 
    opacity 0.5s ease,
    transform 0.5s ease;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.25), transparent 70%);
  filter: blur(10px);
  z-index: -1;

  animation: logoGlow 2.5s infinite ease-in-out;
}

@keyframes logoGlow {
  0% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
  100% { opacity: 0.3; transform: scale(1); }
}




.hero {
  min-height: 100dvh;
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 🔥 centra vertical */
  align-items: center;     /* 🔥 centra horizontal */
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  padding: 0 20px; /* solo horizontal */
  background: url('./images/intro.png') center/cover no-repeat;
  position: relative;
  background-position: center top;
}

.hero-logo {
	animation: electricFlash 1.2s ease-out;

}
@keyframes electricFlash {
  0% {
    opacity: 0;
    filter: brightness(0) blur(8px);
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    filter: brightness(3) blur(2px);
    transform: scale(1.1);
  }
  70% {
    filter: brightness(1.5) blur(1px);
  }
  100% {
    filter: brightness(1) blur(0);
    transform: scale(1);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

background: linear-gradient(
  to bottom,
  rgba(0,0,0,0.75) 0%,
  rgba(0,0,0,0.65) 40%,
  rgba(0,0,0,0.85) 100%
),
radial-gradient(
  circle at center,
  rgba(0,0,0,0.2),
  rgba(0,0,0,0.6)
);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  height: 55vh; /* 🔥 más largo = transición invisible */

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.05) 10%,
    rgba(0,0,0,0.1) 20%,
    rgba(0,0,0,0.2) 35%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.5) 65%,
    rgba(0,0,0,0.7) 80%,
    rgba(0,0,0,0.85) 92%,
    #000 100%
  );
}

.hero * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Orbitron', monospace;
  letter-spacing: 2px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 1px;
   text-shadow:
    0 0 2px #fff,
    0 0 3px orange,
    0 0 15px rgba(255,165,0,0.8);
}

/*
.hero h1 {
  text-shadow:
    0 0 2px #fff,
    0 0 6px rgba(255,165,0,0.6),
    0 0 18px rgba(255,140,0,0.8),
    0 0 40px rgba(0,0,0,0.8);
}
*/

.hero-subtitle {
  color: #e3e3e3; /* 🔥 gris MUY claro (casi blanco) */
  margin-top: 10px;
  font-size: 28px;
  font-weight: 900; 
  animation: textEnergy 3s ease-in-out infinite;
}

@keyframes textEnergy {
  0% {
    text-shadow:
      0 0 2px rgba(0,0,0,0.6),
      0 0 4px rgba(0,0,0,0.4);
  }

  50% {
    text-shadow:
      0 0 2px rgba(0,0,0,0.6),
      0 0 10px rgba(255,165,0,0.35);
  }

  100% {
    text-shadow:
      0 0 2px rgba(0,0,0,0.6),
      0 0 4px rgba(0,0,0,0.4);
  }
}
.gallery{display:flex;flex-wrap:wrap;gap:10px}
.gallery img{width:45%}

.call-btn{
	position:fixed;
	bottom:20px;
	right:20px;
	padding:20px;
	border-radius:50%;
	z-index: 100;
	animation: pulseCall 1.8s infinite;

    color: orange; /* naranja energético */
	
  background: radial-gradient(circle at 30% 30%,
    #ffffff 0%,      /* centro brillante */
    #ffe066 25%,     /* amarillo vivo */
    #ff8c00 60%,     /* naranja fuerte */
    #ff5a00 100%     /* borde intenso */
  );
}

.call-btn:hover {
  transform: scale(1.08);

  box-shadow:
    0 0 10px rgba(255,165,0,0.6),
    0 0 20px rgba(255,140,0,0.5),
    0 0 35px rgba(255,165,0,0.4);

  filter: brightness(1.2);
}

.call-btn img {
  width: 25px;
  height: 25px;
  object-fit: contain;

}

.call-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 0, 0.18);

  box-shadow:
    0 0 5px rgba(255, 122, 0, 0.12);



  pointer-events: none;
}

.sticky-footer {
position: fixed;
  z-index: 10;
    user-select: none !important; /* 🔥 evita modo texto */
  bottom: 0;
  background: #111;

  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid rgba(255,0,0,0.2);
}

/* 🔥 esto es la clave */
.sticky-footer * {
  width: 100%;
  height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
    outline: 1px solid rgba(255,0,0,0.2);
	  user-select: none !important; 
}

.sticky-footer h3 {
  pointer-events: none;
}

/* RESPONSIVE */

/** Logo title **/

.logoTitle {
  width: 580px;
  max-width: 90%;
  height: auto;

  position: relative;
  z-index: 2;

  animation: electricEntrance 1.2s ease-out;
}

/* ⚡ Flash eléctrico de entrada */
@keyframes electricEntrance {
  0% {
    opacity: 0;
    transform: scale(0.85);
    filter: brightness(0) blur(6px);
  }

  40% {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(2.5) blur(2px);
  }

  70% {
    filter: brightness(1.4);
  }

  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

.logoTitle::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;

  background: radial-gradient(circle,
    rgba(255,165,0,0.25),
    transparent 70%
  );

  filter: blur(15px);
  z-index: -1;

  animation: energyPulse 2.5s infinite ease-in-out;
}

@keyframes energyPulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

/*ONLY ONE BOLT CLEAR*/
.logo-wrapper {
  position: relative;
  display: inline-block;
  width: fit-content; /* 🔥 clave */
}

.logoBolt {
  position: absolute;

  top: 35%;   /* 🔥 ajusta fino */
  left: 53%;  /* 🔥 ajusta fino */

  transform: translate(-50%, -50%);
  width: 140px;

  pointer-events: none;
  animation: boltEnergy 1.5s infinite;
}

@media (max-width: 768px) {
  .logoBolt {
    width: 80px;
    top: 35%;
    left: 53%;
  }
}

@media (max-width: 480px) {
  .logoBolt {
    width: 60px;
  }
 .call-btn img {
  width: 18px;   /* tamaño del icono */
  height: 18px;
  object-fit: contain;
}
}

@keyframes boltEnergy {
  0% {
    opacity: 0.4;
    filter: drop-shadow(0 0 5px orange);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 20px orange);
  }
  100% {
    opacity: 0.4;
    filter: drop-shadow(0 0 5px orange);
  }
}


/* Tablets */
@media (max-width: 768px) {
  .logoTitle {
    width: 350px;
  }
}

/* Celulares */
@media (max-width: 480px) {
  .logoTitle {
    width: 260px;
  }
}


/** NAV title**/
/* Logo + texto */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  
}

/* Texto oculto al inicio */
.nav-title {
  opacity: 0;
  transform: translateY(-20px);
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 44px;
  color: #fff;
  transition: all 0.4s ease; /* transición suave */
}

/* Animación de pulso gradual más fuerte */
.nav-title.show {
  opacity: 1;
  transform: translateY(0);
  animation: sunvoltPulse 7s infinite; /* ciclo completo */
}

/* Keyframes de energía gradual */
@keyframes sunvoltPulse {
  0%, 65%, 100% {
    text-shadow:
      0 0 0px orange,
      0 0 0px #ff8c00,
      0 0 0px #ffa500;
  }

  10% {
    text-shadow:
      0 0 2px orange,
      0 0 4px #ff8c00,
      0 0 6px #ffa500;
  }

  30% {
    text-shadow:
      0 0 4px orange,
      0 0 8px #ff8c00,
      0 0 12px #ffa500;
  }

  50% {
    text-shadow:
      0 0 6px orange,
      0 0 12px #ff8c00,
      0 0 18px #ffa500;
  }

  65% {
    text-shadow:
      0 0 4px orange,
      0 0 8px #ff8c00,
      0 0 12px #ffa500;
  }
}


/* Cuando haces scroll aparece */
.sticky-header.show-title .nav-title {
  opacity: 1;
  transform: translateX(0) scale(1);


}

/* LOGO */
.sticky-header.show-title .logo {
  opacity: 1;
  filter: drop-shadow(0 0 8px orange);
  transform: translateY(0) scale(1);
}

.sticky-header:not(.show-title) .logo {
  opacity: 0;
  transform: translateY(-15px) scale(0.95);
}

.sticky-header:not(.show-title) .nav-title {
  opacity: 0;
  transform: translateX(-15px) scale(0.98);
}

@keyframes sunvoltBolt {
  0% {
    filter: drop-shadow(0 0 4px orange);
  }

  50% {
    filter: 
      drop-shadow(0 0 10px orange)
      drop-shadow(0 0 20px #ff8c00)
      drop-shadow(0 0 30px #ffa500);
  }

  100% {
    filter: drop-shadow(0 0 4px orange);
  }
}

.nav-titleCenter {
  position: absolute;   /* importante para centrar */
  left: 50%;           /* centro horizontal */
  top: 50%;            /* centro vertical */
  transform: translate(-50%, -50%) translateY(-20px); /* inicia desplazado */
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 850;
  font-size: 36px;     /* más pequeño que el nav-title principal */
  color: Orange;
  text-shadow: 0 0 1px #fff, 0 0 1px orange, 0 0 1px #ffa500;
  letter-spacing: 2px;
  opacity: 0;          /* inicia oculto */
  transition: all 0.5s ease;
  pointer-events: none; /* no interfiere con clicks */
  z-index: 2;
}

/* Solo se muestra nav-titleCenter en pantallas menores o iguales a 1490px */
@media (max-width: 1400px) {
  .nav-titleCenter {
    display: none;
  }
}

/* Cuando hace scroll aparece */
.sticky-header.show-title .nav-titleCenter {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

/* SOLO desktop */
@media (max-width: 768px) {
  .sticky-header {
    justify-content: center; /* 🔥 centra todo */
	padding-bottom: 20px;
	padding-top: 20px;
	
  }
  
  .nav-title {
    display: block;
    font-size: 24px;
	padding-left:27px;

  }

  .nav-titleCenter {
    display: none !important;
  }

  .logo {
    position: absolute;
    left: 15px; /* mantiene logo a la izquierda */
  }

  .menu-toggle {
    position: absolute;
    right: 15px; /* mantiene menú a la derecha */
  }
}


/* Botón hamburguesa */

.menu-toggle {
	display: block;
	width: 30px;
	margin-left: auto; /* 🔥 lo empuja a la derecha */
	cursor: pointer;
	z-index: 1100;
}

/* Imagen central solo en mobile */
.logoTitleCenter {
  display: none;      /* default: no se ve */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 180px;   /* tamaño manejable en mobile */
  height: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 1;               /* visible cuando tenga clase active */
  transition: opacity 0.6s ease-in-out; /* duración y suavidad */
}

.logoTitleCenter.active {
  opacity: 1;               /* visible cuando tenga clase active */
}

/* MOBILE */
@media (max-width: 990px) {
	
  .logoTitleCenter.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
	transition: opacity 0.6s ease-in-out; /* duración y suavidad */
  }
}

nav {
position: fixed;
top: 0;
right: 0;
height: 100vh;

margin-left: auto;

width: 80%;
max-width: 260px;

background: #0a0a0a;

display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start; /* 🔥 cambio aquí */

padding: 100px 30px 40px; /* 🔥 empuja hacia abajo bonito */
gap: 25px;

transform: translateX(100%);
transition: transform 0.35s ease;
box-shadow: -10px 0 30px rgba(0,0,0,0.5);
z-index: 1050;
}
    
nav a {
	font-family: 'Exo 2', sans-serif;
	font-size: 20px; /* 🔥 prueba 18–24px */
	font-weight: 900;
	letter-spacing: 0.5px;
	transition: color 0.3s, transform 0.3s;
	color: #f5c542;
	text-shadow: 0 0 1px #fff, 0 0 3px orange;
	margin-left: 25px;
	text-decoration: none;
	width: 100%;
	text-align: left;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,165,0,0.2);
 }
  
nav a:hover {
	background: rgba(255,165,0,0.1);
	color: #f5c542;
	transform: scale(1.05);
	border-radius: 8px;
	transform: translateX(5px);
}
    
 
nav a img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
  
nav a:last-child {
	border-bottom: none;
}

/* cuando está activo */
nav.active {
	transform: translateX(0);
}

/* OVERLAY FOR MENU */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
	z-index: 1000;
}

.menu-overlay.active {
	opacity: 1;
	pointer-events: auto;
}
/* =========================
   REVIEWS SECTION
========================= */

.reviews {
  padding: 180px 130px;
  background: radial-gradient(circle at top, #111, #000);
  text-align: center;
}

/* TITULOS */
.reviews h2 {
  margin-bottom: 10px;
}

.reviews .subtitle {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 40px;
}


/* =========================
   CAROUSEL
========================= */

.track-container {
  overflow: hidden;
  padding-top: 10px; /* 🔥 espacio para que el hover no se corte */
}

.track {
  display: flex;
  gap: 20px; /* 🔥 menos espacio entre cards */
  will-change: transform;
}


/* =========================
   CARD (FIX REAL)
========================= */

.review-card {
  position: relative;
  z-index: 1;
  padding: 16px 18px 18px; /* 🔥 menos espacio arriba */
  min-width: 280px;
  max-width: 300px;
  height: 190px; /* 🔥 ALTURA FIJA = adiós desalineación */
  border-radius: 18px;
  background: #0a0a0a;
  color: #ddd;
  border: 1.5px solid rgba(255,165,0,0.6);
  overflow: hidden;
  display: flex;              /* 🔥 CLAVE */
  flex-direction: column;     /* 🔥 CLAVE */
  justify-content: space-between; /* 🔥 CLAVE */

  transition: all 0.3s ease;
}

/* Glow */
.review-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 18px;

  box-shadow:
    0 0 20px rgba(255,165,0,0.3),
    0 0 50px rgba(255,140,0,0.15);

  opacity: 0.3;
  pointer-events: none;
}

.review-card > * {
  position: relative;
  z-index: 2; /* 🔥 asegura que TODO quede arriba */
}

.review-card:hover .divider {
  background: linear-gradient(to right, transparent, #ffae00, transparent);

  box-shadow:
    0 0 6px rgba(255,165,0,0.6),
    0 0 12px rgba(255,140,0,0.4);
}

/* Detalle esquina */
.review-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 55%;
  height: 50px;

  border-top: 1.5px solid orange;
  border-right: 1.5px solid orange;
  border-radius: 0 40px 0 0;
  box-shadow: 0 0 10px rgba(255,165,0,0.5);
}

/* Hover más limpio */
.review-card:hover {
  transform: translateY(-5px) scale(1.02);
}


/* =========================
   CONTENT
========================= */

.review-card h3 {
  color: orange;
  font-size: 20px !important;
    margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, orange, transparent);
  margin: 6px 0 8px;
}

/* 🔥 TEXTO MEJORADO (más visible) */
.review-card p {
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;

  text-shadow:
    0 0 3px rgba(255,255,255,0.25),
    0 0 8px rgba(255,165,0,0.15);

  margin-bottom: 8px;
}


/* =========================
   FOOTER (ALINEADO PERFECTO)
========================= */

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto; /* 🔥 siempre abajo */
  margin-bottom: -8px; /* 🔥 acerca las estrellas al borde */
}

/* 🔥 ESTRELLAS FIJAS */
.stars {
  font-size: 24px;
  color: #f5c542;
  display: flex;
  gap: 6px; /* 🔥 mejor que letter-spacing */
  line-height: 1;
  /* 🔥 CONTORNO */
  -webkit-text-stroke: 0.5px rgba(255,140,0,0.8);

  /* 🔥 GLOW SUAVE */
  text-shadow:
    0 0 4px rgba(255,165,0,0.6),
    0 0 8px rgba(255,140,0,0.4);
}

/* Comillas */
.quote-icon {
  width: 34px;   /* 🔥 tamaño equilibrado */
  height: 34px;
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(255,165,0,0.6));
  transition: all 0.3s ease;
}

/* Hover más pro */
.review-card:hover .quote-icon {
  opacity: 1;

  filter: drop-shadow(0 0 10px rgba(255,165,0,0.9));
}

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

@media (max-width: 768px) {
  .review-card {
    min-width: 240px;
    max-width: 260px;
    height: 180px;
  }

  .review-card p {
    font-size: 14px;
  }
  
  .stars {
  font-size: 21px;
  }
}

@media (max-width: 421px) {
	.stars {
  font-size: 20px;
	}
}


/* mobile */
@media (max-width: 768px) {
  .nav { display: none; }
}

/* ICONOS SUBMENU - Ajuste desktop */
@media (min-width: 991px) {
  nav a img {
    width: 20px;   /* más pequeño en desktop */
    height: 20px;
    vertical-align: middle; /* alineado con el texto */
    margin-right: 6px;      /* espacio entre icono y texto */
  }

  nav a {
    font-size: 16px; /* opcional, un poco más pequeño */
    padding: 4px 6px; 
  }
}





@keyframes pulseCall {
  0% {
    box-shadow: 0 0 0 0 rgba(255,165,0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255,165,0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,165,0, 0);
  }
}

/**BUTTON DESIGN**/

.btn-submit {
	font-family: 'Exo2', sans-serif !important;
    margin: 0 auto; /* 🔥 esto lo centra */
  display: flex;  /* ya lo tienes como inline-flex, cámbialo a flex */
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;

  background: #f5c542; /* 🔥 tu color */
  color: #A04000;
 
  letter-spacing: 0.5px;

 /*-webkit-text-stroke: 0.5px #FFA500; /* 🔥 contorno negro */
  border: none;
  border-radius: 6px;
  max-width: 290px; /* 🔥 límite */
  width: 100%;      /* permite que se adapte pero no se pase */
  cursor: pointer;
  transition: all 0.25s ease;
}

/* icono PNG */
.btn-submit .btn-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
    filter:
    drop-shadow(0 0 1px #A04000)
    drop-shadow(0 0 2px #FFA500);
}

/* hover sutil */
.btn-submit:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}


.btn-modern {
	
	
  text-align: center;
  white-space: nowrap;   /* 🔥 evita salto de línea */
  text-overflow: ellipsis;

  
  display: inline-flex;
  align-items: center;   /* 🔥 centra vertical */
  justify-content: center;
  gap: 10px;             /* 🔥 espacio icono-texto */
	
	
  position: relative;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;

  color: #F7C41F; /* naranja elegante */


  /* 🔥 fondo limpio */
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);

  border-radius: 8px; /* 🔥 más cuadrado */
  border: 1.5px solid rgba(255,165,0,0.8);

  cursor: pointer;
  overflow: hidden;

  /* 🔥 sombra sutil */
box-shadow:
  0 4px 12px rgba(0,0,0,0.6),
  0 0 8px rgba(255,165,0,0.35), /* 🔥 glow externo */
  inset 0 0 6px rgba(255,165,0,0.12);

  transition: all 0.25s ease;
}

.btn-modern::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 2px;

  background: linear-gradient(90deg, transparent, orange, transparent);
  opacity: 0.6;
}

.btn-modern:hover {
  /* 🔥 mantenemos fondo oscuro */
  background: rgba(20, 20, 20, 0.95);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.9),
    0 0 10px rgba(255,165,0,0.5),
    0 0 20px rgba(255,140,0,0.3);
}

.btn-modern:hover span {
  background: linear-gradient(
    135deg,
    #F0B96B,
    #f5c542,
    #fC930A
  );

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

  background-size: 200% auto;
  animation: gradientMove 2s linear infinite;
}

.btn-modern::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );

  transform: skewX(-20deg);
  transition: 0.4s;
}

.btn-modern:hover::after {
  left: 120%;
}

/*ICONOS OUR SERVICES:*/
.icon-box {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible; /* ✅ permite que el glow salga */
  margin-bottom: 10px;
    padding: 4px; /* pequeño margen para el glow */
}

.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block; /* ✅ evita saltitos raros */
  transition: transform 0.3s ease, filter 0.3s ease;
}


/* ICONO BTN*/
.icon {
  width: 18px;
  height: 18px;
  object-fit: contain;

  margin: 0;        /* 🔥 elimina offsets raros */
  padding: 0;       /* 🔥 QUITA el padding que rompía todo */
  display: block;
  background: transparent; /* 🔥 clave */
 
}


.btn-modern img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(93%) saturate(500%) hue-rotate(360deg) brightness(105%);
}

.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* evita que se rompa feo */
}

/* Formulario */
/* Contenedor */
.custom-select {
  position: relative;
  background: linear-gradient(145deg, #1a1a1a, #111);
  border-radius: 8px;
  padding: 14px 18px;
  text-align: left;
  color: gray;
  
  user-select: none;
  border: 1px solid #333;
  box-shadow: inset 0 0 5px rgba(255,165,0,0.1);
}

/* Texto seleccionado */
.custom-select .selected::after {
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: orange;
  font-size: 12px;
}

/* Opciones */
.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 10;
}

.custom-select .options div {
  padding: 12px 18px;
  color: #fff;

  transition: 0.2s;
}

.custom-select .options div:hover {

  background: orange;
  color: #000;
}

/* Focus / activo */
.custom-select.active .options {
  display: block;
}


#quote form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background: #111; /* fondo oscuro */
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255,165,0,0.2);
}

#quote input,
#quote select,
#quote textarea {
  padding: 14px 18px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #333;
  background: linear-gradient(145deg, #1a1a1a, #111);
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 0 5px rgba(255,165,0,0.1);
}


/* Estilo select premium */
#quote select {
  appearance: none; /* quitar estilo por defecto */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: linear-gradient(145deg, #1a1a1a, #111);
  color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 16px;
  outline: none;
  
  box-shadow: inset 0 0 5px rgba(255,165,0,0.1);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  
  background-image: url('data:image/svg+xml;utf8,<svg fill="orange" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  padding-right: 40px; /* espacio para la flecha */
}

#quote select:focus {
  border-color: orange;
  box-shadow: 0 0 10px rgba(255,165,0,0.5), inset 0 0 5px rgba(255,165,0,0.2);
  background: linear-gradient(145deg, #222, #111);
}

#quote input::placeholder,
#quote textarea::placeholder {
  color: #aaa;
  opacity: 1;
}

#quote input:focus,
#quote select:focus,
#quote textarea:focus {
  border-color: orange;
  box-shadow: 0 0 10px rgba(255,165,0,0.5), inset 0 0 5px rgba(255,165,0,0.2);
  background: linear-gradient(145deg, #222, #111);
}

#quote textarea {
  min-height: 140px;
  resize: vertical;
}


/* asegura que el SVG dentro se muestre */
#quote button svg {
  display: inline-block;
  width: 18px;
  height: 18px;
  fill: orange;
  flex-shrink: 0;
}
#quote h2 {
  text-align: left;
  margin-bottom: 20px;
}
#quote button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,165,0,0.7);

}



/* RESPONSIVE */
@media (max-width: 600px) {
  #quote form {
    padding: 15px;
    gap: 12px;
  }
  
  .trust-badge img {
	width: 200px !important;
	}
}














.footer {
	
 font-family: 'Exo2', sans-serif !important;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,165,0,0.2);
  padding: 40px 20px 20px;
  color: #ccc;
    position: relative;
  overflow: hidden; /* opcional pero recomendado */
}

.footer-icon {
  width: 33px;
  height: 33px;
  object-fit: contain;
 transition: transform 0.25s ease, filter 0.35s ease;
}

.footer-container {	
 font-family: 'Exo2', sans-serif !important;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  gap: 20px;
}

.footer-brand h3 {
  color: orange;
  margin-bottom: 5px;
    font-size: 25px;
  font-weight: bold;
}


.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
 font-family: 'Exo2', sans-serif !important;
  text-decoration: none;
  color: #ccc;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px; /* 🔥 más espacio icono-texto */
  
}

.footer-links a:hover {
  color: #f5c542; /* amarillo */
  /*text-shadow:
    0 0 4px rgba(255,215,0,0.6),
    0 0 8px rgba(255,165,0,0.4);*/
	
  text-shadow:
  0 0 2px rgba(255,215,0,0.4),
  0 0 6px rgba(255,165,0,0.25);
}

/* Línea de abajo */
.footer-bottom {		
 font-family: 'Exo2', sans-serif !important;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
  padding-top: 17px;
  border-top: 1px solid #222;
  font-size: 16px;
  color: #777;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 20px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}


/* detalle sutil */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('./images/footer_bg.png') center/cover no-repeat;

  filter: brightness(0.2); /* 🔥 SOLO afecta la imagen */
  pointer-events: none;
  z-index: 0;
}


.footer-links a:hover .footer-icon {
  transform: scale(1.12);

  filter:
    brightness(1.5)
    drop-shadow(0 0 2px orange)
    drop-shadow(0 0 4px rgba(255,140,0,0.6))
    drop-shadow(0 0 6px rgba(255,165,0,0.5));
}

.footer > * {
  position: relative;
  z-index: 1;
}

.hero,
.footer {
  position: relative;
  isolation: isolate;
  z-index: 0;
}

.hero-subtext {
  margin-top: 10px;
  font-size: 20px;
  color: #f5f5f5;
}

/* Desktop */
.mobile-break {
  display: none;
}

/*Mobile vs desktop*/
.text-mobile {
  display: none;
}

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

  .text-mobile {
    display: inline;
  }

  .hero-subtext {
    font-size: 16px !important;
  }
  .mobile-break {
    display: block;
  }
}


/* contenedor principal */
.trust-content {
  max-width: 1000px;
  margin: 0 auto; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}

/* 🔥 línea vertical elegante */
.trust-content::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,165,0,0.6),
    transparent
  );

  box-shadow: 0 0 8px rgba(255,165,0,0.4);
}
/* TEXTO */
.trust-text {
  max-width: 500px;
  text-align: left;
}

.trust-text p {
  font-size: 22px;
  margin: 10px 0;
  color: #ddd;
}

/* hover sutil (sin mover nada) */
.trust-text p:hover {
  color: #f5c542;
  /*
  text-shadow:
    0 0 4px rgba(255,215,0,0.6),
    0 0 8px rgba(255,165,0,0.4);
	*/
	
	text-shadow:
  0 0 2px rgba(255,215,0,0.4),
  0 0 6px rgba(255,165,0,0.25);
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BADGE */
.trust-badge img {
  width: 250px !important;

  filter:
    drop-shadow(0 0 8px rgba(255,165,0,0.5))
    drop-shadow(0 0 20px rgba(255,140,0,0.3));
}

.trust h2 {
  margin-bottom: 30px;
}

/* BADGE */
.trust {
  padding: 40px 20px; /* antes estaba muy grande */
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .icon-box {
    margin-bottom: 0px !important; /* antes 10px */
	 padding: 0px !important; /* antes 20px */
  }

  .grid a img {
    margin-bottom: 1px !important; /* antes 10px */
	padding: 0px !important; /* antes 20px */
  }
  .grid a {
    padding-bottom: 10px !important; /* antes 20px */
	margin-bottom: 10px !important; /* antes 10px */
	padding-top: 10px !important; /* antes 20px */
	margin-top: 6px !important; /* antes 10px */
  }

  .grid a span,
  .grid a p {
    font-size: 14px;
    line-height: 1.3;
	padding: 0px !important; /* antes 20px */
  }

  .trust-content {
    flex-direction: column;
    gap: 25px;
  }

  /* ❌ quitar línea */
  .trust-content::after {
    display: none;
  }

  /* ✅ centrar texto */
  .trust-text {
	  max-width: 100%;
	  font-weight: 400;
	  letter-spacing: 0.3px;
  }

  .trust-text p {
     font-size: 20px;
  }

  /* ✅ badge abajo */
  .trust-badge img {
    width: 140px;
  }
  section h2 {
    font-size: 21px;
    font-family: 'Orbitron', monospace !important;
    color: #f5c542 !important;
    text-shadow:
      0 0 1px #fff,
      0 0 2px rgba(255,215,0,0.6),
      0 0 4px rgba(255,140,0,0.5);
  }
  
  section {
	padding: 35px 20px;
    scroll-margin-top: 45px;
	}
  section p{
	font-size: 20px !important;
	}
}



.trust-text p::before {
  content: "⚡";
  margin-right: 10px;
  color: #f5c542;

  text-shadow:
    0 0 3px rgba(255,215,0,0.6),
    0 0 6px rgba(255,165,0,0.4);
}


/***GENRIC FORMAT TEXT <p>**/
.text-block {
 flex: 1;
  max-width: 700px;
  text-align: justify; /* 🔥 clave: quita el center del section */
}

.check-list p {
  font-size: 22px;
  margin: 10px 0;
  color: #ddd;
  position: relative;
  padding-left: 28px;
  text-align: left; /* 🔥 esto hace el bloque uniforme */
}

.check-list p::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.2em; /* 🔥 se adapta al tamaño del texto */

  color: #f5c542;

  text-shadow:
    0 0 3px rgba(255,215,0,0.6),
    0 0 6px rgba(255,165,0,0.4);
}


/*CONSTRUCTION HTML**/

.construction-page{
 position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,140,0,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,165,0,0.12), transparent 50%),
    linear-gradient(145deg, #050505, #111);
}
.construction-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  padding: 8px 40px; /* 👈 igual que sticky-header */
  z-index: 1100;
}

.x-toggle {
  position: fixed;
  top: 20px;
  right: 38px;
	
  z-index: 2147483647; /* 🔥 máximo posible */
  display: block !important;

  /* 🔥 CLAVE: fuerza render en mobile */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);

  /* 🔥 evita bugs de capas */
  backface-visibility: hidden;
  width: 35px;
  height: 35px;
  cursor: pointer;

  transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  transform: rotate(-90deg) scale(0.8);
  animation: showX 0.9s ease forwards;
}


@keyframes showX {
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.x-toggle:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.slider {
  position: relative;
background: #111; /* evita flash blanco */
  overflow: visible;
    flex: 1;
  max-width: 550px;
  margin: 0; /* 🔥 quita el auto */
    opacity: 0;
  transition: opacity 0.5s ease-out;
}
.slider.ready {
  opacity: 1;
}
.slider-track {
  display: flex;
  justify-content: center;
  align-items: center;
    position: relative;

}

.slide {
  width: 100%;
  max-width: 100px;
  height: auto;
  position: absolute;
  opacity: 0;
  transition: opacity 0.025s ease-out;
  pointer-events: none;
  margin: 0 auto;
  will-change: opacity;
}

.slide.active {
    opacity: 1;
  position: relative;
  pointer-events: auto;
}

/* 🔥 BOTONES PERFECTAMENTE CENTRADOS */

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:9999;

  width:42px;
  height:42px;

  border:none;
  border-radius:50%;

  background:rgba(0,0,0,0.65);

  color:#fff;
  font-size:30px;
  font-weight:bold;
  line-height:1;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;
}

.slider-btn:hover{
  background:rgba(255,140,0,0.2);

  box-shadow:
    0 0 6px rgba(255,140,0,0.5),
    0 0 14px rgba(255,140,0,0.35);

  color:#fff;
}

.slider-btn.prev{
  left:7px;
}

.slider-btn.next{
  right:7px;
}

.construction-content {
  display: flex;
  flex-direction: column;
  align-items: center;
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.construction-content,
.text-block {
  text-align: left;
}

.construction-content h2 {
  font-family: 'Orbitron', monospace !important;
  font-weight: 900;
  color: #f5c542 !important;
  font-size: 30px;
}




/* Desktop: 2 columnas */
@media (min-width: 1024px) {
  .construction-content {
    align-items: center; /* 🔥 en vez de flex-start */
  }
  .text-block {
    flex: 1;
  }

  .slider {
    flex: 1;
  }
	  .slider {
    max-width: 1100px; /* 🔥 más ancho */
    margin: 60px auto;
  }

  .slide {
    max-width: 750px; /* 🔥 imágenes más grandes */
  }
	
  .check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px; /* 🔥 aquí está la magia */

  }

  .check-list p {
    margin: 6px 0;
  }
  
  .check-list p::before {
  top: 0px; /* 🔧 ajusta fino según font */
 }
}



/* Asegura que en mobile también se mantenga */
@media (max-width: 768px) {
  .hero {
	min-height: 80vh;   /* fallback */
    min-height: 85dvh; /* 👈 baja altura */
  }
  .x-toggle { 
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
  }
  
  .slider-btn {
    font-size: 22px;
    padding: 6px 10px;
  }

  .slide {
    max-width: 520px !important;
	padding-bottom:12px;
	padding-top:10px;
  }
  
  .check-list p {
  font-size: 20px;
  margin: 4px 0;
  color: #ddd;
  position: relative;
  padding-left: 25px;
  text-align: left; /* 🔥 esto hace el bloque uniforme */
 }
 .check-list p::before {
  top: 0px; /* 🔧 ajusta fino según font */
 }
 
  .reviews {
    padding: 80px 20px; /* 🔥 igual que tus otras sections */
  }
 
  #quote h2,
 .reviews h2,
 .fade-in h2,
 .construction-content h2 {
  font-size: 26px;
 }

}

/*TABLET slides images*/
@media (min-width: 769px) and (max-width: 1024px) {
  .slide {
    max-width: 520px;
	padding-bottom:40px;
	padding-top:20px;
  }
   .check-list p::before {
  top: 0px; /* 🔧 ajusta fino según font */
 }
}

@media (max-width: 421px) {
  	
 #quote h2,
 .reviews h2,
 .fade-in h2,
 .construction-content h2 {
  font-family: 'Orbitron', monospace !important;
  font-weight: 600;
  color: #f5c542 !important;
  font-size: 22px !important;
}
 .check-list p {
  font-size: 17px !important;
  margin: 2px 0 !important;
  padding-left: 15px !important;
  text-align: left; /* 🔥 esto hace el bloque uniforme */
 }
  .slide {
    max-width: 520px;
	padding-bottom:10px;
	padding-top:10px;
  }
  
  .trust-text p {
     font-size: 17px!important;
  }
  
}












/* =========================
   GALLERY PROJECTS SECTION
========================= */

.galleryProjects {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.galleryProjects h2 {
  text-align: left;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* =========================
   PROJECT CARD
========================= */

.project-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
  margin-bottom: 60px;
  align-items: center;

  background: #0a0a0a;
  border-radius: 20px;
  padding: 25px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* ⚡ energía glow */
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,140,0,0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

/* =========================
   PROJECT INFO
========================= */

.project-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.4;
}

.project-info strong {
  color: orange;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =========================
   PROJECT IMAGE
========================= */

.project-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

/* glow frame */
.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  box-shadow: 0 0 0px orange;
  transition: box-shadow 0.4s ease;
}

.project-card:hover .project-image::after {
  box-shadow: 0 0 25px rgba(255,140,0,0.5);
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}


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

/* Tablet */
@media (max-width: 900px) {
  .project-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .project-info {
    order: 2;
  }

  .project-image {
    order: 1;
  }
}

/* Mobile */
@media (max-width: 500px) {
  .galleryProjects {
    padding: 60px 15px;
  }

  .galleryProjects h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .project-card {
    padding: 18px;
    gap: 20px;
  }

  .project-info p {
    font-size: 0.85rem;
  }
}




