@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

    :root{
      --pink:#e63f98;
      --pink-strong:#d62b86;
      --pink-soft:#fff2f8;
      --rose:#ff6dbd;
      --text:#241b20;
      --muted:#6f6670;
      --border:#ece7ec;
      --bg:#fffafc;
      --card:#ffffff;
      --shadow:0 14px 38px rgba(31,18,28,.08);
      --shadow-soft:0 10px 24px rgba(31,18,28,.05);
      --radius:22px;
      --heroText:rgba(255,255,255,.96);
      --header-h:72px;
      --max:1180px;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:Inter,system-ui,-apple-system,Segoe UI,Arial,sans-serif;
      color:var(--text);
      background:#fff;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{text-decoration:none;color:inherit}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    section[id]{scroll-margin-top:86px}

    .section-shell{max-width:var(--max);margin:0 auto;padding:0 18px}
    .section-title{font-family:'Great Vibes','Segoe Script','Brush Script MT',cursive;font-size:clamp(38px,5.2vw,58px);line-height:1.08;font-weight:400;letter-spacing:0;color:#231b20}
    .section-subtitle{margin-top:10px;font-size:15px;line-height:1.7;color:var(--muted)}

    header{
      position:fixed;
      inset:0 0 auto 0;
      height:var(--header-h);
      z-index:9999;
      background:rgba(255,255,255,.9);
      backdrop-filter:blur(12px);
      -webkit-backdrop-filter:blur(12px);
      border-bottom:1px solid rgba(236,231,236,.85);
    }
    .nav{
      max-width:var(--max);
      margin:0 auto;
      height:100%;
      padding:0 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
      font-weight:800;
      letter-spacing:-.01em;
      white-space:nowrap;
    }
    .brand-logo{width:34px;height:34px;object-fit:contain;border-radius:10px}
    .brand-copy{display:flex;flex-direction:column;line-height:1.05}
    .brand-copy strong{font-size:15px;color:#231b20}
    .brand-copy span{font-size:11px;color:var(--muted);font-weight:600}

    .menu{
      display:flex;
      align-items:center;
      gap:22px;
    }
    .menu a{
      position:relative;
      font-size:14px;
      color:#5d5560;
      font-weight:600;
      transition:color .2s ease;
    }
    .menu a:hover{color:#231b20}
    .menu a::after{
      content:"";
      position:absolute;
      left:0;bottom:-8px;
      width:100%;height:2px;
      transform:scaleX(0);
      transform-origin:left;
      background:linear-gradient(90deg,var(--pink),var(--rose));
      transition:transform .22s ease;
    }
    .menu a:hover::after{transform:scaleX(1)}

    .actions{display:flex;align-items:center;gap:10px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:11px 16px;
      border-radius:999px;
      border:1px solid var(--border);
      background:#fff;
      color:#2d2328;
      font-size:14px;
      font-weight:700;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    }
    .btn:hover{transform:translateY(-1px);box-shadow:var(--shadow-soft)}
    .btn-primary{
      border:none;
      color:#fff;
      background:linear-gradient(135deg,var(--pink-strong),var(--rose));
      box-shadow:0 12px 28px rgba(230,63,152,.28);
    }
    .btn-outline{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.22);color:#fff}

    .menu-toggle{
      display:none;
      width:44px;height:44px;
      border-radius:12px;
      border:1px solid var(--border);
      background:#fff;
      color:#33272d;
      font-size:18px;
      cursor:pointer;
    }

    .hero{
      position:relative;
      min-height:clamp(650px,82svh,780px);
      padding-top:var(--header-h);
      overflow:hidden;
      background:#160d13;
    }
    .hero-video,
    .hero-overlay,
    .hero-hit{position:absolute;inset:0}
    .hero-video{z-index:0}
    .hero-video video{width:100%;height:100%;object-fit:cover;object-position:center}
    .hero-overlay{
      z-index:1;
      background:
        linear-gradient(90deg,rgba(20,9,16,.82) 0%,rgba(20,9,16,.5) 48%,rgba(20,9,16,.2) 78%),
        linear-gradient(180deg,rgba(10,7,9,.12) 35%,#180f15 100%);
    }
    .hero-hit{top:var(--header-h);z-index:2}
    .hero-hit a{display:block;width:100%;height:100%}

    .hero-content{
      position:relative;
      z-index:3;
      min-height:calc(clamp(650px,82svh,780px) - var(--header-h));
      width:min(100%,1240px);
      margin:0 auto;
      display:flex;
      align-items:center;
      padding:52px clamp(28px,6vw,76px) 72px;
      text-align:left;
      color:var(--heroText);
      pointer-events:none;
    }
    .hero-card{
      pointer-events:auto;
      width:min(100%,680px);
      padding:0;
      border:0;
      background:transparent;
      box-shadow:none;
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:22px;
      padding:0;
      border:0;
      background:transparent;
      color:#ff8bc5;
      font-size:11px;
      font-weight:800;
      letter-spacing:.2em;
      text-transform:uppercase;
    }
    .hero-card h1{
      max-width:660px;
      font-family:'Cormorant Garamond',serif;
      font-size:clamp(58px,6.5vw,88px);
      line-height:.94;
      letter-spacing:-.02em;
      font-weight:500;
      margin-bottom:22px;
    }
    .hero-card p{
      max-width:520px;
      margin:0;
      font-size:15px;
      line-height:1.65;
      color:rgba(255,255,255,.72);
    }
    .hero-actions{
      display:flex;
      justify-content:flex-start;
      gap:12px;
      flex-wrap:wrap;
      margin-top:24px;
    }
    .hero-points{
      display:flex;
      justify-content:flex-start;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .hero-point{
      position:relative;
      padding:0 0 0 15px;
      border:0;
      border-radius:0;
      background:transparent;
      color:rgba(255,255,255,.64);
      font-size:10px;
      font-weight:650;
    }
    .hero-point::before{content:"";position:absolute;left:0;top:50%;width:7px;height:1px;background:#ff6dbd}

    .services{
      padding:72px 0 30px;
      background:linear-gradient(180deg,#fff 0%, #fff8fb 100%);
    }
    .promo-showcase{padding:0;background:#180f15}
    .promo-showcase[hidden]{display:none}
    .promo-showcase .section-shell{max-width:none;padding:0}
    .promo-showcase-frame{position:relative;min-height:420px;overflow:hidden;border:0;border-radius:0;background:radial-gradient(circle at 82% 20%,rgba(255,82,166,.2),transparent 27%),radial-gradient(circle at 72% 100%,rgba(132,36,83,.24),transparent 34%),linear-gradient(120deg,#180f15 0%,#27101d 52%,#140b10 100%);border-top:1px solid rgba(255,255,255,.065);box-shadow:none;color:#fff}
    .promo-showcase-frame::before{content:"DYNAMIS";position:absolute;right:-2vw;top:50%;transform:translateY(-52%);font-family:'Cormorant Garamond',serif;font-size:clamp(110px,19vw,270px);font-weight:600;letter-spacing:.02em;color:rgba(255,255,255,.028);pointer-events:none;white-space:nowrap}
    .promo-showcase-frame::after{content:"";position:absolute;width:340px;height:340px;right:7%;top:-220px;border:1px solid rgba(255,255,255,.08);border-radius:50%;box-shadow:0 0 0 55px rgba(255,255,255,.018),0 0 0 110px rgba(255,255,255,.012);pointer-events:none}
    .promo-showcase-copy{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1.15fr) minmax(280px,.65fr);grid-template-rows:auto auto auto auto auto auto;column-gap:clamp(35px,7vw,120px);width:min(100%,1240px);margin:0 auto;padding:55px clamp(28px,6vw,76px);min-width:0}
    .promo-live-badge,.promo-overline,.promo-showcase h2,.promo-service,.promo-meta,.promo-showcase-actions{grid-column:1}
    .promo-live-badge{display:inline-flex;align-items:center;gap:9px;padding:0;background:transparent;color:rgba(255,255,255,.78);border:0;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.18em}
    .promo-live-badge i{width:7px;height:7px;border-radius:50%;background:#ff5daf;box-shadow:0 0 0 5px rgba(255,93,175,.12);animation:promoPulse 1.8s ease-in-out infinite}
    .promo-overline{margin-top:25px;color:#ff8bc5;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.2em}
    .promo-showcase h2{max-width:700px;margin-top:8px;font-family:'Cormorant Garamond',serif;font-size:clamp(48px,5.8vw,78px);font-weight:500;line-height:.94;color:#fff;text-wrap:balance}
    .promo-service{margin-top:14px;font-size:15px;color:rgba(255,255,255,.72);font-weight:600;letter-spacing:.02em}
    .promo-meta{display:flex;gap:18px;flex-wrap:wrap;margin-top:23px}.promo-meta span{position:relative;padding:0 0 0 17px;border:0;border-radius:0;background:transparent;color:rgba(255,255,255,.75);font-size:11px;font-weight:650}.promo-meta span::before{content:"";position:absolute;left:0;top:50%;width:8px;height:1px;background:#ff6dbd}
    .promo-showcase-actions{display:flex;align-items:center;gap:20px;margin-top:30px;flex-wrap:wrap}.promo-showcase-actions .btn-primary{min-width:190px;background:#fff;color:#4e1a35;box-shadow:0 14px 32px rgba(0,0,0,.18)}.promo-showcase-actions>span{font-size:10px;color:rgba(255,255,255,.53);max-width:290px;line-height:1.55}
    .promo-price-panel{grid-column:2;grid-row:1/7;align-self:center;position:relative;z-index:2;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;width:100%;margin:0;padding:28px 30px;border:1px solid rgba(255,255,255,.11);border-left:2px solid #ff65b3;background:rgba(255,255,255,.045);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);color:#fff;text-align:left}
    .promo-price-panel>span{font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.17em;opacity:.74}.promo-price-panel strong{margin:3px 0;font-family:'Cormorant Garamond',serif;font-size:clamp(50px,5vw,72px);font-weight:500;line-height:1}.promo-price-panel small{font-size:10px;line-height:1.5;opacity:.7}
    .promo-pagination{position:absolute;z-index:4;right:30px;bottom:24px;display:flex;gap:7px}.promo-pagination button{width:7px;height:7px;padding:0;border:1px solid rgba(255,255,255,.7);border-radius:50%;background:transparent;cursor:pointer}.promo-pagination button.is-active{width:26px;border-radius:999px;background:#fff}
    .promo-showcase-frame.is-changing .promo-showcase-copy,.promo-showcase-frame.is-changing .promo-price-panel>*{animation:promoEnter .42s ease both}
    @keyframes promoEnter{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
    @keyframes promoPulse{50%{box-shadow:0 0 0 8px rgba(230,63,152,0)}}
    .services-top{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:28px;
      flex-wrap:wrap;
    }
    .services-note{
      max-width:320px;
      padding:14px 16px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--border);
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      box-shadow:var(--shadow-soft);
    }
    .services-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:16px;
    }
    .service-card{
      display:flex;
      flex-direction:column;
      gap:16px;
      padding:20px;
      border-radius:24px;
      background:rgba(255,255,255,.94);
      border:1px solid #f2e8ee;
      box-shadow:var(--shadow-soft);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .service-card:hover{
      transform:translateY(-3px);
      border-color:#f0c6dd;
      box-shadow:0 16px 36px rgba(230,63,152,.1);
    }
    .service-top{display:flex;align-items:flex-start;gap:0}
    .service-copy{min-width:0}
    .service-name{font-size:17px;line-height:1.25;font-weight:800;color:#251d22}
    .service-description{margin-top:6px;font-size:13px;color:var(--muted)}
    .service-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:auto;
      padding-top:14px;
      border-top:1px solid #f4edf1;
    }
    .service-price strong{display:block;font-size:21px;letter-spacing:-.03em;color:#231b20}
    .service-price span{font-size:12px;color:var(--muted)}
    .service-button{
      min-width:122px;
      min-height:42px;
      padding:10px 14px;
      border-radius:999px;
      background:#231b20;
      color:#fff;
      font-size:13px;
      font-weight:800;
      text-align:center;
      transition:background .18s ease, transform .18s ease;
    }
    .service-button:hover{background:var(--pink-strong);transform:translateY(-1px)}

    .sobre-section{
      padding:54px 0 32px;
      background:#fff;
    }
    .sobre-container{
      max-width:var(--max);
      margin:0 auto;
      padding:0 18px;
      display:grid;
      grid-template-columns:340px 1fr;
      gap:48px;
      align-items:center;
    }
    .sobre-card{
      position:relative;
      width:100%;
      max-width:320px;
      aspect-ratio: 3 / 4.1;
      border-radius:42px;
      overflow:hidden;
      box-shadow:0 20px 44px rgba(25,18,25,.12);
      background:#f8eef4;
      justify-self:center;
    }
    .sobre-card img{width:100%;height:100%;object-fit:cover}
    .sobre-badge{
      position:absolute;
      left:18px;right:18px;bottom:18px;
      padding:14px 16px;
      border-radius:20px;
      background:rgba(20,13,18,.55);
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
      border:1px solid rgba(255,255,255,.14);
      color:#fff;
    }
    .sobre-badge strong{display:block;font-size:18px}
    .sobre-badge span{display:block;margin-top:4px;font-size:13px;color:rgba(255,255,255,.78)}
    .sobre-texto h2{font-family:'Great Vibes','Segoe Script','Brush Script MT',cursive;font-size:clamp(42px,6vw,64px);line-height:1.05;font-weight:400;letter-spacing:0}
    .sobre-texto p{margin-top:16px;font-size:15px;line-height:1.82;color:#4f4750}
    .sobre-highlight{
      margin-top:18px;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }
    .sobre-chip{
      padding:14px 14px;
      border-radius:18px;
      background:var(--pink-soft);
      border:1px solid #f7d5e5;
      font-size:13px;
      font-weight:700;
      color:#523844;
      text-align:center;
    }


    .reviews-balloons{
      padding:68px 0 30px;
      background:
        radial-gradient(700px 260px at 50% 35%, rgba(230,63,152,.08), transparent 70%),
        linear-gradient(180deg,#fff 0%, #fff8fb 100%);
      overflow:hidden;
    }
    .reviews-stage{
      position:relative;
      min-height:560px;
      margin-top:24px;
      border-radius:36px;
      padding:44px 28px 34px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,247,251,.98)),
        repeating-linear-gradient(135deg, rgba(230,63,152,.035) 0 18px, rgba(255,255,255,0) 18px 90px);
      border:1px solid #f3dde8;
      box-shadow:0 24px 60px rgba(31,18,28,.08);
    }
    .reviews-intro{
      max-width:560px;
      text-align:center;
      margin:0 auto;
      position:relative;
      z-index:2;
    }
    .reviews-intro .section-title{
      margin-bottom:8px;
    }
    .reviews-copy{
      font-size:15px;
      line-height:1.75;
      color:#6d636d;
      max-width:520px;
      margin:0 auto;
    }
    .reviews-score{
      display:inline-flex;
      align-items:center;
      gap:10px;
      margin-top:18px;
      padding:12px 18px;
      border-radius:999px;
      background:#fff;
      border:1px solid #f1d8e6;
      box-shadow:0 12px 28px rgba(31,18,28,.06);
      font-size:15px;
      font-weight:800;
      color:#231b20;
    }
    .reviews-score-stars{
      color:#f4b400;
      letter-spacing:2px;
      font-size:16px;
    }
    .reviews-badge-note{
      display:block;
      margin-top:10px;
      font-size:13px;
      color:#8a7f88;
      font-weight:600;
    }
    .reviews-google-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      margin-top:20px;
      min-height:46px;
      padding:12px 20px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--pink-strong),var(--rose));
      color:#fff;
      font-size:14px;
      font-weight:800;
      box-shadow:0 14px 32px rgba(230,63,152,.25);
      transition:transform .18s ease, box-shadow .18s ease;
      position:relative;
      z-index:3;
    }
    .reviews-google-btn:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(230,63,152,.3);
    }
    .reviews-list{
      position:relative;
      min-height:360px;
      margin-top:38px;
    }
    .review-bubble{
      position:absolute;
      width:min(100%, 310px);
      padding:18px 18px 16px;
      background:#fff;
      border:1px solid #f1dce8;
      border-radius:24px;
      box-shadow:0 18px 42px rgba(31,18,28,.09);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      color:#2f262c;
      z-index:2;
    }
    .review-bubble:hover{
      transform:translateY(-4px);
      border-color:#efc8dc;
      box-shadow:0 22px 48px rgba(31,18,28,.14);
    }
    .review-bubble::after{
      content:"";
      position:absolute;
      width:32px;
      height:32px;
      background:#fff;
      border-right:1px solid #f1dce8;
      border-bottom:1px solid #f1dce8;
      bottom:-11px;
      transform:rotate(45deg);
      z-index:1;
    }
    .review-bubble.left::after{left:34px;}
    .review-bubble.center::after{left:calc(50% - 16px);}
    .review-bubble.right::after{right:34px;}
    .review-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
      position:relative;
      z-index:2;
    }
    .review-person{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .review-avatar{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,#f9d9ea,#f5a9cf);
      color:#8d2e64;
      font-size:16px;
      font-weight:800;
      flex-shrink:0;
      overflow:hidden;
    }
    .review-avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
      border-radius:50%;
    }
    .review-meta{
      min-width:0;
    }
    .review-name{
      display:block;
      font-size:15px;
      font-weight:800;
      color:#231b20;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .review-time{
      display:block;
      margin-top:3px;
      font-size:12px;
      color:#8b8188;
      font-weight:600;
    }
    .google-icon{
      width:26px;
      height:26px;
      flex-shrink:0;
    }
    .review-stars{
      margin-bottom:12px;
      color:#f4b400;
      letter-spacing:2px;
      font-size:18px;
      font-weight:800;
      position:relative;
      z-index:2;
    }
    .review-text{
      font-size:14px;
      line-height:1.7;
      color:#4f454d;
      position:relative;
      z-index:2;
    }
    .review-bubble.b1{top:18px;left:8px;}
    .review-bubble.b2{top:0;right:8px;}
    .review-bubble.b3{left:50%;bottom:0;transform:translateX(-50%);}
    .review-bubble.b3:hover{transform:translateX(-50%) translateY(-4px);}
    .reviews-center-orb{
      position:absolute;
      inset:148px 0 auto 0;
      width:220px;
      height:220px;
      margin:auto;
      border-radius:50%;
      background:radial-gradient(circle at 35% 30%, rgba(255,255,255,.95), rgba(255,230,243,.78) 46%, rgba(230,63,152,.14) 100%);
      filter:blur(2px);
      opacity:.95;
      z-index:1;
      box-shadow:0 24px 60px rgba(230,63,152,.12);
      pointer-events:none;
    }

    @media (max-width:980px){
      .reviews-stage{
        min-height:auto;
        padding:36px 18px 28px;
      }
      .reviews-list{
        min-height:auto;
        display:grid;
        gap:18px;
        margin-top:26px;
      }
      .reviews-center-orb{display:none;}
      .review-bubble,
      .review-bubble.b1,
      .review-bubble.b2,
      .review-bubble.b3{
        position:relative;
        width:100%;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;
        transform:none;
        max-width:none;
      }
      .review-bubble.b3:hover{transform:translateY(-4px);}
      .review-bubble::after{
        left:34px !important;
        right:auto !important;
      }
    }

    @media (max-width:720px){
      .reviews-balloons{padding:54px 0 18px;}
      .reviews-stage{border-radius:28px;}
      .review-bubble{border-radius:20px;}
      .reviews-score{
        flex-direction:column;
        gap:6px;
        padding:14px 18px;
      }
      .reviews-google-btn{
        width:100%;
      }
    }

    .contact-section{
      padding:56px 0 42px;
      background:var(--bg);
    }
    .contact-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
      margin-top:28px;
    }
    .contact-card,
    .map-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:26px;
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .contact-card{padding:24px}
    .contact-card h3,
    .map-card h3{font-family:'Great Vibes','Segoe Script','Brush Script MT',cursive;font-size:clamp(34px,4.6vw,48px);line-height:1.08;font-weight:400;letter-spacing:0;margin-bottom:18px}
    .info-list{display:grid;gap:16px}
    .info-item{padding:14px 0;border-bottom:1px solid #f2edf1}
    .info-item:last-child{border-bottom:none;padding-bottom:0}
    .info-label{font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#9a8e97}
    .info-value{margin-top:6px;font-size:15px;line-height:1.65;color:#2d242a}
    .info-value a{color:var(--pink-strong);font-weight:700}
    .map-head{padding:24px 24px 0}
    .map-frame{height:100%;min-height:320px;margin-top:16px;border-top:1px solid #f2edf1}
    .map-frame iframe{width:100%;height:100%;border:0}

    .footer-premium{
      max-width:var(--max);
      margin:0 auto;
      padding:30px 18px 34px;
      text-align:center;
      color:#8a8087;
      font-size:13px;
      line-height:1.8;
    }
    .footer-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      margin-bottom:14px;
      padding:10px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--border);
      color:var(--pink-strong);
      font-weight:800;
    }

    .wa-container{
      position:fixed;
      right:18px;
      bottom:18px;
      z-index:9998;
    }
    .wa-flutuante{
      width:58px;height:58px;
      border:none;
      border-radius:50%;
      display:grid;place-items:center;
      background:#25d366;
      box-shadow:0 12px 28px rgba(37,211,102,.28);
      cursor:pointer;
    }
    .wa-popup{
      display:none;
      flex-direction:column;
      width:min(300px,calc(100vw - 36px));
      margin-bottom:12px;
      border-radius:20px;
      overflow:hidden;
      background:#fff;
      border:1px solid #dcefe2;
      box-shadow:0 16px 36px rgba(0,0,0,.14);
      opacity:0;
      transform:translateY(10px) scale(.98);
      transition:opacity .2s ease, transform .2s ease;
      transform-origin:bottom right;
    }
    .wa-popup.show{opacity:1;transform:translateY(0) scale(1)}
    .wa-popup-header{
      display:flex;align-items:center;justify-content:space-between;
      padding:16px 18px;
      background:#0b8f66;
      color:#fff;
      font-weight:700;
      letter-spacing:.01em;
    }
    .wa-close{background:none;border:none;color:#fff;font-size:24px;cursor:pointer}
    .wa-popup-body{padding:18px;background:#efeae2}
    .wa-message{
      display:inline-block;
      max-width:220px;
      padding:12px 14px;
      border-radius:0 14px 14px 14px;
      background:#fff;
      font-size:14px;
      line-height:1.55;
      color:#161616;
    }
    .wa-popup-footer{padding:16px;background:#fff}
    .wa-btn-iniciar{
      display:block;
      padding:12px 14px;
      border-radius:999px;
      text-align:center;
      font-weight:800;
      color:#fff;
      background:#25d366;
    }

    
    @media (max-width:640px){
      .hero-card h1{font-size:56px;line-height:1.02}
      .section-title,.sobre-texto h2{font-size:48px;line-height:1.04}
      .contact-card h3,.map-card h3{font-size:40px;line-height:1.05}
    }

    @media (max-width:980px){
      .menu{
        display:none;
        position:absolute;
        top:calc(var(--header-h) - 4px);
        left:16px;right:16px;
        padding:12px;
        border-radius:20px;
        background:rgba(255,255,255,.98);
        border:1px solid var(--border);
        box-shadow:var(--shadow);
        flex-direction:column;
        align-items:stretch;
        gap:8px;
      }
      .menu.show{display:flex}
      .menu a{
        padding:12px 14px;
        border-radius:14px;
        background:#faf7fa;
      }
      .menu a::after{display:none}
      .menu-toggle{display:grid;place-items:center}
      .actions .btn-primary{display:none}
      .services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .sobre-container,
      .contact-grid{grid-template-columns:1fr}
      .sobre-texto{text-align:center}
      .sobre-highlight{grid-template-columns:1fr}
    }

    @media (max-width:720px){
      :root{--header-h:68px}
      .nav{padding:0 14px}
      .brand-copy span{display:none}
      .hero{
        min-height:0;
        height:clamp(540px,76svh,620px);
        padding-top:var(--header-h);
      }
      .hero-video video{object-position:52% center}
      .hero-overlay{
        background:
          linear-gradient(180deg,rgba(20,9,16,.06) 14%,rgba(20,9,16,.28) 45%,#180f15 100%);
      }
      .hero-content{
        min-height:100%;
        width:100%;
        align-items:flex-end;
        padding:84px 18px 24px;
        text-align:left;
      }
      .hero-card{
        width:100%;
        padding:0;
        border:0;
        border-radius:0;
        background:transparent;
        backdrop-filter:none;
        -webkit-backdrop-filter:none;
        box-shadow:none;
      }
      .hero-kicker{display:none}
      .hero-card h1{max-width:390px;font-family:'Cormorant Garamond',serif;font-size:clamp(43px,13vw,56px);line-height:.94;margin-bottom:12px;text-shadow:0 3px 16px rgba(0,0,0,.45)}
      .hero-card p{max-width:350px;margin:0;font-size:12.5px;line-height:1.5;color:rgba(255,255,255,.8)}
      .hero-actions{display:grid;grid-template-columns:1.15fr .85fr;gap:8px;margin-top:14px}
      .hero-actions .btn{width:100%;min-height:43px;padding:9px 12px;font-size:12px}
      .hero-points{display:none}
      .services{padding-top:54px}
      .promo-showcase-frame{min-height:0;background:radial-gradient(circle at 90% 10%,rgba(255,82,166,.22),transparent 31%),linear-gradient(145deg,#180f15,#2a1020 64%,#140b10)}.promo-showcase-frame::before{right:-32px;top:60px;transform:none;font-size:92px}.promo-showcase-frame::after{width:190px;height:190px;right:-95px;top:-105px;box-shadow:0 0 0 35px rgba(255,255,255,.018)}.promo-showcase-copy{display:grid;grid-template-columns:1fr;width:100%;padding:34px 18px 55px}.promo-live-badge,.promo-overline,.promo-showcase h2,.promo-service,.promo-meta,.promo-price-panel,.promo-showcase-actions{grid-column:1}.promo-live-badge{grid-row:auto}.promo-overline{margin-top:20px}.promo-showcase h2{max-width:390px;font-size:clamp(42px,13vw,54px);line-height:.95}.promo-service{font-size:12px}.promo-meta{gap:7px 14px;margin-top:14px}.promo-meta span{font-size:9.5px}.promo-price-panel{grid-row:auto;width:100%;margin-top:22px;padding:18px 20px;background:rgba(255,255,255,.045)}.promo-price-panel strong{font-size:48px}.promo-showcase-actions{margin-top:18px;padding-bottom:0}.promo-showcase-actions .btn{width:100%}.promo-showcase-actions>span{max-width:none}.promo-pagination{right:18px;bottom:20px}

      .section-title{font-size:40px}
      .sobre-texto h2{font-size:40px}
      .contact-card h3,
      .map-card h3{font-size:28px}
      .services-top{margin-bottom:20px}
      .services-grid{grid-template-columns:1fr;gap:14px}
      .service-card{padding:18px}
      .service-top{align-items:center}
    }

    @media (max-width:380px){
      .hero{height:500px}
      .hero-card h1{font-size:35px}
      .hero-actions{grid-template-columns:1fr}
      .hero-actions .btn{min-height:42px;padding:9px 12px}
    }

    @media (prefers-reduced-motion:reduce){
      html{scroll-behavior:auto}
      *{animation:none !important;transition:none !important}
    }
  
    @media (max-width:768px){
      .section-title{font-size:clamp(32px,10vw,42px);line-height:1.1}
      .contact-card h3,
      .map-card h3{font-size:clamp(30px,9vw,38px);line-height:1.12}
    }



    .hero-policies{
      position:relative;
      z-index:3;
      max-width:1100px;
      margin:-26px auto 0;
      padding:0 20px;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
    }
    .hero-policy-item{
      background:#fff;
      border:1px solid rgba(255,42,161,.14);
      border-radius:18px;
      padding:16px 18px;
      box-shadow:0 10px 28px rgba(35,27,32,.06);
      display:flex;
      flex-direction:column;
      gap:4px;
      text-align:center;
    }
    .hero-policy-item strong{
      font-size:18px;
      color:#c72f82;
      font-weight:800;
    }
    .hero-policy-item span{
      font-size:13px;
      color:#655b63;
      line-height:1.4;
    }
    @media (max-width:900px){
      .hero-policies{
        grid-template-columns:1fr;
        margin:-10px auto 0;
        gap:10px;
        padding:0 14px;
      }
      .hero-policy-item{
        border-radius:14px;
        padding:14px 16px;
      }
      .hero-policy-item strong{font-size:17px}
      .hero-policy-item span{font-size:12.5px}
    }


    .contact-card h3,
.map-card h3{
  font-family:'Great Vibes','Segoe Script','Brush Script MT',cursive;
  font-size:clamp(34px,4.6vw,38px);
  line-height:1.08;
  font-weight:400;
  letter-spacing:0;
  margin-bottom:18px;
}
    @media (max-width:768px){
      .contact-card h3,
      .map-card h3{
        font-size: 28px !important;
      }
    }

/* Oferta compacta: integrada ao vídeo e alimentada pelo painel administrativo. */
.promo-showcase{padding:38px 18px 46px;background:#180f15}
.promo-showcase .section-shell{max-width:1180px;padding:0 18px}
.promo-showcase-frame{
  min-height:0;
  display:grid;
  place-items:center;
  overflow:visible;
  border:0;
  background:transparent;
}
.promo-showcase-frame::before,
.promo-showcase-frame::after{display:none}
.promo-showcase-copy{
  display:flex;
  flex-direction:column;
  align-items:center;
  width:min(100%,390px);
  padding:30px 28px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 20px 55px rgba(0,0,0,.25);
  text-align:center;
}
.promo-live-badge{
  padding:7px 13px;
  border-radius:999px;
  background:#b76e79;
  color:#fff;
  font-size:9px;
  letter-spacing:.14em;
}
.promo-live-badge i{display:none}
.promo-overline{display:none}
.promo-showcase h2{
  order:3;
  margin-top:7px;
  font-family:Inter,system-ui,sans-serif;
  font-size:26px;
  line-height:1.1;
  font-weight:750;
  color:#fff;
}
.promo-service{
  order:2;
  margin-top:20px;
  font-size:15px;
  line-height:1.3;
  font-weight:400;
  color:rgba(255,255,255,.78);
}
.promo-price-panel{
  order:4;
  display:flex;
  align-items:center;
  width:auto;
  margin:22px 0 0;
  padding:0;
  border:0;
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  text-align:center;
}
.promo-price-panel>span{display:none}
.promo-price-panel strong{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  font-size:46px;
  line-height:1;
  font-weight:800;
  color:#d99aa4;
}
.promo-price-panel small{margin-top:8px;color:rgba(255,255,255,.68);font-size:10px}
.promo-meta{order:5;justify-content:center;gap:8px 14px;margin-top:16px}
.promo-meta span{padding:0;color:rgba(255,255,255,.58);font-size:9px}
.promo-meta span::before{display:none}
.promo-showcase-actions{order:6;display:flex;flex-direction:column;width:100%;gap:12px;margin-top:22px}
.promo-showcase-actions .btn-primary{
  width:100%;
  min-height:48px;
  border-radius:10px;
  background:#b76e79;
  color:#fff;
  box-shadow:none;
}
.promo-showcase-actions>span{max-width:310px;color:rgba(255,255,255,.47);font-size:9px;line-height:1.45}
.promo-pagination{right:50%;bottom:-25px;transform:translateX(50%)}

@media (max-width:720px){
  .hero{height:clamp(500px,68svh,550px)}
  .hero-content{padding-bottom:16px}
  .hero-card{display:flex;flex-direction:column}
  .hero-card h1{order:1}
  .hero-actions{order:2;margin-top:2px}
  .hero-card p{
    order:3;
    margin-top:13px;
    padding-left:11px;
    border-left:2px solid rgba(255,109,189,.72);
    font-size:11px;
    line-height:1.45;
    color:rgba(255,255,255,.72);
  }
  .hero-points{order:4}
  .promo-showcase{padding:12px 14px 32px}
  .promo-showcase .section-shell{padding:0}
  .promo-showcase-copy{width:100%;padding:22px 20px;border-radius:16px}
  .promo-showcase h2{font-size:25px}
  .promo-service{font-size:14px}
  .promo-price-panel{width:auto;margin-top:20px;padding:0;background:transparent}
  .promo-price-panel strong{font-size:42px}
  .promo-showcase-actions{margin-top:20px}
  .promo-pagination{right:50%;bottom:-22px}
}

/* Identidade editorial 2026 */
.editorial-eyebrow{display:block;margin-bottom:10px;color:#bd1f66;font-size:11px;font-weight:850;letter-spacing:.16em;text-transform:uppercase}
.hero{height:auto;min-height:clamp(650px,88svh,860px);background:#170d14}
.hero-gallery,.hero-slide{position:absolute;inset:0;width:100%;height:100%}
.hero-gallery{z-index:0;overflow:hidden}
.hero-slide{object-fit:cover;object-position:center 38%;opacity:0;transform:scale(1.025);transition:opacity 1.1s ease,transform 7s ease}
.hero-slide:nth-child(1){object-position:center 16%}.hero-slide:nth-child(2){object-position:center 20%}.hero-slide:nth-child(3){object-position:center 18%}
.hero-slide.is-active{opacity:1;transform:scale(1)}
.hero-overlay{background:linear-gradient(90deg,rgba(21,10,17,.84) 0%,rgba(21,10,17,.55) 48%,rgba(21,10,17,.19) 78%),linear-gradient(0deg,rgba(20,10,16,.75),transparent 48%)}
.hero-content{min-height:clamp(650px,88svh,860px);padding-top:calc(var(--header-h) + 50px)}
.hero-card h1{font-family:'Great Vibes','Segoe Script','Brush Script MT',cursive;font-size:clamp(65px,7.6vw,104px);font-weight:400;line-height:1.02;letter-spacing:0}
.hero-card p{font-size:17px;max-width:560px;color:rgba(255,255,255,.82)}
.hero-club-link{display:inline-flex;align-items:center;gap:12px;margin-top:26px;color:rgba(255,255,255,.8);font-size:13px;font-weight:650}
.hero-club-link span{color:#fff;font-weight:850}.hero-club-link::before{content:"";width:38px;height:1px;background:#efb5c8}
.hero-club-access{display:flex;align-items:center;gap:18px;flex-wrap:wrap}.hero-member-link{margin-top:26px;padding:8px 12px;border:1px solid rgba(255,255,255,.3);border-radius:99px;color:#fff;font-size:12px;font-weight:800}
.btn-subscriber{border:1px solid #e23a87;background:#fff;color:#a71858;box-shadow:0 8px 22px rgba(183,30,98,.1)}.btn-subscriber svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round}.menu-subscriber{display:none}
.hero-controls{display:flex;align-items:center;gap:14px;margin-top:24px}.hero-dots{display:flex;gap:8px}.hero-dots i{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.45)}.hero-dots i.is-active{width:24px;border-radius:99px;background:#fff}
.hero-pause{min-height:34px;padding:6px 11px;border:1px solid rgba(255,255,255,.28);border-radius:99px;background:rgba(10,6,9,.28);color:#fff;font-size:11px;cursor:pointer}
.services{padding:86px 0 76px}.services-top{max-width:720px;margin-bottom:24px}.services-top .section-title{font-family:'Cormorant Garamond',serif;font-size:clamp(44px,5.2vw,68px);font-weight:600;line-height:.96}
.service-filters{display:flex;gap:9px;overflow-x:auto;padding:2px 1px 22px;scrollbar-width:thin}.service-filters button{min-height:44px;padding:10px 18px;border:1px solid #e8dce2;border-radius:99px;background:#fff;color:#5b4c54;font-weight:750;white-space:nowrap;cursor:pointer}.service-filters button.is-active{border-color:#2e1723;background:#2e1723;color:#fff}
.editorial-services{grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.editorial-services .service-card{padding:0;gap:0;overflow:hidden;border-radius:22px}.editorial-services .service-card>img{width:100%;aspect-ratio:1/.78;object-fit:cover;background:#f8edf2}.service-card-body{display:flex;flex:1;flex-direction:column;padding:19px}.service-kind{margin-bottom:7px;color:#c12469;font-size:10px;font-weight:850;letter-spacing:.13em;text-transform:uppercase}.editorial-services .service-name{font-size:20px}.editorial-services .service-description{min-height:42px;line-height:1.5}.editorial-services .service-meta strong{font-size:18px}.editorial-services .service-card[hidden]{display:none}.gallery-note{margin-top:20px;color:#756a72;font-size:12px;line-height:1.6}
.home-club{padding:90px 0;background:#24111c;color:#fff}.home-club-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(36px,7vw,90px);align-items:center}.home-club-copy h2{max-width:520px;font-family:'Cormorant Garamond',serif;font-size:clamp(46px,5.6vw,72px);font-weight:600;line-height:.94}.home-club-copy p{max-width:540px;margin-top:22px;color:rgba(255,255,255,.7);font-size:16px;line-height:1.7}.home-club-actions{display:flex;align-items:center;gap:20px;margin-top:26px;flex-wrap:wrap}.home-club .text-link{font-weight:750;text-decoration:underline;text-underline-offset:5px}.home-club-visual{display:grid;grid-template-columns:1fr 1fr;gap:14px}.home-club-visual figure{position:relative;min-height:430px;overflow:hidden;border-radius:24px}.home-club-visual figure:nth-child(2){margin-top:45px}.home-club-visual img{width:100%;height:100%;object-fit:cover}.home-club-visual figcaption{position:absolute;inset:auto 14px 14px;padding:15px;border:1px solid rgba(255,255,255,.16);border-radius:15px;background:rgba(23,9,16,.68);backdrop-filter:blur(10px)}.home-club-visual strong,.home-club-visual span{display:block}.home-club-visual span{margin-top:4px;color:rgba(255,255,255,.7);font-size:12px}
@media(max-width:980px){.editorial-services{grid-template-columns:repeat(2,minmax(0,1fr))}.home-club-grid{grid-template-columns:1fr}.home-club-copy{max-width:720px}}
@media(max-width:980px){.actions .btn-subscriber{display:none}.menu-subscriber{display:block!important}}
@media(max-width:720px){.hero{height:auto;min-height:690px}.hero-content{min-height:690px;align-items:flex-end;padding:120px 22px 48px}.hero-slide:nth-child(1){object-position:58% 10%}.hero-slide:nth-child(2){object-position:52% 12%}.hero-slide:nth-child(3){object-position:54% 10%}.hero-overlay{background:linear-gradient(0deg,rgba(18,8,14,.95) 5%,rgba(18,8,14,.62) 62%,rgba(18,8,14,.18) 100%)}.hero-card h1{font-size:57px;line-height:1.03}.hero-card p{margin-top:0;padding:0;border:0;font-size:15px}.hero-actions{margin-top:22px}.hero-actions .btn{width:100%}.hero-club-access{display:grid;gap:10px}.hero-club-link,.hero-member-link{margin-top:12px}.hero-club-link{align-items:flex-start}.hero-member-link{text-align:center}.editorial-services{grid-template-columns:1fr}.editorial-services .service-card{display:grid;grid-template-columns:132px 1fr;min-height:205px}.editorial-services .service-card>img{height:100%;aspect-ratio:auto}.service-card-body{padding:16px}.editorial-services .service-description{min-height:0}.editorial-services .service-meta{align-items:flex-start;flex-direction:column}.editorial-services .service-button{width:100%}.home-club{padding:70px 0}.home-club-visual figure{min-height:300px}.home-club-visual figure:nth-child(2){margin-top:28px}}
@media(prefers-reduced-motion:reduce){.hero-slide{transition:none;transform:none}}

/* Enquadramento editorial exclusivo do desktop. O mobile aprovado é preservado. */
@media(min-width:721px){
 .hero-gallery{background:#130b10}
 .hero-gallery .hero-slide{margin:0;overflow:hidden;background:#130b10;isolation:isolate}
 .hero-gallery .hero-slide::before{content:"";position:absolute;z-index:0;inset:-34px;background-image:linear-gradient(rgba(16,8,13,.25),rgba(16,8,13,.42)),var(--slide-image);background-position:center;background-size:cover;filter:blur(25px);transform:scale(1.08)}
 .hero-gallery .hero-slide::after{content:"";position:absolute;z-index:2;inset:0;background:linear-gradient(90deg,rgba(14,7,11,.72) 0%,rgba(14,7,11,.14) 15%,transparent 31%,transparent 69%,rgba(14,7,11,.14) 85%,rgba(14,7,11,.72) 100%);pointer-events:none}
 .hero-gallery .hero-slide img{position:absolute;z-index:1;inset:0;width:100%;height:100%;object-fit:contain;object-position:center;filter:saturate(.96) contrast(1.01);-webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 7%,#000 93%,transparent 100%);mask-image:linear-gradient(90deg,transparent 0%,#000 7%,#000 93%,transparent 100%)}
}
@media(max-width:720px){
 .hero-gallery .hero-slide{margin:0;overflow:hidden}
 .hero-gallery .hero-slide::before,.hero-gallery .hero-slide::after{display:none}
 .hero-gallery .hero-slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:none;-webkit-mask-image:none;mask-image:none}
 .hero-gallery .hero-slide:nth-child(1) img{object-position:58% 8%}
 .hero-gallery .hero-slide:nth-child(2) img{object-position:52% 9%}
 .hero-gallery .hero-slide:nth-child(3) img{object-position:54% 8%}
}

/* Hero fiel ao esboço aprovado — desktop e mobile */
@media(min-width:721px){
  .hero-content{justify-content:center;text-align:center}
  .hero-card{display:flex;flex-direction:column;align-items:center;width:min(100%,820px)}
  .hero-card p{margin-inline:auto}
  .hero-actions,.hero-club-access,.hero-controls{justify-content:center}
  .hero-club-link::before{width:52px}
}
@media(max-width:720px){
  header{height:64px}
  :root{--header-h:64px}
  .nav{padding-inline:15px}
  .brand{gap:8px}.brand-logo{width:30px;height:30px}.brand-copy strong{font-size:15px}.menu-toggle{width:43px;height:43px}
  .hero{min-height:720px}
  .hero-content{min-height:720px;align-items:flex-end;padding:250px 20px 25px;text-align:center}
  .hero-card{display:flex;flex-direction:column;align-items:stretch;width:100%}
  .hero-kicker{display:none}
  .hero-card h1{order:1;max-width:350px;margin:0 auto 10px;font-family:'Great Vibes','Segoe Script','Brush Script MT',cursive;font-size:clamp(48px,14vw,58px);font-weight:400;line-height:1.02;text-align:center}
  .hero-card p{order:2;max-width:330px;margin:0 auto!important;padding:0!important;border:0!important;font-size:12.5px;line-height:1.5;text-align:center}
  .hero-actions{order:3;display:grid;grid-template-columns:1fr;gap:8px;margin-top:15px}
  .hero-actions .btn{min-height:44px;border-radius:999px;font-size:12px}
  .hero-club-access{order:4;display:flex;flex-direction:column;align-items:center;gap:7px;margin-top:12px}
  .hero-club-link{display:flex;justify-content:center;gap:10px;width:100%;margin:0;font-size:11px;text-align:center}
  .hero-club-link::before,.hero-club-link::after{content:"";width:34px;height:1px;background:#d7af85;flex:0 0 34px}
  .hero-club-link span{font-size:12px}.hero-club-link{font-size:0}.hero-club-link span::after{content:" · Conheça o plano";font-size:11px;font-weight:600;color:rgba(255,255,255,.75)}
  .hero-member-link{margin:0;padding:6px 12px;border:0;color:rgba(255,255,255,.82);font-size:11px;text-decoration:underline;text-underline-offset:4px}
  .hero-controls{order:5;justify-content:center;margin-top:10px}.hero-pause{min-height:30px;padding:5px 10px}
  .hero-slide:nth-child(1){object-position:58% 8%}.hero-slide:nth-child(2){object-position:52% 9%}.hero-slide:nth-child(3){object-position:54% 8%}
  .hero-overlay{background:linear-gradient(0deg,rgba(17,7,13,.97) 0%,rgba(17,7,13,.76) 38%,rgba(17,7,13,.17) 77%)}
}
@media(max-width:380px){
  .hero{min-height:700px}.hero-content{min-height:700px;padding:235px 17px 20px}.hero-card h1{font-size:49px}.hero-card p{font-size:11.5px}
}

.partner-invite{padding:42px 0;background:#fff8fb;border-bottom:1px solid #f0dfe7}.partner-invite-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:50px;align-items:center}.partner-invite h2{margin:4px 0 10px;font-family:'Cormorant Garamond',serif;font-size:clamp(40px,4.8vw,62px);line-height:1;color:#311824}.partner-invite p{max-width:650px;color:#66545d;font-size:17px;line-height:1.7}.partner-invite-side{padding:24px;border:1px solid #edd9e2;border-radius:20px;background:#fff}.partner-invite-side ul{display:grid;gap:9px;margin:0 0 18px;padding-left:20px;color:#68565f}.partner-invite-side .btn{width:100%}@media(max-width:720px){.partner-invite{padding:34px 0}.partner-invite-grid{grid-template-columns:1fr;gap:20px}.partner-invite h2{font-size:42px}.partner-invite p{font-size:15px}.partner-invite-side{padding:18px}}

/* Desktop final: preenchimento total, sem colunas pretas; mobile permanece intacto. */
@media(min-width:721px){
  .hero-gallery .hero-slide{background:#170d14}
  .hero-gallery .hero-slide::before{display:none}
  .hero-gallery .hero-slide::after{display:block;background:linear-gradient(90deg,rgba(18,8,14,.54) 0%,rgba(18,8,14,.2) 22%,rgba(18,8,14,.04) 50%,rgba(18,8,14,.18) 82%,rgba(18,8,14,.42) 100%)}
  .hero-gallery .hero-slide img{object-fit:cover;filter:saturate(.96) contrast(1.01);-webkit-mask-image:none;mask-image:none}
  .hero-gallery .hero-slide:nth-child(1) img{object-position:center 8%}
  .hero-gallery .hero-slide:nth-child(2) img{object-position:center 49%}
  .hero-gallery .hero-slide:nth-child(3) img{object-position:center 43%}
}
