*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html, body{
  width:100%;
  overflow-x:hidden;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#0C0F14;
  color:#F2F2F2;
}

/* PRELOADER */
#preloader{
  position:fixed;
  inset:0;
  background:#0C0F14;
  z-index:9999;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  transition:opacity .8s ease, visibility .8s ease;
}

.loader-logo{
  color:#FF6A00;
  font-size:42px;
  letter-spacing:6px;
  font-weight:700;
  animation:fadePulse 1.6s infinite;
}

.loader-line{
  width:180px;
  height:2px;
  margin-top:24px;
  background:linear-gradient(90deg, transparent, #FF6A00, transparent);
  animation:loadingLine 1.4s infinite;
}

.hide-loader{
  opacity:0;
  visibility:hidden;
}

@keyframes fadePulse{
  0%, 100%{
    opacity:.45;
    transform:scale(.98);
  }

  50%{
    opacity:1;
    transform:scale(1);
  }
}

@keyframes loadingLine{
  0%{
    transform:translateX(-40px);
    opacity:.2;
  }

  50%{
    transform:translateX(0);
    opacity:1;
  }

  100%{
    transform:translateX(40px);
    opacity:.2;
  }
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:#0C0F14;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center right;
  z-index:1;
  filter:brightness(.78) contrast(1.04);
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(
      90deg,
      rgba(12,15,20,.98) 0%,
      rgba(12,15,20,.90) 36%,
      rgba(12,15,20,.48) 68%,
      rgba(12,15,20,.18) 100%
    ),
    radial-gradient(
      circle at 78% 36%,
      rgba(255,106,0,.28),
      transparent 34%
    );
}

/* HEADER */
.header{
  position:relative;
  z-index:5;
  width:100%;
  padding:30px 5%;
  display:flex;
  align-items:center;
  gap:28px;
}

.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
  margin-right:auto;
}

