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

/* =========================================================
   VARIABLES
========================================================= */
:root{
  --morado:#93358D;
  --morado-oscuro:#7a2c74;

  --fondo-claro:#ffffff;
  --fondo-suave:#ebf2f4;

  --texto:#333;
}

/* =========================================================
   BODY
========================================================= */
body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--texto);

  background:linear-gradient(
    to bottom,
    var(--fondo-claro),
    var(--fondo-suave)
  );

  line-height:1.5;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn{
  display:inline-block;

  padding:.8rem 1.4rem;

  border-radius:999px;

  text-decoration:none;

  font-size:.9rem;
  font-weight:600;

  transition:.3s;
}

/* =====================================================
   PRIMARY
===================================================== */

.btn-primary{
  background:var(--morado);
  color:white;
}

.btn-primary:hover{
  background:var(--morado-oscuro);
  transform:translateY(-2px);
}

/* =====================================================
   OUTLINE
===================================================== */

.btn-outline{
  background:white;

  color:var(--morado);

  border:2px solid var(--morado);
}

.btn-outline:hover{
  background:var(--morado);
  color:white;

  transform:translateY(-2px);
}

/* =========================================================
   HEADER / NAV
========================================================= */
.header{
  position:absolute;
  top:0;
  width:100%;
  z-index:1000;
}

.nav-container{
  max-width:1200px;

  margin:1rem auto;
  padding:.6rem 1.2rem;

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

  background:rgba(255,255,255,.25);

  backdrop-filter:blur(12px);

  border-radius:14px;
}

.logo{
  height:34px;
}

.nav-menu{
  display:flex;
  gap:1.5rem;
}

.nav-menu a{
  text-decoration:none;
  color:white;
  font-size:.9rem;

  transition:opacity .2s;
}

.nav-menu a:hover{
  opacity:.7;
}

.login{
  color:white;
  text-decoration:none;
}

.nav-brand{
  display:none;
}

.menu-toggle{
  display:none;

  font-size:1.6rem;
  color:white;

  cursor:pointer;
}

/* =========================================================
   HOME HERO SLIDER
========================================================= */

