  :root {
      --primary: #003566;
      --accent: #00b4d8;
      --sun: #ffb703;
      --bg-light: #f8fbff;
      --white: #ffffff;
      --text-main: #1a1a1a;
      --glass: rgba(255, 255, 255, 0.95);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      outline: none;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-light);
      color: var(--text-main);
      overflow-x: hidden;
      line-height: 1.6;
  }

  /* --- Header & Navigation --- */
  header {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 20px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transition: 0.4s;
  }

  header.scrolled {
      background: var(--glass);
      backdrop-filter: blur(10px);
      padding: 12px 5%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .logo {
      /* font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--primary);
      text-decoration: none; */
      z-index: 1001;
  }

  .logo img {
      width: 140px !important;
  }

  .logo span {
      color: var(--accent);
  }

  .nav-menu {
      display: flex;
      gap: 30px;
      align-items: center;
  }

  .nav-menu a {
      text-decoration: none;
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9rem;
      transition: 0.3s;
  }

  .nav-menu a:hover {
      color: var(--accent);
  }

  /* Mobile Menu Toggle */
  .menu-toggle {
      display: none;
      font-size: 1.5rem;
      color: var(--primary);
      cursor: pointer;
      z-index: 1001;
  }

  /* --- Hero --- */
  .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 5%;
      position: relative;
      background: #e0f2fe;
      overflow: hidden;
  }

  .hero-img-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.7;
  }

  .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), var(--bg-light));
      z-index: 2;
  }

  .hero-content {
      text-align: center;
      z-index: 10;
      position: relative;
      max-width: 800px;
  }

  .hero-content h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.5rem, 8vw, 5.5rem);
      line-height: 1.1;
      color: var(--primary);
      margin-bottom: 20px;
  }

  /* --- Welcome Section --- */
  .welcome-section {
      padding: 80px 5%;
      text-align: center;
      background: var(--white);
  }

  .welcome-container {
      max-width: 1000px;
      margin: 0 auto;
  }

  .welcome-container h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 5vw, 2.5rem);
      color: var(--primary);
      margin-bottom: 25px;
  }

  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 50px;
  }

  .feature-card {
      padding: 35px;
      border-radius: 25px;
      background: var(--bg-light);
      border: 1px solid #eee;
      transition: 0.3s;
  }

  .feature-card i {
      font-size: 2.2rem;
      color: var(--accent);
      margin-bottom: 15px;
  }

  /* --- Bento Roteiros --- */
  .bento-section {
      padding: 80px 5%;
  }

  .bento-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
  }

  .bento-item {
      background: var(--white);
      border-radius: 30px;
      padding: 25px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
      border: 1px solid #f0f0f0;
  }

  .bento-item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 20px;
      margin-bottom: 20px;
  }

  .bento-item.custom {
      border: 2px dashed var(--accent);
      background: #f0faff;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

  /* --- Gallery --- */
  .gallery-section {
      padding: 80px 0;
      background: var(--white);
      overflow: hidden;
  }

  .gallery-track {
      display: flex;
      gap: 20px;
      transition: 0.8s cubic-bezier(0.45, 0.05, 0.55, 0.95);
      padding: 0 5%;
  }

  .gallery-img {
      min-width: 280px;
      height: 380px;
      object-fit: cover;
      border-radius: 25px;
  }

  /* --- Contact --- */
  .contact-section {
      padding: 80px 5%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .contact-form {
      background: var(--white);
      padding: 35px;
      border-radius: 30px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  }

  .input-group {
      margin-bottom: 15px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
      width: 100%;
      padding: 14px;
      border-radius: 12px;
      border: 1px solid #eee;
      background: #fdfdfd;
      font-family: inherit;
  }

  /* --- Buttons --- */
  .btn-modern {
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: 0.4s;
      cursor: pointer;
      border: none;
      font-size: 0.9rem;
  }

  .btn-primary {
      background: var(--primary);
      color: white !important;
  }

  .btn-secondary {
      background: #febc00;
      color: white !important;
  }

  .btn-whatsapp {
      background: #25d366;
      color: white;
      width: 100%;
      justify-content: center;
  }

  .whatsapp-fixed {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25d366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      z-index: 2000;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
      text-decoration: none;
  }

  /* --- Responsive Adjustments --- */
  @media (max-width: 968px) {
      .menu-toggle {
          display: block;
      }

      .nav-menu {
          position: fixed;
          top: 0;
          right: -100%;
          width: 80%;
          height: 100vh;
          background: var(--white);
          flex-direction: column;
          justify-content: center;
          transition: 0.5s;
          box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
      }

      .nav-menu.active {
          right: 0;
      }

      .contact-section {
          grid-template-columns: 1fr;
      }

      .hero-content h1 {
          font-size: 3rem;
      }
  }

  @media (max-width: 480px) {
      .bento-grid {
          grid-template-columns: 1fr;
      }

      .gallery-img {
          min-width: 240px;
          height: 320px;
      }

      .welcome-section {
          padding: 60px 5%;
      }
  }

  .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 3000;
      cursor: zoom-out;
  }

  .lightbox.active {
      display: flex;
      animation: fadeIn 0.3s ease;
  }

  .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
      cursor: default;
  }

  .close-lightbox {
      position: absolute;
      top: 30px;
      right: 30px;
      color: white;
      font-size: 2.5rem;
      cursor: pointer;
      line-height: 1;
  }

  .gallery-img {
      cursor: zoom-in;
      transition: 0.3s;
  }

  .gallery-img:hover {
      filter: brightness(0.8);
      transform: scale(1.02);
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  /* Ajuste Smooth Scroll via CSS */
  html {
      scroll-behavior: smooth;
  }