.logo img{
  height:56px;
  width:auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav a{
  color:#F2F2F2;
  text-decoration:none;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.8px;
  font-weight:600;
  opacity:.86;
}

.nav a:hover,
.lang a:hover,
.lang .active{
  color:#FF6A00;
  opacity:1;
}

.lang{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
}

.lang a{
  color:#F2F2F2;
  text-decoration:none;
  font-weight:700;
  opacity:.65;
}

.lang span{
  color:rgba(242,242,242,.35);
}

.request-btn{
  color:#F2F2F2;
  text-decoration:none;
  text-transform:uppercase;
  font-size:12px;
  font-weight:700;
  padding:13px 22px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:50px;
}

.menu-mobile{
  display:none;
  font-size:32px;
  color:#F2F2F2;
}

/* HERO CONTENT */
.hero-content{
  position:relative;
  z-index:4;
  max-width:780px;
  padding:96px 5% 58px;
}

.hero-tag{
  display:block;
  color:#FF6A00;
  text-transform:uppercase;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:28px;
}

.hero-tag::before{
  content:"";
  display:inline-block;
  width:34px;
  height:2px;
  background:#FF6A00;
  margin-right:12px;
  vertical-align:middle;
}

.hero-content h1{
  font-size:74px;
  line-height:1.05;
  letter-spacing:-3px;
  margin-bottom:28px;
}

.hero-content p{
  font-size:20px;
  line-height:1.6;
  color:rgba(242,242,242,.78);
  max-width:570px;
  margin-bottom:38px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  margin-bottom:62px;
}

.hero-buttons a{
  text-decoration:none;
  text-transform:uppercase;
  font-weight:700;
  font-size:14px;
  padding:17px 30px;
  border-radius:8px;
}

.btn-main{
  background:#FF6A00;
  color:#fff;
}

.btn-outline{
  color:#fff;
  border:1px solid rgba(255,255,255,.5);
}

/* CREDENCIALES */
.hero-badges{
display:grid;
grid-template-columns:repeat(3,1fr);
max-width:920px;
border:1px solid rgba(255,255,255,.12);
border-radius:22px;
overflow:hidden;
backdrop-filter:blur(18px);
background:rgba(255,255,255,.04);
margin-top:54px;
}
.badge span{
font-size:13px;
line-height:1.35;
color:rgba(255,255,255,.82);
}
.badge strong{
font-size:18px;
line-height:1;
color:#fff;
}

.badge:last-child{
  border-right:none;
}

.badge strong{
  font-size:26px;
  color:#F2F2F2;
  white-space:nowrap;
}

.badge img{
  width:42px;
  height:auto;
  display:block;
}

.badge{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  border-right:1px solid rgba(255,255,255,.16);
  flex:1;
  min-width:0;
}

/* TABLET */
@media(max-width:1180px){

  .nav,
  .lang,
  .request-btn{
    display:none;
  }

  .menu-mobile{
    display:block;
  }

  .hero-content h1{
    font-size:58px;
  }

  .hero-badges{
    max-width:650px;
    flex-wrap:wrap;
  }

  .badge{
    width:50%;
  }
}

/* CELULAR */
@media(max-width:768px){

  .hero{
    min-height:100vh;
  }

  .hero-video{
    object-fit:cover;
    object-position:70% top;
  }

  .hero-overlay{
    background:
      linear-gradient(
        180deg,
        rgba(12,15,20,.16) 0%,
        rgba(12,15,20,.72) 34%,
        rgba(12,15,20,.98) 68%
      );
  }

  .header{
    padding:24px 7%;
  }

  .logo img{
    height:42px;
  }

  .hero-content{
    max-width:100%;
    padding:190px 7% 55px;
  }

  .hero-tag{
    font-size:11px;
    line-height:1.5;
    margin-bottom:22px;
  }

  .hero-tag::before{
    width:24px;
  }

  .hero-content h1{
    font-size:36px;
    line-height:1.12;
    letter-spacing:-1px;
    margin-bottom:24px;
  }

  .hero-content p{
    font-size:16px;
    line-height:1.65;
    max-width:100%;
    margin-bottom:32px;
  }

  .hero-buttons{
    flex-direction:column;
    gap:14px;
    margin-bottom:42px;
  }

  .hero-buttons a{
    width:100%;
    text-align:center;
    padding:16px 20px;
  }

  .hero-badges{
    display:grid;
    grid-template-columns:lfr lfr;
    gap:12px;
    border:none;
    background:transparent;
    backdrop-filter:none;
    overflow:visible;
    max-width:100%;
  }

  .badge{
    width:100%;
    min-height:104px;
    padding:14px 10px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:13px;
    background:rgba(12,15,20,.64);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:8px;
  }

  .badge strong{
    font-size:22px;
    color:#FF6A00;
    white-space:normal;
  }

  .badge img{
    width:32px;
  }

  .badge span{
    font-size:10px;
    line-height:1.3;
    white-space:normal;
  }
}

@media(max-width:390px){

  .hero-content{
    padding-top:175px;
  }

  .hero-content h1{
    font-size:33px;
  }
}
.hero-video-mobile{
  display:none;
}

.hero-video-desktop{
  display:block;
}

@media(max-width:768px){

  .hero-video-desktop{
    display:none;
  }

  .hero-video-mobile{
    display:block;
    object-fit:cover;
    object-position:center top;
  }

}.section{
  padding:110px 5%;
}

.section-head{
  max-width:780px;
  margin-bottom:55px;
}

.section-head span,
.empresa-content span,
.contacto-box span{
  color:#FF6A00;
  text-transform:uppercase;
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
}

.section-head h2,
.empresa-content h2,
.contacto-box h2{
  font-size:48px;
  line-height:1.08;
  margin:18px 0;
}

.section-head p,
.empresa-content p,
.contacto-box p{
  font-size:18px;
  line-height:1.6;
  color:rgba(12,15,20,.72);
}

.productos-section{
  background:#F2F2F2;
  color:#0C0F14;
}

.product-grid,
.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.product-card{
  border:1px solid rgba(12,15,20,.12);
  border-radius:28px;
  padding:36px;
  background:#fff;
}

.product-card h3,
.service-card h3{
  font-size:30px;
  margin-bottom:18px;
}

.product-card p,
.service-card p{
  line-height:1.6;
  margin-bottom:20px;
}

.product-card li{
  margin:12px 0;
}

.servicios-section{
  background:#0C0F14;
  color:#F2F2F2;
}

.section-head.dark p{
  color:rgba(242,242,242,.72);
}

.services-grid{
  grid-template-columns:repeat(3,1fr);
}

.service-card{
  border:1px solid rgba(255,106,0,.45);
  border-radius:28px;
  padding:34px;
  background:rgba(255,255,255,.035);
}

.empresa-section{
  background:linear-gradient(135deg,#FF6A00,#D9853B);
  color:#0C0F14;
}

.empresa-content{
  max-width:850px;
}

.empresa-content span{
  color:#0C0F14;
}

.contacto-section{
  background:#0C0F14;
  color:#F2F2F2;
  text-align:center;
}

.contacto-box{
  max-width:720px;
  margin:auto;
}

.contacto-box p{
  color:rgba(242,242,242,.72);
  margin-bottom:35px;
}

.footer{
  background:#070A12;
  color:#F2F2F2;
  padding:70px 5% 28px;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  margin-bottom:45px;
}

.footer-logo{
  height:54px;
  margin-bottom:20px;
}

.footer h4{
  color:#FF6A00;
  margin-bottom:18px;
}

.footer a{
  display:block;
  color:rgba(242,242,242,.72);
  text-decoration:none;
  margin-bottom:10px;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:24px;
  font-size:13px;
  color:rgba(242,242,242,.6);
}

@media(max-width:900px){
  .section{
    padding:80px 7%;
  }

  .section-head h2,
  .empresa-content h2,
  .contacto-box h2{
    font-size:34px;
  }

  .product-grid,
  .services-grid,
  .footer-grid{
  flex-direction:column;
}

  .footer-bottom{
    flex-direction:column;
  }
}.productos-section{
  background:#F2F2F2;
  color:#0C0F14;
  padding:110px 5%;
}

.section-head{
  max-width:760px;
  margin-bottom:55px;
}

.section-head span{
  color:#FF6A00;
  text-transform:uppercase;
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
}

.section-head h2{
  font-size:50px;
  line-height:1.05;
  margin:18px 0;
}

.orange-text{
  color:#FF6A00;
  font-size:20px;
  font-weight:600;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.product-card{
  background:#fff;
  border:1px solid rgba(12,15,20,.10);
  border-radius:30px;
  padding:38px;
}

.product-icon{
  width:78px;
  height:78px;
  border-radius:22px;
  background:#0C0F14;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:26px;
}

.product-icon img{
  width:48px;
  height:48px;
  object-fit:contain;
}

.product-card h3{
  font-size:32px;
  margin-bottom:16px;
}

.product-card p{
  font-size:17px;
  line-height:1.55;
  color:rgba(12,15,20,.72);
  margin-bottom:26px;
}

.product-btn{
  display:inline-block;
  color:#0C0F14;
  text-decoration:none;
  font-weight:700;
  border-bottom:2px solid #FF6A00;
  padding-bottom:5px;
}

@media(max-width:900px){
  .productos-section{
    padding:80px 7%;
  }

  .section-head h2{
    font-size:34px;
  }

  .product-grid{
    grid-template-columns:1fr;
  }
}.empresa-section{
  background:#F2F2F2;
  padding:0 5% 90px;
}

.empresa-wrap{
  min-height:620px;
  background:linear-gradient(135deg,#FF6A00,#D9853B);
  border-radius:28px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:70px 7%;
}

.empresa-text{
  width:50%;
  position:relative;
  z-index:3;
}

.empresa-text span{
  display:block;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:1.5px;
  font-weight:800;
  color:#0C0F14;
  margin-bottom:22px;
}

.empresa-text span::after{
  content:"";
  display:block;
  width:70px;
  height:2px;
  background:#0C0F14;
  margin-top:16px;
}

.empresa-text h2{
  font-size:48px;
  line-height:1.08;
  color:#0C0F14;
  margin-bottom:28px;
  max-width:620px;
}

.empresa-text p{
  font-size:18px;
  line-height:1.65;
  color:rgba(12,15,20,.82);
  max-width:580px;
  margin-bottom:34px;
}

.empresa-btn{
  display:inline-block;
  background:#0C0F14;
  color:#fff;
  text-decoration:none;
  padding:17px 32px;
  border-radius:12px;
  font-weight:800;
  text-transform:uppercase;
  font-size:14px;
}

.empresa-visual{
  width:46%;
  height:100%;
  position:absolute;
  right:0;
  bottom:0;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.orange-shape{
  position:absolute;
  right:0;
  bottom:0;
  width:76%;
  height:72%;
  background:rgba(12,15,20,.10);
  border-radius:90px 0 0 0;
}

.empresa-visual img{
  position:relative;
  z-index:2;
  max-height:620px;
  width:auto;
  object-fit:contain;
  filter:drop-shadow(0 25px 35px rgba(0,0,0,.25));
}

/* MOBILE */
@media(max-width:900px){

  .empresa-section{
    padding:0 0 70px;
  }

  .empresa-wrap{
    border-radius:0;
    min-height:auto;
    flex-direction:column;
    padding:52px 7% 0;
  }

  .empresa-text{
    width:100%;
  }

  .empresa-text h2{
    font-size:34px;
  }

  .empresa-text p{
    font-size:16px;
  }

  .empresa-btn{
    margin-bottom:38px;
  }

  .empresa-visual{
    position:relative;
    width:100%;
    min-height:330px;
    right:auto;
    bottom:auto;
  }

  .orange-shape{
    width:100%;
    height:72%;
    border-radius:70px 0 0 0;
  }

  .empresa-visual img{
    max-height:360px;
    max-width:100%;
  }
}/* AJUSTE GENERAL DE SECCIONES */

.servicios-section{
  background:#0C0F14;
  color:#F2F2F2;
  padding:100px 5% 110px;
}

.servicios-section .section-head{
  max-width:850px;
  margin-bottom:55px;
}

.servicios-section .section-head span{
  color:#FF6A00;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:2px;
  font-weight:800;
}

.servicios-section .section-head h2{
  font-size:48px;
  line-height:1.08;
  margin:18px 0;
}

.servicios-section .section-head p{
  color:rgba(242,242,242,.72);
  font-size:18px;
  line-height:1.6;
}

.services-grid{
  display:flex;
  gap:26px;
}

.service-card{
  flex:1;
  border:1px solid rgba(255,106,0,.38);
  border-radius:28px;
  padding:34px 30px;
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
}

.service-icon{
  width:68px;
  height:68px;
  border-radius:50%;
  border:1px solid rgba(255,106,0,.7);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#FF6A00;
  font-size:28px;
  margin-bottom:24px;
}

.service-card h3{
  font-size:27px;
  margin-bottom:16px;
}

.service-card p{
  color:rgba(242,242,242,.72);
  line-height:1.6;
  margin-bottom:24px;
}

.service-btn{
  display:inline-block;
  color:#FF6A00;
  text-decoration:none;
  font-weight:800;
  text-transform:uppercase;
  font-size:13px;
  border-bottom:2px solid #FF6A00;
  padding-bottom:5px;
}

/* EMPRESA MÁS COMPACTA Y NARANJA COMPLETA */

.empresa-section{
  background:linear-gradient(135deg,#FF6A00,#D9853B);
  padding:95px 5%;
  color:#0C0F14;
}

.empresa-wrap{
  max-width:1180px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.empresa-text{
  width:52%;
}

.empresa-visual{
  width:42%;
}

.empresa-visual img{
  width:100%;
  max-height:520px;
  object-fit:contain;
}

.empresa-btn{
  display:inline-block;
  background:#0C0F14;
  color:#fff;
  text-decoration:none;
  padding:16px 30px;
  border-radius:12px;
  font-weight:800;
  text-transform:uppercase;
  font-size:13px;
}

/* MOBILE */

@media(max-width:900px){

  .services-grid,
  .empresa-wrap{
    flex-direction:column;
  }

  .service-card,
  .empresa-text,
  .empresa-visual{
    width:100%;
  }

  .servicios-section,
  .empresa-section{
    padding:75px 7%;
  }

  .servicios-section .section-head h2,
  .empresa-text h2{
    font-size:34px;
  }
}
.servicios-section{
  background:#0C0F14;
  color:#F2F2F2;
  padding:85px 5%;
}

.servicios-section .section-head{
  max-width:760px;
  margin-bottom:45px;
}

.servicios-section .section-head h2{
  font-size:42px;
  line-height:1.1;
}

.services-grid{
  max-width:1050px;
  margin:auto;
  display:flex;
  gap:22px;
}

.service-card{
  flex:1;
  min-height:310px;
  border:1px solid rgba(255,106,0,.35);
  border-radius:24px;
  padding:28px;
  background:rgba(255,255,255,.035);
}

.service-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  border:1px solid rgba(255,106,0,.75);
  color:#FF6A00;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:22px;
}

.service-card h3{
  font-size:24px;
  margin-bottom:14px;
}

.service-card p{
  color:rgba(242,242,242,.72);
  line-height:1.55;
  margin-bottom:22px;
}

.service-btn{
  color:#FF6A00;
  text-decoration:none;
  font-weight:800;
  text-transform:uppercase;
  font-size:13px;
  border-bottom:2px solid #FF6A00;
  padding-bottom:5px;
}

@media(max-width:900px){
  .services-grid{
    flex-direction:column;
  }

  .servicios-section .section-head h2{
    font-size:32px;
  }
}
.contacto-section{
  background:#0C0F14;
  color:#F2F2F2;
  padding:90px 5%;
  text-align:center;
}

.contacto-box{
  max-width:680px;
  margin:auto;
}

.contacto-box span{
  color:#FF6A00;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:2px;
  font-weight:800;
}

.contacto-box h2{
  font-size:44px;
  margin:18px 0;
}

.contacto-box p{
  color:rgba(242,242,242,.72);
  font-size:18px;
  line-height:1.6;
  margin-bottom:32px;
}

.contacto-btn{
  background:#FF6A00;
  color:#fff;
  text-decoration:none;
  padding:17px 32px;
  border-radius:12px;
  font-weight:800;
  text-transform:uppercase;
}

.footer{
  background:#070A12;
  color:#F2F2F2;
  padding:65px 5% 28px;
}

.footer-grid{
  display:flex;
  flex-wrap:wrap;
  gap:35px;
  margin-bottom:38px;
}

.footer-logo{
  height:48px;
  margin-bottom:18px;
}

.footer h4{
  color:#FF6A00;
  margin-bottom:16px;
}

.footer a{
  display:block;
  color:rgba(242,242,242,.72);
  text-decoration:none;
  margin-bottom:10px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(242,242,242,.6);
  font-size:13px;
}

@media(max-width:900px){
  .footer-grid{
  flex-direction:column;
}

  .footer-bottom{
    flex-direction:column;
  }

  .contacto-box h2{
    font-size:34px;
  }
}
/* AJUSTE FINAL CONTACTO */

.contact-left h2{
  margin-top:12px;
}

.contact-form select{
  padding:18px;
  border-radius:16px;
  border:none;
  outline:none;
  font-family:inherit;
}

.form-message{
  display:none;
  color:#FF6A00;
  font-size:14px;
  line-height:1.5;
  margin-top:8px;
  font-weight:700;
}

.form-message.show{
  display:block;
}
/* ==============================
   PRODUCTOS FINAL
============================== */

.productos-section{
  background:#F2F2F2;
  color:#0C0F14;
  padding:95px 5% 105px;
}

.product-head{
  max-width:780px;
  margin-bottom:46px;
}

.product-head span{
  color:#FF6A00;
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
  letter-spacing:2px;
}

.product-head h2{
  font-size:46px;
  line-height:1.08;
  margin:18px 0 14px;
  max-width:760px;
}

.orange-text{
  color:#FF6A00;
  font-size:20px;
  font-weight:700;
  line-height:1.4;
}

.product-grid{
  max-width:1080px;
  margin:auto;
  display:flex;
  gap:28px;
}

.product-card{
  flex:1;
  background:#FFFFFF;
  border:1px solid rgba(12,15,20,.08);
  border-radius:32px;
  padding:26px;
  box-shadow:0 24px 60px rgba(12,15,20,.08);
}

.floating-card{
  transform:translateY(0);
  transition:.35s ease;
}

.floating-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 70px rgba(12,15,20,.14);
}

.product-media{
  height:230px;
  border-radius:24px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,106,0,.18), transparent 34%),
    linear-gradient(135deg,#0C0F14,#1A1F26);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:28px;
}

.product-media img{
    width:128%;
    height:auto;
    max-width:none;
    object-fit:contain;
    display:block;
    position:relative;
    z-index:2;
    filter:drop-shadow(0 12px 18px rgba(0,0,0,0.12));
}
.product-label{
  display:inline-block;
  color:#FF6A00;
  text-transform:uppercase;
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:12px;
}

.product-info h3{
  font-size:30px;
  line-height:1.1;
  margin-bottom:14px;
}

.product-info p{
  color:rgba(12,15,20,.72);
  font-size:16px;
  line-height:1.6;
  margin-bottom:24px;
}

.product-btn{
  display:inline-block;
  color:#0C0F14;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  border-bottom:2px solid #FF6A00;
  padding-bottom:5px;
}

@media(max-width:900px){

  .productos-section{
    padding:75px 7%;
  }

  .product-head h2{
    font-size:34px;
  }

  .orange-text{
    font-size:17px;
  }

  .product-grid{
    flex-direction:column;
    gap:22px;
  }

  .product-card{
    padding:22px;
    border-radius:26px;
  }

  .product-media{
    height:200px;
  }

  .product-info h3{
    font-size:26px;
  }
}
/* ==============================
   PRODUCTOS COMPACTO FINAL
============================== */

.productos-section{
  background:#F2F2F2;
  color:#0C0F14;
  padding:82px 5%;
}

.products-container{
  max-width:1120px;
  margin:auto;
}

.product-head{
  max-width:680px;
  margin-bottom:38px;
}

.product-head span{
  color:#FF6A00;
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
  letter-spacing:2px;
}

.product-head h2{
  font-size:42px;
  line-height:1.08;
  margin:14px 0;
}

.orange-text{
  color:#FF6A00;
  font-size:18px;
  font-weight:700;
}

.product-grid{
  display:flex;
  gap:26px;
}

.product-card{
  flex:1;
  min-height:280px;
  background:#FFFFFF;
  border:1px solid rgba(12,15,20,.08);
  border-radius:28px;
  padding:24px;
  display:flex;
  align-items:center;
  gap:24px;
  box-shadow:0 20px 45px rgba(12,15,20,.08);
}

.product-image{
  width:130px;
  min-width:130px;
  height:130px;
  border-radius:24px;
  background:linear-gradient(135deg,#0C0F14,#1A1F26);
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-image img{
  width:82px;
  height:82px;
  object-fit:contain;
}

.product-info h3{
  font-size:28px;
  margin-bottom:12px;
}

.product-info p{
  color:rgba(12,15,20,.72);
  font-size:16px;
  line-height:1.5;
  margin-bottom:20px;
}

.product-btn{
  display:inline-block;
  color:#0C0F14;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  text-transform:uppercase;
  border-bottom:2px solid #FF6A00;
  padding-bottom:5px;
}

/* MOBILE PRODUCTOS */

@media(max-width:900px){

  .productos-section{
    padding:70px 7%;
  }

  .product-head h2{
    font-size:32px;
  }

  .product-grid{
    flex-direction:column;
  }

  .product-card{
    min-height:auto;
    flex-direction:column;
    align-items:flex-start;
  }

  .product-image{
    width:100%;
    height:150px;
  }

  .product-image img{
    width:90px;
    height:90px;
  }
}
/* ==============================
   PRODUCTOS MOBILE PREMIUM COMPACTO
   Pegado final sin borrar estilos anteriores
============================== */

@media(max-width:900px){

  .productos-section{
    padding:48px 7% 56px;
  }

  .products-container{
    max-width:100%;
  }

  .product-head{
    text-align:center;
    max-width:320px;
    margin:0 auto 24px;
  }

  .product-head span{
    font-size:11px;
    letter-spacing:2px;
  }

  .product-head h2{
    font-size:24px;
    line-height:1.12;
    margin:10px 0 8px;
  }

  .orange-text{
    font-size:13px;
    line-height:1.35;
  }

  .product-grid{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .product-card{
    width:100%;
    min-height:128px;
    padding:12px;
    border-radius:20px;
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:13px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(12,15,20,.08);
    box-shadow:0 12px 28px rgba(12,15,20,.08);
  }

  .product-image{
    width:88px;
    min-width:88px;
    height:88px;
    border-radius:16px;
    background:linear-gradient(145deg,#0C0F14,#1A1F26);
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .product-image img{
    width:66px;
    height:66px;
    object-fit:contain;
  }

  .product-info{
    flex:1;
    min-width:0;
  }

  .product-info h3{
    font-size:17px;
    line-height:1.1;
    margin-bottom:5px;
  }

  .product-info p{
    font-size:12px;
    line-height:1.35;
    margin-bottom:9px;
    color:rgba(12,15,20,.68);
  }

  .product-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 12px;
    border:1px solid rgba(12,15,20,.85);
    border-radius:999px;
    color:#0C0F14;
    background:transparent;
    text-decoration:none;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
  }

}
/* ==============================
   SERVICIOS FINAL PC / TABLET / MOBILE
============================== */

.servicios-section{
  background:#0C0F14;
  color:#F2F2F2;
  padding:78px 5% 84px;
  position:relative;
  overflow:hidden;
}

.servicios-container{
  max-width:1120px;
  margin:auto;
}

.servicios-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 38px;
}

.servicios-head span{
  color:#FF6A00;
  text-transform:uppercase;
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
}

.servicios-head h2{
  font-size:38px;
  line-height:1.1;
  margin:12px 0;
}

.servicios-head p{
  font-size:16px;
  line-height:1.55;
  color:rgba(242,242,242,.72);
}

.services-slider{
  width:100%;
}

.services-track{
  display:flex;
  gap:20px;
  justify-content:center;
}

.service-card{
  flex:1;
  max-width:340px;
  min-height:245px;
  border:1px solid rgba(255,106,0,.34);
  border-radius:24px;
  padding:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  box-shadow:0 18px 38px rgba(0,0,0,.20);
  display:flex;
  align-items:center;
  gap:16px;
}

.service-media{
  width:92px;
  min-width:92px;
  height:92px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid rgba(255,106,0,.78);
  background:#111720;
}

.service-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.service-info h3{
  font-size:22px;
  line-height:1.12;
  margin-bottom:10px;
}

.service-info p{
  font-size:14px;
  line-height:1.45;
  color:rgba(242,242,242,.72);
  margin-bottom:14px;
}

.service-btn{
  display:inline-flex;
  color:#FF6A00;
  text-decoration:none;
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
  border-bottom:2px solid #FF6A00;
  padding-bottom:4px;
}

.services-dots{
  display:none;
}


/* TABLET */

@media(max-width:1024px){

  .servicios-section{
    padding:72px 5%;
  }

  .services-track{
    gap:16px;
  }

  .service-card{
    flex-direction:column;
    align-items:flex-start;
    max-width:none;
    min-height:280px;
  }

  .service-media{
    width:84px;
    min-width:84px;
    height:84px;
  }

  .service-info h3{
    font-size:20px;
  }

}


/* MOBILE: CARRUSEL */

@media(max-width:768px){

  .servicios-section{
    padding:58px 7% 64px;
  }

  .servicios-head{
    text-align:center;
    max-width:320px;
    margin:0 auto 28px;
  }

  .servicios-head span{
    font-size:11px;
  }

  .servicios-head h2{
    font-size:27px;
    line-height:1.12;
  }

  .servicios-head p{
    font-size:13px;
    line-height:1.45;
  }

  .services-slider{
    overflow:hidden;
    width:100%;
  }

  .services-track{
    display:flex;
    gap:0;
    justify-content:flex-start;
    transition:transform .65s ease;
  }

  .service-card{
    flex:0 0 100%;
    max-width:100%;
    min-height:230px;
    padding:16px;
    border-radius:22px;
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:14px;
  }

  .service-media{
    width:86px;
    min-width:86px;
    height:86px;
  }

  .service-info h3{
    font-size:19px;
    margin-bottom:7px;
  }

  .service-info p{
    font-size:12px;
    line-height:1.35;
    margin-bottom:10px;
  }

  .service-btn{
    font-size:10px;
    border-bottom:1px solid #FF6A00;
  }

  .services-dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:18px;
  }

  .service-dot{
    width:7px;
    height:7px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,.28);
    cursor:pointer;
  }

  .service-dot.active{
    width:22px;
    border-radius:20px;
    background:#FF6A00;
  }

}
/* ==============================
   EMPRESA FINAL
============================== */

.empresa-section{
  background:linear-gradient(135deg,#FF6A00,#D9853B);
  color:#0C0F14;
  padding:82px 5%;
  overflow:hidden;
  position:relative;
}

.empresa-wrap{
  max-width:1120px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:46px;
  position:relative;
}

.empresa-text{
  width:54%;
  max-width:620px;
  position:relative;
  z-index:3;
}

.empresa-text span{
  display:block;
  color:#0C0F14;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:14px;
}

.empresa-text span::after{
  content:"";
  display:block;
  width:72px;
  height:2px;
  background:#0C0F14;
  margin-top:14px;
}

.empresa-text h2{
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:2px;
  margin:22px 0 12px;
  color:rgba(12,15,20,.78);
}

.empresa-text h3{
  font-size:42px;
  line-height:1.08;
  margin-bottom:24px;
  color:#0C0F14;
}

.empresa-text p{
  font-size:17px;
  line-height:1.65;
  color:rgba(12,15,20,.82);
  margin-bottom:30px;
}

.empresa-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#0C0F14;
  color:#fff;
  text-decoration:none;
  padding:15px 28px;
  border-radius:12px;
  font-weight:900;
  text-transform:uppercase;
  font-size:13px;
}

.empresa-visual{
  width:42%;
  min-height:430px;
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.empresa-shape{
  position:absolute;
  right:6%;
  bottom:0;
  width:78%;
  height:78%;
  background:#FF7A18;
  border-radius:120px 0 0 0;
  box-shadow:0 30px 60px rgba(12,15,20,.18);
  z-index:1;
}

.empresa-visual img{
  position:relative;
  z-index:2;
  max-height:520px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  filter:drop-shadow(0 24px 34px rgba(0,0,0,.28));
}

/* TABLET */

@media(max-width:1024px){

  .empresa-wrap{
    gap:32px;
  }

  .empresa-text h3{
    font-size:34px;
  }

  .empresa-visual{
    min-height:380px;
  }

}

/* MOBILE */

@media(max-width:768px){

  .empresa-section{
    padding:58px 7% 0;
  }

  .empresa-wrap{
    flex-direction:column;
    align-items:flex-start;
    gap:30px;
  }

  .empresa-text{
    width:100%;
    max-width:100%;
  }

  .empresa-text span{
    font-size:11px;
  }

  .empresa-text h2{
    font-size:15px;
    margin-top:20px;
  }

  .empresa-text h3{
    font-size:28px;
    line-height:1.12;
  }

  .empresa-text p{
    font-size:14px;
    line-height:1.55;
  }

  .empresa-btn{
    padding:13px 22px;
    font-size:12px;
  }

  .empresa-visual{
    width:100%;
    min-height:320px;
    justify-content:center;
    align-items:flex-end;
  }

  .empresa-shape{
    right:0;
    width:86%;
    height:72%;
    border-radius:90px 0 0 0;
  }

  .empresa-visual img{
    max-height:340px;
    max-width:95%;
  }

}
/* ==============================
   EMPRESA AJUSTE COMPACTO + MOBILE BUTTON
============================== */

.empresa-section{
  padding:62px 5%;
}

.empresa-wrap{
  max-width:1080px;
  gap:34px;
}

.empresa-text{
  width:52%;
  max-width:580px;
}

.empresa-text h3{
  font-size:36px;
  line-height:1.08;
  margin-bottom:18px;
}

.empresa-text p{
  font-size:15px;
  line-height:1.55;
  margin-bottom:24px;
}

.empresa-visual{
  width:42%;
  min-height:360px;
}

.empresa-shape{
  height:72%;
  width:74%;
}

.empresa-visual img{
  max-height:430px;
}

.empresa-btn-mobile{
  display:none;
}


/* MOBILE EMPRESA */

@media(max-width:768px){

  .empresa-section{
    padding:50px 7% 42px;
  }

  .empresa-wrap{
    gap:22px;
  }

  .empresa-text h3{
    font-size:26px;
    line-height:1.12;
    margin-bottom:16px;
  }

  .empresa-text p{
    font-size:14px;
    line-height:1.5;
    margin-bottom:0;
  }

  .empresa-btn-desktop{
    display:none;
  }

  .empresa-visual{
    width:100%;
    min-height:280px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
  }

  .empresa-shape{
    width:82%;
    height:68%;
    right:0;
    bottom:52px;
    border-radius:80px 0 0 0;
  }

  .empresa-visual img{
    max-height:285px;
    max-width:92%;
  }

  .empresa-btn-mobile{
    display:inline-flex;
    margin-top:18px;
    position:relative;
    z-index:4;
  }

}
/* ==============================
   EMPRESA CORTE FINAL PC + MOBILE
   Ajuste para compactar sección y alinear imagen/texto
============================== */

.empresa-section{
  padding:64px 0 0 !important;
  overflow:hidden !important;
  position:relative !important;
  background:linear-gradient(135deg,#FF6A00,#D9853B) !important;
}

.empresa-wrap{
  width:min(1180px,92%) !important;
  margin:0 auto !important;
  display:grid !important;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr) !important;
  align-items:end !important;
  gap:32px !important;
  min-height:0 !important;
}

.empresa-text,
.empresa-content{
  width:auto !important;
  max-width:660px !important;
  padding:0 0 42px !important;
  position:relative !important;
  z-index:3 !important;
}

.empresa-text span,
.empresa-content span{
  margin-bottom:12px !important;
}

.empresa-text h2,
.empresa-content h2{
  margin:18px 0 12px !important;
}

.empresa-text h3,
.empresa-content h3{
  font-size:clamp(38px,4vw,56px) !important;
  line-height:1.04 !important;
  margin-bottom:20px !important;
}

.empresa-text p,
.empresa-content p{
  font-size:16px !important;
  line-height:1.55 !important;
  margin-bottom:22px !important;
  max-width:660px !important;
}

.empresa-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:50px !important;
  padding:0 26px !important;
  border-radius:13px !important;
  background:#0C0F14 !important;
  color:#fff !important;
  text-decoration:none !important;
  font-size:13px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
}

.empresa-visual{
  width:auto !important;
  min-height:430px !important;
  height:auto !important;
  position:relative !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:center !important;
  overflow:visible !important;
}

.empresa-shape,
.orange-shape{
  position:absolute !important;
  right:0 !important;
  bottom:0 !important;
  width:78% !important;
  height:72% !important;
  background:#FF7A18 !important;
  opacity:.45 !important;
  border-radius:110px 0 0 0 !important;
  z-index:1 !important;
}

.empresa-visual img{
  position:relative !important;
  z-index:2 !important;
  max-height:430px !important;
  width:auto !important;
  max-width:100% !important;
  object-fit:contain !important;
  display:block !important;
  filter:drop-shadow(0 22px 34px rgba(0,0,0,.24)) !important;
}


/* TABLET EMPRESA */

@media(max-width:1024px){

  .empresa-wrap{
    grid-template-columns:1fr .75fr !important;
    gap:24px !important;
  }

  .empresa-text h3,
  .empresa-content h3{
    font-size:38px !important;
  }

  .empresa-visual{
    min-height:360px !important;
  }

  .empresa-visual img{
    max-height:360px !important;
  }

}


/* MOBILE EMPRESA COMPACTA */

@media(max-width:768px){

  .empresa-section{
    padding:42px 0 0 !important;
  }

  .empresa-wrap{
    width:100% !important;
    padding:0 7% !important;
    display:grid !important;
    grid-template-columns:1fr 130px !important;
    align-items:end !important;
    gap:10px !important;
    position:relative !important;
  }

  .empresa-text,
  .empresa-content{
    width:100% !important;
    max-width:none !important;
    padding:0 0 58px !important;
    position:static !important;
    z-index:3 !important;
  }

  .empresa-text span,
  .empresa-content span{
    font-size:10px !important;
    letter-spacing:1.6px !important;
    margin-bottom:8px !important;
  }

  .empresa-text h2,
  .empresa-content h2{
    font-size:13px !important;
    margin:14px 0 8px !important;
  }

  .empresa-text h3,
  .empresa-content h3{
    font-size:23px !important;
    line-height:1.08 !important;
    margin-bottom:12px !important;
    max-width:100% !important;
  }

  .empresa-text p,
  .empresa-content p{
    font-size:12.5px !important;
    line-height:1.45 !important;
    margin-bottom:0 !important;
    max-width:100% !important;
  }

  .empresa-visual{
    width:145px !important;
    min-height:245px !important;
    height:245px !important;
    align-self:end !important;
    justify-content:center !important;
    margin-right:-7% !important;
    position:relative !important;
  }

  .empresa-shape,
  .orange-shape{
    right:0 !important;
    bottom:0 !important;
    width:145px !important;
    height:198px !important;
    border-radius:58px 0 0 0 !important;
    opacity:.48 !important;
  }

  .empresa-visual img{
    max-height:245px !important;
    max-width:170px !important;
    transform:translateX(-8px) !important;
  }

  .empresa-btn{
    position:absolute !important;
    left:7% !important;
    bottom:16px !important;
    height:40px !important;
    padding:0 18px !important;
    font-size:11px !important;
    border-radius:11px !important;
    z-index:5 !important;
  }

}
/* ==============================
   EMPRESA FINAL APROBADA
============================== */

.empresa-section{
  background:linear-gradient(135deg,#8F2F00 0%,#FF6A00 48%,#D9853B 100%) !important;
  color:#ffffff !important;
  padding:0 !important;
  overflow:hidden !important;
}

.empresa-wrap{
  width:min(1180px,92%) !important;
  margin:0 auto !important;
  min-height:620px !important;
  display:grid !important;
  grid-template-columns:1fr .92fr !important;
  align-items:end !important;
  gap:42px !important;
}

.empresa-content{
  padding:86px 0 90px !important;
  max-width:680px !important;
  position:relative !important;
  z-index:4 !important;
}

.empresa-small{
  display:block !important;
  color:#ffffff !important;
  font-size:13px !important;
  font-weight:900 !important;
  letter-spacing:2.4px !important;
  text-transform:uppercase !important;
  margin-bottom:28px !important;
}

.empresa-label{
  display:block !important;
  color:#FF7A18 !important;
  font-size:18px !important;
  font-weight:900 !important;
  letter-spacing:1px !important;
  text-transform:uppercase !important;
  margin-bottom:38px !important;
  position:relative !important;
}

.empresa-label::after{
  content:"" !important;
  display:block !important;
  width:54px !important;
  height:3px !important;
  background:#FF7A18 !important;
  margin-top:12px !important;
}

.empresa-content h2{
  color:#ffffff !important;
  font-size:clamp(42px,4.1vw,58px) !important;
  line-height:1.08 !important;
  font-weight:900 !important;
  letter-spacing:-1.4px !important;
  margin:0 0 26px !important;
}

.empresa-content p{
  color:rgba(255,255,255,.86) !important;
  font-size:17px !important;
  line-height:1.65 !important;
  max-width:650px !important;
  margin:0 0 34px !important;
}

.empresa-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:190px !important;
  height:58px !important;
  padding:0 30px !important;
  background:#0C0F14 !important;
  color:#ffffff !important;
  border-radius:10px !important;
  text-decoration:none !important;
  font-size:15px !important;
  font-weight:900 !important;
  letter-spacing:.5px !important;
  text-transform:uppercase !important;
  box-shadow:0 18px 36px rgba(0,0,0,.22) !important;
}

.empresa-visual{
  position:relative !important;
  min-height:620px !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:center !important;
}

.empresa-panel{
  position:absolute !important;
  right:0 !important;
  bottom:88px !important;
  width:86% !important;
  height:385px !important;
  background:rgba(255,106,0,.58) !important;
  border-radius:28px !important;
  z-index:1 !important;
}

.empresa-img{
  position:relative !important;
  z-index:2 !important;
  max-height:610px !important;
  width:auto !important;
  max-width:100% !important;
  object-fit:contain !important;
  display:block !important;
  filter:drop-shadow(0 28px 38px rgba(0,0,0,.32)) !important;
}


/* ==============================
   CONTACTO FINAL
============================== */

.contact-section{
  background:#0C0F14 !important;
  color:#F2F2F2 !important;
  padding:52px 5% !important;
  border-top:1px solid rgba(255,255,255,.08) !important;
}

.contact-wrap{
  max-width:1180px !important;
  margin:auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:28px !important;
  padding:28px !important;
  border:1px solid rgba(255,255,255,.10) !important;
  border-radius:24px !important;
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015)) !important;
}

.contact-left{
  flex:.75 !important;
}

.contact-left span{
  color:#FF6A00 !important;
  font-size:12px !important;
  font-weight:900 !important;
  letter-spacing:2px !important;
  text-transform:uppercase !important;
}

.contact-left h2{
  font-size:36px !important;
  line-height:1.05 !important;
  margin:10px 0 0 !important;
}

.contact-form{
  flex:1.4 !important;
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  flex-wrap:wrap !important;
}

.contact-form input,
.contact-form select{
  height:50px !important;
  min-width:155px !important;
  padding:0 14px !important;
  border-radius:12px !important;
  border:1px solid rgba(255,255,255,.12) !important;
  background:#F2F2F2 !important;
  color:#0C0F14 !important;
  outline:none !important;
  font-family:inherit !important;
}

.contact-form select{
  min-width:220px !important;
}

.contact-form button{
  height:50px !important;
  padding:0 20px !important;
  border:none !important;
  border-radius:12px !important;
  background:#FF6A00 !important;
  color:#ffffff !important;
  font-size:12px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  cursor:pointer !important;
}

.form-message{
  display:none !important;
  width:100% !important;
  color:#FF6A00 !important;
  font-size:14px !important;
  line-height:1.5 !important;
  margin-top:8px !important;
  font-weight:800 !important;
}

.form-message.show{
  display:block !important;
}


/* ==============================
   
}


/* ==============================
   MOBILE EMPRESA / CONTACTO / FOOTER
============================== */

@media(max-width:768px){

  .empresa-section{
    padding:0 !important;
  }

  .empresa-wrap{
    width:100% !important;
    min-height:auto !important;
    display:flex !important;
    flex-direction:column !important;
    gap:0 !important;
    padding:0 !important;
  }

  .empresa-content{
    width:100% !important;
    padding:26px 7% 18px !important;
    max-width:none !important;
  }

  .empresa-small{
    font-size:11px !important;
    letter-spacing:1.8px !important;
    margin-bottom:16px !important;
  }

  .empresa-label{
    font-size:14px !important;
    margin-bottom:18px !important;
  }

  .empresa-label::after{
    width:42px !important;
    height:2px !important;
    margin-top:9px !important;
  }

  .empresa-content h2{
    font-size:27px !important;
    line-height:1.12 !important;
    letter-spacing:-.5px !important;
    margin-bottom:16px !important;
  }

  .empresa-content p{
    font-size:13.5px !important;
    line-height:1.55 !important;
    margin-bottom:18px !important;
  }

  .empresa-btn{
    min-width:155px !important;
    height:48px !important;
    font-size:13px !important;
    margin-bottom:18px !important;
  }

  .empresa-visual{
    width:100% !important;
    min-height:300px !important;
    display:flex !important;
    align-items:flex-end !important;
    justify-content:center !important;
    padding:0 7% !important;
  }

  .empresa-panel{
    bottom:0 !important;
    right:7% !important;
    width:78% !important;
    height:220px !important;
    border-radius:18px !important;
  }

  .empresa-img{
    max-height:300px !important;
    max-width:92% !important;
  }

  .contact-section{
    padding:48px 7% !important;
  }

  .contact-wrap{
    flex-direction:column !important;
    align-items:flex-start !important;
    padding:24px !important;
  }

  .contact-left h2{
    font-size:32px !important;
  }

  .contact-form{
    width:100% !important;
    flex-direction:column !important;
    align-items:stretch !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form button{
    width:100% !important;
    min-width:100% !important;
  }

  .footer{
    padding:56px 7% 28px !important;
  }

  .footer-grid{
    flex-direction:column !important;
    gap:26px !important;
  }

  .footer-bottom{
    flex-direction:column !important;
  }

}
/* ==============================
   EMPRESA AJUSTE FINAL COMPACTO
   Reduce alto, ajusta texto e imagen
============================== */

.empresa-section{
  padding:0 !important;
  min-height:auto !important;
  overflow:hidden !important;
}

.empresa-wrap{
  width:min(1180px,92%) !important;
  min-height:500px !important;
  display:grid !important;
  grid-template-columns:1fr .86fr !important;
  align-items:end !important;
  gap:34px !important;
}

.empresa-content{
  padding:54px 0 56px !important;
  max-width:650px !important;
}

.empresa-small{
  font-size:12px !important;
  letter-spacing:2px !important;
  margin-bottom:18px !important;
}

.empresa-label{
  font-size:15px !important;
  margin-bottom:26px !important;
}

.empresa-content h2{
  font-size:clamp(34px,3.4vw,48px) !important;
  line-height:1.08 !important;
  letter-spacing:-1px !important;
  margin-bottom:20px !important;
}

.empresa-content p{
  font-size:15.5px !important;
  line-height:1.55 !important;
  margin-bottom:24px !important;
  max-width:620px !important;
}

.empresa-btn{
  height:48px !important;
  min-width:168px !important;
  padding:0 24px !important;
  font-size:13px !important;
}

.empresa-visual{
  min-height:500px !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:center !important;
}

.empresa-panel{
  bottom:0 !important;
  height:330px !important;
  width:82% !important;
  border-radius:24px !important;
}

.empresa-img{
  max-height:500px !important;
  object-fit:contain !important;
}

/* TABLET EMPRESA */

@media(max-width:1024px){

  .empresa-wrap{
    min-height:450px !important;
    grid-template-columns:1fr .78fr !important;
  }

  .empresa-content{
    padding:48px 0 50px !important;
  }

  .empresa-content h2{
    font-size:34px !important;
  }

  .empresa-content p{
    font-size:14.5px !important;
  }

  .empresa-visual{
    min-height:450px !important;
  }

  .empresa-img{
    max-height:445px !important;
  }

  .empresa-panel{
    height:295px !important;
  }

}

/* MOBILE EMPRESA */

@media(max-width:768px){

  .empresa-section{
    padding:0 !important;
  }

  .empresa-wrap{
    width:100% !important;
    min-height:auto !important;
    display:flex !important;
    flex-direction:column !important;
    gap:0 !important;
  }

  .empresa-content{
    width:100% !important;
    padding:32px 7% 18px !important;
  }

  .empresa-small{
    font-size:10px !important;
    letter-spacing:1.6px !important;
    margin-bottom:12px !important;
  }

  .empresa-label{
    font-size:13px !important;
    margin-bottom:16px !important;
  }

  .empresa-content h2{
    font-size:24px !important;
    line-height:1.12 !important;
    letter-spacing:-.4px !important;
    margin-bottom:14px !important;
  }

  .empresa-content p{
    font-size:12.8px !important;
    line-height:1.5 !important;
    margin-bottom:16px !important;
  }

  .empresa-btn{
    height:44px !important;
    min-width:150px !important;
    font-size:12px !important;
    margin-bottom:0 !important;
  }

  .empresa-visual{
    width:100% !important;
    min-height:260px !important;
    padding:0 7% !important;
    display:flex !important;
    align-items:flex-end !important;
    justify-content:center !important;
  }

  .empresa-panel{
    right:7% !important;
    bottom:0 !important;
    width:78% !important;
    height:190px !important;
    border-radius:18px !important;
  }

  .empresa-img{
    max-height:260px !important;
    max-width:90% !important;
  }

}
/* ==============================
   FOOTER ACORDEÓN MOBILE
============================== */

.footer-menu{
  border:none !important;
}

.footer-menu summary{
  list-style:none !important;
  cursor:pointer !important;
  color:#FF6A00 !important;
  font-size:14px !important;
  text-transform:uppercase !important;
  letter-spacing:1px !important;
  font-weight:900 !important;
  margin-bottom:16px !important;
}

.footer-menu summary::-webkit-details-marker{
  display:none !important;
}

.footer-menu summary::after{
  content:"+" !important;
  float:right !important;
  display:none !important;
}

.footer-menu[open] summary::after{
  content:"−" !important;
}

/* Desktop: se comporta como columnas normales */
@media(min-width:769px){

  .footer-menu summary{
    pointer-events:none !important;
  }

}

/* Mobile: acordeón limpio */
@media(max-width:768px){

  .footer-menu{
    width:100% !important;
    border-bottom:1px solid rgba(255,255,255,.08) !important;
    padding-bottom:14px !important;
  }

  .footer-menu summary{
    display:block !important;
    margin-bottom:0 !important;
    padding:12px 0 !important;
  }

  .footer-menu summary::after{
    display:block !important;
  }

  .footer-menu a{
    padding:8px 0 !important;
    margin-bottom:0 !important;
  }

}
/* ==============================
   EMPRESA FINAL LIMPIA
   Nuevas clases para evitar conflictos
============================== */

.empresa-final{
  background:linear-gradient(135deg,#8F2F00 0%,#FF6A00 48%,#D9853B 100%);
  color:#ffffff;
  overflow:hidden;
  padding:0;
}

.empresa-final-wrap{
  width:min(1180px,92%);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr .86fr;
  align-items:end;
  gap:38px;
  min-height:500px;
}

.empresa-final-content{
  padding:56px 0 58px;
  max-width:650px;
  position:relative;
  z-index:3;
}

.empresa-final-small{
  display:block;
  color:#ffffff;
  font-size:12px;
  font-weight:900;
  letter-spacing:2.2px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.empresa-final-label{
  display:block;
  color:#FFB077;
  font-size:15px;
  font-weight:900;
  letter-spacing:1.8px;
  text-transform:uppercase;
  margin-bottom:26px;
}

.empresa-final-label::after{
  content:"";
  display:block;
  width:52px;
  height:3px;
  background:#FFB077;
  margin-top:12px;
}

.empresa-final-content h2{
  color:#ffffff;
  font-size:clamp(34px,3.35vw,48px);
  line-height:1.08;
  font-weight:900;
  letter-spacing:-1px;
  margin:0 0 20px;
}

.empresa-final-content p{
  color:rgba(255,255,255,.86);
  font-size:15.5px;
  line-height:1.55;
  max-width:620px;
  margin:0 0 24px;
}

.empresa-final-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:168px;
  height:48px;
  padding:0 24px;
  background:#0C0F14;
  color:#ffffff;
  border-radius:12px;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  letter-spacing:.4px;
  text-transform:uppercase;
  box-shadow:0 16px 30px rgba(0,0,0,.22);
}

.empresa-final-visual{
  position:relative;
  min-height:500px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.empresa-final-panel{
  position:absolute;
  right:0;
  bottom:0;
  width:82%;
  height:330px;
  background:rgba(255,106,0,.58);
  border-radius:26px 26px 0 0;
  z-index:1;
}

.empresa-final-img{
  position:relative;
  z-index:2;
  max-height:500px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 24px 34px rgba(0,0,0,.30));
}


/* TABLET EMPRESA FINAL */

@media(max-width:1024px){

  .empresa-final-wrap{
    grid-template-columns:1fr .78fr;
    gap:28px;
    min-height:440px;
  }

  .empresa-final-content{
    padding:48px 0 50px;
  }

  .empresa-final-content h2{
    font-size:34px;
  }

  .empresa-final-content p{
    font-size:14.5px;
  }

  .empresa-final-visual{
    min-height:440px;
  }

  .empresa-final-panel{
    height:295px;
  }

  .empresa-final-img{
    max-height:440px;
  }

}


/* MOBILE EMPRESA FINAL */

@media(max-width:768px){

  .empresa-final-wrap{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:0;
    min-height:auto;
  }

  .empresa-final-content{
    width:100%;
    max-width:none;
    padding:34px 7% 18px;
  }

  .empresa-final-small{
    font-size:10px;
    letter-spacing:1.7px;
    margin-bottom:12px;
  }

  .empresa-final-label{
    font-size:13px;
    margin-bottom:16px;
  }

  .empresa-final-label::after{
    width:42px;
    height:2px;
    margin-top:9px;
  }

  .empresa-final-content h2{
    font-size:24px;
    line-height:1.12;
    letter-spacing:-.4px;
    margin-bottom:14px;
  }

  .empresa-final-content p{
    font-size:12.8px;
    line-height:1.5;
    margin-bottom:16px;
  }

  .empresa-final-btn{
    height:44px;
    min-width:150px;
    font-size:12px;
  }

  .empresa-final-visual{
    width:100%;
    min-height:245px;
    padding:0 7%;
    display:flex;
    align-items:flex-end;
    justify-content:center;
  }

  .empresa-final-panel{
    right:7%;
    bottom:0;
    width:78%;
    height:185px;
    border-radius:20px 20px 0 0;
  }

  .empresa-final-img{
    max-height:245px;
    max-width:90%;
  }

}
/* ==============================
   FONDO CONECTOR LUXARA
   Energía + film + líneas técnicas
============================== */

.productos-section,
.servicios-section,
.empresa-final,
.contact-section{
  position:relative;
  overflow:hidden;
}

.productos-section > *,
.servicios-section > *,
.empresa-final > *,
.contact-section > *{
  position:relative;
  z-index:2;
}

.productos-section::before,
.servicios-section::before,
.empresa-final::before,
.contact-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255,106,0,.16),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 38%,
      rgba(255,106,0,.14) 39%,
      rgba(255,106,0,.05) 41%,
      transparent 45%,
      transparent 100%
    ),
    linear-gradient(
      35deg,
      transparent 0%,
      transparent 58%,
      rgba(255,255,255,.08) 59%,
      transparent 63%,
      transparent 100%
    );
  opacity:.36;
  transform:translate3d(0,0,0);
  animation:luxaraFlow 24s ease-in-out infinite alternate;
}

/* Productos: más sutil por fondo claro */

.productos-section::before{
  opacity:.20;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(255,106,0,.12),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 40%,
      rgba(255,106,0,.10) 41%,
      transparent 46%,
      transparent 100%
    );
}

/* Servicios: más visible por fondo oscuro */

.servicios-section::before{
  opacity:.44;
}

/* Empresa: líneas claras sobre naranja */

.empresa-final::before{
  opacity:.28;
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(255,255,255,.16),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 36%,
      rgba(255,255,255,.16) 37%,
      rgba(255,255,255,.06) 39%,
      transparent 44%,
      transparent 100%
    );
}

