
*{
margin:0;
padding:0;
box-sizing:border-box;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:#05070d;
color:white;
overflow-x:hidden;
}

#navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:22px 70px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
transition:0.4s ease;
background:transparent;
}

#navbar.scrolled{
background:rgba(5,7,13,0.85);
backdrop-filter:blur(12px);
}

.logo{
font-size:20px;
font-weight:700;
}

/* Logo en la barra: solo ajustar tamaño, no modificar archivos */
.nav-logo img,
.logo img{
  height:56px;
  width:auto;
  display:block;
}

.nav-partner img{
  height:80px;
  width:auto;
  display:block;
  opacity:0.95;
}

.nav-links{
display:flex;
gap:35px;
}

.nav-links a{
position:relative;
color:white;
text-decoration:none;
transition:0.3s;
padding-bottom:6px;
}

.nav-links a::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:100%;
height:2px;
background:#2f6bff;
transform:scaleX(0);
transform-origin:left;
transition:transform 0.3s ease;
}

.nav-links a:hover{
color:#2f6bff;
}

.nav-links a:hover::after{
transform:scaleX(1);
}

/* HAMBURGER MENU */
.hamburger{
display:none;
flex-direction:column;
gap:6px;
background:none;
border:none;
cursor:pointer;
padding:5px;
z-index:1001;
}

.hamburger span{
width:25px;
height:3px;
background:white;
border-radius:2px;
transition:0.3s ease;
}

.hamburger.active span:nth-child(1){
transform:rotate(45deg) translateY(12px);
}

.hamburger.active span:nth-child(2){
opacity:0;
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg) translateY(-12px);
}

.hero{
position:relative;
height:100vh;
overflow:hidden;
display:flex;
align-items:center;
padding:0 80px;
background:black;
}

.hero-video{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

/* Carousel slides used when .has-carousel is present */
.hero.has-carousel .hero-slides{
  position:absolute;
  inset:0;
  z-index:1;
  overflow:hidden;
}
.hero.has-carousel .slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center center;
  opacity:0;
  transition:opacity .9s ease;
}
.hero.has-carousel .slide.active{opacity:1}
.hero.has-carousel .carousel-controls{
  position:absolute;
  right:40px;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  display:flex;
  gap:8px;
}
.hero.has-carousel .carousel-prev,
.hero.has-carousel .carousel-next{
  background:rgba(0,0,0,0.45);
  color:white;
  border:none;
  padding:10px 14px;
  font-size:22px;
  border-radius:8px;
  cursor:pointer;
}
.hero.has-carousel .carousel-prev:hover,
.hero.has-carousel .carousel-next:hover{background:rgba(0,0,0,0.6)}
.hero.has-carousel .carousel-dots{
  position:absolute;
  left:50%;
  bottom:36px;
  transform:translateX(-50%);
  z-index:6;
  display:flex;
  gap:8px;
}
.hero.has-carousel .carousel-dots button{
  width:10px;height:10px;border-radius:50%;border:none;background:rgba(255,255,255,0.35);cursor:pointer;padding:0;
}
.hero.has-carousel .carousel-dots button.active{background:white}

/* ensure hero-content sits above slides */
.hero .hero-content{z-index:7;position:relative}

/* Ocultar controles (flechas) del carrusel cuando el usuario lo solicite */
.hero.has-carousel .carousel-controls{display:none !important}

/* If a hero has an image, use it as background and hide the video */
/* hero image/carousel removed — hero uses video by default */

.hero-dark{
position:absolute;
inset:0;
background:linear-gradient(to right,
rgba(0,0,0,0.9),
rgba(0,0,0,0.55));
z-index:2;
}

.hero-light{
position:absolute;
width:600px;
height:600px;
background:#2f6bff;
border-radius:50%;
filter:blur(180px);
opacity:0.15;
top:-100px;
right:-100px;
z-index:2;
}

.hero-content{
position:relative;
z-index:5;
max-width:850px;
}

.hero-mini{
color:#2f6bff;
letter-spacing:4px;
font-size:13px;
}

.hero h1{
font-size:95px;
line-height:0.95;
margin:25px 0;
}

.hero h1 span{
color:#2f6bff;
}

.hero p{
font-size:20px;
line-height:1.9;
opacity:0.8;
max-width:650px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-top:40px;
}

/* Hero logos row (Inicio, Catálogos, Productos, Contacto) */
.page-hero .hero-logos{
  display:flex;
  gap:18px;
  margin-top:26px;
  align-items:center;
  justify-content:center;
}
.page-hero .hero-logos a img{
  height:56px;
  width:auto;
  display:block;
  filter:brightness(1);
  opacity:0.95;
}