.hero{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* =========================================================
   SLIDER
========================================================= */

.hero-slider{
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide{
  position: absolute;
  inset: 0;

  opacity: 0;
  transition: opacity 1s ease;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.hero-slide.active{
  opacity: 1;
  z-index: 2;
}

/* =========================================================
   INTERIOR PAGE HERO
========================================================= */

.page-hero{
  position: relative;

  height: 520px;

  overflow: hidden;

  display: flex;
  align-items: center;
}

/* =========================================================
   IMAGEN FONDO
========================================================= */

.page-hero-bg{
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  z-index: 1;
}

/* =========================================================
   OVERLAY
========================================================= */

.page-hero::after{
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,

    rgba(147,53,141,.90) 0%,
    rgba(147,53,141,.78) 25%,
    rgba(147,53,141,.45) 50%,
    rgba(147,53,141,.10) 72%,
    rgba(147,53,141,0) 100%
  );

  z-index: 2;
}

/* =========================================================
   CONTENIDO
========================================================= */

.page-hero-content{
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 5%;

  color: white;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 1rem;
}

/* LOGO */
.page-hero-icon{
  width: 90px;
}

/* TITULO */
.page-hero-content h1{
  font-size: 3rem;
  font-weight: 800;

  line-height: 1.1;

  max-width: 580px;
}

/* TEXTO */
.page-hero-content p{
  font-size: 1.05rem;

  line-height: 1.7;

  max-width: 540px;
}

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

@media (max-width:768px){

  .page-hero{
    height: 420px;
  }

  .page-hero-content{
    align-items: center;
    text-align: center;
  }

  .page-hero-content h1{
    font-size: 2.1rem;
  }

  .page-hero-content p{
    font-size: .95rem;
  }

  .page-hero-icon{
    width: 70px;
  }

}

/* =========================================================
   BACKGROUND
========================================================= */

.hero-bg{
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
}

/* OVERLAY */
.hero-slide::after{
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(147,53,141,.72),
    rgba(147,53,141,.18),
    rgba(147,53,141,.0)
  );

  z-index: 1;
}

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

.hero-content{
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 5%;

  color: white;

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

  gap: 1rem;
}

/* LOGO */
.hero-icon{
  width: 120px;
}

/* TITULO */
.hero-content h1{
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
}

/* SUBTITULO */
.hero-content p{
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.6;
}

/* STORES */
.hero-buttons{
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-buttons img{
  height: 42px;
}

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

@media (max-width: 768px){

  .hero{
    height: 85vh;
  }

  .hero-content{
    align-items: center;
    text-align: center;
  }

  .hero-content h1{
    font-size: 2.2rem;
  }

  .hero-content p{
    font-size: 1rem;
  }

  .hero-icon{
    width: 80px;
  }

  .hero-buttons{
    justify-content: center;
    flex-wrap: wrap;
  }

}


/* =========================================================
   INTRO
========================================================= */
.intro{
  text-align:center;

  padding:4rem 1.5rem;

  max-width:800px;
  margin:0 auto;
}

.intro h2{
  margin-bottom:1rem;
  font-size:1.8rem;
}

.intro p{
  font-size:.95rem;
  color:#555;
}

/* =========================================================
   FEATURES
========================================================= */
.features{
  text-align:center;
  padding:3rem 1.5rem;
}

.features h2{
  margin-bottom:2rem;
}

/* GRID */
.features-grid{
  display:grid;

  grid-template-columns:repeat(5,168px);

  gap:1.5rem;

  justify-content:center;
}

/* Segunda fila centrada */
.features-grid .feature:nth-child(6){
  grid-column:2;
}

/* CARD */
.feature{
  width:168px;
  height:188px;

  padding:24px 8px;

  border-radius:16px;
  background:#fff;

  display:flex;
  flex-direction:column;

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

  gap:16px;

  transition:.3s;

  box-shadow:
    0 8px 18px rgba(89,141,132,.10),
    0 32px 32px rgba(89,141,132,.08);
}

.feature:hover{
  transform:translateY(-5px);
}

/* CIRCULO MORADO */
.feature-icon{
  width:96px;
  height:96px;

  border-radius:50%;

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

  padding:16px;

  background:linear-gradient(
    315deg,
    #93358D 49%,
    #B340D6 50.48%
  );
}

/* ICONO SVG */
.feature-icon img{
  width:65px;
  height:65px;

  object-fit:contain;
}

.feature span{
  font-size:.85rem;
  text-align:center;
}

/* =========================================================
   HOW IT WORKS
========================================================= */

.how-it-works{
  padding:5rem 1.5rem;
  text-align:center;
}

.how-it-works h2{
  font-size:2rem;
  font-weight:800;

  margin-bottom:3rem;

  color:#2b1327;
}

/* =========================================================
   GRID BASE
========================================================= */

.how-grid{
  max-width:1200px;
  margin:0 auto;
}

/* =========================================================
   VERSION 4 Y 5
   SOLO LINEAS VERTICALES
========================================================= */

.how-grid-lines{
  background:white;

  border-radius:20px;

  overflow:hidden;

  display:grid;

  box-shadow:
    0 15px 35px rgba(0,0,0,.06),
    0 40px 80px rgba(0,0,0,.04);
}

/* 4 ITEMS */
.how-grid-4{
  grid-template-columns:repeat(4,1fr);
}

/* 5 ITEMS */
.how-grid-5{
  grid-template-columns:repeat(5,1fr);
}

/* =========================================================
   LINE ITEMS
========================================================= */

.how-line-card{
  padding:3rem 2rem;

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

  text-align:center;

  position:relative;
}

/* LINEA */
.how-line-card::after{
  content:"";

  position:absolute;

  top:50%;
  right:0;

  width:1px;
  height:70%;

  background:#d8d8d8;

  transform:translateY(-50%);
}

/* QUITAR ULTIMA LINEA */
.how-grid-4 .how-line-card:nth-child(4)::after,
.how-grid-5 .how-line-card:nth-child(5)::after{
  display:none;
}

/* =========================================================
   VERSION 8 Y 9
   ESTILO CARD
========================================================= */

.how-grid-cards{
  display:grid;

  gap:2rem;

  justify-content:center;
}

/* =========================================================
   4 CARDS ESTILO CARD
========================================================= */

.how-grid-cards-4{
  grid-template-columns:repeat(4,1fr);
}

/* =========================================================
   8 CARDS
   1 2 3 4 5
     6 7 8
========================================================= */

.how-grid-8{
  grid-template-columns:repeat(10, 1fr);
}

.how-grid-8 .how-card{
  grid-column:span 2;
}

.how-grid-8 .how-card:nth-child(6){
  grid-column:3 / span 2;
}

/* =========================================================
   9 CARDS
   1 2 3 4 5
    6 7 8 9
========================================================= */

.how-grid-9{
  grid-template-columns:repeat(10,1fr);
}

.how-grid-9 .how-card{
  grid-column:span 2;
}

.how-grid-9 .how-card:nth-child(6){
  grid-column:2 / span 2;
}

/* =========================================================
   CARD STYLE
========================================================= */

.how-card{
  background:white;

  border-radius:20px;

  min-height:220px;

  padding:2rem 1rem;

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

  text-align:center;

  box-shadow:
    0 10px 25px rgba(89,141,132,.10),
    0 32px 32px rgba(89,141,132,.08);

  transition:.3s;
}

.how-card:hover{
  transform:translateY(-5px);
}

/* =========================================================
   ICONOS
========================================================= */

.how-icon{
  width:96px;
  height:96px;

  border-radius:50%;

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

  margin-bottom:1.2rem;

  background:linear-gradient(
    315deg,
    #93358D 49%,
    #B340D6 50.48%
  );
}

.how-icon img{
  width:48px;
  height:48px;

  object-fit:contain;
}

/* =========================================================
   TEXTOS
========================================================= */

.how-line-card h3,
.how-card h3{
  font-size:1.1rem;
  font-weight:800;

  margin-bottom:.7rem;

  color:#2b1327;
}

.how-line-card p,
.how-card p{
  font-size:.92rem;
  line-height:1.45;

  color:#555;
}

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

@media(max-width:992px){

  /* LINEAS */
  .how-grid-4,
  .how-grid-5{
    grid-template-columns:repeat(2,1fr);
  }

  .how-line-card::after{
    display:none;
  }

  /* CARDS */
  .how-grid-8,
  .how-grid-9{
    grid-template-columns:repeat(2,1fr);
  }

  .how-grid-8 .how-card,
  .how-grid-9 .how-card{
    grid-column:auto;
  }

  .how-grid-8 .how-card:nth-child(6),
  .how-grid-9 .how-card:nth-child(6){
    grid-column:auto;
  }

}

@media(max-width:768px){

  .how-grid-4,
  .how-grid-5,
  .how-grid-8,
  .how-grid-9{
    grid-template-columns:1fr;
  }

}

/* =========================================================
   BENEFITS
========================================================= */
.benefits{
  padding:4rem 1.5rem;
  text-align:center;
}

.benefits-grid{
  display:grid;

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

  gap:2rem;

  max-width:1100px;
  margin:0 auto;

  justify-items:center;
}

/* CARD */
.benefit-card{
  position:relative;

  width:100%;
  max-width:520px;
  height:300px;

  border-radius:16px;

  overflow:hidden;

  box-shadow:
    0 10px 25px rgba(0,0,0,.15);

  transition:transform .3s ease;
}

.benefit-card:hover{
  transform:translateY(-6px);
}

/* IMAGEN */
.benefit-card img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
}

/* OVERLAY */
.benefit-card .overlay{
  position:absolute;
  inset:0;

  z-index:2;

  display:flex;
  flex-direction:column;

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

  text-align:center;

  padding:1.5rem;

  background:linear-gradient(
    to top,
    rgba(147,53,141,.90) 0%,
    rgba(147,53,141,.45) 35%,
    transparent 75%
  );
}

/* TITULO */
.benefit-card h3{
  color:white;

  font-size:1.2rem;

  font-weight:900;

  margin-bottom:.5rem;
}

/* TEXTO */
.benefit-card p{
  color:white;

  font-size:.9rem;

  line-height:1.4;

  max-width:90%;
}

/* =========================================================
   FUNCIONALIDADES
========================================================= */
.funcionalidades{
  padding:5rem 1.5rem;
  text-align:center;
}

.funcionalidades h2{
  margin-bottom:.5rem;
}

.funcionalidades .subtitle{
  font-size:.9rem;
  color:#666;

  margin-bottom:3rem;
}

.func-grid{
  display:grid;

  grid-template-columns:1fr 300px 1fr;

  gap:2rem;

  align-items:center;

  max-width:1100px;
  margin:0 auto;
}

.func-col{
  display:flex;
  flex-direction:column;

  gap:1.5rem;

  text-align:left;
}

.func-item h3{
  font-size:.95rem;
  font-weight:700;

  margin-bottom:.3rem;
}

.func-item p{
  font-size:.8rem;
  color:#555;
}

.func-center img{
  width:100%;
  max-width:260px;
}

/* =========================================================
   ECOSISTEMA SIMPLE
========================================================= */
.ecosistema{
  padding:4rem 1.5rem;
}

.eco-container{
  display:grid;

  grid-template-columns:1fr 1fr;

  align-items:center;

  gap:2rem;

  max-width:1100px;
  margin:0 auto;
}

.eco-text h2{
  margin-bottom:1rem;
}

.eco-text p{
  font-size:.9rem;
  color:#555;

  margin-bottom:1.5rem;
}

.eco-img img{
  width:100%;
}

/* =========================================================
   DOWNLOAD SCREENS
========================================================= */
.screens{
  padding:4rem 1.5rem;
  text-align:center;
}

.screens-wrapper{
  display:flex;
  justify-content:center;

  margin-bottom:2rem;
}

.screens-wrapper img{
  width:100%;
  max-width:760px;
}

.screens-logo img{
  height:50px;
  margin-bottom:1rem;
}

.screens-stores img{
  height:40px;
  margin:0 .5rem;
}

/* =========================================================
   ECOSYSTEM CARD
========================================================= */
.ecosystem{
  padding:5rem 1.5rem;
  text-align:center;
}

.ecosystem h2{
  margin-bottom:2rem;
}

.ecosystem-card{
  position:relative;
  max-width:950px;
  margin:0 auto;
  background:white;
  border-radius:20px;
  padding:2rem;
  display:grid;
  grid-template-columns:320px 1fr;
  align-items:center;
  gap:2rem;
  overflow:visible;
  box-shadow:
    0 12px 30px rgba(0,0,0,.08),
    0 30px 60px rgba(0,0,0,.05);
}

/* IMAGEN */
.ecosystem-image{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem-image img{
  position: absolute;

  width: 100%;
  max-width: none;

  right: 0;

  top: 50%;
  transform: translateY(-55%);

  filter: drop-shadow(
    0 20px 25px rgba(0,0,0,.25)
  );
}
}

/* TEXTO */
.ecosystem-content{
  text-align:left;
}

.ecosystem-content h3{
  margin:1rem 0;

  font-size:1.4rem;
  font-weight:800;
}

.ecosystem-content p{
  color:#555;

  margin-bottom:1rem;

  font-size:.95rem;
}

/* =========================================================
   PRODUCTS
========================================================= */
.products{
  padding:5rem 1.5rem;
  text-align:center;
}

.products h2{
  margin-bottom:.5rem;
}

.products-subtitle {
  max-width: 800px;
  margin: 0 auto 3rem;

  color: #666;
  line-height: 1.6;
}

.products-grid {
  display: grid;

  /* 👇 6 columnas virtuales */
  grid-template-columns: repeat(6, 1fr);

  gap: 2rem;

  max-width: 1100px;
  margin: 0 auto 3rem;
}

/* 👇 cada card ocupa 2 columnas */
.product-card {
  grid-column: span 2;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 👇 centra la segunda fila */
.product-card:nth-child(7) {
  grid-column: 2 / span 2;
}


.product-card img{
  width:100%;
  max-width:220px;

  margin-bottom:1rem;
}

.product-card h3{
  margin-bottom:.5rem;
  font-size:1.1rem;
}

.product-card p{
  font-size:.9rem;
  color:#555;

  margin-bottom:1rem;
}


/* =========================================================
   APP SECTION
========================================================= */
.app-section{
  padding:5rem 1.5rem;
}

.app-card{
  position:relative;

  max-width:1100px;
  margin:0 auto;

  background:white;

  border-radius:20px;

  padding:2rem;

  display:grid;

  grid-template-columns:1fr 420px;

  align-items:center;

  gap:2rem;

  overflow: visible !important;

  box-shadow:
    0 12px 30px rgba(0,0,0,.08),
    0 30px 60px rgba(0,0,0,.05);
}

.app-content h2 {
  margin: 0 0 1rem 0;
}

.app-content h3{
  margin:1rem 0;
}

.app-content p{
  color:#555;
  margin-bottom:1rem;
}

.app-image {
  position: relative;
  height: 100%;
}

.app-image img {
  position: absolute;

  right: 0;
  top: 50%;

  transform: translateY(-50%);

  width: 115%;
  max-width: 720px;
}

.app-stores{
  margin-top:1.5rem;
}

.app-stores img{
  height:40px;
  margin-right:.5rem;
}

/* =========================================================
   WHERE BUY
========================================================= */
.where-buy{
  padding:5rem 1.5rem;
  text-align:center;
}

.where-buy h2,
.distributors h3{
  margin-bottom:.7rem;
}

.where-buy-subtitle,
.distributors p,
.buy-text{
  color:#555;
  font-size:.95rem;
}

/* TIENDAS */
.stores-grid{
  display:flex;
  flex-wrap:wrap;

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

  gap:2rem;

  max-width:1000px;

  margin:2rem auto;
}

.stores-grid img{
  max-height:38px;
  width:auto;

  object-fit:contain;

  transition:.3s;

  filter:grayscale(100%);
  opacity:.8;
}

.stores-grid img:hover{
  transform:scale(1.05);

  filter:grayscale(0%);
  opacity:1;
}

/* DISTRIBUIDORES */
.distributors{
  margin-top:5rem;
}

.distributors-grid{
  display:flex;
  flex-wrap:wrap;

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

  gap:2.5rem;

  margin-top:2rem;
}

.distributors-grid img{
  max-height:80px;
  width:auto;

  object-fit:contain;

  transition:.3s;

  filter:grayscale(100%);
  opacity:.8;
}

.distributors-grid img:hover{
  transform:scale(1.05);

  filter:grayscale(0%);
  opacity:1;
}

/* =========================================================
   PRODUCT DETAIL
========================================================= */

.product-detail{
  padding:5rem 1.5rem;
}

.product-detail-card{
  max-width:1100px;
  margin:0 auto;

  display:grid;
  grid-template-columns:420px 1fr;

  gap:4rem;
  align-items:center;
}

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

.product-detail-image{
  position:relative;
  display:flex;
  justify-content:center;
}

.product-detail-image img{
  width:100%;
  max-width:420px;

  filter:drop-shadow(
    0 25px 35px rgba(0,0,0,.25)
  );

  transition:transform .35s ease;
}

.product-detail-card:hover
.product-detail-image img{
  transform:translateY(-8px);
}

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

.product-detail-content h2{
  font-size:2.5rem;
  font-weight:800;

  line-height:1.15;

  margin-bottom:2.5rem;

  color:#2b1327;
}

/* =========================================================
   BLOCKS
========================================================= */

.detail-block{
  margin-bottom:3rem;
}

.detail-block h3{
  font-size:2rem;
  font-weight:800;

  margin-bottom:1.2rem;

  color:#2b1327;
}

.detail-block ul{
  padding-left:1.2rem;
}

.detail-block li{
  margin-bottom:.35rem;

  color:#444;
  line-height:1.45;
}

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

.detail-info{
  display:flex;
  align-items:flex-start;

  gap:1rem;

  margin-top:1.5rem;
}

.detail-info img{
  width:22px;
  flex-shrink:0;
}

.detail-info p{
  color:#444;
  line-height:1.5;
}

/* =========================================================
   COMPATIBILITY
========================================================= */

.compatibility-item{
  display:flex;
  align-items:flex-start;

  gap:1rem;

  margin-bottom:1.5rem;
}

.compatibility-item img{
  width:42px;
  height:42px;

  object-fit:contain;

  flex-shrink:0;
}

.compatibility-item h4{
  font-size:1rem;
  margin-bottom:.3rem;

  color:#2b1327;
}

.compatibility-item p{
  color:#555;
  line-height:1.5;
}

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

@media(max-width:992px){

  .product-detail-card{
    grid-template-columns:1fr;
    gap:3rem;
  }

  .product-detail-content{
    max-width:700px;
    margin:0 auto;
  }

}

@media(max-width:768px){

  .product-detail{
    padding:4rem 1.5rem;
  }

  .product-detail-content h2{
    font-size:2rem;
    text-align:center;
  }

  .detail-block h3{
    font-size:1.5rem;
  }

  .product-detail-image img{
    max-width:280px;
  }

  .compatibility-item{
    align-items:flex-start;
  }

}

/* =========================================================
   PLATFORM SECTION
========================================================= */

.platform-section {
  padding: 5rem 1.5rem;
}

.platform-card {
  max-width: 1100px;
  margin: 0 auto;

  background: white;

  border-radius: 22px;

  padding: 3rem;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.08),
    0 40px 70px rgba(0,0,0,0.05);
}

/* FILAS */
.platform-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 3rem;
}