/* Contacto: energía naranja suave */

.contact-section::before{
  opacity:.34;
}

@keyframes luxaraFlow{
  0%{
    background-position:0 0, 0 0, 0 0;
    transform:translateY(0);
  }

  100%{
    background-position:38px 18px, 68px 36px, -44px 18px;
    transform:translateY(-5px);
  }
}


/* ==============================
   SCROLL REVEAL LIGERO
============================== */

html{
  scroll-behavior:smooth;
}

#inicio,
#productos,
#servicios,
#empresa,
#contacto{
  scroll-margin-top:88px;
}

.luxara-reveal{
  opacity:0;
  transform:translateY(26px);
  filter:blur(3px);
  transition:
    opacity .72s ease,
    transform .72s cubic-bezier(.22,1,.36,1),
    filter .72s ease;
  will-change:opacity, transform, filter;
}

.luxara-reveal.show-section{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}

/* Animación interna suave */

.luxara-reveal .product-card,
.luxara-reveal .service-card,
.luxara-reveal .empresa-final-content,
.luxara-reveal .empresa-final-visual,
.luxara-reveal .contact-left,
.luxara-reveal .contact-form,
.luxara-reveal .footer-col{
  transition:
    opacity .62s ease,
    transform .62s cubic-bezier(.22,1,.36,1);
}