/* BOTON PREMIUM */

.btn{
position:relative;

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

padding:16px 38px;

background:linear-gradient(
135deg,
#2f6bff,
#1d4ed8
);

color:white;

font-weight:500;

border-radius:14px;

text-decoration:none;

overflow:hidden;

transition:0.4s ease;

box-shadow:
0 10px 30px rgba(47,107,255,0.25);

margin-top:25px;
}

/* GLOW */

.btn::before{

content:'';

position:absolute;

width:200%;

height:200%;

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

transform:rotate(25deg);

left:-120%;

top:-50%;

transition:0.8s;
}

/* HOVER */

.btn:hover{

transform:translateY(-6px);

box-shadow:
0 20px 40px rgba(47,107,255,0.45);

}

/* EFECTO LUZ */

.btn:hover::before{

left:120%;

}

/* BOTON OUTLINE */

.btn-outline{

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

padding:16px 38px;

border-radius:14px;

border:1px solid rgba(255,255,255,0.2);

backdrop-filter:blur(10px);

background:rgba(255,255,255,0.03);

color:white;

text-decoration:none;

transition:0.4s ease;
}

/* HOVER */

.btn-outline:hover{

background:white;

color:black;

transform:translateY(-6px);

box-shadow:
0 15px 35px rgba(255,255,255,0.15);

}

.section{
padding:120px 80px;
}

.catalogos-section{
background:#05070d;
}

.catalogos-group{
margin-bottom:52px;
}

.catalogos-group h2{
font-size:34px;
margin-bottom:24px;
color:#ffffff;
}

.catalogos-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.catalogo-card{
background:#0c111f;
border:1px solid rgba(255,255,255,0.06);
border-radius:18px;
overflow:hidden;
transition:0.4s;
}

.catalogo-card:hover{
transform:translateY(-12px);
box-shadow:0 0 30px rgba(47,107,255,0.15);
}

.catalogo-preview{
background:linear-gradient(135deg, #111827 0%, #0f172a 100%);
height:290px;
border-bottom:1px solid rgba(255,255,255,0.08);
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
color:#fff;
}

.pdf-icon{
width:96px;
height:120px;
background:linear-gradient(180deg, #ff5e5e 0%, #d92d2d 100%);
border-radius:14px;
position:relative;
box-shadow:0 10px 25px rgba(217,45,45,0.35);
font-weight:800;
letter-spacing:1px;
font-size:22px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:18px;
}

.pdf-icon::before{
content:"";
position:absolute;
right:0;
top:0;
width:24px;
height:24px;
background:#f7d4d4;
clip-path:polygon(0 0, 100% 0, 100% 100%);
border-top-right-radius:12px;
}

.catalogo-preview span{
font-size:15px;
letter-spacing:0.5px;
opacity:0.9;
}

.catalogo-content{
padding:28px 24px 30px;
}

.catalogo-content h3{
font-size:28px;
margin-bottom:12px;
}

.catalogo-content p{
margin-bottom:22px;
line-height:1.8;
opacity:0.8;
}

.catalogo-actions{
display:flex;
flex-wrap:wrap;
gap:12px;
}

.catalogo-actions a{
text-decoration:none;
color:#fff;
padding:12px 18px;
border-radius:10px;
background:#13213d;
border:1px solid rgba(255,255,255,0.08);
transition:0.3s ease;
}

.catalogo-actions a:hover{
background:#2f6bff;
}

.productos{
background:#070b14;
}

.titulo-section{
margin-bottom:60px;
}

.titulo-section span{
color:#2f6bff;
font-size:14px;
letter-spacing:3px;
}

.titulo-section h2{
font-size:55px;
margin:10px 0;
}

.productos-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.producto-card{
background:#0c111f;
padding:50px;
border-radius:18px;
transition:0.4s;
}

.producto-card:hover{
transform:translateY(-12px);
box-shadow:0 0 30px rgba(47,107,255,0.15);
}

.linea{
width:60px;
height:4px;
background:#2f6bff;
margin-bottom:25px;
}

.about-home{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:30px;
  align-items:center;
  padding:140px 80px;
  background:linear-gradient(180deg, #070b14 0%, #0b1019 100%);
}

.about-home-copy span{
  color:#2f6bff;
  letter-spacing:3px;
  font-size:13px;
  font-weight:600;
}

.about-home-copy h2{
  font-size:56px;
  line-height:1.05;
  margin:20px 0 18px;
}

.about-home-copy p{
  font-size:18px;
  line-height:1.9;
  color:rgba(255,255,255,0.75);
  margin-bottom:14px;
}

.about-home-visual{
  min-height:420px;
  border-radius:28px;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.52)),
    url('https://images.unsplash.com/photo-1581092160607-ee22731b6f5f?q=80&w=1200&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding:32px;
}

.about-badge{
  background:rgba(10, 16, 27, 0.72);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(8px);
  border-radius:14px;
  padding:16px 18px;
  color:#edf4ff;
  font-size:14px;
  letter-spacing:1.5px;
  text-transform:uppercase;
}

.industrial-section{
min-height:100vh;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
background:#05070d;
}

.industrial-image{
height:100%;
min-height:700px;
background:
linear-gradient(rgba(3,15,28,0.56), rgba(3,15,28,0.72)),
url('assets/images/269581-BOSCH_BIC-LT_Keyvisual_1080x1080_071122_HG_300dpi.jpg');
background-size:cover;
background-position:center;
}

.industrial-content{
padding:100px;
}

.industrial-content span{
color:#2f6bff;
letter-spacing:3px;
font-size:13px;
}

.industrial-content h2{
font-size:65px;
line-height:1.05;
margin:20px 0;
}

.services-showcase{
  padding:120px 80px 140px;
  background:linear-gradient(180deg, #05070d 0%, #0a101b 100%);
}

.services-intro{
  max-width:820px;
  margin-bottom:42px;
}

.services-intro span{
  color:#2f6bff;
  letter-spacing:3px;
  font-size:13px;
  font-weight:600;
}

.services-intro h2{
  font-size:60px;
  line-height:1.04;
  margin-top:18px;
  margin-bottom:18px;
  letter-spacing:-0.04em;
}

.services-intro p{
  font-size:18px;
  line-height:1.8;
  color:rgba(255,255,255,0.72);
  max-width:680px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
}

.service-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:34px 28px 28px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(18,25,39,0.96), rgba(10,14,22,0.96));
  border:1px solid rgba(255,255,255,0.08);
  overflow:hidden;
  transition:transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg, #2f6bff, #63a6ff);
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:rgba(47,107,255,0.45);
  box-shadow:0 22px 48px rgba(47,107,255,0.12);
}

.service-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:14px;
  background:rgba(47,107,255,0.12);
  color:#7fb0ff;
  font-weight:700;
  letter-spacing:1px;
}

