:root{
      --orange:#F4A300;
      --dark:#1f232a;
      --dark2:#2a2f38;
      --white:#fff;
      --text:#111;
      --muted:#6b7280;
      --line:rgba(255,255,255,.12);
      --line2:rgba(0,0,0,.10);
      --container:1100px;
      --shadow:0 18px 40px rgba(0,0,0,.35);
    }
    *{box-sizing:border-box}
    html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:#f3f4f6;color:var(--text)}
    a{color:inherit;text-decoration:none}
    .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

    /* ===== TOPBAR (Atención 24/7 + Teléfono naranja) ===== */
    .topbar{
      background:#2b2f35;
      color:#d1d5db;
      font-size:12px;
    }
    .topbar__inner{
      max-width:var(--container);
      margin:0 auto;
      padding:8px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .topbar__left{
      display:flex;
      align-items:center;
      gap:8px;
      letter-spacing:.2px;
    }
    .dot{width:6px;height:6px;border-radius:50%;background:var(--orange);display:inline-block}
    .topbar__phone{
      display:flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      background:var(--orange);
      color:#111;
      font-weight:800;
      border-radius:2px;
      white-space:nowrap;
    }
    .topbar__phone .ic{
      width:28px;height:28px;border-radius:50%;
      background:#fff;
      display:grid;place-items:center;
      flex:0 0 auto;
    }
    .topbar__phone svg{width:16px;height:16px}

    /* ===== HEADER ===== */
    .header{
      position:sticky; top:0; z-index:1000;
      background:var(--white);
      box-shadow:0 1px 0 rgba(0,0,0,.06);
    }

    /* IMPORTANTE: checkbox DEBE ser hermano de overlay/drawer para que el CSS funcione */
    .nav-toggle{
      position:absolute;
      width:1px;height:1px;
      opacity:0;
      pointer-events:none;
    }

    .header__inner{
      max-width:var(--container);
      margin:0 auto;
      padding:14px 14px;
      display:flex;
      align-items:center;
      gap:14px;
    }

    /* Marca */
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }
    .brand__mark{width:44px;height:44px;flex:0 0 auto;display:block}
    .brand__text{
      display:flex;
      flex-direction:column;
      line-height:1.05;
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:.4px;
      font-size:13px;
    }

    /* Nav desktop (centro) */
    .nav{
      display:none;
      margin:0 auto;
      align-items:center;
      gap:28px;
    }
    .nav a{
      font-weight:800;
      font-size:13px;
      text-transform:uppercase;
      letter-spacing:.35px;
      color:var(--muted);
      padding:10px 4px;
    }


    /* Botón Whatsapp (desktop derecha) */
    .btn-wa{
      display:none;
      min-width:150px;
      justify-content:center;
      padding:12px 14px;
      border:1px solid rgba(0,0,0,.14);
      background:#25D366;
      color:#111;
      font-weight:800;
      border-radius:2px;
    }

    /* Hamburguesa (mobile) */
    .header__actions{margin-left:auto;display:flex;align-items:center;gap:10px}
    .hamburger{
      width:42px;height:42px;
      display:inline-flex;align-items:center;justify-content:center;
      cursor:pointer;
    }
    .hamburger span{
      width:22px;height:2px;background:#111;border-radius:2px;position:relative;display:block;
    }
    .hamburger span::before,.hamburger span::after{
      content:"";position:absolute;left:0;width:22px;height:2px;background:#111;border-radius:2px;
    }
    .hamburger span::before{top:-6px}
    .hamburger span::after{top:6px}

    /* ===== DRAWER (MENÚ MÓVIL) ===== */
    .overlay{
      position:fixed; inset:0;
      background:rgba(0,0,0,.45);
      opacity:0; pointer-events:none;
      transition:opacity .18s ease;
      z-index:1100;
    }
    .drawer{
      position:fixed;
      top:0; left:0;
      height:100vh;
      width:min(78vw, 300px);
      background:var(--dark);
      transform:translateX(-100%);
      transition:transform .22s ease;
      z-index:1200;
      padding:18px 18px 16px;
      box-shadow:var(--shadow);
    }

    /* Toggle OPEN (CORREGIDO) */
    #menuToggle:checked ~ .overlay{opacity:1; pointer-events:auto}
    #menuToggle:checked ~ .drawer{transform:translateX(0)}

    .drawer__top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      padding-bottom:10px;
    }
    .drawer__brand{
      display:flex;align-items:center;gap:10px;
      opacity:.22; /* como tu captura (logo tenue arriba) */
      color:#fff;
    }
    .drawer__brand .brand__text{color:#fff;font-size:12px}

    .drawer__close{
      width:34px;height:34px;
      display:grid;place-items:center;
      cursor:pointer;border-radius:6px;
    }
    .drawer__close::before{
      content:"×";
      font-size:26px;
      line-height:1;
      color:#fff;
      opacity:.95;
    }

    .drawer__nav{
      margin-top:12px;
      border-top:1px solid var(--line);
    }
    .drawer__nav a{
      display:block;
      padding:14px 2px;
      border-bottom:1px solid var(--line);
      color:#fff;
      font-weight:900;
      letter-spacing:.35px;
      text-transform:uppercase;
      font-size:13px;
    }

    .drawer__phone{
      margin-top:18px;
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-weight:900;
    }
    .drawer__phone .badge{
      width:46px;height:46px;border-radius:50%;
      background:var(--orange);
      display:grid;place-items:center;
      flex:0 0 auto;
    }
    .drawer__phone .badge svg{width:18px;height:18px}
    .drawer__phone .num{letter-spacing:.4px}

    /* Botoncito flecha negro (como tu captura) */
    .drawer__arrow{
      margin-top:12px;
      width:34px;height:34px;
      border-radius:3px;
      background:#0b0c0f;
      display:grid;place-items:center;
      color:#fff;
      font-weight:900;
      user-select:none;
    }

    /* Desktop */
    @media (min-width: 900px){
      .nav{display:flex}
      .btn-wa{display:inline-flex}
      .hamburger{display:none}
      .header__inner{padding:12px 14px}
    }


    /*apartdo banner */
    
  /* ===== HERO EXACT STYLE ===== */
  .hero-samsung{
    position:relative;
    min-height: clamp(520px, 72vh, 760px);
    overflow:hidden;
    background:#e5e7eb;
  }

  /* Imagen de fondo (pon aquí tu imagen real) */
  .hero-samsung__bg{
    position:absolute; inset:0;
    background:
      url("hero-samsung.jpg") center / cover no-repeat;
    transform:scale(1.01);
   
  }

  /* Capa clara/gris como en la captura */
  .hero-samsung__overlay{
    position:absolute; inset:0;
    background: url("img/banner1.png") center / cover no-repeat;
    
    /* Obligatorio para que ocupe espacio */
    min-height: 60vh;          /* o 400px, 100vh, etc. */
    height: 500px;             /* altura base - puedes quitarla si usas solo min-height */
    
    /* La imagen */
   
    background-size: cover;        /* ← clave: cubre todo sin distorsionar */
    background-position: center;   /* centra la imagen */
    background-repeat: no-repeat;  /* no se repite */
    
    /* Opcionales pero muy útiles */
    background-attachment: scroll; /* o 'fixed' si quieres efecto parallax */
  }
  /* Para que funcione bien en móviles */
@media (max-width: 768px) {
    .hero-samsung__overlay {
        min-height: 50vh;     /* altura más pequeña en móvil si quieres */
        background-position: center 60%;  /* puedes ajustar el enfoque en móvil */
    }



  }

  .hero-samsung__container{
    position:relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 56px 16px;
    height:100%;
    display:flex;
    align-items:center;
  }

  .hero-samsung__content{
    width:100%;
    max-width: 860px;
  }

  .hero-samsung__kicker{
    margin:0 0 14px;
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 14px;
  }

  .hero-samsung__title{
    margin:0;
    color:#fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .7px;
    line-height: 1.04;
    text-shadow: 0 10px 24px rgba(0,0,0,.35);
    font-size: clamp(34px, 4.6vw, 72px);
  }

  .hero-samsung__actions{
    margin-top: 22px;
    display:flex;
    gap: 16px;
    flex-wrap:wrap;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height: 56px;
    padding: 0 28px;
    min-width: 190px;
    font-weight: 900;
    border-radius: 2px; /* botones casi cuadrados como la captura */
    border: 1px solid transparent;
    user-select:none;
    text-decoration:none;
  }
  .btn--whap{
    background:#25D366;
    color:#111;
  }
  .btn--call{
    background: var(--dark);
    color:#fff;
  }

  .btn:focus-visible{
    outline: 3px solid rgba(244,163,0,.55);
    outline-offset: 3px;
  }

  /* Mobile ajustes (mantener look) */
  @media (max-width: 420px){
    .btn{min-width: 160px; height:54px; padding:0 22px;}
  }

  /*Expertos en Instalación, Reparación y Mantenimiento de Electrodomésticos Samsung*/

  /* ===== Layout base ===== */
  .about-samsung{
    background: var(--bg);
    padding: 56px 0;
  }
  .about-samsung__container{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;

    display:grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items:start;
  }

  /* ===== Izquierda: imagen ===== */
  .about-samsung__media{
    margin:0;
    width:100%;
    background:#e5e7eb;
    overflow:hidden;
  }
  /* En tu captura la imagen se ve alta y recortada tipo "cover" */
  .about-samsung__media img{
    width:100%;
    height: min(520px, 65vh);
    object-fit: cover;
    object-position: center;
  }

  /* ===== Derecha: contenido ===== */
  .about-samsung__content{
    padding-top: 6px;
  }

  /* Eyebrow "— NOSOTROS" */
  .about-samsung__eyebrow{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom: 12px;
  }
  .about-samsung__dot{
    width:18px;
    height:2px;
    background: var(--orange);
    display:inline-block;
  }
  .about-samsung__label{
    font-weight:800;
    font-size: 12px;
    letter-spacing:.35px;
    color: var(--muted);
    text-transform: uppercase;
  }

  .about-samsung__title{
    margin: 0 0 16px;
    font-weight: 900;
    letter-spacing: -.2px;
    line-height: 1.08;
    color: #1f2937;
    font-size: clamp(28px, 3.2vw, 44px);
    max-width: 22ch; /* para que corte parecido */
  }

  .about-samsung__text{
    color: var(--muted);
    font-weight: 600;
    line-height: 1.9;
    font-size: 15px;
    max-width: 68ch;
  }
  .about-samsung__text p{margin:0 0 14px}

  /* ===== Desktop: dos columnas como tu captura ===== */
  @media (min-width: 900px){
    .about-samsung{
      padding: 64px 0;
    }
    .about-samsung__container{
      grid-template-columns: 420px 1fr; /* imagen izquierda + texto derecha */
      gap: 44px;
      align-items:start;
    }
    .about-samsung__media img{
      height: 540px;
    }
    .about-samsung__content{
      padding-top: 12px;
    }
  }

  /* Un poco más ancho en pantallas grandes */
  @media (min-width: 1100px){
    .about-samsung__container{
      grid-template-columns: 460px 1fr;
    }
    .about-samsung__media img{
      height: 580px;
    }
  }


  /*cuadros botones*/
  
  .collage-wa{
    background: linear-gradient(180deg, rgba(0,0,0,.88), rgba(0,0,0,.88));
    padding: 64px 0;
  }
  .collage-wa__container{
    max-width:var(--container);
    margin:0 auto;
    padding:0 16px;
  }
  .collage-wa__title{
    color:var(--white);
    text-align:center;
    font-weight:900;
    font-size:clamp(26px,4vw,44px);
    margin:0 0 34px;
  }

  /* Slider base */
  .collage-slider{
    position:relative;
    max-width: 980px;
    margin: 0 auto;
  }
  .slide{
    position:absolute;
    inset:0;
    display:block;
    text-decoration:none;
    border-radius: 0;
    overflow:hidden;
    background: var(--panel);
    opacity:0;
    pointer-events:none;
    transform: scale(1.01);
  }
  .slide.is-active{
    position:relative;
    opacity:1;
    pointer-events:auto;
  }

  /* Animación */
  .slide.is-active .collage{
    animation: zoomIn 6s ease both;
  }
  @keyframes zoomIn{
    from{ transform: scale(1.03); }
    to{ transform: scale(1.00); }
  }
  .slide.fade-in{
    animation: fadeIn .7s ease both;
  }
  @keyframes fadeIn{
    from{ opacity:0; }
    to{ opacity:1; }
  }

  /* Collage 2x2 */

  .collage figure{ margin:0; overflow:hidden; }
  .collage img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform: scale(1.02);
  }

  /* Etiqueta inferior */
  .slide__label{
    position:absolute;
    left:0; right:0; bottom:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 16px 18px;
    color:#fff;
    background: rgba(0,0,0,.70);
    font-weight:900;
    font-size: 18px;
    letter-spacing:.2px;
  }
  .plus{
    width:34px;height:34px;
    border-radius:999px;
    border:2px solid currentColor;
    display:grid;
    place-items:center;
    font-size:20px;
    line-height:1;
  }

  /* Dots */
  .dots{
    display:flex;
    gap:10px;
    justify-content:center;
    margin-top: 14px;
  }
  .dot{
    width:10px;height:10px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.5);
    background:transparent;
    padding:0;
  }
  .dot.is-active{
    background: var(--orange);
    border-color: var(--orange);
  }

  /* Mobile: collage más alto (mejor lectura) */
  @media (max-width: 480px){
    .collage{ height: 420px; }
    .slide__label{ font-size: 16px; }
  }

  /* Reduce motion */
  @media (prefers-reduced-motion: reduce){
    .slide.is-active .collage,
    .slide.fade-in{ animation:none !important; }
  }
