    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Lato", Arial, Helvetica, sans-serif;
    }

    :root {
      --bg: #f4eee8;
      --text: #2a241f;
      --muted: #6c6258;
      --panel: rgba(255, 250, 245, 0.95);
      --dark: #312823;
      --dark-2: #201914;
      --accent: #b86b4b;
      --accent-3: #8e4b39;
      --success: #2b66b1;
      --error: #b91c1c;
      --border: rgba(108, 98, 88, 0.18);
      --shadow: 0 18px 50px rgba(71, 47, 31, 0.12);
      --sage-50: #f3f7fd;
      --sage-100: #dde9fa;
      --sage-200: #bfd5f5;
      --sage-300: #91b7ec;
      --sage-500: #4d86d3;
      --sage-600: #2b66b1;
      --sage-700: #1f4f90;
      --sage-900: #15355f;
      --logo-blue: #2b66b1;
      --logo-blue-dark: #1f4f90;
      --earth-50: #f9f7f5;
      --earth-100: #f0ebe5;
      --earth-200: #e0d6c9;
      --earth-300: #c9baa9;
      --earth-500: #977c62;
      --earth-600: #7e6550;
      --earth-700: #665242;
      --earth-800: #54453a;
      --earth-900: #453a31;
    }

    body {
      position: relative;
      background:
        radial-gradient(circle at top left, rgba(227, 179, 156, 0.4), transparent 28%),
        radial-gradient(circle at top right, rgba(184, 107, 75, 0.18), transparent 26%),
        linear-gradient(180deg, #fffaf4 0%, var(--bg) 100%);
      color: var(--text);
      line-height: 1.6;
    }

    header,
    .hero,
    .section,
    footer,
    .translation-editor-toolbar {
      position: relative;
      z-index: 1;
    }

    h1, h2, h3, h4, h5, h6,
    .logo span {
      font-family: "Cormorant Garamond", Georgia, serif;
    }

    header {
      background: rgba(255, 248, 242, 0.84);
      color: var(--dark);
      padding: 20px 40px;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(108, 98, 88, 0.1);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 24px;
      font-weight: bold;
      letter-spacing: 0.04em;
      color: var(--dark);
      text-transform: uppercase;
    }

    .logo img {
      width: 54px;
      height: 54px;
      object-fit: contain;
      filter: drop-shadow(0 8px 20px rgba(142, 75, 57, 0.18));
    }

    nav {
      display: flex;
      align-items: center;
    }

    nav a,
    .nav-dropdown-toggle {
      color: var(--dark);
      text-decoration: none;
      margin-left: 20px;
      font-size: 15px;
      font-weight: 600;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      font: inherit;
    }

    nav a:hover,
    .nav-dropdown-toggle:hover {
      text-decoration: underline;
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: 20px;
      min-width: 240px;
      display: none;
      flex-direction: column;
      padding: 10px;
      background: rgba(255, 250, 245, 0.98);
      border: 1px solid rgba(255, 255, 255, 0.84);
      border-radius: 18px;
      box-shadow: 0 24px 70px rgba(71, 47, 31, 0.16);
      z-index: 30;
    }

    .nav-dropdown-menu::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -14px;
      height: 14px;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      display: flex;
    }

    .nav-dropdown-menu a,
    .nav-dropdown-action {
      margin-left: 0;
      padding: 10px 12px;
      border-radius: 12px;
      text-decoration: none;
    }

    .nav-dropdown-action {
      width: 100%;
      border: none;
      background: transparent;
      color: var(--dark);
      text-align: left;
      font: inherit;
      cursor: pointer;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:focus-visible,
    .nav-dropdown-action:hover,
    .nav-dropdown-action:focus-visible {
      background: rgba(184, 107, 75, 0.08);
      text-decoration: none;
      outline: none;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-user-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      max-width: 180px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .login-toggle {
      background: var(--dark);
      color: #fff7f1;
      border: none;
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(49, 40, 35, 0.15);
    }

    .menu-shell {
      position: relative;
      padding-bottom: 12px;
    }

    .account-menu {
      position: absolute;
      right: 0;
      top: calc(100% + 4px);
      width: min(360px, 90vw);
      background: rgba(255, 250, 245, 0.98);
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 22px;
      box-shadow: 0 24px 70px rgba(71, 47, 31, 0.18);
      padding: 18px;
      display: none;
      z-index: 20;
    }

    .account-menu.open {
      display: block;
    }

    .account-menu h3 {
      color: var(--accent-3);
      margin-bottom: 8px;
    }

    .account-summary {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .inline-message {
      margin-top: 12px;
      border-radius: 14px;
      padding: 10px 12px;
      font-size: 13px;
      display: none;
    }

    .inline-message.visible {
      display: block;
    }

    .inline-message.error {
      background: rgba(185, 28, 28, 0.08);
      color: var(--error);
      border: 1px solid rgba(185, 28, 28, 0.18);
    }

    .inline-message.success {
      background: rgba(43, 102, 177, 0.08);
      color: var(--success);
      border: 1px solid rgba(43, 102, 177, 0.18);
    }

    .inline-message.info {
      background: rgba(184, 107, 75, 0.08);
      color: var(--accent-3);
      border: 1px solid rgba(184, 107, 75, 0.18);
    }

    .translation-editor-toolbar[hidden] {
      display: none !important;
    }

    .translation-editor-toolbar {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: min(420px, calc(100vw - 32px));
      z-index: 50;
      background: rgba(255, 250, 245, 0.98);
      border: 1px solid rgba(255, 255, 255, 0.82);
      border-radius: 22px;
      box-shadow: 0 24px 70px rgba(71, 47, 31, 0.22);
      padding: 18px;
    }

    .translation-editor-note {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .translation-editor-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .translation-editing [data-translation-editable="true"] {
      outline: 2px dashed rgba(184, 107, 75, 0.85);
      outline-offset: 4px;
      cursor: text;
      transition: outline-color 0.15s ease;
    }

    .translation-editing [data-translation-editable="true"]:focus {
      outline-color: rgba(43, 102, 177, 0.92);
      background: rgba(255, 255, 255, 0.6);
    }

    .account-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .mini-btn {
      border: none;
      border-radius: 999px;
      padding: 10px 14px;
      cursor: pointer;
      font-weight: 700;
    }

    .mini-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-3));
      color: white;
    }

    .mini-secondary {
      background: rgba(255, 255, 255, 0.7);
      color: var(--dark);
      border: 1px solid var(--border);
    }

    .translation-editor-trigger {
      min-width: 44px;
      padding-inline: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      line-height: 1;
    }

    .translation-editor-trigger[hidden] {
      display: none !important;
    }

    .hero {
      padding: 110px 40px 70px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(249, 247, 245, 0.96) 0%, rgba(244, 238, 232, 0.92) 100%);
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 34%;
      height: 100%;
      opacity: 0.08;
      background-image:
        linear-gradient(rgba(126, 101, 80, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 101, 80, 0.2) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    .hero-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 01fr) minmax(360px, 1.02fr);
      gap: 20px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 18px;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--earth-100);
      color: var(--earth-600);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .hero h1 {
      font-size: clamp(48px, 8vw, 84px);
      line-height: 0.95;
      margin-bottom: 24px;
      color: var(--earth-900);
    }

    .hero p {
      font-size: 20px;
      margin-bottom: 34px;
      color: var(--earth-600);
      max-width: 640px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .btn-icon {
      width: 20px;
      height: 20px;
      display: inline-block;
      flex-shrink: 0;
    }

    .btn-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .btn:has(.btn-icon) {
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }

    .page-decor {
      position: absolute;
      top: 1240px;
      right: 0;
      bottom: 0;
      left: 0;
      pointer-events: none;
      z-index: 0;
      overflow: clip;
    }

    .page-decor::before,
    .page-decor::after {
      content: "";
      position: fixed;      
      width: min(28vw, 400px);
      height: 100vh;
      opacity: 0.28;
      background-repeat: no-repeat;
      background-size: contain;
      pointer-events: none;
      z-index: 0;
    }

    .page-decor::before {
      top: 80px;
      left: -66px;
      background-image: url("../images/moldes_1.png");
      background-position: left top;
    }

    .page-decor::after {
      top: 140px;
      right: -64px;
      background-image: url("../images/moldes_2.png");
      background-position: right top;
    }

    .decor-side {
      position: absolute;
      top: 0;
      bottom: 0;
      width: min(18vw, 230px);
      z-index: 1;
      pointer-events: none;
    }

    .decor-side.left {
      left: 0;
    }

    .decor-side.right {
      right: 0;
    }

    .decor-item {
      position: absolute;
      display: block;
      pointer-events: auto;
      transition: transform 0.35s ease;
      transform-origin: center center;
      will-change: transform;
      user-select: none;
      -webkit-user-drag: none;
    }

    .decor-item:hover {
      transform: rotate(-4deg) translateY(-4px);
    }

    .decor-side.right .decor-item:hover {
      transform: rotate(4deg) translateY(-4px);
    }

    .decor-scissors {
      width: 130px;
      left: 10px;
      top: 420px;
    }

    .decor-buttons {
      width: 185px;
      left: -54px;
      top: 2300px;
    }

    .decor-threads {
      width: 165px;
      left: 24px;
      top: 3000px;
    }

    .decor-tape {
      width: 200px;
      right: -30px;
      top: 1300px;
    }

    .decor-photo {
      width: 142px;
      right: 18px;
      top: 3100px;
    }

    .hero-copy {
      text-align: left;
    }

    .hero-highlight {
      color: var(--sage-600);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-style: italic;
      font-weight: 400;
      display: inline-block;
    }

    .hero-visual {
      position: relative;
      min-height: 560px;
      display: grid;
      place-items: center;
    }

    .hero-orb,
    .hero-orb-secondary {
      position: absolute;
      border-radius: 999px;
      filter: blur(12px);
    }

    .hero-orb {
      top: 16px;
      right: 0;
      width: 180px;
      height: 180px;
      background: rgba(191, 213, 245, 0.9);
      opacity: 0.55;
    }

    .hero-orb-secondary {
      bottom: 42px;
      left: 10px;
      width: 250px;
      height: 250px;
      background: rgba(240, 235, 229, 0.95);
      opacity: 0.85;
    }

    .hero-logo-card {
      position: relative;
      width: min(100%, 560px);
      border-radius: 28px;
      overflow: hidden;
      border: 8px solid rgba(255, 255, 255, 0.96);
      box-shadow: 0 24px 60px rgba(69, 58, 49, 0.18);
      background: white;
      transform: rotate(1deg);
      transition: transform 0.4s ease;
    }

    .hero-logo-card:hover {
      transform: rotate(0deg);
    }

    .hero-logo-card img {
      width: 100%;
      height: 100%;
      min-height: 500px;
      display: block;
      object-fit: cover;
    }

    .hero-overlay-actions {
      position: absolute;
      right: 24px;
      bottom: 24px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
      width: min(360px, calc(100% - 48px));
    }

    .hero-overlay-actions .hero-download-btn,
    .hero-overlay-actions .hero-webapp-visual-btn {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      text-align: center;
      white-space: nowrap;
      font-family: "Lato", Arial, Helvetica, sans-serif;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.2;
      padding: 14px 22px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.92);
      box-shadow: 0 18px 36px rgba(31, 79, 144, 0.18);
    }

    .btn {
      display: inline-block;
      background: var(--earth-800);
      color: #fff7f1;
      padding: 15px 28px;
      text-decoration: none;
      border-radius: 14px;
      font-weight: bold;
      transition: 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(49, 40, 35, 0.15);
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.95;
    }

    .secondary-btn {
      background: linear-gradient(135deg, var(--sage-600), var(--sage-700));
      color: white;
    }

    .outline-btn {
      background: rgba(255, 255, 255, 0.82);
      color: var(--earth-700);
      border: 1px solid var(--earth-200);
      box-shadow: none;
    }

    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 40px;
    }

    .section h2 {
      font-size: clamp(38px, 5vw, 58px);
      margin-bottom: 15px;
      color: var(--earth-900);
    }

    .section p.section-text {
      color: var(--earth-600);
      margin-bottom: 35px;
      max-width: 720px;
      font-size: 18px;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 52px;
    }

    .section-heading.left {
      text-align: left;
    }

    .webapp-section {
      position: relative;
    }

    .webapp-shell {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
      gap: 40px;
      align-items: center;
      padding: 36px;
      border-radius: 36px;
      background:
        radial-gradient(circle at top right, rgba(43, 102, 177, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 252, 249, 0.96), rgba(243, 237, 231, 0.92));
      border: 1px solid rgba(224, 214, 201, 0.9);
      box-shadow: 0 22px 48px rgba(69, 58, 49, 0.1);
      overflow: hidden;
    }

    .webapp-copy .section-text {
      margin-bottom: 26px;
      max-width: 640px;
    }

    .webapp-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-bottom: 26px;
    }

    .webapp-point {
      min-height: 100%;
      padding: 22px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid rgba(224, 214, 201, 0.82);
      box-shadow: 0 12px 24px rgba(69, 58, 49, 0.06);
    }

    .webapp-point h3 {
      color: var(--earth-800);
      font-size: 26px;
      margin-bottom: 8px;
    }

    .webapp-point p {
      color: var(--earth-600);
      font-size: 15px;
    }

    .webapp-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    #webapp-message {
      margin-top: 16px;
    }

    .webapp-preview {
      position: relative;
      min-height: 680px;
      display: grid;
      place-items: center;
    }

    .webapp-preview::before {
      content: "";
      position: absolute;
      inset: 34px 14px 80px;
      border-radius: 28px;
      background:
        radial-gradient(circle at top left, rgba(191, 213, 245, 0.82), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
      filter: blur(6px);
      z-index: 0;
    }

    .webapp-browser {
      position: relative;
      z-index: 1;
      width: min(100%, 760px);
      border-radius: 30px;
      overflow: hidden;
      background: white;
      border: 10px solid rgba(255, 255, 255, 0.94);
      box-shadow: 0 30px 70px rgba(31, 79, 144, 0.18);
      transform: rotate(-2deg);
    }

    .webapp-browser img {
      width: 100%;
      min-height: 560px;
      display: block;
      object-fit: cover;
      object-position: left center;
    }

    .cards,
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
    }

    .video-card {
      display: grid;
      gap: 22px;
      background: rgba(255, 250, 245, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.72);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 18px 40px rgba(71, 47, 31, 0.08);
    }

    .video-stack {
      display: grid;
      gap: 20px;
    }

    .video-player-card {
      display: grid;
      gap: 12px;
    }

    .video-player-card h3 {
      color: var(--dark);
      font-size: 24px;
    }

    .video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 18px;
      overflow: hidden;
      background: #1f1916;
      box-shadow: 0 12px 30px rgba(31, 25, 22, 0.18);
    }

    .video-frame video {
      width: 100%;
      height: 100%;
      display: block;
      background: #1f1916;
    }

    .video-player-card p,
    .video-copy p {
      color: var(--muted);
    }

    .services-section {
      position: relative;
      background:
        linear-gradient(180deg, rgba(250, 248, 243, 0.9), rgba(244, 238, 232, 0.7));
      border-radius: 40px;
    }

    .feature-card {
      background: white;
      padding: 32px;
      border-radius: 24px;
      border: 1px solid var(--earth-100);
      box-shadow: 0 18px 34px rgba(69, 58, 49, 0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      border-color: var(--sage-200);
      box-shadow: 0 22px 44px rgba(69, 58, 49, 0.12);
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--sage-50);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      color: var(--sage-600);
      font-size: 28px;
      transition: background 0.25s ease, color 0.25s ease;
    }

    .feature-card:hover .feature-icon {
      background: var(--sage-600);
      color: white;
    }

    .feature-card h3 {
      color: var(--earth-800);
      font-size: 36px;
      margin-bottom: 10px;
    }

    .feature-card p {
      color: var(--earth-600);
      font-size: 17px;
    }

    .pricing-shell {
      position: relative;
      overflow: hidden;
      border-radius: 40px;
      background:
        radial-gradient(circle at top right, rgba(43, 102, 177, 0.05), transparent 34%),
        rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(224, 214, 201, 0.85);
      box-shadow: 0 18px 42px rgba(69, 58, 49, 0.08);
    }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      max-width: 980px;
      margin: 0 auto;
    }

    .card,
    .plan-card,
    .about {
      background: var(--panel);
      border: 1px solid rgba(255, 255, 255, 0.72);
      border-radius: 24px;
      padding: 24px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
    }

    .card h3,
    .plan-card h3 {
      margin-bottom: 12px;
      color: var(--earth-800);
    }

    .card p,
    .plan-card p,
    .about p {
      color: var(--earth-600);
      font-size: 15px;
    }

    .plan-card {
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(201, 186, 169, 0.95);
      border-radius: 28px;
      padding: 28px;
      box-shadow:
        0 16px 34px rgba(69, 58, 49, 0.08),
        inset 0 1px 0 rgba(43, 102, 177, 0.06);
      backdrop-filter: none;
      display: flex;
      flex-direction: column;
      gap: 0;
      min-height: 100%;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .plan-card:hover {
      transform: translateY(-4px);
      border-color: #b99f88;
      box-shadow: 0 22px 42px rgba(69, 58, 49, 0.12);
    }

    .plan-card.featured {
      background:
        linear-gradient(180deg, rgba(43, 102, 177, 0.04) 0%, rgba(43, 102, 177, 0) 28%),
        linear-gradient(180deg, #ddcec1 0%, #ccb8a4 100%);
      border-color: #b99f88;
      color: var(--earth-900);
      transform: translateY(-10px);
      box-shadow: 0 26px 56px rgba(151, 124, 98, 0.26);
    }

    .plan-card.featured:hover {
      transform: translateY(-14px);
    }

    .plan-card.featured h3,
    .plan-card.featured p,
    .plan-card.featured .price,
    .plan-card.featured .price strong,
    .plan-card.featured .plan-interval,
    .plan-card.featured .plan-feature {
      color: var(--earth-900);
    }

    .plan-card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 8px;
    }

    .plan-header-copy {
      flex: 1;
    }

    .plan-card h3 {
      font-size: 34px;
      margin-bottom: 2px;
    }

    .plan-description {
      font-size: 14px;
      margin-bottom: 18px;
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 0 0 18px;
      color: var(--earth-900);
    }

    .price strong {
      font-size: 56px;
      line-height: 1;
    }

    .plan-interval {
      color: var(--earth-600);
      font-size: 18px;
    }

    .plan-savings {
      display: inline-block;
      margin: 0 0 18px;
      padding: 6px 10px;
      border-radius: 10px;
      background: rgba(43, 102, 177, 0.08);
      color: var(--logo-blue-dark);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .plan-card.featured .plan-savings {
      background: rgba(84, 69, 58, 0.1);
      color: var(--earth-900);
    }

    .plan-savings.muted {
      background: rgba(108, 98, 88, 0.1);
      color: var(--muted);
    }

    .plan-card.featured .plan-savings.muted {
      background: rgba(84, 69, 58, 0.08);
      color: var(--earth-700);
    }

    .plan-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 150px;
      min-height: 28px;
      padding: 5px 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(43, 102, 177, 0.9), rgba(31, 79, 144, 0.92));
      color: white;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      line-height: 1.25;
      text-align: center;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .plan-button {
      display: block;
      width: 100%;
      margin-bottom: 24px;
      text-align: center;
      box-shadow: 0 14px 28px rgba(49, 40, 35, 0.14);
      background: linear-gradient(135deg, var(--earth-800), var(--earth-900));
      color: white;
      border: 1px solid rgba(69, 58, 49, 0.95);
      font-size: 15px;
      font-weight: 800;
    }

    .plan-button:hover {
      background: linear-gradient(135deg, #3d332d, #2b221d);
      transform: translateY(-2px);
    }

    .plan-card.featured .plan-button {
      background: linear-gradient(135deg, var(--earth-900), #2f261f);
      color: white;
      border-color: rgba(47, 38, 31, 0.95);
      box-shadow: 0 16px 30px rgba(69, 58, 49, 0.18);
    }

    .plan-features {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: auto;
      padding-left: 0;
    }

    .plan-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--earth-600);
      font-size: 15px;
    }

    .plan-feature::before {
      content: "✓";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(43, 102, 177, 0.14);
      color: var(--sage-600);
      font-weight: 700;
      flex-shrink: 0;
    }

    .plan-card.featured .plan-feature::before {
      background: rgba(84, 69, 58, 0.12);
      color: var(--earth-900);
    }

    .login-inline {
      display: grid;
      gap: 12px;
      margin-top: 14px;
    }

    .field-group {
      display: grid;
      gap: 6px;
    }

    .forgot-password-link {
      justify-self: start;
      padding: 0;
      border: none;
      background: transparent;
      color: var(--accent-3);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    label {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
    }

    input {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px 14px;
      font-size: 14px;
      background: rgba(255, 255, 255, 0.82);
    }

    #contato [data-shared-contact] {
      margin-top: 30px;
    }

    footer {
      background: var(--dark-2);
      color: #f1ddd0;
      text-align: center;
      padding: 25px;
      margin-top: 40px;
    }

    @keyframes float-bob {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-14px);
      }
    }

    @keyframes pulse-soft {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.08);
      }
    }

    @media (max-width: 768px) {
      .topbar {
        flex-direction: column;
        gap: 12px;
      }

      nav a {
        margin: 0 10px;
      }

      .hero {
        padding: 88px 24px 52px;
      }

      .section {
        padding: 64px 24px;
      }

      .hero h1 {
        font-size: 48px;
      }

      .hero p {
        font-size: 18px;
      }

      .hero-content,
      .webapp-shell,
      .webapp-points,
      .plans-grid,
      .cards,
      .features-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions {
        justify-content: flex-start;
      }

      .hero-visual {
        min-height: 440px;
      }

      .hero-logo-card img {
        min-height: 380px;
      }

      .hero-overlay-actions {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
      }

      .webapp-shell {
        padding: 28px;
      }

      .webapp-preview {
        min-height: auto;
      }

      .webapp-browser {
        transform: none;
      }

      .page-decor {
        display: none;
      }

      .plan-card.featured,
      .plan-card.featured:hover {
        transform: none;
      }
    }
  </style>