.platform-row + .platform-row {
  margin-top: 4rem;
}

/* TEXTO */
.platform-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.platform-content h3 {
  margin: 1.5rem 0 0.8rem;
  font-size: 1.4rem;
}

.platform-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* STORES */
.platform-stores {
  margin-top: 1.5rem;
}

.platform-stores img {
  height: 40px;
  margin-right: 0.5rem;
}

/* IMÁGENES */
.platform-image {
  position: relative;
  width: 87%;
}

.platform-image img {
  width: 100%;
  display: block;
}

/* TELEFONO */
.phone-image img {
  width: 115%;

  filter: drop-shadow(
    0 25px 35px rgba(0,0,0,0.25)
  );

  transition: transform 0.35s ease;
}

.phone-image:hover img {
  transform: translateY(-8px);
}

/* MONITOR */
.monitor-image img {
  max-width: 500px;
  margin: 0 auto;

  transition: transform 0.35s ease;
}

.monitor-image:hover img {
  transform: translateY(-6px);
}

/* =========================================================
   QUALITY BANNER
========================================================= */

.quality-banner {
  position: relative;

  max-width: 1100px;
  margin: 0 auto 5rem;

  border-radius: 18px;

  overflow: hidden;

  min-height: 220px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.08),
    0 35px 60px rgba(0,0,0,0.05);
}