/*apartado colash animacion */
/* Fondo oscuro estilo captura (con patrón leve) */
  .svc{
    padding: 64px 0;
    background:
      radial-gradient(circle at 15% 20%, rgba(255,255,255,.05), transparent 45%),
      radial-gradient(circle at 70% 30%, rgba(255,255,255,.04), transparent 42%),
      linear-gradient(180deg, rgba(0,0,0,.88), rgba(0,0,0,.88));
  }
  .svc__container{max-width:var(--container);margin:0 auto;padding:0 16px}
  .svc__title{
    margin:0 0 38px;
    color:var(--white);
    text-align:center;
    font-weight:900;
    font-size:clamp(28px,4vw,44px);
  }

  /* Grid responsive */
  .svc__grid{
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
  }
  @media (min-width: 900px){
    .svc__grid{grid-template-columns:repeat(3,1fr);gap:26px}
  }

  /* Card */
  .svc-card{
    position:relative;
    display:block;
    background:var(--panel);
    overflow:hidden;
    text-decoration:none;
    outline:none;
  }

  /* Icono circular superior (teléfono) */
  .svc-card__topIcon{
    position:absolute;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:78px;height:78px;
    border-radius:999px;
    background:#0f1115;
    display:grid;
    place-items:center;
    z-index:5;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
  }

  /* Collage 2x2 */
  .collage{
    display:grid;
    
    height: clamp(320px, 52vw, 420px);
  }
  @media (max-width: 420px){
    .collage{height: 420px;}
  }

  .cell{
    position:relative;
    overflow:hidden;
    background:#000;
  }
  .cell img{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    opacity:0;
    transform:scale(1.02);
    transition: opacity .65s ease;
    display:block;
  }
  .cell img.is-active{opacity:1}

  /* Barra inferior con texto + plus */
  .svc-card__bar{
    position:absolute;
    left:0; right:0; bottom:0;
    height: 78px;
    padding: 0 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background: rgba(0,0,0,.70);
    color:#fff;
    z-index:6;
  }
  .svc-card__name{
    font-weight:900;
    font-size:20px;
  }
  .svc-card__plus{
    width:34px;height:34px;
    border-radius:999px;
    border:2px solid var(--orange);
    color:var(--orange);
    display:grid;
    place-items:center;
    font-size:22px;
    line-height:1;
  }

  /* Focus accesible */
  .svc-card:focus-visible{
    outline: 3px solid rgba(244,163,0,.55);
    outline-offset: 4px;
  }

  /* Reduce motion */
  @media (prefers-reduced-motion: reduce){
    .cell img{transition:none}
  }
  /*apartado: Somos expertos en Samsung*/
  .experts{
    background:var(--bg);
    padding:64px 0;
  }

  .experts__wrap{
    max-width:var(--container);
    margin:0 auto;
    padding:0 16px;
    display:grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items:stretch;
  }

  /* ===== CONTENT SIDE ===== */
  .experts__content{
    background: var(--card);
    padding: 44px 26px 30px;
    position:relative;
    overflow:hidden;
  }

  /* pequeño triángulo negro/diagonal superior izquierda (decoración) */
  .experts__content::before{
    content:"";
    position:absolute;
    top:0; left:0;
    width:0; height:0;
    border-top: 56px solid #111;
    border-right: 56px solid transparent;
    opacity:.95;
  }

  .experts__eyebrow{
    margin:0 0 10px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    font-size:12px;
    letter-spacing:.35px;
    text-transform:uppercase;
    color:var(--muted);
  }
  .experts__dash{
    width:18px;height:2px;background:var(--orange);display:inline-block;
  }

  .experts__title{
    margin:0 0 22px;
    font-size:clamp(30px,3.2vw,46px);
    line-height:1.06;
    font-weight:900;
    letter-spacing:-.2px;
    color:#1f2937;
  }

  .experts__list{
    list-style:none;
    padding:0;
    margin: 0 0 22px;
    display:flex;
    flex-direction:column;
    gap: 18px;
  }

  .experts__item{
    display:grid;
    grid-template-columns: 94px 1fr 64px;
    gap: 16px;
    align-items:center;

    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  /* Caja negra con check */
  .experts__icon{
    width:84px;height:84px;
    background:#111;
    display:grid;
    place-items:center;
  }

  .experts__text strong{
    font-size:18px;
    font-weight:900;
    color:#111;
  }
  .experts__text span{
    display:inline-block;
    margin-top:6px;
    color:#111;
    font-weight:800;
    line-height:1.25;
  }

  /* Botón circular llamar */
  .experts__call{
    width:54px;height:54px;
    border-radius:999px;
    background:var(--orange);
    display:grid;
    place-items:center;
    justify-self:end;
  }
  .experts__call:focus-visible{
    outline:3px solid rgba(244,163,0,.55);
    outline-offset:3px;
  }

  /* CTA WhatsApp */
  .experts__cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:56px;
    padding:0 28px;
    background:var(--orange);
    color:#111;
    font-weight:900;
    border-radius:2px;
    border:1px solid transparent;
    min-width: 260px;
  }
  .experts__cta:focus-visible{
    outline:3px solid rgba(244,163,0,.55);
    outline-offset:3px;
  }

  /* ===== PHOTO SIDE ===== */
  .experts__photo{
    margin:0;
    position:relative;
    overflow:hidden;
    background:#e5e7eb;
    min-height: 360px;
  }
  .experts__photo img{
    width:100%;
    height:100%;
    min-height: 360px;
    object-fit:cover;
    object-position:center;
  }

  /* Banda diagonal naranja + negro como la captura */
  .experts__ribbon{
    position:absolute;
    left: 55%;
    bottom: -40px;
    width: 260px;
    height: 120px;
    background: linear-gradient(135deg, var(--orange) 0 70%, #111 70% 100%);
    transform: rotate(-45deg);
    opacity:.95;
  }

  /* ===== Desktop layout: texto izquierda, foto derecha ===== */
  @media (min-width: 980px){
    .experts__wrap{
      grid-template-columns: 1.15fr .85fr;
      gap: 0;
    }
    .experts__content{
      border-right: 16px solid #111; /* separador negro como tu captura */
      padding: 52px 38px 34px;
    }
    .experts__photo{
      min-height: 560px;
    }
    .experts__photo img{
      min-height: 560px;
    }
  }

  /* Mobile ajustes */
  @media (max-width: 420px){
    .experts__item{grid-template-columns: 86px 1fr 58px}
    .experts__icon{width:78px;height:78px}
    .experts__call{width:50px;height:50px}
    .experts__cta{width:100%;min-width:0}
  }

  /*foother*/
  /* ===== FOOTER ===== */
  .site-footer{
    background:black;
    color: var(--text);
    padding: 46px 0 0;
  }
  #footer {
    background: black;
  }
  .site-footer__wrap{
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 16px 18px;
  }
  .site-footer__title{
    margin: 0 0 14px;
    color: #fff;
    font-weight: 900;
    font-size: clamp(22px, 2.3vw, 30px);
  }
  .site-footer__text{
    margin: 0;
    line-height: 1.9;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
  }
  .site-footer__bottom{
    margin-top: 26px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    color: rgba(255,255,255,.55);
    font-weight: 600;
    background: rgba(255,255,255,.02);
  }

  /* ===== BOTONES FLOTANTES (DERECHA) ===== */
  .float-actions{
    position: fixed;
    right: 16px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
  }
  .float-btn{
    width: 54px;
    height: 54px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(6px);
  }
  .float-btn--whatsapp{
    background: #25D366; /* verde WhatsApp */
  }
  .float-btn--call{
    background: var(--orange); /* naranja como tu marca */
    color: #111;
  }
  .float-btn:focus-visible{
    outline: 3px solid rgba(244,163,0,.55);
    outline-offset: 3px;
  }
  .float-btn:hover{
    transform: translateY(-1px);
    transition: transform .15s ease;
  }

  /* Texto solo para lectores de pantalla */
  .float-btn__sr{
    position:absolute;
    width:1px;height:1px;
    padding:0;margin:-1px;
    overflow:hidden;clip:rect(0,0,0,0);
    white-space:nowrap;border:0;
  }

  /* Mobile: un poquito más pequeño */
  @media (max-width: 420px){
    .float-actions{right: 12px; bottom: 14px;}
    .float-btn{width:50px;height:50px;border-radius:10px;}
  }
