* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }

    html {
      scroll-behavior: smooth;
    }

    :root {
      /* Cores Base */
      --cream: #F5F1EA;
      --beige: #D4B896;
      --beige-light: #E8DFD2;
      --black: #0A0A0A;
      --gray: #4A4A4A;
      --gray-light: #9A9A9A;
      --white: #FAF8F3;

      /* Signature */
      --sig-cream: #F5F1EA;
      --sig-beige: #D4C8B8;
      --sig-gold: #B8A88A;
      --sig-gray: #6B6B6B;
      --sig-dark: #2C2C2C;

      /* Colors */
      --col-lime: #C6D600;
      --col-blue: #008BD2;
      --col-orange: #FF6A00;
      --col-pink: #FF2E8A;
      --col-purple: #7A2B8E;

      /* Verão */
      --ver-yellow: #CCFF00;
      --ver-pink: #FF1493;
      --ver-cyan: #00FFFF;
      --ver-orange: #FF6600;
      --ver-purple: #9932CC;

      /* Corporate */
      --corp-navy: #0D1B2A;
      --corp-blue: #133B5C;
      --corp-teal: #0FA38E;
      --corp-gray: #7A8087;
      --corp-dark: #111111;

      --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--black);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 32px;
    }

    h1,
    h2,
    h3 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 300;
      letter-spacing: -0.01em;
    }

    h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
    }

    h2 {
      font-size: clamp(2rem, 4.5vw, 3.5rem);
    }

    h3 {
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }

    .eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray-light);
      margin-bottom: 24px;
      display: block;
    }

    /* LOGO */
    .brand-logo {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .brand-logo .somos {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 300;
      letter-spacing: 0.35em;
      text-transform: lowercase;
      color: var(--beige);
      margin-bottom: 8px;
    }

    .brand-logo .livo {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 2.8rem;
      font-weight: 400;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--black);
      line-height: 1;
    }

    .brand-logo .line {
      width: 100%;
      height: 1.5px;
      background: var(--beige);
      margin: 12px 0;
    }

    .brand-logo .tagline {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 300;
      letter-spacing: 0.25em;
      text-transform: lowercase;
      color: var(--gray);
      margin-top: 8px;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 28px 0;
      background: rgba(245, 241, 234, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid transparent;
      transition: all var(--transition);
    }

    .header.scrolled {
      border-bottom-color: rgba(10, 10, 10, 0.08);
      padding: 18px 0;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand-logo.header-logo {
      transform: scale(0.75);
      transform-origin: left center;
    }

    .brand-logo.header-logo .somos {
      font-size: 0.65rem;
    }

    .brand-logo.header-logo .livo {
      font-size: 2.2rem;
    }

    .brand-logo.header-logo .line {
      height: 1px;
      margin: 8px 0;
    }

    .brand-logo.header-logo .tagline {
      font-size: 0.65rem;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-mobile-cta {
      display: none;
    }

    .nav-links a {
      font-size: 0.82rem;
      color: var(--gray);
      transition: color var(--transition);
      font-weight: 400;
    }

    .nav-links a:hover {
      color: var(--black);
    }

    .nav-cta {
      padding: 12px 28px;
      background: var(--black);
      color: var(--white);
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 500;
      transition: all var(--transition);
    }

    .nav-cta:hover {
      background: var(--gray);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      padding: 8px;
    }

    .menu-toggle span {
      width: 22px;
      height: 1.5px;
      background: var(--black);
      transition: var(--transition);
    }

    /* Hero Section */
    .hero {
      padding: 220px 0 140px;
      background: var(--cream);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(212, 184, 150, 0.15) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero h1 {
      margin-bottom: 32px;
      font-weight: 300;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--beige);
    }

    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--gray);
      max-width: 800px;
      margin: 0 auto 56px;
      line-height: 1.8;
      position: relative;
      z-index: 1;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .btn-primary {
      padding: 18px 36px;
      background: var(--black);
      color: var(--white);
      border-radius: 999px;
      font-weight: 500;
      font-size: 0.9rem;
      transition: all var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-primary:hover {
      background: var(--gray);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }

    .btn-secondary {
      padding: 18px 36px;
      background: transparent;
      color: var(--black);
      border: 2px solid var(--black);
      border-radius: 999px;
      font-weight: 500;
      font-size: 0.9rem;
      transition: all var(--transition);
    }

    .btn-secondary:hover {
      background: var(--black);
      color: var(--white);
    }

    /* Manager Benefits */
    .manager-benefits {
      padding: 120px 0;
      background: var(--white);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .manager-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }

    .manager-header h2 {
      margin-bottom: 24px;
      font-weight: 300;
    }

    .manager-header p {
      font-size: 1.1rem;
      color: var(--gray);
      line-height: 1.7;
    }

    .manager-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .manager-card {
      padding: 40px;
      border-radius: 24px;
      background: var(--cream);
      text-align: left;
    }

    .manager-card .icon-wrapper {
      width: 64px;
      height: 64px;
      background: var(--black);
      color: var(--beige);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .manager-card h3 {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 1.5rem;
      margin-bottom: 16px;
      color: var(--black);
    }

    .manager-card p {
      color: var(--gray);
      line-height: 1.6;
    }

    /* Lines Overview Grid */
    .lines-overview {
      padding: 120px 0;
      background: var(--white);
    }

    .overview-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 80px;
    }

    .overview-header h2 {
      margin-bottom: 24px;
      font-weight: 300;
    }

    .overview-header p {
      font-size: 1.1rem;
      color: var(--gray);
      line-height: 1.7;
    }

    .lines-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .line-card {
      aspect-ratio: 3/4;
      border-radius: 24px;
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .line-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

    .line-card.signature {
      background: linear-gradient(180deg, var(--sig-cream) 0%, var(--sig-beige) 100%);
      color: var(--sig-dark);
    }

    .line-card.signature::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 24px;
      right: 24px;
      bottom: 24px;
      border: 1.5px solid var(--sig-gold);
      border-radius: 18px;
      pointer-events: none;
    }

    .line-card.colors {
      background: var(--white);
      color: var(--black);
      border: 2px solid rgba(10, 10, 10, 0.08);
    }

    .line-card.colors::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--col-lime), var(--col-blue), var(--col-orange), var(--col-pink), var(--col-purple));
    }

    .line-card.verao {
      background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
      color: var(--white);
    }

    .line-card.verao::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 24px;
      padding: 2px;
      background: linear-gradient(135deg, var(--ver-pink), var(--ver-yellow), var(--ver-cyan), var(--ver-orange));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .line-card.corporate {
      background: linear-gradient(180deg, var(--corp-navy) 0%, #0a1520 100%);
      color: var(--white);
    }

    .line-card.corporate::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 24px;
      right: 24px;
      bottom: 24px;
      border: 1.5px solid rgba(19, 59, 92, 0.5);
      border-radius: 18px;
      pointer-events: none;
    }

    .line-card-header {
      position: relative;
      z-index: 1;
    }

    .line-card-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .line-card.signature .line-card-name {
      color: var(--sig-gold);
    }

    .line-card.colors .line-card-name {
      background: linear-gradient(90deg, var(--col-lime), var(--col-blue), var(--col-orange), var(--col-pink), var(--col-purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .line-card.verao .line-card-name {
      font-family: 'Dancing Script', cursive;
      font-size: 2rem;
      letter-spacing: 0;
      text-transform: none;
      color: var(--ver-yellow);
      font-weight: 600;
    }

    .line-card.corporate .line-card-name {
      color: #4A90E2;
    }

    .line-card-tagline {
      font-size: 1rem;
      line-height: 1.5;
      font-weight: 400;
    }

    .line-card.signature .line-card-tagline {
      color: var(--sig-dark);
    }

    .line-card.verao .line-card-tagline,
    .line-card.corporate .line-card-tagline {
      color: rgba(255, 255, 255, 0.9);
    }

    .line-card-footer {
      position: relative;
      z-index: 1;
    }

    .line-card-dots {
      display: flex;
      gap: 10px;
      margin-bottom: 16px;
    }

    .line-card-dots span {
      width: 20px;
      height: 20px;
      border-radius: 50%;
    }

    /* SECTIONS INDIVIDUAIS */
    .line-section {
      padding: 160px 0;
      position: relative;
      overflow: hidden;
    }

    /* SIGNATURE SECTION */
    .line-section.signature {
      background: linear-gradient(180deg, var(--sig-cream) 0%, var(--beige-light) 100%);
      color: var(--sig-dark);
    }

    .line-section.signature .eyebrow {
      color: var(--sig-gold);
    }

    .line-section.signature h2 {
      color: var(--sig-dark);
    }

    .line-section.signature p {
      color: var(--gray);
    }

    .sig-pattern {
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8A88A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.6;
    }

    .sig-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
    }

    .sig-tagline {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      margin: 24px 0 32px;
      padding-left: 28px;
      border-left: 3px solid var(--sig-gold);
      color: var(--sig-dark);
    }

    .sig-description {
      font-size: 1.08rem;
      line-height: 1.8;
      margin-bottom: 40px;
      color: var(--gray);
    }

    .sig-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 48px;
    }

    .sig-feature {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 0.98rem;
      color: var(--gray);
    }

    .sig-feature svg {
      width: 24px;
      height: 24px;
      color: var(--sig-gold);
      flex-shrink: 0;
    }

    .sig-colors {
      display: flex;
      gap: 14px;
      margin-top: 32px;
    }

    .sig-color {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid rgba(0, 0, 0, 0.1);
    }

    .sig-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .sig-visual {
      position: relative;
      background: linear-gradient(180deg, var(--sig-cream) 0%, var(--sig-beige) 100%);
      border-radius: 24px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .sig-visual-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(184, 168, 138, 0.2) 0%, rgba(184, 168, 138, 0.1) 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 1.2rem;
      letter-spacing: 0.2em;
      color: var(--sig-gold);
      text-transform: uppercase;
    }

    /* COLORS SECTION */
    .line-section.colors {
      background: var(--white);
    }

    .line-section.colors .eyebrow {
      color: var(--col-blue);
    }

    .col-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .col-visual {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
      background: linear-gradient(135deg, var(--col-lime) 0%, var(--col-blue) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .col-visual::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(198, 214, 0, 0.3) 0%, rgba(0, 139, 210, 0.3) 100%);
    }

    .col-content h2 {
      margin-bottom: 20px;
    }

    .col-tagline {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.15rem;
      font-weight: 500;
      margin: 24px 0 32px;
      padding-left: 28px;
      border-left: 3px solid var(--col-lime);
      color: var(--black);
    }

    .col-description {
      font-size: 1.08rem;
      line-height: 1.8;
      margin-bottom: 40px;
      color: var(--gray);
    }

    .col-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 48px;
    }

    .col-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--gray);
    }

    .col-feature svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }

    .col-feature:nth-child(1) svg {
      color: var(--col-lime);
    }

    .col-feature:nth-child(2) svg {
      color: var(--col-blue);
    }

    .col-feature:nth-child(3) svg {
      color: var(--col-orange);
    }

    .col-feature:nth-child(4) svg {
      color: var(--col-pink);
    }

    .col-colors {
      display: flex;
      gap: 14px;
    }

    .col-color {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid rgba(0, 0, 0, 0.1);
    }

    /* VERÃO SECTION */
    .line-section.verao {
      background: linear-gradient(180deg, #0a0a14 0%, #1a1a2e 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .verao-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
        radial-gradient(circle at 20% 50%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    }

    .verao-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .verao-content h2 {
      color: var(--white);
      margin-bottom: 20px;
    }

    .verao-content .eyebrow {
      color: var(--ver-cyan);
    }

    .verao-tagline {
      font-family: 'Dancing Script', cursive;
      font-size: 1.8rem;
      font-weight: 600;
      margin: 24px 0 32px;
      padding-left: 28px;
      border-left: 3px solid var(--ver-pink);
      color: var(--ver-yellow);
    }

    .verao-description {
      font-size: 1.08rem;
      line-height: 1.8;
      margin-bottom: 40px;
      color: rgba(255, 255, 255, 0.85);
    }

    .verao-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 48px;
    }

    .verao-feature {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 0.98rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .verao-feature svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .verao-feature:nth-child(1) svg {
      color: var(--ver-pink);
    }

    .verao-feature:nth-child(2) svg {
      color: var(--ver-yellow);
    }

    .verao-feature:nth-child(3) svg {
      color: var(--ver-cyan);
    }

    .verao-colors {
      display: flex;
      gap: 14px;
    }

    .verao-color {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    .verao-visual {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 0 80px rgba(255, 20, 147, 0.3), 0 30px 80px rgba(0, 0, 0, 0.5);
      background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .verao-visual::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg,
          rgba(255, 20, 147, 0.2) 0%,
          rgba(204, 255, 0, 0.1) 50%,
          rgba(0, 255, 255, 0.2) 100%);
    }

    .neon-glow {
      position: absolute;
      width: 80%;
      height: 60%;
      border: 2px solid var(--ver-pink);
      border-radius: 16px;
      box-shadow:
        0 0 20px var(--ver-pink),
        inset 0 0 20px rgba(255, 20, 147, 0.2);
      animation: neonPulse 3s ease-in-out infinite;
    }

    @keyframes neonPulse {

      0%,
      100% {
        opacity: 1;
        box-shadow: 0 0 20px var(--ver-pink), inset 0 0 20px rgba(255, 20, 147, 0.2);
      }

      50% {
        opacity: 0.8;
        box-shadow: 0 0 40px var(--ver-pink), inset 0 0 30px rgba(255, 20, 147, 0.3);
      }
    }

    /* CORPORATE SECTION */
    .line-section.corporate {
      background: linear-gradient(180deg, var(--corp-navy) 0%, #0a1520 100%);
      color: var(--white);
      position: relative;
    }

    .corp-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230FA38E' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
      opacity: 0.4;
    }

    .corp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .corp-visual {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
      background: linear-gradient(180deg, var(--corp-navy) 0%, var(--corp-blue) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .corp-visual::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, rgba(15, 163, 142, 0.1) 0%, rgba(19, 59, 92, 0.2) 100%);
    }

    .corp-content h2 {
      color: var(--white);
      margin-bottom: 20px;
    }

    .corp-content .eyebrow {
      color: #4A90E2;
    }

    .corp-tagline {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.15rem;
      font-weight: 500;
      margin: 24px 0 32px;
      padding-left: 28px;
      border-left: 3px solid var(--corp-teal);
      color: var(--white);
    }

    .corp-description {
      font-size: 1.08rem;
      line-height: 1.8;
      margin-bottom: 40px;
      color: rgba(255, 255, 255, 0.85);
    }

    .corp-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 48px;
    }

    .corp-feature {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 0.98rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .corp-feature svg {
      width: 24px;
      height: 24px;
      color: var(--corp-teal);
      flex-shrink: 0;
    }

    .corp-colors {
      display: flex;
      gap: 14px;
    }

    .corp-color {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    /* Comparison Section */
    .comparison {
      padding: 140px 0;
      background: var(--white);
    }

    .comparison-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 80px;
    }

    .comparison-header h2 {
      margin-bottom: 24px;
      font-weight: 300;
    }

    .comparison-header p {
      font-size: 1.1rem;
      color: var(--gray);
      line-height: 1.7;
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .comparison-card {
      padding: 40px 32px;
      border-radius: 20px;
      background: var(--cream);
      transition: all var(--transition);
      border-top: 4px solid transparent;
    }

    .comparison-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    }

    .comparison-card.sig {
      border-top-color: var(--sig-gold);
    }

    .comparison-card.col {
      border-top-color: var(--col-lime);
    }

    .comparison-card.ver {
      border-top-color: var(--ver-pink);
    }

    .comparison-card.corp {
      border-top-color: var(--corp-teal);
    }

    .comparison-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .comparison-card.sig h3 {
      color: var(--sig-gold);
    }

    .comparison-card.col h3 {
      color: var(--col-blue);
    }

    .comparison-card.ver h3 {
      color: var(--ver-pink);
    }

    .comparison-card.corp h3 {
      color: #4A90E2;
    }

    .comparison-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .comparison-card li {
      font-size: 0.9rem;
      color: var(--gray);
      padding-left: 24px;
      position: relative;
      line-height: 1.5;
    }

    .comparison-card li::before {
      content: '—';
      position: absolute;
      left: 0;
      font-weight: 600;
    }

    .comparison-card.sig li::before {
      color: var(--sig-gold);
    }

    .comparison-card.col li::before {
      color: var(--col-lime);
    }

    .comparison-card.ver li::before {
      color: var(--ver-pink);
    }

    .comparison-card.corp li::before {
      color: var(--corp-teal);
    }

    /* Common Benefits */
    .common-benefits {
      padding: 140px 0;
      background: var(--black);
      color: var(--white);
    }

    .benefits-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 80px;
    }

    .benefits-header h2 {
      color: var(--white);
      margin-bottom: 24px;
      font-weight: 300;
    }

    .benefits-header p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .benefit-card {
      padding: 40px 32px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      transition: all var(--transition);
      background: rgba(255, 255, 255, 0.02);
    }

    .benefit-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-4px);
    }

    .benefit-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 24px;
      color: var(--beige);
    }

    .benefit-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      margin-bottom: 16px;
      color: var(--white);
    }

    .benefit-card p {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.6;
    }

    /* FAQ Section */
    .faq-section {
      padding: 120px 0;
      background: var(--white);
    }
    
    .faq-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }
    
    .faq-header h2 {
      margin-bottom: 24px;
      font-weight: 300;
    }

    .faq-header p {
      font-size: 1.1rem;
      color: var(--gray);
      line-height: 1.7;
    }

    .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid rgba(0,0,0,0.1);
      padding: 24px 0;
      cursor: pointer;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 500;
      font-size: 1.15rem;
      color: var(--black);
      transition: color var(--transition);
    }

    .faq-item:hover .faq-question {
      color: var(--beige);
    }

    .faq-icon {
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
      color: var(--beige);
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      color: var(--gray);
      line-height: 1.7;
      padding-top: 0;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      padding-top: 16px;
    }

    /* CTA Section */
    .cta-section {
      padding: 140px 0;
      background: linear-gradient(180deg, var(--cream) 0%, var(--beige-light) 100%);
      text-align: center;
    }

    .cta-section h2 {
      margin-bottom: 24px;
      font-weight: 300;
    }

    .cta-section p {
      font-size: 1.15rem;
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto 48px;
      line-height: 1.7;
    }

    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      text-align: left;
      background: var(--white);
      padding: 40px;
      border-radius: 24px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 8px;
      color: var(--black);
    }

    .form-control {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      color: var(--black);
      background: var(--white);
      transition: border-color var(--transition);
    }

    .form-control:focus {
      outline: none;
      border-color: var(--beige);
    }

    .contact-form .btn-primary {
      width: 100%;
      justify-content: center;
      margin-top: 12px;
      border: none;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      cursor: pointer;
    }

    /* Footer */
    .footer {
      padding: 100px 0 40px;
      background: var(--black);
      color: rgba(255, 255, 255, 0.5);
    }

    .footer .brand-logo {
      margin-bottom: 32px;
    }

    .footer .brand-logo .somos {
      color: var(--beige);
    }

    .footer .brand-logo .livo {
      color: var(--white);
    }

    .footer .brand-logo .line {
      background: var(--beige);
    }

    .footer .brand-logo .tagline {
      color: rgba(255, 255, 255, 0.6);
    }

    .footer p {
      font-size: 0.85rem;
    }

    
    /* NOVO: Hero Improvements */
    .hero-content-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      text-align: left;
    }
    .hero-mockup-placeholder {
      background: var(--beige-light);
      border-radius: 24px;
      aspect-ratio: 4/5;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      color: var(--gray);
      font-size: 0.9rem;
      border: 2px dashed var(--beige);
      box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }
    .hero h1 { text-align: left; }
    .hero-subtitle { text-align: left; }

    /* NOVO: Utilities */
    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }
    .section-header h2 { margin-bottom: 20px; font-weight: 300; }
    .section-header p { font-size: 1.1rem; color: var(--gray); line-height: 1.6; }
    .white-text h2, .white-text p { color: var(--white); }

    /* NOVO: Como Funciona */
    .how-it-works { padding: 120px 0; background: var(--white); }
    .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .step-card { padding: 40px 30px; background: var(--cream); border-radius: 20px; text-align: center; border: 1px solid rgba(0,0,0,0.03); }
    .step-icon { width: 64px; height: 64px; background: var(--black); color: var(--beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
    .step-icon svg { width: 28px; height: 28px; }
    .step-card h3 { font-family: 'Josefin Sans', sans-serif; font-size: 1.4rem; margin-bottom: 16px; color: var(--black); line-height: 1.3;}
    .step-card p { color: var(--gray); font-size: 0.95rem; }

    /* NOVO: Prova Social */
    .social-proof { padding: 120px 0; background: var(--cream); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
    .testimonial-card { background: var(--white); padding: 40px 30px; border-radius: 20px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
    .quote-icon { position: absolute; top: 20px; right: 30px; font-family: serif; font-size: 5rem; color: var(--beige-light); line-height: 1; }
    .testimonial-text { position: relative; z-index: 1; font-size: 0.95rem; line-height: 1.7; color: var(--gray); margin-bottom: 30px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 16px; }
    .author-photo.placeholder-photo { width: 50px; height: 50px; border-radius: 50%; background: var(--beige-light); border: 2px solid var(--beige); flex-shrink: 0; }
    .author-info strong { display: block; font-size: 0.95rem; color: var(--black); }
    .author-info span { font-size: 0.8rem; color: var(--gray-light); }
    .logos-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: 0.6; filter: grayscale(100%); }
    .logo-placeholder { font-size: 1.2rem; font-weight: bold; color: var(--gray); padding: 10px 20px; border: 1px solid var(--gray-light); border-radius: 8px; }

    /* NOVO: Números */
    .numbers-section { padding: 100px 0; background: var(--black); color: var(--white); }
    .numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
    .number-item { padding: 20px; }
    .number-value { font-family: 'Josefin Sans', sans-serif; font-size: 3.5rem; font-weight: 300; color: var(--beige); margin-bottom: 10px; }
    .number-label { font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

    /* NOVO: Galeria */
    .real-photos { padding: 120px 0; background: var(--white); }
    .photos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .photo-card { text-align: center; }
    .photo-placeholder { background: var(--cream); aspect-ratio: 16/9; border-radius: 20px; display: flex; align-items: center; justify-content: center; color: var(--gray); border: 2px dashed rgba(0,0,0,0.1); margin-bottom: 20px; }
    .photo-card h3 { font-size: 1.2rem; color: var(--black); }

    /* NOVO: Comparativo */
    .comparison-table-section { padding: 120px 0; background: var(--cream); }
    .table-responsive { overflow-x: auto; background: var(--white); border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); padding: 40px; }
    .livo-table { width: 100%; border-collapse: collapse; min-width: 600px; }
    .livo-table th { padding: 20px; text-align: left; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; border-bottom: 2px solid var(--beige-light); }
    .livo-table td { padding: 20px; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.95rem; color: var(--gray); line-height: 1.5;}
    .livo-table .col-livo { background: rgba(212, 184, 150, 0.1); color: var(--black); border-radius: 8px; }
    .livo-table th.col-livo { color: var(--beige); font-size: 1rem; }

    /* NOVO: Form Row */
    .form-row { display: flex; gap: 20px; }
    .form-group.half { width: 50%; }

    /* NOVO: WhatsApp Float */
    .whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
    .whatsapp-float:hover { transform: scale(1.1); }
    .whatsapp-float svg { width: 35px; height: 35px; }

    @media (max-width: 992px) {
      .hero-content-wrapper { grid-template-columns: 1fr; text-align: center; }
      .hero h1, .hero-subtitle { text-align: center; }
      .hero-buttons { justify-content: center; }
      .steps-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .steps-grid, .testimonials-grid, .photos-grid { grid-template-columns: 1fr; }
      .numbers-grid { grid-template-columns: 1fr; }
      .form-row { flex-direction: column; gap: 0; }
      .form-group.half { width: 100%; }
      .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
      .whatsapp-float svg { width: 28px; height: 28px; }
      .table-responsive { padding: 20px; }
    }

    /* Animations */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .animate-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .lines-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .manager-grid,
      .comparison-grid,
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .sig-visual,
      .verao-visual,
      .corp-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 60px;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 20px;
      }

      .menu-toggle {
        display: flex;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
      }

      .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      .menu-toggle.active span:nth-child(2) {
        opacity: 0;
      }
      .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
      }

      .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        padding: 100px 30px;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        z-index: 1000;
        list-style: none;
      }

      .nav-links.open {
        right: 0;
      }

      .nav-links a {
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        padding: 10px 0;
        text-decoration: none;
        color: var(--gray);
      }

      .nav-cta {
        display: none;
      }

      .nav-mobile-cta {
        display: block;
        width: 100%;
        margin-top: 20px;
      }

      .nav-mobile-cta .nav-cta-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        background: var(--black);
        color: var(--white);
        border-radius: 999px;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
      }

      .lines-grid,
      .manager-grid,
      .comparison-grid,
      .benefits-grid,
      .sig-grid,
      .col-grid,
      .verao-grid,
      .corp-grid {
        grid-template-columns: 1fr;
      }

      .col-features {
        grid-template-columns: 1fr;
      }

      .line-section {
        padding: 100px 0;
      }

      .hero {
        padding: 160px 0 100px;
      }

      .brand-logo.header-logo {
        transform: scale(0.65);
      }
    }