.service-card h3{
  margin:26px 0 16px;
  font-size:28px;
  line-height:1.2;
}

.service-card p{
  color:rgba(255,255,255,0.72);
  line-height:1.8;
  margin-bottom:18px;
}

.service-card ul{
  list-style:none;
  padding:0;
  margin:0 0 22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.service-card li{
  position:relative;
  padding-left:18px;
  color:rgba(255,255,255,0.7);
  font-size:14px;
  line-height:1.6;
}

.service-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#2f6bff;
}

.service-card a{
  display:inline-flex;
  align-items:center;
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  margin-top:auto;
  position:relative;
}

.service-card a::after{
  content:"→";
  margin-left:8px;
  transition:transform 0.25s ease;
}

.service-card a:hover::after{
  transform:translateX(4px);
}

.stats-section{
padding:140px 80px;
background:#070b14;
}

.stats-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;
}

.stat-box{
background:#0c111f;
padding:60px 40px;
border-radius:20px;
text-align:center;
transition:0.4s;
}

.stat-box:hover{
transform:translateY(-10px);
}

.stat-box h3{
font-size:70px;
color:#2f6bff;
}

.whatsapp{
position:fixed;
bottom:25px;
right:25px;

width:62px;
height:62px;

background:#25D366;

border-radius:50%;

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

z-index:1000;

box-shadow:
0 8px 25px rgba(37,211,102,.35);

transition:.35s ease;
}

.whatsapp img{
width:32px;
height:32px;

filter:brightness(0) invert(1);
}

.whatsapp:hover{
transform:scale(1.12) translateY(-4px);

box-shadow:
0 15px 35px rgba(37,211,102,.5);
}

footer{
text-align:center;
padding:50px 20px;
background:#02040a;
}

.footer-links{
margin-top:15px;
display:flex;
justify-content:center;
gap:20px;
}

.footer-links a{
color:#aaa;
text-decoration:none;
}

.fade-up{
opacity:0;
transform:translateY(80px);
transition:1s ease;
}

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

