
    :root{
      --text:#ffffff;
      --yellow:#facc15;
      --border:#242424;
      --green:#22c55e;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: Aptos, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top, rgba(250,204,21,0.08), transparent 32%),
        linear-gradient(to bottom, #050505 0%, #000 100%);
      color:var(--text);
    }

    .page{min-height:100vh}
    .hidden{display:none !important}

    .container{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
    }

    header{
      position:sticky;
      top:0;
      z-index:100;
      border-bottom:1px solid var(--border);
      background: linear-gradient(to bottom, rgba(250,204,21,0.08), rgba(0,0,0,0.92) 45%, #000);
      backdrop-filter: blur(12px);
    }

    .topbar{
      display:grid;
      grid-template-columns: 200px 1fr 320px;
      align-items:center;
      gap:24px;
      min-height:132px;
      padding:8px 0;
    }

    .logo{
      height:150px;
      width:auto;
      object-fit:contain;
      cursor:pointer;
      display:block;
    }

    .logo-link,
    .mobile-logo-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      text-decoration:none;
    }

    .mobile-logo-link{
      width:100%;
    }

    nav{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:28px;
      font-size:15px;
      font-weight:500;
    }

    nav a{
      border:0;
      background:transparent;
      color:var(--text);
      cursor:pointer;
      font:inherit;
      padding:0;
      text-decoration:none;
      transition:color .2s ease;
    }

    nav a:hover{color:var(--yellow)}

    .search-wrap{
      position:relative;
      width:100%;
      max-width:320px;
      justify-self:end;
    }

    .search-box{
      display:flex;
      align-items:center;
      gap:10px;
      width:100%;
      background:#111111;
      border:1px solid #2a2a2a;
      border-radius:14px;
      padding:11px 14px;
      color:#d7d7d7;
    }

    .search-box input{
      width:100%;
      border:0;
      outline:none;
      background:transparent;
      color:#fff;
      font-size:14px;
    }

    .search-box input::placeholder{color:#777}

    .search-results{
      position:absolute;
      top:calc(100% + 8px);
      left:0;
      right:0;
      background:#0d0d0d;
      border:1px solid #2a2a2a;
      border-radius:16px;
      overflow:hidden;
      box-shadow:0 18px 30px rgba(0,0,0,.35);
      z-index:120;
      display:none;
    }

    .search-result-item{
      width:100%;
      border:0;
      background:transparent;
      color:#fff;
      text-align:left;
      padding:12px 14px;
      cursor:pointer;
      border-bottom:1px solid #1d1d1d;
    }

    .search-result-item:last-child{border-bottom:0}
    .search-result-item:hover{background:#171717}
    .search-result-name{font-size:14px;font-weight:600}
    .search-result-meta{font-size:12px;color:#bbbbbb;margin-top:4px}

    .mobile-head{display:none;padding:10px 0 12px}

    .mobile-row{
      display:grid;
      grid-template-columns:40px 1fr 40px;
      align-items:center;
      gap:10px;
    }

    .icon-btn{
      width:40px;
      height:40px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:10px;
      border:1px solid #2a2a2a;
      background:#111;
      color:#fff;
      cursor:pointer;
    }

    .mobile-logo{
      height:105px;
      width:auto;
      object-fit:contain;
      cursor:pointer;
      margin:0 auto;
      display:block;
    }

    .mobile-search-wrap{
      position:relative;
      width:100%;
      margin-top:10px;
    }

    .mobile-search{
      width:100%;
      display:flex;
      align-items:center;
      gap:10px;
      background:#111;
      border:1px solid #2a2a2a;
      border-radius:14px;
      padding:11px 14px;
      color:#d7d7d7;
    }

    .mobile-search input{
      width:100%;
      border:0;
      outline:none;
      background:transparent;
      color:#fff;
      font-size:14px;
    }

    .mobile-menu{
      display:none;
      flex-direction:column;
      gap:8px;
      margin-top:12px;
      padding:12px;
      border:1px solid #2a2a2a;
      border-radius:16px;
      background:#090909;
    }

    .mobile-menu a{
      display:block;
      text-align:left;
      width:100%;
      border:0;
      background:#111;
      color:#fff;
      padding:12px 14px;
      border-radius:12px;
      cursor:pointer;
      font-size:15px;
      text-decoration:none;
    }

    .mobile-menu a:hover{
      background:#171717;
      color:var(--yellow);
    }

    .hero{
      position:relative;
      overflow:hidden;
      border-bottom:1px solid var(--border);
      background: url('heroprincipal.png') 70% center / cover no-repeat;
      background-color:#000;
    }

    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.70) 28%, rgba(0,0,0,0.30) 55%, rgba(0,0,0,0.05) 100%);
      pointer-events:none;
      z-index:0;
    }

    .hero-inner{
      min-height:58vh;
      display:flex;
      align-items:center;
      padding:72px 0;
      position:relative;
      z-index:1;
    }

    .hero-copy{
      max-width:600px;
      position:relative;
      z-index:1;
    }

    .eyebrow{
      display:inline-block;
      margin-bottom:14px;
      letter-spacing:.25em;
      text-transform:uppercase;
      color:var(--yellow);
      font-weight:600;
      font-size:12px;
      text-shadow:0 2px 12px rgba(0,0,0,.55);
    }

    h1,h2,h3{margin:0}

    .hero h1{
      font-size:clamp(2.4rem,5vw,4.5rem);
      line-height:1.05;
      letter-spacing:-0.03em;
      font-weight:700;
      max-width:11ch;
      text-shadow:
        0 4px 18px rgba(0,0,0,.55),
        0 2px 8px rgba(0,0,0,.75);
    }

    .page-title,
    .product-title{
      margin:0;
      color:#fff;
      font-weight:700;
      letter-spacing:-0.02em;
      line-height:1.1;
      text-shadow:none;
      max-width:none;
    }

    .page-title{
      font-size:clamp(1.9rem,3.4vw,2.8rem);
    }

    .product-title{
      font-size:clamp(1.65rem,3vw,2.45rem);
      margin-bottom:14px;
    }

    .hero p{
      color:#e2e2e2;
      font-size:18px;
      line-height:1.7;
      max-width:620px;
      margin:18px 0 0;
      text-shadow:
        0 3px 14px rgba(0,0,0,.45),
        0 2px 8px rgba(0,0,0,.7);
    }

    .hero .check{
      margin-top:14px;
      font-size:16px;
      color:#f2f2f2;
      text-shadow:0 2px 10px rgba(0,0,0,.7);
    }

    .actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:28px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border:0;
      border-radius:16px;
      padding:13px 20px;
      font-weight:600;
      text-decoration:none;
      cursor:pointer;
      transition:transform .18s ease, filter .18s ease, border-color .18s ease, background .18s ease;
      will-change:transform;
    }

    .btn:hover{transform:translateY(-1px)}

    .btn-primary{
      color:#111;
      background:linear-gradient(90deg,#fde68a 0%,#facc15 52%,#eab308 100%);
      box-shadow:0 12px 30px rgba(250,204,21,.14);
    }

    .btn-secondary{
      color:#fff;
      background:linear-gradient(90deg,#000 0%,#111 100%);
      border:1px solid rgba(250,204,21,.16);
    }

    .btn-secondary:hover{
      border-color:rgba(250,204,21,.35);
      background:#0b0b0b;
    }

    .btn-whatsapp{
      color:#fff;
      background:linear-gradient(90deg,#22c55e 0%,#10b981 100%);
    }

    .btn-reset{
      color:#111;
      background:#fff;
      border-radius:14px;
      padding:12px 22px;
      font-size:14px;
      width:auto;
      min-width:180px;
      flex:0 0 auto;
    }

    section{scroll-margin-top:170px}
    .section{padding:62px 0}

    .breadcrumbs{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      margin-bottom:18px;
      color:#9f9f9f;
      font-size:13px;
      line-height:1.4;
    }

    .breadcrumbs a{
      color:#d7d7d7;
      text-decoration:none;
      text-underline-offset:4px;
    }

    .breadcrumbs a:hover{
      color:var(--yellow);
      text-decoration:underline;
    }

    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:16px;
      margin-bottom:26px;
    }

    .label{
      color:var(--yellow);
      letter-spacing:.2em;
      text-transform:uppercase;
      font-size:12px;
      font-weight:600;
      margin-bottom:10px;
    }

    h2{
      font-size:clamp(1.7rem,3vw,2.6rem);
      line-height:1.1;
      letter-spacing:-0.03em;
      font-weight:600;
    }

    .link{
      color:#d9d9d9;
      text-underline-offset:4px;
    }

    .link:hover{color:#fff}

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

    .service-card{
      position:relative;
      overflow:hidden;
      border-radius:24px;
      padding:26px;
      background:linear-gradient(180deg, rgba(21,21,21,.98) 0%, rgba(8,8,8,.98) 100%);
      border:1px solid rgba(250,204,21,.14);
      box-shadow:0 18px 34px rgba(0,0,0,.38);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:260px;
    }

    .service-card::before{
      content:"";
      position:absolute;
      inset:-1px;
      background:radial-gradient(circle at top right, rgba(250,204,21,.16), transparent 42%);
      pointer-events:none;
    }

    .service-card:hover{
      transform:translateY(-4px);
      border-color:rgba(250,204,21,.45);
      box-shadow:0 22px 42px rgba(0,0,0,.48);
    }

    .service-icon{
      width:48px;
      height:48px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(250,204,21,.12);
      border:1px solid rgba(250,204,21,.22);
      color:var(--yellow);
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }

    .service-card h3{
      position:relative;
      z-index:1;
      font-size:20px;
      line-height:1.2;
      margin-bottom:12px;
      color:#fff;
    }

    .service-card p{
      position:relative;
      z-index:1;
      color:#cfcfcf;
      line-height:1.65;
      font-size:15px;
      margin:0;
    }

    .service-card .service-link{
      position:relative;
      z-index:1;
      display:inline-flex;
      margin-top:20px;
      color:var(--yellow);
      font-weight:600;
      text-decoration:none;
      text-underline-offset:4px;
    }

    .service-card .service-link:hover{
      text-decoration:underline;
    }

    .grid{display:grid;gap:22px}
    .products{grid-template-columns:repeat(3,minmax(0,1fr))}
    .catalog-grid{grid-template-columns:repeat(4,minmax(0,1fr))}

    .card{
      overflow:hidden;
      border-radius:24px;
      background:linear-gradient(180deg, #151515 0%, #0b0b0b 100%);
      color:#fff;
      border:1px solid rgba(250,204,21,.14);
      box-shadow:0 18px 34px rgba(0,0,0,.38);
      transition:transform .18s ease,border-color .18s ease, box-shadow .18s ease;
      height:100%;
      display:flex;
      flex-direction:column;
    }

    .card:hover{
      transform:translateY(-4px);
      border-color:rgba(250,204,21,.45);
      box-shadow:0 22px 42px rgba(0,0,0,.48);
    }

    .card img{
      width:100%;
      height:280px;
      object-fit:contain;
      padding:4px;
      background:
        radial-gradient(circle at center, rgba(250,204,21,.08), transparent 48%),
        #050505;
      border-bottom:1px solid rgba(255,255,255,.06);
    }

    .card-body{
      padding:18px;
      display:flex;
      flex-direction:column;
      flex:1;
    }

    .card-title{
      font-size:16px;
      line-height:1.35;
      font-weight:600;
      min-height:66px;
      display:flex;
      align-items:flex-start;
      color:#fff;
    }

    .price{
      margin-top:12px;
      font-size:18px;
      font-weight:700;
      color:#facc15;
    }

    .desc{
      margin-top:10px;
      color:#bdbdbd;
      font-size:13px;
      line-height:1.55;
      min-height:60px;
    }

    .card .btn{
      width:100%;
      margin-top:auto;
      padding:12px 16px;
      border-radius:14px;
    }

    .filters-wrap{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      align-items:flex-end;
      margin-bottom:22px;
    }

    .filter-group{
      display:flex;
      flex-direction:column;
      gap:8px;
      flex:0 1 240px;
    }

    .filters-title{
      font-size:13px;
      color:#cfcfcf;
    }

    .filter-select{
      width:100%;
      background:#111;
      color:#fff;
      border:1px solid #2a2a2a;
      border-radius:14px;
      padding:12px 14px;
      font-size:14px;
      outline:none;
    }

    .about{
      position:relative;
      overflow:hidden;
      border-top:1px solid var(--border);
      border-bottom:1px solid var(--border);
      background:linear-gradient(to right, rgba(0,0,0,.95), rgba(0,0,0,.76), rgba(0,0,0,.92)), url('hero.png') center center / cover no-repeat;
    }

    .about-inner{padding:72px 0}

    .about p{
      color:#d1d1d1;
      line-height:1.75;
      font-size:18px;
      max-width:900px;
      margin:0;
    }

    .about p + p{margin-top:14px}

    .contact{
      position:relative;
      overflow:hidden;
      background:linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.95)), url('hero.png') center center / cover no-repeat;
      border-top:1px solid var(--border);
    }

    .contact-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
      margin-top:26px;
    }

    .content-page{
      border-top:1px solid var(--border);
      background:
        linear-gradient(to bottom, rgba(0,0,0,.88), rgba(0,0,0,.96)),
        url('hero.png') 70% center / cover no-repeat;
    }

    .service-lead{
      max-width:900px;
      color:#d4d4d4;
      line-height:1.7;
      font-size:17px;
      margin:14px 0 0;
    }

    .content-layout{
      display:grid;
      grid-template-columns:minmax(0, 1.4fr) minmax(280px, .7fr);
      gap:28px;
      align-items:start;
      margin-top:24px;
    }

    .text-panel,
    .cta-panel{
      border:1px solid rgba(250,204,21,.12);
      border-radius:22px;
      background:rgba(0,0,0,.68);
      box-shadow:0 18px 34px rgba(0,0,0,.32);
      backdrop-filter:blur(10px);
    }

    .text-panel{
      padding:28px;
    }

    .text-panel h2{
      font-size:clamp(1.35rem, 2.2vw, 2rem);
      margin-top:28px;
      margin-bottom:12px;
    }

    .text-panel h2:first-child{
      margin-top:0;
    }

    .text-panel p,
    .text-panel li{
      color:#d4d4d4;
      line-height:1.72;
      font-size:16px;
    }

    .text-panel ul{
      margin:12px 0 0;
      padding-left:20px;
    }

    .cta-panel{
      padding:24px;
      position:sticky;
      top:170px;
    }

    .cta-panel .price{
      margin-top:0;
      margin-bottom:12px;
    }

    .cta-panel p{
      color:#d6d6d6;
      line-height:1.65;
      margin:0 0 18px;
    }

    .info-card{
      border-radius:22px;
      border:1px solid rgba(250,204,21,.1);
      background:rgba(0,0,0,.58);
      backdrop-filter:blur(10px);
      padding:20px;
      box-shadow:0 0 0 1px rgba(250,204,21,.03);
    }

    .info-card .kicker{
      color:#9d9d9d;
      font-size:13px;
      margin-top:14px;
    }

    .info-card .big{
      margin-top:6px;
      font-size:18px;
      font-weight:600;
      line-height:1.4;
    }

    .info-card a{
      color:var(--yellow);
      text-underline-offset:4px;
    }

    .footer{
      border-top:1px solid var(--border);
      padding:26px 0 44px;
      color:#bdbdbd;
      font-size:14px;
    }

    .whatsapp-float{
      position:fixed;
      right:22px;
      bottom:22px;
      width:56px;
      height:56px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      color:#fff;
      background:linear-gradient(90deg,#22c55e 0%,#10b981 100%);
      box-shadow:0 18px 30px rgba(0,0,0,.35);
      z-index:90;
      transition:transform .18s ease, filter .18s ease;
    }

    .whatsapp-float:hover{
      transform:translateY(-2px);
      filter:saturate(1.08);
    }

    .product-detail{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items:start;
    }

    .product-image-card{
      background:
        radial-gradient(circle at center, rgba(250,204,21,.08), transparent 48%),
        #050505;
      border:1px solid rgba(250,204,21,.14);
      border-radius:24px;
      overflow:hidden;
      box-shadow:0 18px 34px rgba(0,0,0,.38);
      display:flex;
      align-items:center;
      justify-content:center;
      min-height:520px;
      padding:8px;
    }

    .product-detail-image{
      width:100%;
      height:100%;
      max-height:520px;
      object-fit:contain;
      display:block;
    }

    @media (max-width:900px){
      .topbar{display:none}
      .mobile-head{display:block}
      .section-head{flex-direction:column;align-items:flex-start}
      .products,.catalog-grid,.contact-grid,.product-detail{grid-template-columns:1fr}
      .filters-wrap{
        flex-direction:column;
        align-items:stretch;
      }

      .filter-group{
        width:100%;
        flex:0 1 auto;
      }

      .filters-wrap .btn-reset{
        width:100%;
        max-width:none;
      }

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

      .service-card{
        min-height:auto;
      }

      .hero{
        background: url('heroprincipal.png') 70% bottom / 160% auto no-repeat;
        background-color:#000;
      }

      .hero::before{
        background: linear-gradient(
          180deg,
          rgba(0,0,0,.84) 0%,
          rgba(0,0,0,.66) 42%,
          rgba(0,0,0,.80) 100%
        );
      }

      .hero-inner{
        min-height:auto;
        padding:52px 0 48px;
        align-items:flex-start;
      }

      .hero-copy{
        max-width:100%;
        text-align:left;
        padding-top:4px;
      }

      .hero h1{
        max-width:8.8ch;
        font-size:clamp(1.85rem, 7vw, 2.8rem);
        line-height:1.04;
      }

      .hero p{
        font-size:15px;
        line-height:1.55;
        max-width:320px;
        margin-top:14px;
      }

      .hero .check{
        font-size:14px;
        line-height:1.45;
        max-width:320px;
        margin-top:12px;
      }

      .actions{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
        margin-top:22px;
      }

      .btn{
        width:100%;
        max-width:280px;
      }

      .card img{
        height:320px;
        padding:0;
        object-fit:contain;
      }

      .product-image-card{
        min-height:430px;
      }

      .product-detail-image{
        max-height:430px;
      }

      .about{
        background:
          linear-gradient(to right, rgba(0,0,0,.94), rgba(0,0,0,.84), rgba(0,0,0,.94)),
          url('hero.png') 68% center / cover no-repeat;
      }

      .about-inner{padding:48px 0}
      .about p{
        font-size:15px;
        line-height:1.65;
        max-width:100%;
      }

      .contact{
        background:
          linear-gradient(to bottom, rgba(0,0,0,.88), rgba(0,0,0,.95)),
          url('hero.png') 68% center / cover no-repeat;
      }

      .contact .section{padding:48px 0}
      .contact h2{
        font-size:clamp(1.55rem, 6vw, 2.1rem);
        line-height:1.08;
      }

      .contact p{
        font-size:15px !important;
        line-height:1.6 !important;
        max-width:100% !important;
      }

      .contact-grid{
        gap:14px;
        margin-top:22px;
      }

      #servicioPage .content-page .section{
        padding:40px 0;
      }

      #servicioPage .page-title{
        font-size:clamp(1.55rem, 5.8vw, 2.15rem);
        line-height:1.12;
        letter-spacing:0;
      }

      .service-lead{
        font-size:15px;
        line-height:1.58;
        margin-top:12px;
      }

      .content-layout{
        grid-template-columns:1fr;
        gap:16px;
        margin-top:18px;
      }

      .text-panel{
        padding:18px;
        border-radius:18px;
      }

      .text-panel h2{
        font-size:clamp(1.12rem, 4.8vw, 1.35rem);
        line-height:1.2;
        margin-top:22px;
        margin-bottom:10px;
      }

      .text-panel p,
      .text-panel li{
        font-size:15px;
        line-height:1.58;
      }

      .cta-panel{
        position:static;
        padding:18px;
        border-radius:18px;
      }

      .cta-panel p{
        font-size:15px;
        line-height:1.55;
      }

      .info-card{padding:18px}
      .info-card .kicker{
        font-size:12px;
        margin-top:10px;
      }

      .info-card .big{
        font-size:16px;
        line-height:1.35;
      }

      .footer .container{
        flex-direction:column;
        align-items:flex-start !important;
      }

      .footer{
        padding-bottom:78px;
      }

      .whatsapp-float{
        right:16px;
        bottom:16px;
        width:50px;
        height:50px;
        box-shadow:0 12px 24px rgba(0,0,0,.34);
      }

      .whatsapp-float svg{
        width:26px;
        height:26px;
      }

      #productoPage ~ .whatsapp-float,
      #contactoPage ~ .whatsapp-float{
        display:none;
      }
    }

    @media (max-width:600px){
      #servicioPage .content-page .section{
        padding:32px 0;
      }

      #servicioPage .breadcrumbs{
        font-size:12px;
        line-height:1.45;
        margin-bottom:16px;
      }

      #servicioPage .label{
        font-size:10px;
        letter-spacing:.16em;
      }

      #servicioPage .page-title{
        font-size:clamp(1.35rem, 6vw, 1.8rem);
        line-height:1.14;
      }

      .service-lead{
        font-size:14px;
        line-height:1.55;
      }

      .text-panel,
      .cta-panel{
        padding:16px;
        border-radius:16px;
      }

      .text-panel h2{
        font-size:1.08rem;
        line-height:1.22;
      }

      .text-panel p,
      .text-panel li,
      .cta-panel p{
        font-size:14px;
        line-height:1.55;
      }

      .cta-panel .btn{
        max-width:none;
      }

      .hero{
        background: url('heroprincipal.png') 72% bottom / 180% auto no-repeat;
        background-color:#000;
      }

      .hero-inner{padding:46px 0 42px}

      .eyebrow{
        font-size:10px;
        letter-spacing:.18em;
        margin-bottom:10px;
      }

      .hero h1{
        font-size:clamp(1.7rem, 8vw, 2.2rem);
        max-width:8.2ch;
      }

      .hero p{
        font-size:14px;
        line-height:1.5;
        max-width:285px;
      }

      .hero .check{
        font-size:13px;
        max-width:285px;
      }

      .section{padding:44px 0}

      h2{
        font-size:clamp(1.35rem, 6vw, 1.9rem);
      }

      .label{font-size:11px}

      .about-inner{padding:40px 0}
      .about p{
        font-size:14px;
        line-height:1.58;
      }

      .contact{
        background:
          linear-gradient(to bottom, rgba(0,0,0,.90), rgba(0,0,0,.96)),
          url('hero.png') 72% center / cover no-repeat;
      }

      .contact .section{padding:40px 0}
      .contact h2{
        font-size:clamp(1.4rem, 7vw, 1.85rem);
      }

      .contact p{
        font-size:14px !important;
        line-height:1.55 !important;
      }

      .info-card{
        padding:16px;
        border-radius:18px;
      }

      .info-card .big{font-size:15px}
      .mobile-logo{height:92px}

      .card img{
        height:300px;
        padding:0;
        object-fit:contain;
      }

      .product-image-card{
        min-height:340px;
      }

      .product-detail-image{
        max-height:340px;
      }

      .product-detail .product-title{
        font-size: 1.5rem !important;
        line-height: 1.15 !important;
      }

      .product-detail p{
        font-size: 15px !important;
        line-height: 1.6 !important;
      }

      .product-detail .price{
        font-size: 22px !important;
      }

      .whatsapp-float{
        right:14px;
        bottom:14px;
        width:48px;
        height:48px;
      }
    }
  
    .card a.btn{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;
    }