.luxara-reveal:not(.show-section) .product-card,
.luxara-reveal:not(.show-section) .service-card,
.luxara-reveal:not(.show-section) .empresa-final-content,
.luxara-reveal:not(.show-section) .empresa-final-visual,
.luxara-reveal:not(.show-section) .contact-left,
.luxara-reveal:not(.show-section) .contact-form,
.luxara-reveal:not(.show-section) .footer-col{
  opacity:0;
  transform:translateY(18px);
}

.luxara-reveal.show-section .product-card:nth-child(2),
.luxara-reveal.show-section .service-card:nth-child(2){
  transition-delay:.08s;
}

.luxara-reveal.show-section .product-card:nth-child(3),
.luxara-reveal.show-section .service-card:nth-child(3){
  transition-delay:.14s;
}

/* Hover profesional, sin peso */

.btn-main,
.btn-outline,
.product-btn,
.service-btn,
.empresa-final-btn,
.contact-form button,
.request-btn{
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.btn-main:hover,
.product-btn:hover,
.service-btn:hover,
.empresa-final-btn:hover,
.contact-form button:hover,
.request-btn:hover{
  transform:translateY(-2px);
}

.product-card,
.service-card,
.contact-wrap{
  transition:
    transform .32s ease,
    box-shadow .32s ease,
    border-color .32s ease;
}

.product-card:hover,
.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 48px rgba(12,15,20,.14);
}