.quality-banner img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* OVERLAY */
.quality-overlay {
  position: absolute;
  inset: 0;

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

  padding: 40px 40px 20px 40px;

  text-align: center;

  background: linear-gradient(
    to top,
    rgba(147,53,141,0.85),
    rgba(147,53,141,0.35),
    rgba(147,53,141,0.15)
  );
}

.quality-overlay h2 {
  color: white;

  max-width: 760px;

  font-size: 1.2rem;
  line-height: 1.3;

  font-weight: 800;
}

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

@media (max-width: 768px) {

  .platform-card {
    padding: 2rem 1.5rem;
  }

  .platform-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .platform-row.reverse .platform-image {
    order: -1;
  }

  .platform-content h2 {
    font-size: 1.7rem;
  }

  .platform-content h3 {
    font-size: 1.2rem;
  }

  .phone-image img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .monitor-image img {
    max-width: 100%;
  }

  .quality-banner {
    min-height: 180px;
    margin-bottom: 4rem;
  }

  .quality-overlay {
    padding: 1.5rem;
  }

  .quality-overlay h2 {
    font-size: 1.2rem;
  }

}

/* =========================================================
   ABOUT / CONOCENOS
========================================================= */

.about-section{
  padding:5rem 1.5rem;
}

.about-title{
  text-align:center;

  font-size:3rem;
  font-weight:800;

  color:#2b1327;

  margin-bottom:3rem;
}

