    :root {
      --bg: #05040b;
      --bg-soft: #0d0a1d;
      --card: rgba(255, 255, 255, 0.08);
      --card-2: rgba(255, 255, 255, 0.12);
      --line: rgba(255, 255, 255, 0.14);
      --text: #ffffff;
      --muted: #d5d2ea;
      --pink: #ff18c7;
      --cyan: #00e7ff;
      --purple: #7b2cff;
      --yellow: #ffd339;
      --orange: #ff7a18;
      --green: #00ffa3;
      --shadow-pink: 0 0 32px rgba(255, 24, 199, 0.28);
      --shadow-cyan: 0 0 32px rgba(0, 231, 255, 0.26);
      --max: 1200px;
      --radius: 28px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--text);
      min-height: 100vh;
      background:
        radial-gradient(circle at 15% 10%, rgba(255, 24, 199, .18), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(0, 231, 255, .15), transparent 25%),
        radial-gradient(circle at 58% 70%, rgba(255, 122, 24, .13), transparent 28%),
        var(--bg);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      opacity: .32;
      background-image:
        radial-gradient(circle, rgba(255, 255, 255, .9) 0 1.2px, transparent 1.6px),
        radial-gradient(circle, rgba(0, 231, 255, .8) 0 1px, transparent 1.4px),
        radial-gradient(circle, rgba(255, 211, 57, .7) 0 1px, transparent 1.3px);
      background-size: 70px 70px, 120px 120px, 160px 160px;
      background-position: 0 0, 32px 44px, 90px 18px;
      animation: floatStars 40s linear infinite;
    }

    @keyframes floatStars {
      from {
        transform: translateY(0);
      }

      to {
        transform: translateY(80px);
      }
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(18px);
      background: rgba(5, 4, 11, .74);
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .nav {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand img {
      width: 58px;
      height: 58px;
      object-fit: contain;
      border-radius: 18px;
      box-shadow: var(--shadow-pink), var(--shadow-cyan);
    }

    .brand strong {
      display: block;
      font-size: 18px;
      line-height: 1.05;
    }

    .brand span {
      display: block;
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
    }

    .nav-links {
      display: flex;
      gap: 8px;
      padding: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .nav-links a {
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 14px;
      transition: .2s ease;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, .1);
      color: var(--cyan);
    }

    .nav-cta {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      cursor: pointer;
      border-radius: 999px;
      padding: 14px 20px;
      font-weight: 800;
      letter-spacing: .2px;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .btn.primary {
      color: #090512;
      width: 270px;
      height: 60px;
      background: linear-gradient(135deg, var(--yellow), var(--orange) 45%, var(--pink));
      box-shadow: 0 16px 38px rgba(255, 122, 24, .24);
    }

    .btn.primary:hover {
      transform: translateY(-3px);
    }

    .btnHeader1 {
      color: #fff;
      width: 100px;
      height: 50px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      cursor: pointer;
      border-radius: 999px;
      padding: 14px 20px;
      font-weight: 800;
      letter-spacing: .2px;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .btnHeader1:hover {
      transform: translateY(-3px);
    }

    .btn.ghost {
      color: #fff;
      width: 220px;
      height: 60px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .14);
    }

    .btn.ghost:hover {
      border-color: rgba(0, 231, 255, .6);
      box-shadow: var(--shadow-cyan);
    }

    .menu-btn {
      display: none;
      border: 0;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: rgba(255, 255, 255, .08);
      color: #fff;
      font-size: 24px;
      cursor: pointer;
    }


    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 40px;
      align-items: center;
      min-height: calc(100vh - 90px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border-radius: 999px;
      padding: 10px 14px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .11);
      color: var(--cyan);
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 20px;
    }

    .pulse {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 8px rgba(0, 255, 163, .14), 0 0 20px rgba(0, 255, 163, .8);
    }

    .hero {
      margin: 0px;
      padding: 0px;
    }

    .hero h1 {
      font-size: clamp(42px, 6vw, 76px);
      line-height: .98;
      letter-spacing: -.03em;
      margin-bottom: 18px;
    }

    .hero h1 .gradient {
      background: linear-gradient(135deg, var(--pink), var(--cyan), var(--yellow));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      font-size: 18px;
      line-height: 1.75;
      color: var(--muted);
      max-width: 640px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
      justify-content: center;
      align-items: center;
    }

    .hero-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
    }

    .hero-list .mini {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 20px;
      padding: 16px;
    }

    .hero-list strong {
      display: block;
      font-size: 20px;
      color: var(--yellow);
      margin-bottom: 4px;
    }

    .hero-list span {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    .hero-visual {
      position: relative;
    }

    .logo-card {
      position: relative;
      border-radius: 34px;
      padding: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
      border: 1px solid rgba(255, 255, 255, .12);
      box-shadow: var(--shadow-pink), var(--shadow-cyan);
      overflow: hidden;
    }

    .logo-card::before {
      content: "";
      position: absolute;
      inset: -20% 20% auto -20%;
      height: 240px;
      background: radial-gradient(circle, rgba(255, 24, 199, .28), transparent 60%);
    }

    .logo-card::after {
      content: "";
      position: absolute;
      inset: auto -10% -20% 30%;
      height: 220px;
      background: radial-gradient(circle, rgba(0, 231, 255, .22), transparent 65%);
    }

    .logo-card img {
      width: 100%;
      max-width: 540px;
      margin: 16px auto 0;
      position: relative;
      z-index: 1;
    }

    .floating-note {
      position: absolute;
      right: -12px;
      bottom: 28px;
      max-width: 230px;
      border-radius: 24px;
      padding: 18px;
      background: rgba(5, 4, 11, .92);
      border: 1px solid rgba(255, 255, 255, .14);
      box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
    }

    .floating-note strong {
      display: block;
      font-size: 18px;
      margin-bottom: 8px;
      color: var(--yellow);
    }

    .floating-note p {
      font-size: 14px;
      line-height: 1.55;
      color: var(--muted);
    }

    .tag-strip {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tag {
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 13px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
    }

    section {
      padding: 34px 0 96px;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 30px;
    }

    .section-head .label {
      color: var(--cyan);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: 12px;
      margin-bottom: 12px;
      display: inline-block;
    }

    .section-head h2 {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.05;
      margin-bottom: 14px;
    }

    .section-head p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 17px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      gap: 20px;
    }

    .gallery-main,
    .gallery-side img {
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, .11);
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-main {
      min-height: 520px;
    }

    .gallery-main img {
      height: 100%;
    }

    .gallery-side {
      display: grid;
      gap: 20px;
    }

    .gallery-side .small {
      min-height: 250px;
    }

    .owners-wrap {
      display: grid;
      gap: 24px;
    }

    .owner-card {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 28px;
      align-items: center;
      padding: 24px;
      border-radius: 30px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .owner-card.reverse {
      grid-template-columns: 1fr 360px;
    }

    .owner-card img {
      width: 100%;
      border-radius: 26px;
      border: 1px solid rgba(255, 255, 255, .12);
      box-shadow: var(--shadow-pink);
    }

    .owner-text .role {
      display: inline-block;
      font-size: 12px;
      color: var(--yellow);
      background: rgba(255, 211, 57, .12);
      border: 1px solid rgba(255, 211, 57, .28);
      padding: 8px 12px;
      border-radius: 999px;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .owner-text h3 {
      font-size: 32px;
      margin-bottom: 12px;
    }

    .owner-text p {
      color: var(--muted);
      line-height: 1.8;
      font-size: 16px;
      margin-bottom: 12px;
    }

    .owner-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }

    .owner-badges span {
      border-radius: 999px;
      padding: 9px 12px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      font-size: 13px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .card {
      border-radius: 24px;
      padding: 22px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      transition: transform .25s ease, border-color .25s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      border-color: rgba(0, 231, 255, .45);
    }

    .icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      font-size: 24px;
      background: linear-gradient(135deg, rgba(255, 24, 199, .18), rgba(0, 231, 255, .18));
      box-shadow: inset 0 0 24px rgba(255, 255, 255, .05);
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 20px;
    }

    .card p {
      color: var(--muted);
      line-height: 1.7;
      font-size: 15px;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 22px;
      align-items: start;
    }

    .benefits-panel {
      padding: 26px;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .benefit-item {
      display: flex;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .benefit-item:last-child {
      border-bottom: 0;
    }

    .check {
      width: 36px;
      min-width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(0, 255, 163, .12);
      color: var(--green);
      font-weight: 800;
      border: 1px solid rgba(0, 255, 163, .28);
    }

    .benefit-item h4 {
      margin-bottom: 6px;
      font-size: 18px;
    }

    .benefit-item p {
      color: var(--muted);
      line-height: 1.6;
      font-size: 15px;
    }

    .stats-box {
      display: flex;
      justify-content: center;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 18px;
    }

    .stats-box img {
      width: 60%;
      height: auto;
      object-fit: contain;
    }

    .stat {
      padding: 20px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .09);
    }

    .stat strong {
      display: block;
      font-size: 28px;
      color: var(--yellow);
      margin-bottom: 8px;
    }

    .stat span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .quote {
      position: relative;
      padding: 24px;
      border-radius: 24px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .quote::before {
      content: "“";
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 72px;
      line-height: 1;
      color: rgba(255, 255, 255, .14);
    }

    .quote p {
      position: relative;
      z-index: 1;
      color: var(--muted);
      line-height: 1.8;
      font-size: 15px;
      margin-bottom: 18px;
    }

    .quote strong {
      display: block;
      font-size: 17px;
    }

    .quote span {
      display: block;
      font-size: 13px;
      color: var(--cyan);
      margin-top: 6px;
    }

    .partners-wrap {
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, .1);
      background: rgba(255, 255, 255, .06);
    }

    .partners-track {
      display: flex;
      gap: 18px;
      width: max-content;
      padding: 20px;
      animation: scrollPartners 26s linear infinite;
    }

    .partners-wrap:hover .partners-track {
      animation-play-state: paused;
    }

    .partner-logo {
      min-width: 250px;
      width: 250px;
      height: 150px;
      border-radius: 24px;
      padding: 14px;
      background: rgba(5, 4, 11, .72);
      border: 1px solid rgba(255, 255, 255, .08);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .partner-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      border-radius: 18px;
      background: #ffffff;
      padding: 10px;
    }

    .partners-note {
      margin-top: 16px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    @keyframes scrollPartners {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 22px;
    }

    .contact-card {
      padding: 28px;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .contact-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .contact-line {
      display: flex;
      gap: 14px;
      align-items: center;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .contact-line b {
      display: block;
      margin-bottom: 4px;
    }

    .contact-line span {
      color: var(--muted);
      font-size: 14px;
    }

    .social-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .field-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 8px;
      margin-bottom: 14px;
    }

    .field label {
      font-size: 14px;
      color: var(--muted);
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .06);
      color: #fff;
      padding: 15px 16px;
      border-radius: 16px;
      outline: none;
      font: inherit;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: rgba(0, 231, 255, .56);
      box-shadow: 0 0 0 4px rgba(0, 231, 255, .08);
    }

    .field textarea {
      min-height: 150px;
      resize: vertical;
    }

    .note {
      margin-top: 14px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    footer {
      padding: 26px 0 40px;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-wrap {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-wrap p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    @media (max-width: 1080px) {

      .hero-grid,
      .gallery-grid,
      .benefits-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .cards,
      .testimonials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .owner-card,
      .owner-card.reverse {
        grid-template-columns: 1fr;
      }

      .owner-card.reverse .owner-media {
        order: -1;
      }

      .floating-note {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        max-width: none;
      }
    }

    @media (max-width: 860px) {
      .menu-btn {
        display: inline-grid;
        place-items: center;
      }

      .nav-links {
        position: absolute;
        top: 92px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        border-radius: 22px;
        padding: 14px;
        align-items: stretch;
        background: rgba(5, 4, 11, .96);
        border: 1px solid rgba(255, 255, 255, .1);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-cta .btn.ghost {
        display: none;
      }

      .hero-list {
        grid-template-columns: 1fr;
      }

      .cards {
        grid-template-columns: 1fr 1fr;
      }

      .field-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 620px) {
      .brand img {
        width: 50px;
        height: 50px;
      }

      .brand strong {
        font-size: 16px;
      }

      .hero h1 {
        font-size: 38px;
      }

      .hero p {
        font-size: 16px;
      }

      .textoinicio {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        margin-top: 10px;
      }

      .cards,
      .testimonials {
        grid-template-columns: 1fr;
      }

      .gallery-main {
        min-height: 300px;
      }

      .gallery-side .small {
        min-height: 180px;
      }

      .contact-card,
      .benefits-panel,
      .owner-card {
        padding: 20px;
      }

      .owner-text h3 {
        font-size: 26px;
      }

      .footer-wrap {
        align-items: flex-start;
      }
    }

    .conteudo-section {
      padding: 34px 0 96px;
    }

    .conteudo-grid-mini {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .conteudo-mini-card {
      min-height: 135px;
      padding: 22px 18px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04)),
        radial-gradient(circle at top left, rgba(255, 24, 199, .20), transparent 45%),
        radial-gradient(circle at bottom right, rgba(0, 231, 255, .16), transparent 45%);
      border: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      transition: .25s ease;
    }

    .conteudo-mini-card:hover {
      transform: translateY(-5px);
      border-color: rgba(0, 231, 255, .55);
      box-shadow:
        0 18px 40px rgba(0, 0, 0, .28),
        0 0 24px rgba(0, 231, 255, .15),
        0 0 24px rgba(255, 24, 199, .12);
    }

    .conteudo-mini-card i {
      width: 52px;
      height: 52px;
      margin-bottom: 14px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-size: 22px;
      color: #ffffff;
      background: linear-gradient(135deg, rgba(255, 24, 199, .22), rgba(0, 231, 255, .20));
      border: 1px solid rgba(255, 255, 255, .14);
    }

    .conteudo-mini-card h3 {
      font-size: 16px;
      line-height: 1.35;
      color: #ffffff;
    }

    @media (max-width: 1000px) {
      .conteudo-grid-mini {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 700px) {
      .conteudo-grid-mini {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .conteudo-mini-card {
        min-height: 120px;
        padding: 18px 14px;
      }

      .conteudo-mini-card h3 {
        font-size: 14px;
      }
    }

    @media (max-width: 420px) {
      .conteudo-grid-mini {
        grid-template-columns: 1fr;
      }
    }

    /* ============================= */
    /* ANIMAÇÕES SUAVES NO SCROLL */
    /* E ELEMENTOS SE MEXENDO */
    /* ============================= */

    .reveal {
      opacity: 0;
      transform: translateY(45px);
      filter: blur(10px);
      transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2, .8, .2, 1),
        filter .9s ease;
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-55px);
      filter: blur(10px);
      transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2, .8, .2, 1),
        filter .9s ease;
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(55px);
      filter: blur(10px);
      transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2, .8, .2, 1),
        filter .9s ease;
    }

    .reveal-zoom {
      opacity: 0;
      transform: scale(.92);
      filter: blur(10px);
      transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2, .8, .2, 1),
        filter .9s ease;
    }

    .reveal-left.show,
    .reveal-right.show,
    .reveal-zoom.show {
      opacity: 1;
      transform: translateX(0) scale(1);
      filter: blur(0);
    }

    .delay-1 {
      transition-delay: .08s;
    }

    .delay-2 {
      transition-delay: .16s;
    }

    .delay-3 {
      transition-delay: .24s;
    }

    .delay-4 {
      transition-delay: .32s;
    }

    .delay-5 {
      transition-delay: .40s;
    }

    /* Luzes flutuantes no fundo */
    .ambient-orb {
      position: fixed;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      z-index: -1;
      pointer-events: none;
      filter: blur(22px);
      opacity: .35;
      animation: orbFloat 12s ease-in-out infinite alternate;
    }

    .ambient-orb.orb-1 {
      left: 4%;
      top: 18%;
      background: radial-gradient(circle, rgba(255, 24, 199, .55), transparent 65%);
      animation-duration: 13s;
    }

    .ambient-orb.orb-2 {
      right: 5%;
      top: 32%;
      background: radial-gradient(circle, rgba(0, 231, 255, .50), transparent 65%);
      animation-duration: 15s;
    }

    .ambient-orb.orb-3 {
      left: 38%;
      bottom: 8%;
      background: radial-gradient(circle, rgba(255, 211, 57, .35), transparent 68%);
      animation-duration: 17s;
    }

    @keyframes orbFloat {
      0% {
        transform: translate3d(0, 0, 0) scale(1);
      }

      50% {
        transform: translate3d(28px, -38px, 0) scale(1.12);
      }

      100% {
        transform: translate3d(-34px, 24px, 0) scale(.95);
      }
    }

    /* Estrelas passando na tela */
    .shooting-star {
      position: fixed;
      top: -20px;
      left: 0;
      width: 120px;
      height: 2px;
      z-index: -1;
      pointer-events: none;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .95), rgba(0, 231, 255, .65));
      filter: drop-shadow(0 0 8px rgba(0, 231, 255, .8));
      animation: shootingStar 1.4s linear forwards;
    }

    @keyframes shootingStar {
      from {
        transform: translate3d(-160px, 0, 0) rotate(-25deg);
        opacity: 0;
      }

      15% {
        opacity: 1;
      }

      to {
        transform: translate3d(120vw, 75vh, 0) rotate(-25deg);
        opacity: 0;
      }
    }

    /* Cards sempre com leve movimento */
    .logo-card,
    .owner-card,
    .benefits-panel,
    .contact-card {
      animation: softFloat 6s ease-in-out infinite;
    }

    .owner-card:nth-child(2),
    .contact-card:nth-child(2),
    .benefits-panel:nth-child(2) {
      animation-delay: 1.2s;
    }

    @keyframes softFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    /* Cards pequenos respirando */
    .conteudo-mini-card,
    .card,
    .quote,
    .stat {
      transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
    }

    .conteudo-mini-card:hover,
    .card:hover,
    .quote:hover,
    .stat:hover {
      transform: translateY(-8px) scale(1.02);
    }

    /* Ícones com movimento */
    .conteudo-mini-card i,
    .icon,
    .check {
      animation: iconFloat 3.8s ease-in-out infinite;
    }

    .conteudo-mini-card:nth-child(even) i,
    .card:nth-child(even) .icon {
      animation-delay: .8s;
    }

    @keyframes iconFloat {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-5px) rotate(-4deg);
      }
    }

    /* Imagens com movimento suave */
    .gallery-main img,
    .gallery-side img,
    .owner-card img {
      transition:
        transform .55s ease,
        filter .55s ease;
    }

    .gallery-main:hover img,
    .gallery-side .small:hover img,
    .owner-card:hover img {
      transform: scale(1.045);
      filter: saturate(1.15) contrast(1.05);
    }

    /* Barra de progresso no topo */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      z-index: 9999;
      background: linear-gradient(90deg, var(--pink), var(--cyan), var(--yellow));
      box-shadow:
        0 0 14px rgba(255, 24, 199, .65),
        0 0 14px rgba(0, 231, 255, .55);
    }

    /* Brilho seguindo o mouse */
    .mouse-light {
      position: fixed;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      z-index: -1;
      pointer-events: none;
      background: radial-gradient(circle, rgba(0, 231, 255, .16), transparent 65%);
      filter: blur(18px);
      transform: translate(-50%, -50%);
      opacity: .9;
    }

    /* Mobile: menos pesado */
    @media (max-width: 700px) {
      .ambient-orb {
        width: 190px;
        height: 190px;
        opacity: .25;
      }

      .logo-card,
      .owner-card,
      .benefits-panel,
      .contact-card {
        animation-duration: 8s;
      }

      .reveal,
      .reveal-left,
      .reveal-right,
      .reveal-zoom {
        transform: translateY(30px);
      }

      .logoInicio {
        width: 100%;
        height: auto;
      }
    }

    /* Respeita quem reduz movimento no sistema */
    @media (prefers-reduced-motion: reduce) {

      .ambient-orb,
      .shooting-star,
      .mouse-light,
      .logo-card,
      .owner-card,
      .benefits-panel,
      .contact-card,
      .conteudo-mini-card i,
      .icon,
      .check {
        animation: none !important;
      }

      .reveal,
      .reveal-left,
      .reveal-right,
      .reveal-zoom {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
      }
    }

    /* REMOVE EFEITOS DE FUNDO E MOUSE */

    body::after {
      display: none !important;
    }

    .ambient-orb,
    .shooting-star,
    .mouse-light {
      display: none !important;
    }

    .gradient {
      background: linear-gradient(135deg, var(--pink), var(--cyan), var(--yellow));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .logoInicio {
      width: 1200px;
      height: 100%;
      object-fit: contain;
      margin: 0px;
      padding: 0px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .containerInicio {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
    }

    .textoinicio {
      font-family: "Arial Black", Impact, sans-serif;
      font-size: clamp(38px, 6vw, 72px);
      line-height: .9;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #ffffff;
      transform: skew(-6deg) rotate(-1deg);
      text-shadow:
        3px 3px 0 #ff18c7,
        6px 6px 0 #7b2cff,
        -3px -3px 0 #00e7ff,
        0 0 18px rgba(255, 255, 255, .35),
        0 0 30px rgba(255, 24, 199, .35);
    }


   .logoInicioBox {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0px;
  padding: 0px;
}

.botoesRapidos {
  display: none;
}

@media (max-width: 768px) {
  .botoesRapidos {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    z-index: 2;
  }

  .botoesRapidos a {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(5, 4, 11, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    backdrop-filter: blur(12px);
    box-shadow:
      0 0 14px rgba(255, 24, 199, 0.18),
      0 0 14px rgba(0, 231, 255, 0.14);
    transition: 0.25s ease;
  }

  .botoesRapidos a:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 231, 255, 0.65);
    box-shadow:
      0 0 18px rgba(0, 231, 255, 0.28),
      0 0 18px rgba(255, 24, 199, 0.18);
  }
}