/* Mobile más liviano */

@media(max-width:768px){

  #inicio,
  #productos,
  #servicios,
  #empresa,
  #contacto{
    scroll-margin-top:70px;
  }

  .productos-section::before,
  .servicios-section::before,
  .empresa-final::before,
  .contact-section::before{
    opacity:.22;
    animation:luxaraFlowMobile 30s ease-in-out infinite alternate;
  }

  .luxara-reveal{
    transform:translateY(20px);
    filter:blur(2px);
  }

  .product-card:hover,
  .service-card:hover{
    transform:none;
    box-shadow:0 12px 28px rgba(12,15,20,.08);
  }

  @keyframes luxaraFlowMobile{
    0%{
      transform:translateY(0);
    }

    100%{
      transform:translateY(-3px);
    }
  }

}

/* Respeta usuarios con reducción de movimiento */

@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  .productos-section::before,
  .servicios-section::before,
  .empresa-final::before,
  .contact-section::before{
    animation:none !important;
  }

  .luxara-reveal,
  .luxara-reveal *{
    transition:none !important;
    transform:none !important;
    filter:none !important;
    opacity:1 !important;
  }

}

}/* ==============================
   ICONOS REDES FOOTER
============================== */

.footer-social{
  display:flex;
  gap:12px;
  align-items:center;
}