/* =========================================================
   CARD GENERAL
========================================================= */

.about-card{
  max-width:1200px;
  margin:0 auto;

  background:white;

  border-radius:24px;

  padding:2.5rem;

  box-shadow:
    0 15px 40px rgba(0,0,0,.06),
    0 35px 60px rgba(0,0,0,.04);
}

/* =========================================================
   FILAS
========================================================= */

.about-row{
  display:grid;

  grid-template-columns:1fr 1fr;

  align-items:center;

  gap:3rem;
}

.about-row + .about-row{
  margin-top:2.5rem;
}

/* SEGUNDA FILA */
.about-row.reverse{
  grid-template-columns:1fr 1fr;
}

/* =========================================================
   IMAGEN
========================================================= */

.about-image img{
  width:100%;
  height:340px;

  object-fit:cover;

  border-radius:18px;

  display:block;
}

/* =========================================================
   CONTENIDO
========================================================= */

.about-content h3{
  font-size:2.2rem;
  font-weight:800;

  line-height:1.1;

  color:#2b1327;

  margin-bottom:1.5rem;
}

.about-content p{
  font-size:1.08rem;

  line-height:1.7;

  color:#444;

  margin-bottom:1.5rem;
}

/* =========================================================
   LISTA
========================================================= */

.about-content ul{
  padding-left:1.2rem;
}

