* { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --bg: #0f0f11;
      --bg-2: #18181c;
      --light: #f8f6f2;
      --text: #efebe5;
      --muted: #b9afa3;
      --dark-text: #161616;
      --accent: #c77949;
      --accent-2: #e1af7c;
      --line: rgba(255,255,255,.12);
      --container: 1240px;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Plus Jakarta Sans", sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .18;
      background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 70px 70px;
      mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
      z-index: 0;
    }
    .container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      z-index: 100;
      background: rgba(255,255,255,.08);
    }
    .progress span {
      display: block;
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      box-shadow: 0 0 18px rgba(225,175,124,.45);
    }
    .cursor-aura {
      position: fixed;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 1;
      mix-blend-mode: screen;
      background: radial-gradient(circle, rgba(225,175,124,.16), rgba(199,121,73,.08), transparent 70%);
    }

    .topbar {
      position: fixed;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: min(calc(100% - 24px), 1240px);
      min-height: 68px;
      background: rgba(15,15,17,.72);
      border: none;
      backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      z-index: 90;
    }
    .brand img { height: 44px; width: auto; }
    .menu { display: flex; gap: 6px; align-items: center; }
    .menu a {
      font-size: .66rem;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      color: #c6bdb2;
      padding: 8px 10px;
      transition: color .25s ease, background .25s ease;
    }
    .menu a:hover { color: #fff; background: rgba(255,255,255,.05); }
    .btn {
      min-height: 40px;
      padding: 0 15px;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: .64rem;
      text-transform: uppercase;
      letter-spacing: 1.3px;
      font-weight: 600;
      cursor: pointer;
      transition: transform .28s ease, box-shadow .28s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .lucide {
      width: 16px;
      height: 16px;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .icon-whatsapp {
      width: 15px;
      height: 15px;
      display: inline-block;
      color: currentColor;
      flex-shrink: 0;
    }
    .icon-whatsapp-float {
      width: 24px;
      height: 24px;
    }

    .btn-accent {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      box-shadow: 0 12px 24px rgba(199,121,73,.3);
    }
    .btn-line {
      border-color: rgba(255,255,255,.24);
      color: #e8e1d7;
      background: rgba(255,255,255,.02);
    }

    .hero {
      min-height: 100vh;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 18%, rgba(199,121,73,.26), transparent 38%),
        radial-gradient(circle at 88% 14%, rgba(225,175,124,.17), transparent 32%),
        linear-gradient(180deg, #101014, #17171c);
    }
    .hero-media {
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: .52;
    }
    .layer {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: saturate(1.1);
    }
    .layer.a {
      background-image: url("../images/Fotos/WLF_3521.jpg");
      clip-path: polygon(0 0, 66% 0, 47% 100%, 0 100%);
      animation: driftA 18s ease-in-out infinite alternate;
    }
    .layer.b {
      background-image: url("../images/Fotos/WLF_0842.jpeg");
      clip-path: polygon(60% 0, 100% 0, 100% 54%, 44% 60%);
      animation: driftB 22s ease-in-out infinite alternate;
    }
    .layer.c {
      background-image: url("../images/Fotos/WLF_0799.JPG");
      clip-path: polygon(50% 54%, 100% 50%, 100% 100%, 40% 100%);
      animation: driftC 20s ease-in-out infinite alternate;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(7,7,8,.66), rgba(7,7,8,.8));
    }
    .hero-content {
      text-align: center;
      max-width: 980px;
      z-index: 3;
      display: grid;
      gap: 22px;
      justify-items: center;
      padding-top: 96px;
    }
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: none;
      padding: 10px 14px;
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: 2.2px;
      color: #f0d6b8;
      background: rgba(255,255,255,.04);
    }
    .tag::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--accent), var(--accent-2));
    }
    .hero h1 {
      font-size: clamp(1.6rem, 5vw, 4.1rem);
      line-height: .96;
      font-weight: 200;
      letter-spacing: -.03em;
      max-width: 900px;
      text-wrap: balance;
    }
    .hero h1 strong {
      font-weight: 500;
      background: linear-gradient(135deg, #f9efe3, var(--accent-2));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero p {
      max-width: 710px;
      color: #ddd2c5;
      line-height: 1.8;
      font-size: clamp(.96rem, 1.8vw, 1.16rem);
      font-weight: 300;
      margin-top: -6px;
    }
    .hero-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: -4px; }
    .kpis {
      margin-top: 16px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 10px;
      width: min(100%, 760px);
    }
    .kpi {
      border: none;
      background: rgba(0,0,0,.28);
      padding: 13px;
      text-align: center;
    }
    .kpi strong { display: block; font-size: 1.3rem; font-weight: 500; color: #f1dcc6; }
    .kpi span {
      display: block;
      margin-top: 4px;
      font-size: .65rem;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: #ccbca9;
    }

    .section {
      padding: 92px 0;
      position: relative;
      overflow: hidden;
    }
    .section.light {
      background:
        radial-gradient(circle at 80% 0%, rgba(225,175,124,.22), transparent 32%),
        linear-gradient(180deg, #f8f6f2 0%, #f2ede7 100%);
      color: var(--dark-text);
    }
    .section.dark {
      background: linear-gradient(180deg, #141419 0%, #101014 100%);
      color: #f2eee7;
    }
    .head {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      align-items: end;
      margin-bottom: 24px;
    }
    .head h2 {
      font-size: clamp(1.18rem, 2.4vw, 2rem);
      line-height: 1.08;
      font-weight: 300;
      max-width: 700px;
      letter-spacing: -.02em;
    }
    .head h2 strong { font-weight: 600; color: var(--accent); }
    .head p {
      max-width: 560px;
      line-height: 1.75;
      font-weight: 300;
      color: #5d5852;
    }
    .section.dark .head p { color: #b8afa4; }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
    }
    .service {
      border: none;
      background: rgba(255,255,255,.82);
      padding: 20px;
      min-height: 200px;
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .service:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
    .service i { width: 22px; height: 22px; color: var(--accent); margin-bottom: 12px; }
    .service h3 { font-size: .94rem; font-weight: 600; margin-bottom: 8px; }
    .service p { font-size: .87rem; line-height: 1.65; color: #5d5852; font-weight: 300; }

    .reel-wrap {
      margin-top: 20px;
      border-top: none;
      border-bottom: none;
      padding: 14px 0;
      overflow: hidden;
    }
    .reel {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: reelMove 42s linear infinite;
    }
    .reel-card {
      min-width: 420px;
      height: 280px;
      border: none;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }
    .reel-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.45));
    }
    .reel-card span {
      position: absolute;
      left: 12px;
      bottom: 10px;
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      color: #f0e6d7;
      z-index: 1;
    }

    .split {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 12px;
    }
    .about-photo {
      min-height: 330px;
      background: url("../images/Fotos/WLF_2543.jpg") center/cover;
      border: none;
      box-shadow: 0 20px 46px rgba(0,0,0,.34);
    }
    .about-text {
      border: none;
      background: rgba(255,255,255,.03);
      padding: 22px;
      display: grid;
      align-content: center;
      gap: 12px;
    }
    .about-text h3 { font-size: 1.16rem; font-weight: 500; }
    .about-text p { color: #d1c8bb; line-height: 1.75; font-weight: 300; font-size: .93rem; }

    .contact-panel {
      border: 1px solid rgba(0,0,0,.1);
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
      padding: 22px;
      display: grid;
      gap: 18px;
    }
    .contact-head {
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(0,0,0,.08);
    }
    .contact-layout {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 14px;
    }
    .contact-aside {
      border: 1px solid rgba(0,0,0,.1);
      background: linear-gradient(180deg, #1b1a1f, #141419);
      color: #ede8e1;
      padding: 20px;
      min-height: 290px;
      display: grid;
      align-content: space-between;
      gap: 16px;
    }
    .contact-aside h4,
    .contact-form-card h4 {
      font-size: .75rem;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      font-weight: 700;
    }
    .contact-aside h4 { color: #f0d7bb; }
    .contact-aside p { color: #d1c8bb; font-size: .94rem; line-height: 1.7; }
    .contact-points {
      display: grid;
      gap: 8px;
      font-size: .82rem;
      color: #e9e0d6;
    }
    .contact-points span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      opacity: .95;
    }
    .contact-points i { width: 16px; height: 16px; color: #e2b080; }

    .contact-form-card {
      border: 1px solid rgba(0,0,0,.1);
      background: #fff;
      padding: 20px;
      min-height: 290px;
      display: grid;
      align-content: start;
      gap: 12px;
    }
    .contact-form-card h4 { color: #2d2d2d; }
    .contact-form-card small {
      color: #7a7269;
      font-size: .82rem;
      line-height: 1.5;
    }
    .quick-choices {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 2px;
      margin-bottom: 4px;
    }
    .quick-choices span {
      border: 1px solid rgba(0,0,0,.14);
      padding: 7px 10px;
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: 1.3px;
      color: #49423a;
      background: #faf8f5;
    }

    form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 16px; align-content: start; }
    .field { display: grid; gap: 6px; }
    .field label {
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      color: #4d4d4d;
      font-weight: 600;
    }
    .field input, .field textarea {
      width: 100%;
      border: 1px solid rgba(0,0,0,.12);
      background: #fdfdfd;
      padding: 13px 12px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: .88rem;
      color: #212121;
      outline: none;
      transition: border-color .24s ease, box-shadow .24s ease;
    }
    .field input:focus, .field textarea:focus {
      border-color: rgba(199,121,73,.55);
      box-shadow: 0 0 0 3px rgba(199,121,73,.13);
    }
    .field textarea { min-height: 110px; resize: vertical; }
    .full { grid-column: 1 / -1; }


    .whats-float-wrap {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 96;
      display: grid;
      justify-items: end;
      gap: 10px;
    }
    .whats-float-btn {
      width: 56px;
      height: 56px;
      border: none;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      box-shadow: 0 14px 28px rgba(199,121,73,.34);
      cursor: pointer;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .whats-float-btn:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 18px 34px rgba(199,121,73,.4);
    }
    .whats-float-btn i { width: 24px; height: 24px; }
    .whats-float-panel {
      width: min(320px, calc(100vw - 28px));
      background: rgba(17,17,22,.96);
      color: #f0e7dc;
      border: 1px solid rgba(255,255,255,.12);
      padding: 14px;
      display: grid;
      gap: 8px;
      opacity: 0;
      transform: translateY(8px) scale(.98);
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
    }
    .whats-float-panel.open {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .whats-float-panel strong {
      font-size: .8rem;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      color: #f0d6b8;
    }
    .whats-float-panel p {
      font-size: .85rem;
      line-height: 1.6;
      color: #d8cfc2;
    }

    .footer {
      background: #111116;
      border-top: none;
      padding: 26px 0;
    }
    .footer-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: space-between;
      align-items: center;
      color: #c5bcaf;
      font-size: .72rem;
      letter-spacing: 1.3px;
      text-transform: uppercase;
    }
    .footer img { height: 34px; width: auto; opacity: .9; }

    .reveal { opacity: 0; transform: translateY(18px); }
    .tilt { transform-style: preserve-3d; will-change: transform; }

    @keyframes reelMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes driftA {
      0% { transform: scale(1.03) translate(-1%, -1%); }
      100% { transform: scale(1.08) translate(2%, 2%); }
    }
    @keyframes driftB {
      0% { transform: scale(1.02) translate(1%, -1%); }
      100% { transform: scale(1.06) translate(-1%, 2%); }
    }
    @keyframes driftC {
      0% { transform: scale(1.02) translate(-1%, 1%); }
      100% { transform: scale(1.07) translate(1%, -1%); }
    }

    @media (max-width: 1040px) {
      .menu {
        display: flex;
        width: 100%;
        order: 3;
        overflow-x: auto;
        white-space: nowrap;
        gap: 4px;
        padding-bottom: 2px;
      }
      .menu::-webkit-scrollbar { display: none; }
      .topbar {
        top: 10px;
        padding: 10px 12px;
        row-gap: 8px;
        flex-wrap: wrap;
        min-height: auto;
      }
      .topbar .btn {
        order: 2;
        margin-left: auto;
      }
      .menu a {
        font-size: .62rem;
        letter-spacing: 1.2px;
        padding: 7px 8px;
      }
      .service-grid, .split, .contact-layout { grid-template-columns: 1fr; }
      .kpis { grid-template-columns: 1fr; }
      .hero { padding-top: 86px; }
    }
    @media (max-width: 680px) {
      .topbar {
        top: 8px;
        width: min(calc(100% - 12px), 1240px);
        padding: 8px 9px;
      }
      .menu { gap: 2px; }
      .menu a {
        font-size: .58rem;
        letter-spacing: 1px;
        padding: 6px 7px;
      }
      .section { padding: 74px 0; }
      .head { margin-bottom: 18px; }
      .head h2 { font-size: clamp(1.02rem, 5.5vw, 1.5rem); line-height: 1.12; }
      .hero p { font-size: .92rem; line-height: 1.72; }
      .hero-actions { gap: 8px; }
      .btn { min-height: 34px; padding: 0 12px; }

      .container { width: min(calc(100% - 24px), var(--container)); }
      .hero h1 { max-width: 360px; font-size: clamp(1.35rem, 8vw, 2.05rem); line-height: 1.02; }
      .brand img { height: 38px; }
      form { grid-template-columns: 1fr; }
      .btn { min-height: 36px; font-size: .6rem; }
      .reel-card {
        min-width: 300px;
        height: 210px;
      }
    }