@media(max-width:900px){

.hamburger{
display:flex;
}

.nav-links{
display:none;
position:absolute;
top:90px;
left:0;
right:0;
width:100%;
background:rgba(5,7,13,0.95);
flex-direction:column;
gap:0;
padding:20px 0;
backdrop-filter:blur(12px);
z-index:999;
}

.nav-links.active{
display:flex;
}

.nav-links a{
padding:15px 20px;
border-bottom:1px solid rgba(255,255,255,0.1);
}

  .nav-logo img,
  .nav-partner img{
  height:64px;
}

.hero{
padding:0 30px;
}

.hero h1{
font-size:55px;
}

.about-home{
  grid-template-columns:1fr;
  padding:100px 30px;
}

.about-home-copy h2{
  font-size:42px;
}

.industrial-section{
grid-template-columns:1fr;
}

.industrial-content{
padding:50px 30px;
}

.services-showcase{
  padding:100px 30px;
}

.services-intro h2{
  font-size:44px;
}

.services-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

}

@media(max-width:620px){
  .services-grid{
    grid-template-columns:1fr;
  }
}
/* GALERIA */

.gallery-section{
  padding:140px 80px;
  background:#05070d;
}

/* TITULO */

.gallery-title{
  margin-bottom:70px;
}

.gallery-title span{
  color:#2f6bff;
  letter-spacing:3px;
  font-size:13px;
}

.gallery-title h2{
  font-size:65px;
  margin-top:20px;
}

/* GRID */

.gallery-grid{
  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:25px;
}

/* ITEM */

.gallery-item{
  position:relative;

  overflow:hidden;

  border-radius:24px;

  min-height:350px;

  background:#111;
}

/* TAMAÑOS */

.gallery-item.large{
  grid-column:span 2;
  min-height:500px;
}

.gallery-item.wide{
  grid-column:span 2;
}

/* IMAGEN */

.gallery-item img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.7s ease;
}

/* OVERLAY */

.gallery-overlay{
  position:absolute;

  inset:0;

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,0.9),
  rgba(0,0,0,0.2)
  );

  display:flex;

  flex-direction:column;

  justify-content:flex-end;

  padding:40px;

  transition:0.4s;
}

/* TITULO */

.gallery-overlay h3{
  font-size:32px;
  margin-bottom:10px;
}

/* TEXTO */

.gallery-overlay p{
  opacity:0.7;
}

/* HOVER */

.gallery-item:hover img{
  transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
  background:
  linear-gradient(
  to top,
  rgba(5,10,25,0.95),
  rgba(47,107,255,0.15)
  );
}

/* RESPONSIVE */

@media(max-width:900px){

  .gallery-section{
    padding:100px 30px;
  }

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

  .gallery-item.large,
  .gallery-item.wide{
    grid-column:span 1;
  }

  .gallery-title h2{
    font-size:42px;
  }

}
/* PAGE HERO */

.page-hero{

height:60vh;

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

text-align:center;

padding:0 30px;

background:
linear-gradient(
rgba(0,0,0,0.72),
rgba(10,15,28,0.72)
),

url('assets/images/imagen-catalogo.png.jpg');

background-size:cover;
background-position:center;
background-repeat:no-repeat;
filter:saturate(1.05) contrast(1.05);
}

.page-hero h1,
.page-hero p{
position:relative;
z-index:1;
}

.page-hero h1{

font-size:70px;

margin-bottom:20px;
}

.page-hero p{

font-size:20px;

opacity:0.7;

max-width:700px;
}

/* RESPONSIVE */

@media(max-width:900px){

.page-hero h1{
font-size:42px;
}

.page-hero p{
font-size:16px;
}

}
/* CONTACTO */

.contact-section{

padding:120px 80px;

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

background:#05070d;
}

/* BOX */

.contact-box{

background:#0c111f;

padding:50px;

border-radius:24px;
}

.contact-box h2{

font-size:40px;

margin-bottom:30px;
}

.contact-box p{

margin-bottom:20px;

opacity:0.8;

font-size:18px;
}

/* FORM */

.contact-form{

display:flex;

flex-direction:column;

gap:20px;
}

.contact-form input,
.contact-form textarea{

background:#0c111f;

border:none;

padding:20px;

border-radius:14px;

color:white;

font-size:16px;
}

.contact-form textarea{

height:180px;

resize:none;
}

/* RESPONSIVE */

@media(max-width:900px){

.contact-section{

grid-template-columns:1fr;

padding:100px 30px;
}

}

/* MAPA */

.map-box{

  grid-column:span 2;

  overflow:hidden;

  border-radius:24px;

  height:450px;

  border:1px solid rgba(255,255,255,0.05);

  box-shadow:
  0 0 30px rgba(47,107,255,0.08);

  margin-top:20px;
}