.footer-social a{
  width:38px !important;
  height:38px !important;
  border-radius:50% !important;
  border:1px solid rgba(255,255,255,.18) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:rgba(255,255,255,.04) !important;
  transition:.25s ease !important;
}

.footer-social a:hover{
  transform:translateY(-2px);
  border-color:#FF6A00 !important;
  box-shadow:0 0 18px rgba(255,106,0,.35);
}

.footer-social img{
  width:18px;
  height:18px;
  object-fit:contain;
  display:block;
}
/* ==============================
   FOOTER FINAL LIMPIO
============================== */

.footer{
  background:#070A12;
  color:#F2F2F2;
  padding:56px 5% 24px;
  border-top:1px solid rgba(255,255,255,.08);
  position:relative;
  overflow:hidden;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;
  gap:34px;
  align-items:start;
  margin-bottom:30px;
}

.footer-col h4{
  color:#FF6A00;
  font-size:14px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
  margin-bottom:16px;
}

.footer-col a,
.footer-col p{
  color:rgba(242,242,242,.78);
  text-decoration:none;
  font-size:15px;
  line-height:1.7;
  margin-bottom:8px;
  display:block;
}

.footer-col a:hover{
  color:#FF6A00;
}

.footer-brand{
  max-width:290px;
}

.footer-logo{
  height:48px;
  width:auto;
  display:block;
  margin-bottom:18px;
}