.about-content li{
  margin-bottom:.5rem;

  color:#444;

  line-height:1.5;
}

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

@media(max-width:992px){

  .about-row{
    grid-template-columns:1fr;
  }

  .about-row.reverse .about-image{
    order:2;
  }

  .about-row.reverse .about-content{
    order:1;
  }

}

@media(max-width:768px){

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

  .about-title{
    font-size:2.2rem;
  }

  .about-card{
    padding:1.5rem;
  }

  .about-content{
    text-align:center;
  }

  .about-content h3{
    font-size:1.8rem;
  }

  .about-content p{
    font-size:1rem;
  }

  .about-image img{
    height:260px;
  }

  .about-content ul{
    text-align:left;
  }

}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section{
  padding:6rem 1.5rem;
}

.contact-container{
  max-width:1200px;
  margin:0 auto;
}

/* =========================================================
   TITULOS
========================================================= */

.contact-title,
.contact-social h2,
.contact-links h2{
  text-align:center;

  font-size:2.5rem;
  font-weight:800;

  color:#2b1327;
}

/* =========================================================
   GRID CONTACTO
========================================================= */

.contact-grid{
  margin-top:4rem;

  display:grid;

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

  gap:3rem;
}

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

.contact-card{
  text-align:center;

  display:flex;
  flex-direction:column;
  align-items:center;
}

/* ICONO */
.contact-icon{
  width:72px;
  height:72px;

  margin-bottom:1.5rem;
}

.contact-icon img{
  width:100%;
  height:100%;

  object-fit:contain;
}

/* TEXTOS */
.contact-card h3{
  font-size:1.8rem;
  font-weight:800;

  color:#2b1327;

  margin-bottom:.6rem;
}

.contact-card h4{
  font-size:1.05rem;
  font-weight:700;

  color:#2b1327;

  margin-bottom:.6rem;
}

.contact-card p{
  font-size:1rem;
  line-height:1.5;

  color:#555;

  max-width:320px;

  margin-bottom:1.5rem;
}

/* =========================================================
   REDES
========================================================= */

.contact-social{
  margin-top:7rem;
}

.social-grid{
  margin-top:2rem;

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

  gap:1.5rem;
}

.social-grid a{
  transition:transform .3s ease;
}

.social-grid a:hover{
  transform:translateY(-4px);
}

.social-grid img{
  width:48px;
  height:48px;

  object-fit:contain;
}

/* =========================================================
   LINKS
========================================================= */

.contact-links{
  margin-top:7rem;

  text-align:center;
}

.contact-links p{
  margin:1rem auto 2rem;

  max-width:760px;

  color:#555;

  line-height:1.6;
}

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

@media(max-width:992px){

  .contact-grid{
    grid-template-columns:1fr;
    gap:4rem;
  }

}

@media(max-width:768px){

  .contact-section{
    padding:4rem 1.5rem;
  }

  .contact-title,
  .contact-social h2,
  .contact-links h2{
    font-size:2rem;
  }

  .contact-card h3{
    font-size:1.5rem;
  }

  .social-grid{
    flex-wrap:wrap;
  }

}

/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section{
  padding:5rem 1.5rem;
}