/* IFRAME */

.map-box iframe{

  width:100%;
  height:100%;

  border:none;

  filter:grayscale(1)
  invert(0.92)
  contrast(1.2);
}

.map-button{
    display:inline-block;
    margin-top:20px;
    padding:14px 25px;
    border:1px solid rgba(47,107,255,.5);
    border-radius:12px;
    color:white;
    text-decoration:none;
    transition:.3s ease;
}

.map-button:hover{
    background:#2f6bff;
    border-color:#2f6bff;
    transform:translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:900px){

  .map-box{
    grid-column:span 1;
    height:350px;
  }

}

.footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  max-width:1100px;
  margin:0 auto 10px auto;
  padding:10px 20px;
}

.footer-logos{
  display:flex;
  align-items:center;
  gap:12px;
}

.footer-logo{
  height:auto;
  max-height:72px;
  width:auto;
  display:block;
}

@media(max-width:700px){
  .footer-top{flex-direction:column;align-items:center;text-align:center}
}

/* Contact page: fondo hero personalizado */
.contact-page .page-hero{
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('assets/images/imagen-contacto.png');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  color:white;
}

@media(max-width:900px){
  .contact-page .page-hero{background-position:center top}
}

/* Productos page: fondo hero personalizado (usa la imagen subida por el usuario) */
.productos-page .page-hero{
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('assets/images/imagen-producto.png.jpg');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  color:white;
}

.products-showcase{
  padding:120px 80px 140px;
  background:linear-gradient(180deg, #05070d 0%, #0a101b 100%);
}

.products-intro{
  max-width:820px;
  margin-bottom:56px;
}

.products-intro span{
  color:#2f6bff;
  letter-spacing:3px;
  font-size:13px;
  font-weight:600;
}

.products-intro h2{
  font-size:60px;
  line-height:1.04;
  margin-top:18px;
  margin-bottom:18px;
  letter-spacing:-0.04em;
}

.products-intro p{
  font-size:18px;
  line-height:1.8;
  color:rgba(255,255,255,0.72);
  max-width:720px;
}

.product-list{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.product-category{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  min-height:360px;
  background:linear-gradient(180deg, rgba(16,23,35,0.98), rgba(9,13,20,0.98));
  border:1px solid rgba(255,255,255,0.08);
  border-radius:26px;
  overflow:hidden;
  transition:transform 0.35s ease, border-color 0.35s ease;
}

.product-category.reverse{
  grid-template-columns:1fr 1.15fr;
}

.product-category:hover{
  transform:translateY(-6px);
  border-color:rgba(47,107,255,0.4);
}

.product-category.reverse .product-media{
  order:2;
}

.product-category.reverse .product-copy{
  order:1;
}

.product-media{
  min-height:100%;
}

.product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.product-copy{
  padding:42px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.product-copy span{
  color:#7eb1ff;
  letter-spacing:2px;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
}

.product-copy h3{
  font-size:40px;
  line-height:1.1;
  margin:18px 0 16px;
}

.product-copy p{
  color:rgba(255,255,255,0.72);
  line-height:1.8;
  margin-bottom:18px;
}

.product-copy ul{
  list-style:none;
  padding:0;
  margin:0 0 26px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.product-copy li{
  position:relative;
  padding-left:18px;
  color:rgba(255,255,255,0.8);
}

.product-copy li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#2f6bff;
}

.product-copy a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  padding:14px 22px;
  border-radius:12px;
  background:linear-gradient(135deg, #2f6bff, #4a7fff);
  color:white;
  text-decoration:none;
  font-weight:600;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.product-copy a:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(47,107,255,0.28);
}

@media(max-width:900px){
  .productos-page .page-hero{background-position:center top}

  .products-showcase{
    padding:100px 30px;
  }

  .products-intro h2{
    font-size:42px;
  }

  .product-category,
  .product-category.reverse{
    grid-template-columns:1fr;
  }

  .product-category.reverse .product-media,
  .product-category.reverse .product-copy{
    order:initial;
  }

  .product-copy h3{
    font-size:30px;
  }
}

@media(max-width:900px){
  .productos-page .page-hero{background-position:center top}
}

/* Servicios page: fondo hero personalizado (usa la imagen subida por el usuario) */
.servicios-page .page-hero{
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('assets/images/imagen-servicios.png.jpg');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  color:white;
}

@media(max-width:900px){
  .servicios-page .page-hero{background-position:center top}
}