.footer-address{
  color:rgba(242,242,242,.82);
  font-size:15px;
  line-height:1.7;
  margin-bottom:18px;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}

.footer-social a{
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .25s ease;
  margin-bottom:0;
}

.footer-social a:hover{
  border-color:#FF6A00;
  transform:translateY(-2px);
}

.footer-social img{
  width:18px;
  height:18px;
  object-fit:contain;
  display:block;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-bottom p{
  color:rgba(242,242,242,.58);
  font-size:13px;
  line-height:1.5;
  margin:0;
}

/* TABLET */
@media(max-width:1024px){
  .footer-grid{
    grid-template-columns:1.5fr 1fr 1fr;
    gap:28px;
  }
}

/* MOBILE */
@media(max-width:768px){
  .footer{
    padding:42px 7% 22px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:18px;
    margin-bottom:24px;
  }

  .footer-brand{
    max-width:100%;
  }

  .footer-logo{
    height:42px;
    margin-bottom:14px;
  }

  .footer-address{
    margin-bottom:14px;
  }

  .footer-social{
    margin-bottom:4px;
  }

  .footer-menu{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:14px;
  }

  .footer-menu summary{
    list-style:none;
    cursor:pointer;
    color:#FF6A00;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-bottom:10px;
  }

  .footer-menu summary::-webkit-details-marker{
    display:none;
  }

  .footer-menu[open] summary{
    margin-bottom:10px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
}
/* ==============================
   PRODUCTOS IMÁGENES AJUSTE FINAL
   Corrige encuadre, escala y sensación flotante
============================== */

.product-card{
  overflow:hidden;
}

.product-image{
  width:150px !important;
  min-width:150px !important;
  height:120px !important;
  border-radius:22px !important;
  background:transparent !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 !important;
  overflow:visible !important;
}

.product-image img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  object-position:center !important;
  display:block !important;
  border-radius:16px !important;
  filter:drop-shadow(0 14px 18px rgba(12,15,20,.18)) !important;
}

/* Ajuste visual del texto para que la imagen respire */

.product-info{
  flex:1 !important;
  min-width:0 !important;
}

.product-info h3{
  margin-bottom:10px !important;
}

.product-info p{
  margin-bottom:16px !important;
}

/* MOBILE PRODUCTOS - imagen flotante más compacta */
/* ==============================
   PRODUCTOS AJUSTE FINAL PREMIUM
   PC + MOBILE
============================== */

.productos-section{
  background:#F2F2F2 !important;
  color:#0C0F14 !important;
  padding:74px 5% 82px !important;
}

.products-container{
  max-width:1120px !important;
  margin:0 auto !important;
}

.product-head{
  text-align:left !important;
  max-width:720px !important;
  margin:0 0 36px !important;
}

.product-head span{
  color:#FF6A00 !important;
  font-size:12px !important;
  font-weight:900 !important;
  letter-spacing:2.2px !important;
  text-transform:uppercase !important;
}

.product-head h2{
  font-size:clamp(34px,3.5vw,46px) !important;
  line-height:1.06 !important;
  letter-spacing:-.8px !important;
  margin:14px 0 12px !important;
  max-width:680px !important;
}

.orange-text{
  color:#0C0F14 !important;
  font-size:18px !important;
  font-weight:700 !important;
  line-height:1.45 !important;
  opacity:.82 !important;
}

.product-grid{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:26px !important;
  max-width:1040px !important;
  margin:0 auto !important;
}

.product-card{
  min-height:230px !important;
  padding:30px !important;
  border-radius:30px !important;
  background:rgba(255,255,255,.92) !important;
  border:1px solid rgba(12,15,20,.08) !important;
  box-shadow:0 22px 52px rgba(12,15,20,.08) !important;
  display:flex !important;
  align-items:center !important;
  gap:26px !important;
  overflow:hidden !important;
  position:relative !important;
}

.product-card::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,106,0,.10), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.85), rgba(255,255,255,.35)) !important;
  opacity:.72 !important;
  pointer-events:none !important;
}