.faq-container{
  max-width:1000px;
  margin:0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.faq-header{
  text-align:center;
  margin-bottom:2rem;
}

.faq-header h2{
  font-size:2.4rem;
  font-weight:800;

  color:#2b1327;

  margin-bottom:1rem;
}

.faq-header p{
  max-width:700px;
  margin:0 auto;

  color:#666;
  line-height:1.6;
}

/* =========================================================
   SEARCH
========================================================= */

.faq-search{
  margin-bottom:2.5rem;
}

.faq-search input{
  width:100%;

  padding:1rem 1.2rem;

  border:none;
  border-radius:14px;

  background:white;

  font-size:.95rem;

  box-shadow:
    0 8px 18px rgba(0,0,0,.05);
}

/* =========================================================
   FAQ LIST
========================================================= */

.faq-list{
  display:flex;
  flex-direction:column;

  gap:1rem;
}

/* ITEM */

.faq-item{
  background:white;

  border-radius:18px;

  overflow:hidden;

  box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

/* =========================================================
   QUESTION
========================================================= */

.faq-question{
  width:100%;

  background:none;
  border:none;

  padding:1.4rem 1.5rem;

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

  gap:1rem;

  text-align:left;

  cursor:pointer;

  font-size:1rem;
  font-weight:700;

  color:#2b1327;
}

.faq-icon{
  font-size:1.4rem;
  color:#93358D;

  flex-shrink:0;
}

/* =========================================================
   ANSWER
========================================================= */

.faq-answer{
  padding:
    0 1.5rem 1.5rem 1.5rem;

  color:#555;

  line-height:1.6;
}

.faq-answer p{
  margin-bottom:1rem;
}

.faq-answer ul{
  padding-left:1.2rem;
}

.faq-answer li{
  margin-bottom:.5rem;
}

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

@media(max-width:768px){

  .faq-header h2{
    font-size:2rem;
  }

  .faq-question{
    font-size:.95rem;
  }

}

/* =========================================================
   FAQ MANUALES
========================================================= */

.faq-list ul{
  list-style:none;

  padding-left:0;
}

.faq-list ul li{
  position:relative;

  padding-left:2.2rem;

  margin-bottom:1rem;
}

/* ICONO PDF */
.faq-list ul li::before{
  content:"";

  position:absolute;

  left:0;
  top:2px;

  width:22px;
  height:22px;

  background:#93358D;

  mask:url("../images/icons/pdf.svg") no-repeat center;
  -webkit-mask:url("../images/icons/pdf.svg") no-repeat center;

  mask-size:contain;
  -webkit-mask-size:contain;
}

/* LINKS */
.faq-list ul li a{
  color:#93358D;

  text-decoration:none;

  font-weight:600;

  transition:.3s;
}

/* HOVER */
.faq-list ul li a:hover{
  opacity:.75;
}

/* =========================================================
   FAQ CATEGORY ACCORDION
========================================================= */

.faq-category{
  background:white;

  border-radius:20px;

  margin-bottom:1.5rem;

  overflow:hidden;

  box-shadow:
    0 10px 30px rgba(0,0,0,.20);
}

/* BOTON */

.faq-category-button{
  width:100%;

  background:none;
  border:none;

  padding:1.5rem 2rem;

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

  cursor:pointer;

  font-size:1.2rem;
  font-weight:800;

  color:#2b1327;
}

/* ICONO */

.faq-category-icon{
  font-size:1.5rem;

  color:#93358D;

  transition:.3s;
}

/* ROTACION */

.faq-category.active .faq-category-icon{
  transform:rotate(180deg);
}

/* CONTENIDO */

.faq-category-content{
  padding:
    0
    2rem
    2rem;

  display:block;
}

/* CERRADO */

.faq-category:not(.active)
.faq-category-content{
  display:none;
}

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

.video-wrapper{
  position:relative;

  width:100%;

  padding-bottom:56.25%;

  border-radius:20px;

  overflow:hidden;
}

.video-wrapper iframe{
  position:absolute;

  inset:0;

  width:100%;
  height:100%;

  border:none;
}

/* =========================================================
   FOOTER
========================================================= */
.footer{
  background:linear-gradient(
    to bottom,
    #93358D,
    #7a2c74
  );

  color:white;

  padding:3rem 1.5rem 2rem;
}

.footer-container{
  max-width:1200px;
  margin:0 auto;

  text-align:center;
}

.footer-description{
  font-size:.9rem;

  margin-bottom:2rem;

  opacity:.9;
}

/* GRID */
.footer-grid{
  display:grid;

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

  gap:2rem;

  text-align:left;
}

.footer-col{
  display:flex;
  flex-direction:column;

  gap:.5rem;
}

.footer-col a{
  color:white;

  text-decoration:none;

  font-size:.85rem;

  opacity:.85;

  transition:opacity .2s;
}

.footer-col a:hover{
  opacity:1;
}

/* DERECHA */
.footer-right{
  align-items:flex-start;
}

/* STORES */
.stores img{
  width:130px;
  margin-bottom:.5rem;
}

/* SOCIAL */
.social{
  margin-top: 0.8rem;

  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social a{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.social a:hover{
  transform: translateY(-3px);
  opacity: 0.8;
}

.social img{
  width: 18px;
  height: 18px;

  object-fit: contain;
}

/* LOGO */
.footer-logo{
  margin:2rem 0 1rem;
}

.footer-logo img{
  height:40px;
}

/* COPY */
.footer-copy{
  font-size:.75rem;
  opacity:.8;
}

/* =========================================================
   INFO SECTION
========================================================= */

.info-section{
  padding:5rem 1.5rem;
}

/* =========================================================
   CONTAINER
========================================================= */

.info-container{
  max-width:1100px;

  margin:0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.info-header{
  text-align:center;

  margin-bottom:2.5rem;
}

.info-header h2{
  font-size:2rem;
  font-weight:800;

  color:#2b1327;

  margin-bottom:1rem;
}

.info-header p{
  max-width:700px;

  margin:0 auto;

  color:#666;

  line-height:1.6;
}

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

.info-card{
  background:white;

  border-radius:24px;

  padding:3rem;

  box-shadow:
    0 15px 35px rgba(0,0,0,.05),
    0 35px 70px rgba(0,0,0,.04);
}

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

.info-content{
  color:#444;

  line-height:1.8;
}

.info-content h3{
  font-size:1.2rem;
  font-weight:800;

  color:#2b1327;

  margin-top:2rem;
  margin-bottom:1rem;
}

.info-content p{
  margin-bottom:1.2rem;
}

.info-content ul{
  padding-left:1.4rem;

  margin-bottom:1.5rem;
}

.info-content li{
  margin-bottom:.7rem;
}

/* =========================================================
   LINKS
========================================================= */

.info-content a{
  color:#93358D;

  text-decoration:none;

  font-weight:600;
}

.info-content a:hover{
  opacity:.8;
}

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

@media(max-width:768px){

  .info-card{
    padding:2rem 1.5rem;
  }

  .info-header h2{
    font-size:1.7rem;
  }

}

/* =========================================================
   DOWNLOADS SECTION
========================================================= */

.downloads-section{
  padding:5rem 1.5rem;
}

/* =========================================================
   CONTAINER
========================================================= */

.downloads-container{
  max-width:1100px;

  margin:0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.downloads-header{
  margin-bottom:2rem;
}

.downloads-header h2{
  font-size:2.3rem;
  font-weight:800;

  color:#2b1327;
}

/* =========================================================
   LIST
========================================================= */

.downloads-list{
  display:flex;
  flex-direction:column;

  gap:1rem;
}

/* =========================================================
   ITEM
========================================================= */

.download-item{
  background:white;

  border-radius:20px;

  padding:1.3rem 1.5rem;

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

  text-decoration:none;

  box-shadow:
    0 10px 25px rgba(0,0,0,.05),
    0 25px 45px rgba(0,0,0,.03);

  transition:.3s;
}

/* HOVER */
.download-item:hover{
  transform:translateY(-3px);

  box-shadow:
    0 15px 30px rgba(147,53,141,.12),
    0 30px 60px rgba(147,53,141,.08);
}

/* =========================================================
   TEXT
========================================================= */

.download-item span{
  font-size:1.1rem;
  font-weight:700;

  color:#2b1327;
}

/* =========================================================
   ICON
========================================================= */

.download-item img{
  width:22px;
  height:22px;

  object-fit:contain;
}

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

@media(max-width:768px){

  .downloads-header h2{
    font-size:1.8rem;
  }

  .download-item{
    padding:1.1rem 1.2rem;
  }

  .download-item span{
    font-size:1rem;
  }

}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:1024px){

  .features-grid{
    grid-template-columns:repeat(3,1fr);
  }

}

/* TABLET / MOBILE */
@media (max-width:768px){

  /* NAV */
  .nav-menu{
    display:none;
  }

  .nav-right{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .nav-brand{
    display:block;

    color:white;
    font-weight:bold;
  }

  /* HERO */
  .hero-content{
    margin-left:5%;
    max-width:90%;
  }

  .hero h1{
    font-size:2rem;
  }

  .hero-icon{
    width:60px;
  }

  /* FEATURES */
  .features-grid{
    grid-template-columns:1fr;
  }

  .features-grid .feature:nth-child(6){
    grid-column:auto;
  }

  .feature{
    width:100%;
    max-width:320px;

    margin:0 auto;
  }

  /* BENEFITS */
  .benefits-grid{
    grid-template-columns:1fr;
  }

  .benefit-card{
    max-width:100%;
    height:260px;
  }

  /* FUNCIONALIDADES */
  .func-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .func-col{
    text-align:center;
  }

  .func-center{
    order:-1;
  }

  /* ECO SIMPLE */
  .eco-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  /* SCREENS */
  .screens-wrapper img{
    max-width:90%;
  }

  /* ECOSYSTEM */
  .ecosystem-card{
    grid-template-columns:1fr;
    text-align:center;
  }

  .ecosystem-content{
    text-align:center;
  }

  .ecosystem-image img{
    transform:none;

    max-width:260px;

    margin:0 auto;
  }

  /* PRODUCTS */
  .products-grid{
    grid-template-columns:1fr;
  }

  /* APP */
  .app-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-image {
    position: relative;
    margin-top: 2rem;
  }

  .app-image img {
    position: relative;

    top: auto;
    right: auto;

    transform: none;

    width: 100%;
    max-width: 320px;

    margin: 0 auto;
    display: block;
  }

  /* STORES */
  .stores-grid{
    gap:1.2rem;
  }

  .stores-grid img{
    max-height:30px;
  }

  /* DISTRIBUIDORES */
  .distributors-grid{
    gap:1.5rem;
  }

  .distributors-grid img{
    max-height:60px;
  }

  /* FOOTER */
  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-right{
    align-items:center;
  }

}