    :root {
      --primary: #029b9b;
      --dark: #3d3d3d;
      --pink: #f34581;
    }

    /* RESET */
    body {
      margin: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    /* ===== HEADER PRINCIPAL (DESKTOP) ===== */
    .main-header {
      position: sticky;
      top: 0;
      z-index: 9999;
    }

    /* ===== TOP HEADER ===== */
    .top-header {
      background: #4a403d;
      color: white;
      padding: 15px 0;
    }

    .top-header .container {
      padding-left: 420px;
    }

    .top-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .top-item span {
      display: block;
      font-size: 12px;
      color: #ccc;
    }

    /* ===== NAVBAR ===== */
    .navbar-custom {
      background: #eee;
      padding: 20px 0;
      position: relative;
      height: 70px;
    }

    .menu-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .menu {
      list-style: none;
      display: flex;
      gap: 35px;
      margin: 0 auto;
      font-weight: 400;
      padding-left: 320px;
    }

    .menu a {
      text-decoration: none;
      color: #3d3d3d;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .menu a:hover {
      color: var(--pink);
    }

    /* REDES */
    .socials {
      position: absolute;
      right: 40px;
      display: flex;
      margin-top: 10px;
      gap: 10px;
    }

    .circle {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }

    .wsp {
      background: #25D366;
    }

    .fb {
      background: #1877f2;
    }

    .yt {
      background: red;
    }

    .tt {
      background: #000;
    }

    /* LOGO DESKTOP */
    .logo-container {
      position: absolute;
      left: 0;
      top: 12px;
      background: #e9e9e9;
      padding: 25px 70px;
      border-radius: 0 90px 90px 0;
      z-index: 2500;
      margin-top: -60px;

    }

    .logo-container img {
      height: 55px;
    }



    /* =========================
   🔥 HEADER MOBILE NUEVO
========================= */

    .mobile-header {
      display: none;
      position: sticky;
      top: 0;
      z-index: 9999;
      background: #eee;
      padding: 10px 15px;
      align-items: center;
      justify-content: space-between;
    }

    .mobile-header button {
      font-size: 22px;
      background: none;
      border: none;
    }

    .mobile-header img {
      height: 45px;
    }

    /* =========================
   RESPONSIVE
========================= */
    @media (max-width: 768px) {

      /* ❌ NO ocultar todo el header */
      .main-header {
        display: none;
      }

      /* HEADER MOBILE SIEMPRE FIJO */
      .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        background: #eee;

        position: sticky;
        /* 👈 clave */
        top: 0;
        z-index: 9999;

        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        /* opcional pro */
      }

      /* LOGO MÁS PEQUEÑO */
      .mobile-header img {
        height: 35px;
      }

      /* BOTÓN DERECHA */
      .mobile-header button {
        font-size: 24px;
        background: none;
        border: none;
      }
    }

    /* ===== OVERLAY ===== */
    .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      z-index: 99999;
    }

    /* CAJA INTERNA */
    .menu-box {
      width: 85%;
      max-width: 350px;
      height: 100%;
      background: #fff;
      padding: 20px;
      position: relative;
      overflow-y: auto;
    }

    /* CLOSE BUTTON */
    .menu-close {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 24px;
      cursor: pointer;
    }

    /* TOP */
    .overlay-top {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    /* ===== MENU LIMPIO SIN BULLETS ===== */
    .overlay-menu {
      list-style: none;
      /* ❌ quita puntos */
      padding: 0;
      margin: 30px 0 0 0;
    }

    /* ITEMS */
    .overlay-menu li {
      border-bottom: 1px solid #eee;
    }

    /* LINKS */
    .overlay-menu li a {
      text-decoration: none;
      color: #3d3d3d;
      font-weight: 500;

      display: flex;
      align-items: center;
      gap: 10px;

      padding: 12px 10px;
      transition: all 0.25s ease;
      border-radius: 8px;
    }

    /* HOVER PRO */
    .overlay-menu li a:hover {
      background: rgba(243, 69, 129, 0.08);
      /* rosado suave */
      color: var(--pink);
      transform: translateX(6px);
      /* desliza un poco */
    }

    /* ICONO EN HOVER */
    .overlay-menu li a i {
      transition: all 0.25s ease;
    }

    /* ICONO ANIMADO */
    .overlay-menu li a:hover i {
      transform: scale(1.2);
      color: var(--pink);
    }

    /* REDES ABAJO */
    .overlay-socials {
      margin-top: 25px;
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    /* BOTONES PEQUEÑOS */
    .overlay-socials .s {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 14px;
    }

   /* ===== HERO ===== */
.hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  z-index: 1;

  background-size: cover;
  background-position: center;

  transition: opacity 0.5s ease; /* 🔥 fade */
}

/* capa oscura */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* contenido */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

/* animación texto */
.hero-content {
  animation: fadeText 0.6s ease;
}

@keyframes fadeText {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero h5 {
  font-size: 28px;
}

.hero h1 {
  font-size: 80px;
  line-height: 1.1;
}

.hero .pink {
  color: var(--pink);
}

/* flechas */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 10;
  cursor: pointer;
}

.arrow.left { left: 20px; }
.arrow.right { right: 20px; }

/* ===== MOBILE ===== */
@media (max-width: 576px){

  .hero {
    height: 55vh;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h5 {
    font-size: 18px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .arrow.left { left: 10px; }
  .arrow.right { right: 10px; }

}

    /* TITULO FUERTE */
    .section-title {
      font-size: 38px;
      font-weight: 800;
      color: #3d3d3d;
      letter-spacing: -1px;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .section-title {
        font-size: 28px;
      }
    }

/* =========================
   PRODUCTS SECTION
========================= */
.products{padding:70px 20px;background:#f7f5f6}

.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px
}

/* CARD */
.product-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
  transition:.3s
}
.product-card:hover{
  transform:translateY(-8px);
  
  box-shadow:0 15px 30px rgba(0,0,0,.12)
}

/* IMAGE */
.product-card img{
  width:100%;
  height:170px;   /* 👈 MANTENEMOS TU ALTURA ORIGINAL */
  object-fit:cover; /* 👈 NO SE CAMBIA */
}

/* TITLE + DESC */
.product-card h3{
  font-weight:700;
  padding:10px 15px 0;
  color:#3d3d3d
}
.desc{
  padding:0 15px;
  font-size:13px;
  color:#6c6c6c;
  line-height:1.4
}

/* FEATURES */
.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:6px;
  padding:10px 15px
}
.feature{
  font-size:12px;
  background:#f7f5f6;
  padding:6px;
  border-radius:8px;
  display:flex;
  align-items:center;
  gap:6px
}
.feature i{color:#029b9b}

/* PRICE + META */
.price-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 15px;
  gap:15px
}
.price{display:flex;align-items:center;gap:8px}
.old{font-size:13px;color:#aaa;text-decoration:line-through}
.new.big{font-size:26px;font-weight:700;color:#029b9b}
.usd{font-size:12px;color:#6c6c6c}

.meta{
  display:flex;
  align-items:center;
  gap:4px;
  font-size:13px;
  color:#f34581
}
.meta i{color:#f5b301;font-size:13px}

/* ACTIONS */
.actions{
  display:flex;
  gap:10px;
  padding:12px 15px
}
.btn{
  flex:1;
  text-align:center;
  padding:10px;
  border-radius:8px;
  text-decoration:none;
  font-size:13px
}
.detail{background:#f34581;color:#fff}
.buy{background:#25D366;color:#fff}
.detail:hover{background:#d83b70}
.buy:hover{background:#1ebe5d}

/* PAYMENTS */
.payments{padding:10px 15px}
.pay-icons{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  align-items:center
}
.pay{
  background:#fff;
  border:1px solid #eee;
  border-radius:8px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:4px
}
.pay img{
  max-width:100%;
  max-height:100%;
  object-fit:contain
}

/* RESPONSIVE */
@media (max-width:768px){

  .products-grid{grid-template-columns:1fr}

  .features{grid-template-columns:repeat(2,1fr)}

  .new.big{font-size:20px}

  .price-meta{
    flex-direction:column;
    align-items:flex-start;
    gap:6px
  }

  .actions .btn{
    font-size:12px;
    padding:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}
  .actions .btn i{font-size:18px}

  .pay-icons{grid-template-columns:repeat(2,1fr)}
  .pay{height:28px}

  .product-card h3{
  font-weight:700;
  font-size: 14px;
  padding:5px 10px 0;
  
}
}

.product-card{
  position:relative;
}

/* botón flotante */
.share-float{
  position:absolute;
  top:10px;
  right:10px;
  width:36px;
  height:36px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(0,0,0,.1);
  cursor:pointer;
  transition:.2s;
  z-index:5;
}

.share-float i{
  color:#0e0e0e;
  font-size:14px;
}

.share-float:hover{
  transform:scale(1.1);
}

    /* =========================
   🔥 FOOTER
========================= */
.footer{
  position: relative;
  color: white;
  background: url('https://danny365.com/image/preview.jpg') center/cover no-repeat;
}

/* capa oscura */
.footer-overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  top: 0;
  left: 0;
}

/* contenido */
.footer-content{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 70px 20px;
}

/* columnas */
.footer-col h3,
.footer-col h4{
  margin-bottom: 15px;
}

.footer-col p{
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li{
  margin-bottom: 8px;
  font-size: 14px;
  color: #ccc;
}

.footer-col ul li a{
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover{
  color: #f34581;
}

/* redes */
.footer-socials{
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.footer-socials .s{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.wsp{ background:#25D366; }
.fb{ background:#1877f2; }
.yt{ background:red; }
.tt{ background:#000; }

/* bottom */
.footer-bottom{
  position: relative;
  text-align: center;
  padding: 15px;
  background: rgba(0,0,0,0.85);
  font-size: 13px;
  color: #bbb;
}

/* =========================
   📱 RESPONSIVE
========================= */
@media (max-width: 768px){

  .footer-content{
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

}

@media (max-width: 576px){

  .footer-content{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials{
    justify-content: center;
  }

}



/* =========================
   MODAL PRODUCT
========================= */
.modal-product{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

/* overlay */
.modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
}

/* caja modal */
.modal-box{
  position: relative;
  width: 92%;
  max-width: 520px;
  max-height: 90vh;

  margin: auto;
  top: 50%;
  transform: translateY(-50%);

  background: #fff;
  border-radius: 14px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

/* =========================
   HEADER
========================= */
.modal-header{
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 16px;
  background: #f7f5f6;

  font-size: 16px;
  font-weight: 600;
  color: #3d3d3d;
}

.modal-close{
  cursor: pointer;
  font-size: 18px;
  color: #6c6c6c;
  transition: .2s;
}



/* =========================
   BODY
========================= */
.modal-body{
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

/* imagen */
.modal-img{
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* descripción */
.modal-desc{
  font-size: 14px;
  color: #6c6c6c;
  line-height: 1.6;
  background: #f7f5f6;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* =========================
   INFO BLOCK
========================= */
.modal-info{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.info-item{
  background: #fff;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 8px;

  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-item strong{
  font-size: 13px;
  color: #3d3d3d;
}

.info-item span,
.info-item a{
  font-size: 13px;
  color: #6c6c6c;
  text-decoration: none;
}

.info-item a{
  color: #029b9b;
  font-weight: 500;
}

/* =========================
   FEATURES
========================= */
.modal-features{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

/* rating */
.modal-rating{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #f5b301;
  margin-bottom: 10px;
}

/* precio */
.modal-price{
  font-size: 32px;
  font-weight: 800;
  color: #029b9b;
  text-align: center;
  margin-top: 10px;
}

.modal-price small{
  display: block;
  font-size: 12px;
  color: #6c6c6c;
  font-weight: 400;
}

/* =========================
   💥 NUEVO: PLANES SAAS
========================= */
.modal-plans{
  margin-top: 12px;
  padding: 12px;
  background: #f7f5f6;
  border-radius: 10px;
}

.plan-title{
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3d3d3d;
}

.plan-card{
  background: #fff;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-card h4{
  font-size: 13px;
  margin: 0;
  color: #3d3d3d;
}

.plan-card .price{
  font-weight: bold;
  color: #029b9b;
}

/* plan destacado */
.plan-card.highlight{
  border: 1px solid #f34581;
  background: #fff5f8;
}

/* beneficios */
.plan-benefits{
  margin-top: 10px;
}

.plan-benefits h5{
  font-size: 13px;
  margin-bottom: 6px;
  color: #3d3d3d;
}

.plan-benefits ul{
  padding-left: 18px;
  margin: 0;
}

.plan-benefits li{
  font-size: 12px;
  color: #6c6c6c;
  margin-bottom: 4px;
}

/* =========================
   FOOTER
========================= */
.modal-footer{
  display: flex;
  gap: 10px;

  padding: 12px;
  border-top: 1px solid #eee;
  background: #fff;
}

.modal-footer .btn{
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;

  font-size: 14px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  transition: .2s;
}

.modal-footer .detail{
  background: #474c4c;
  color: white;
}



.modal-footer .buy{
  background: #25D366;
  color: white;
}

.modal-footer .buy:hover{
  background: #1ebe5d;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px){

  .modal-box{
    width: 95%;
    max-height: 85vh;
  }

  .modal-header{
    font-size: 14px;
  }

  .modal-footer .btn{
    font-size: 13px;
    padding: 9px;
  }
}

.contact-section{
  padding: 80px 20px;
  background: #f7f5f6;
}

.contact-container{
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.contact-section h2{
  font-size: 32px;
  color: #3d3d3d;
}

.contact-subtitle{
  color: #6c6c6c;
  margin-bottom: 40px;
}

/* GRID */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

/* FORM */
.contact-form{
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.contact-form button{
  width: 100%;
  padding: 12px;
  background: #029b9b;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover{
  background: #017c7c;
}

/* INFO */
.contact-info{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-box{
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-box i{
  font-size: 20px;
  color: #f34581;
}



/* RESPONSIVE */
@media (max-width: 768px){
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .contact-section h2{
    font-size: 24px;
  }
}


/* =========================
   SERVICES SECTION
========================= */
.services{
  padding: 80px 20px;
  background: #f7f5f6;
}

/* grid desktop */
.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* card */
.service-card{
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: .3s;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* icon */
.service-card .icon{
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #f34581;
  color: #fff;
  font-size: 22px;
}

/* title */
.service-card h3{
  font-size: 16px;
  color: #3d3d3d;
  margin-bottom: 8px;
}

/* text */
.service-card p{
  font-size: 13px;
  color: #6c6c6c;
  line-height: 1.5;
}
@media (max-width: 768px){

  .services-grid{
    grid-template-columns: 1fr; /* una columna */
    gap: 15px;
  }

  
}

/* =========================
   HOME SECTION
========================= */
.home{
  padding: 80px 20px;
  background: #fff;
}

.home-container{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

/* badge */
.badge{
  display: inline-block;
  background: #f7f5f6;
  color: #f34581;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}



.home-text h3{
  font-size: 16px;
  margin-top: 15px;
  color: #3d3d3d;
}

.home-text hr{
  border: none;
  height: 1px;
  background: #eee;
  margin: 15px 0;
}

.home-text p{
  font-size: 14px;
  color: #6c6c6c;
  line-height: 1.6;
}

/* texto final más fuerte */
.home-final{
  font-weight: 500;
  color: #3d3d3d;
  background: #f7f5f6;
  padding: 10px;
  border-radius: 8px;
}

/* image */
.home-image img{
  width: 100%;
  border-radius: 14px;
}
@media (max-width: 768px){

  .home-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-text h1{
    font-size: 28px;
  }

  .home-actions{
    justify-content: center;
    flex-direction: column;
  }

  .home-stats{
    justify-content: center;
    flex-wrap: wrap;
  }

  .home-image{
    order: -1; /* imagen arriba en móvil */
  }
}
#scrollTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #f34581;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#scrollTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  background: #d9366f;
}


/* TITULOS MAS PRO */
.footer-col h4{
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid #f34581;
  display: inline-block;
  padding-bottom: 5px;
}

/* CONTACTO MEJOR ORDENADO */
.footer-col p{
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========================
   🔥 REDES SOCIALES EFECTO
========================= */

/* aplica a TODOS tus botones */
.footer-socials a,
.overlay-socials a,
.socials a {

  text-decoration: none;   /* ❌ quitar subrayado */
  cursor: pointer;         /* 👆 mano */
  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.4s ease;   /* animación suave */
}

/* efecto hover */
.footer-socials a:hover,




.overlay-socials a:hover,
.socials a:hover {

  transform: rotate(360deg) scale(1.15); /* 🔄 girar + crecer */
  opacity: 0.9;
}
.error{
  color: red;
  font-size: 12px;
  margin-top: 4px;
}

.no-copy {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.no-copy:hover {
  cursor: not-allowed;
}


/*MODULE SHARED*/
.share-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);

  display:flex;
  align-items:center;
  justify-content:center;

  z-index:100000;
}

.share-modal {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.share-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid #e1e5e9;
}

.share-social-btn i {
    font-size: 20px;
    width: 24px;
}

.share-social-btn.whatsapp { background: #25D366; color: white; }
.share-social-btn.facebook { background: #1877F2; color: white; }
.share-social-btn.twitter { background: #1DA1F2; color: white; }
.share-social-btn.copy { background: #f8f9fa; color: #333; }
.share-social-btn.youtube {
  background: #FF0000;
  color: white;
}
/* Colores oficiales de las redes */
.share-social-btn.tiktok { 
    background: black; 
    color: white !important; 
}

.share-social-btn.instagram { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    color: white !important; 
}

/* Iconos también blancos */
.share-social-btn.tiktok i,
.share-social-btn.instagram i {
    color: white !important;
    -webkit-text-fill-color: white;
}

.share-social-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