.product-image,
.product-info{
    position: relative !important;
    z-index: 2 !important;
    background-color: #FFFFFF;
}

.product-image{
    width: 200px !important;
    min-width: 150px !important;
    height: 300px !important;
    border-radius: 28px !important;
    background: rgba(12,15,20,.055) !important;
    border: 1px solid rgba(12,15,20,.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px !important;
    overflow: visible !important;
}

.product-image img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  object-position:center !important;
  display:block !important;
  filter:drop-shadow(0 14px 18px rgba(12,15,20,.18)) !important;
}

/* Ajuste individual porque las dos imágenes tienen composiciones distintas */
.product-card:first-child .product-image img{
  transform:scale(1.10) !important;
}

.product-card:nth-child(2) .product-image img{
  transform:scale(.96) !important;
}

.product-info{
  flex:1 !important;
  min-width:0 !important;
}

.product-info h3{
  font-size:28px !important;
  line-height:1.08 !important;
  margin:0 0 10px !important;
  color:#0C0F14 !important;
}

.product-info p{
  color:rgba(12,15,20,.68) !important;
  font-size:15px !important;
  line-height:1.5 !important;
  margin:0 0 18px !important;
  max-width:330px !important;
}

.product-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#0C0F14 !important;
  text-decoration:none !important;
  font-size:12px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  letter-spacing:.3px !important;
  border-bottom:2px solid #FF6A00 !important;
  padding-bottom:5px !important;
  background:transparent !important;
}

/* Hover PC */
@media(min-width:901px){

  .product-card{
    transition:
      transform .32s ease,
      box-shadow .32s ease,
      border-color .32s ease !important;
  }

  .product-card:hover{
    transform:translateY(-6px) !important;
    box-shadow:0 28px 70px rgba(12,15,20,.13) !important;
    border-color:rgba(255,106,0,.22) !important;
  }

}


/* ==============================
   PRODUCTOS MOBILE AJUSTE FINAL
============================== */

@media(max-width:900px){

  .productos-section{
    padding:52px 7% 58px !important;
  }

  .product-head{
    text-align:center !important;
    max-width:340px !important;
    margin:0 auto 28px !important;
  }

  .product-head span{
    font-size:11px !important;
    letter-spacing:2px !important;
  }

  .product-head h2{
    font-size:26px !important;
    line-height:1.12 !important;
    letter-spacing:-.3px !important;
    margin:10px 0 10px !important;
  }

  .orange-text{
    font-size:14px !important;
    line-height:1.4 !important;
  }

  .product-grid{
    display:flex !important;
    flex-direction:column !important;
    gap:14px !important;
    max-width:430px !important;
    margin:0 auto !important;
  }

  .product-card{
    width:100% !important;
    min-height:132px !important;
    padding:14px !important;
    border-radius:22px !important;
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    gap:14px !important;
    background:rgba(255,255,255,.96) !important;
    border:1px solid rgba(12,15,20,.08) !important;
    box-shadow:0 14px 32px rgba(12,15,20,.08) !important;
  }

  .product-image{
    width:92px !important;
    min-width:92px !important;
    height:92px !important;
    border-radius:18px !important;
    padding:10px !important;
    background:rgba(12,15,20,.05) !important;
  }

  .product-card:first-child .product-image img{
    transform:scale(1.10) !important;
  }

  .product-card:nth-child(2) .product-image img{
    transform:scale(.95) !important;
  }

  .product-info h3{
    font-size:18px !important;
    line-height:1.1 !important;
    margin-bottom:5px !important;
  }

  .product-info p{
    font-size:12px !important;
    line-height:1.35 !important;
    margin-bottom:10px !important;
    color:rgba(12,15,20,.70) !important;
  }

  .product-btn{
    padding:7px 12px !important;
    border:1px solid rgba(12,15,20,.82) !important;
    border-radius:999px !important;
    font-size:10px !important;
    border-bottom:1px solid rgba(12,15,20,.82) !important;
  }

}
.product-media{
    width:170px;
    height:170px;
    border-radius:28px;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:visible;
    flex-shrink:0;
    position:relative;
}
.product-card:first-child .product-media img{
    width:122%;
    transform:translateX(-6px) translateY(2px);
}

.product-card:last-child .product-media img{
    width:138%;
    transform:translateX(-4px) translateY(0);
}
/* ==============================
   ICONOS REDES FOOTER FINAL
============================== */

.footer-social{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  margin-top:14px !important;
}

.footer-social a{
  width:44px !important;
  height:44px !important;
  border-radius:50% !important;
  border:1px solid rgba(255,255,255,.20) !important;
  background:rgba(255,255,255,.045) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 !important;
  padding:0 !important;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease !important;
}

.footer-social a:hover{
  transform:translateY(-2px) !important;
  border-color:#FF6A00 !important;
  box-shadow:0 0 18px rgba(255,106,0,.35) !important;
}

.footer-social img{
  width:21px !important;
  height:21px !important;
  object-fit:contain !important;
  display:block !important;
}

@media(max-width:768px){

  .footer-social a{
    width:42px !important;
    height:42px !important;
  }

  .footer-social img{
    width:20px !important;
    height:20px !important;
  }

}
