    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #f5f7fb;
      color: #171717;
      overflow-x: hidden;
    }
    .watermark {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: url('LOGO_AQUI');
      background-repeat: no-repeat;
      background-position: center center;
      background-size: min(70vw, 900px);
      opacity: 0.055;
      filter: grayscale(0.05);
    }
    .container {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .hero {
      background: linear-gradient(135deg, #111827, #1d4ed8);
      color: #fff;
      padding: 52px 0 44px;
      position: relative;
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 28px;
      align-items: center;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }
    .brand img {
      width: 88px;
      height: auto;
      display: block;
    }
    .brand strong {
      font-size: 24px;
      line-height: 1;
      letter-spacing: .5px;
    }
    .hero h1 {
      margin: 0 0 14px;
      font-size: 44px;
      line-height: 1.05;
      letter-spacing: -0.8px;
    }
    .hero p {
      margin: 0;
      font-size: 18px;
      line-height: 1.7;
      color: rgba(255,255,255,.92);
      max-width: 760px;
    }
    .hero-box {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }
    .hero-box h2 {
      margin: 0 0 12px;
      font-size: 24px;
    }
    .hero-box ul {
      margin: 0;
      padding-left: 18px;
      line-height: 1.7;
      color: rgba(255,255,255,.92);
    }
    .main {
      padding: 38px 0 60px;
      position: relative;
    }
    .budget-card {
      background: #fff;
      border-radius: 28px;
      box-shadow: 0 16px 38px rgba(0,0,0,.08);
      border: 1px solid #ececec;
      overflow: hidden;
      position: relative;
    }
    .budget-grid {
      display: grid;
      grid-template-columns: 1fr 400px;
    }
    .budget-left {
      padding: 32px;
      border-right: 1px solid #ececec;
      position: relative;
    }
    .budget-right {
      padding: 32px;
      background: #fafbff;
      position: relative;
    }
    .section-title {
      margin: 0 0 10px;
      font-size: 28px;
      line-height: 1.1;
    }
    .section-text {
      margin: 0 0 24px;
      color: #6b7280;
      line-height: 1.65;
      font-size: 15px;
    }
    .field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 18px;
    }
    label {
      font-size: 14px;
      font-weight: 700;
    }
    input[type="number"] {
      height: 54px;
      border: 1px solid #dadada;
      border-radius: 16px;
      padding: 0 16px;
      font-size: 16px;
      background: #fff;
      width: 100%;
    }
    .extras {
      display: grid;
      gap: 14px;
    }
    .extra {
      border: 1px solid #e6e6e6;
      border-radius: 18px;
      padding: 16px;
      background: #fff;
      transition: .18s ease;
    }
    .extra:hover {
      border-color: #c9d8ff;
      background: #f8fbff;
    }
    .extra-top {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }
    .extra-top input {
      margin-top: 3px;
      flex: 0 0 auto;
    }
    .extra-title {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .extra-desc {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.5;
    }
    .extra-qty-wrap {
      margin-top: 14px;
      display: none;
    }
    .extra-qty-wrap.visible {
      display: block;
    }
    .extra-qty {
      max-width: 220px;
    }
    .summary-box {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 22px;
      padding: 22px;
      box-shadow: 0 10px 24px rgba(0,0,0,.04);
      position: sticky;
      top: 20px;
    }
    .summary-box h3 {
      margin: 0 0 18px;
      font-size: 22px;
    }
    .row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-size: 15px;
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
    }
    .row:last-of-type {
      border-bottom: none;
    }
    .row.total {
      font-size: 30px;
      font-weight: 800;
      padding-top: 18px;
      margin-top: 6px;
    }
    .included-box {
      margin-top: 14px;
      padding: 14px 16px;
      border-radius: 16px;
      background: #f6f8ff;
      border: 1px solid #dce6ff;
      color: #334155;
      font-size: 14px;
      line-height: 1.6;
    }
    .selected-options {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid #ececec;
      font-size: 14px;
      color: #555;
      line-height: 1.7;
    }
    .selected-options strong {
      color: #111;
    }
    .cta-buttons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 22px;
    }
    .btn {
      min-height: 52px;
      border: none;
      border-radius: 16px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: .18s ease;
    }
    .btn-dark {
      background: #111827;
      color: #fff;
    }
    .btn-green {
      background: #25D366;
      color: #fff;
    }
    .btn:hover {
      opacity: .94;
    }
    .note {
      margin-top: 14px;
      font-size: 13px;
      color: #6b7280;
      line-height: 1.6;
    }
    .seal {
      margin-top: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #64748b;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .4px;
    }
    .seal img {
      width: 34px;
      height: auto;
      opacity: .85;
    }
    .ref-section {
      margin-top: 34px;
    }
    .ref-section h2 {
      margin: 0 0 10px;
      font-size: 28px;
      line-height: 1.1;
    }
    .ref-section p {
      margin: 0 0 20px;
      color: #6b7280;
      line-height: 1.6;
    }
    .ref-table {
      overflow: auto;
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 12px 28px rgba(0,0,0,.06);
      border: 1px solid #ececec;
      margin-bottom: 18px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 680px;
    }
    thead th {
      background: #111827;
      color: #fff;
      text-align: left;
      padding: 14px 12px;
      font-size: 13px;
      letter-spacing: .2px;
    }
    tbody td {
      padding: 13px 12px;
      border-bottom: 1px solid #ececec;
      font-size: 14px;
    }
    tbody tr:nth-child(even) {
      background: #fafafa;
    }
    @media (max-width: 1020px) {
      .hero-grid,
      .budget-grid {
        grid-template-columns: 1fr;
      }
      .budget-left {
        border-right: none;
        border-bottom: 1px solid #ececec;
      }
    }
    @media (max-width: 720px) {
      .hero h1 {
        font-size: 34px;
      }
      .cta-buttons {
        grid-template-columns: 1fr;
      }
    }
  body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
#wb_CssMenu1
{
   border: 0px solid #C0C0C0;
   border-radius: 0px;
   background-color: transparent;
   margin: 0;
   text-align: left;
}
#wb_CssMenu1 ul
{
   list-style-type: none;
   margin: 0;
   padding: 0;
    font-size: 0;
}
#wb_CssMenu1 li
{
   display: inline-block;
   margin: 0;
   padding: 0px 0px 0px 0px;
   width: 100%;
}
#wb_CssMenu1 a
{
   display: block;
   color: #454545;
   border: 1px solid #C5C5C5;
   border-radius: 0px;
   background-color: #F6F6F6;
   background-image: none;
   font-family: Arial;
   font-weight: normal;
   font-size: 13px;
   font-style: normal;
   text-decoration: none;
   text-transform: none;
   text-align: center;
   vertical-align: middle;
}
#wb_CssMenu1 > ul > li > a
{
   width: calc(100% - 4px);
   box-sizing: border-box;
   height: 28px;
   padding: 0 5px 0px 5px;
   line-height: 26px;
}
#wb_CssMenu1 li:hover a, #wb_CssMenu1 a:hover
{
   color: #2B2B2B;
   border: 1px solid #CCCCCC;
   background-color: #EDEDED;
   background-image: none;
}
#wb_CssMenu1 li.firstmain
{
   padding-left: 0px;
}
#wb_CssMenu1 li.lastmain
{
   padding-right: 0px;
}
#wb_CssMenu1 br
{
   clear: both;
   font-size: 1px;
   height: 0;
   line-height: 0;
}
