:root {
      --yellow: #F5C200;
      --navy: #1A237E;
      --white: #fff;
    }
    * { margin:0; padding:0; box-sizing:border-box; }
    body { font-family:'Montserrat',sans-serif; background:var(--yellow); color:var(--navy); overflow-x:hidden; }

    /* HERO */
    .hero {
      background: var(--yellow);
      padding: 36px 24px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content:''; position:absolute; top:-60px; left:-60px;
      width:260px; height:260px; border-radius:50%;
      background:rgba(255,255,255,0.14);
    }
    .hero::after {
      content:''; position:absolute; top:-30px; right:-80px;
      width:200px; height:200px; border-radius:50%;
      background:rgba(255,255,255,0.09);
    }
    .logo-img {
      width: min(300px, 85vw);
      position:relative; z-index:2;
      filter: drop-shadow(0 4px 16px rgba(0,0,0,0.22));
      animation: fadeDown 0.7s ease both;
    }
    .hero-tagline {
      font-family:'Bebas Neue',sans-serif;
      font-size:1.05rem; letter-spacing:3px;
      color:var(--navy); opacity:0.65;
      margin-top:4px;
      animation: fadeUp 0.6s 0.2s ease both;
      position:relative; z-index:2;
    }
    .badge {
      display:inline-block;
      background:var(--navy); color:var(--yellow);
      font-size:0.74rem; font-weight:700;
      letter-spacing:2px; text-transform:uppercase;
      padding:8px 22px; border-radius:100px;
      margin-top:14px;
      animation: fadeUp 0.6s 0.3s ease both;
      position:relative; z-index:2;
      box-shadow:0 4px 14px rgba(26,35,126,0.28);
    }
    .mascot-wrap {
      position:relative; z-index:3;
      display:flex; justify-content:center;
      margin-top:10px; margin-bottom:-8px;
    }
    .mascot-wrap img {
      width: min(210px, 58vw);
      filter: drop-shadow(0 8px 24px rgba(0,0,0,0.28));
      animation: mascotIn 0.9s 0.35s ease both;
    }

    /* WAVE */
    .wave { display:block; width:100%; }

    /* SECTIONS */
    .section { padding:40px 20px 48px; }
    .sec-navy { background:var(--navy); }
    .sec-navy2 { background:#0f1a6e; }

    .section-header { display:flex; align-items:center; gap:14px; margin-bottom:24px; }
    .section-icon {
      width:50px; height:50px; border-radius:14px;
      display:flex; align-items:center; justify-content:center; flex-shrink:0;
    }
    .section-label { font-family:'Bebas Neue',sans-serif; font-size:1.9rem; letter-spacing:2px; line-height:1; }
    .section-sublabel { font-size:0.7rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; opacity:0.5; margin-top:2px; }

    .cards { display:flex; flex-direction:column; gap:12px; }
    .card {
      display:flex; align-items:center; gap:14px;
      padding:16px 18px; border-radius:16px;
      text-decoration:none;
      transition:transform 0.18s,box-shadow 0.18s;
      position:relative; overflow:hidden;
    }
    .card::before {
      content:''; position:absolute; inset:0;
      background:linear-gradient(120deg,rgba(255,255,255,0.07) 0%,transparent 60%);
      pointer-events:none;
    }
    .card:active { transform:scale(0.97); }
    .card:hover { transform:translateY(-2px); }
    .card-ico { width:44px; height:44px; border-radius:11px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .card-num { font-family:'Bebas Neue',sans-serif; font-size:1.4rem; letter-spacing:1.5px; line-height:1; flex:1; color:var(--white); }
    .card-num small { display:block; font-family:'Montserrat',sans-serif; font-size:0.6rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; opacity:0.55; margin-bottom:2px; }
    .card-arrow { width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }

    .sec-navy .section-label { color:var(--yellow); }
    .sec-navy .section-sublabel { color:var(--white); }
    .sec-navy .section-icon { background:rgba(245,194,0,0.16); }
    .sec-navy .card { background:rgba(255,255,255,0.08); border:1.5px solid rgba(245,194,0,0.25); }
    .sec-navy .card:hover { box-shadow:0 4px 20px rgba(245,194,0,0.2); }
    .sec-navy .card-ico { background:var(--yellow); color:var(--navy); }
    .sec-navy .card-arrow { background:rgba(245,194,0,0.15); color:var(--yellow); }

    .sec-navy2 .section-label { color:#7EE87E; }
    .sec-navy2 .section-sublabel { color:var(--white); }
    .sec-navy2 .section-icon { background:rgba(126,232,126,0.14); }
    .sec-navy2 .card { background:rgba(255,255,255,0.06); border:1.5px solid rgba(126,232,126,0.2); }
    .sec-navy2 .card:hover { box-shadow:0 4px 20px rgba(126,232,126,0.15); }
    .sec-navy2 .card-ico { background:#7EE87E; color:#0a2a0a; }
    .sec-navy2 .card-arrow { background:rgba(126,232,126,0.15); color:#7EE87E; }

    /* ADDRESSES */
    .sec-address { background:var(--yellow); padding:40px 20px; }
    .address-title { font-family:'Bebas Neue',sans-serif; font-size:1.9rem; letter-spacing:2px; color:var(--navy); margin-bottom:20px; display:flex; align-items:center; gap:10px; }
    .address-cards { display:flex; flex-direction:column; gap:14px; }
    .address-card {
      background:var(--navy); border-radius:18px;
      padding:20px; display:flex; align-items:flex-start; gap:14px;
      text-decoration:none;
      transition:transform 0.18s,box-shadow 0.18s;
      box-shadow:0 6px 20px rgba(26,35,126,0.25);
    }
    .address-card:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(26,35,126,0.35); }
    .address-pin { width:40px; height:40px; border-radius:10px; background:var(--yellow); color:var(--navy); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .address-tag { font-family:'Bebas Neue',sans-serif; font-size:1.1rem; letter-spacing:2px; color:var(--yellow); margin-bottom:4px; }
    .address-text { font-size:0.82rem; font-weight:600; color:rgba(255,255,255,0.85); line-height:1.5; }
    .address-gmaps { display:inline-flex; align-items:center; gap:5px; margin-top:8px; font-size:0.7rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--yellow); opacity:0.8; }

    /* CTA */
    .sec-cta { background:var(--navy); padding:44px 20px 52px; }
    .cta-title { font-family:'Bebas Neue',sans-serif; font-size:1.8rem; letter-spacing:2px; color:var(--white); text-align:center; margin-bottom:6px; }
    .cta-sub { font-size:0.8rem; font-weight:600; color:rgba(255,255,255,0.5); text-align:center; letter-spacing:1px; margin-bottom:28px; }
    .cta-buttons { display:flex; flex-direction:column; gap:14px; }

    .btn-vip {
      display:flex; align-items:center; justify-content:center; gap:12px;
      background:linear-gradient(135deg,#25D366 0%,#128C7E 100%);
      color:var(--white); text-decoration:none;
      padding:18px 24px; border-radius:18px;
      font-family:'Bebas Neue',sans-serif; font-size:1.4rem; letter-spacing:2px;
      box-shadow:0 6px 24px rgba(37,211,102,0.35);
      transition:transform 0.18s,box-shadow 0.18s;
      position:relative; overflow:hidden;
    }
    .btn-vip::before { content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%; background:radial-gradient(circle,rgba(255,255,255,0.1) 0%,transparent 70%); }
    .btn-vip:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(37,211,102,0.45); }
    .btn-vip:active { transform:scale(0.97); }
    .btn-vip-badge { position:absolute; top:-1px; right:16px; background:var(--yellow); color:var(--navy); font-family:'Montserrat',sans-serif; font-size:0.6rem; font-weight:900; letter-spacing:1.5px; text-transform:uppercase; padding:3px 10px; border-radius:0 0 8px 8px; }
    .btn-vip-inner { display:flex; flex-direction:column; align-items:center; }
    .btn-vip-inner small { font-family:'Montserrat',sans-serif; font-size:0.68rem; font-weight:600; opacity:0.85; margin-top:1px; }

    .btn-orcamento {
      display:flex; align-items:center; justify-content:center; gap:12px;
      background:var(--yellow); color:var(--navy);
      text-decoration:none; padding:18px 24px; border-radius:18px;
      font-family:'Bebas Neue',sans-serif; font-size:1.4rem; letter-spacing:2px;
      box-shadow:0 6px 24px rgba(245,194,0,0.3);
      transition:transform 0.18s,box-shadow 0.18s;
    }
    .btn-orcamento:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(245,194,0,0.45); }
    .btn-orcamento:active { transform:scale(0.97); }
    .btn-orcamento-inner { display:flex; flex-direction:column; align-items:center; }
    .btn-orcamento-inner small { font-family:'Montserrat',sans-serif; font-size:0.68rem; font-weight:700; opacity:0.7; margin-top:1px; }

    /* FOOTER */
    footer { background:#090e3a; padding:32px 24px 44px; text-align:center; border-top:1px solid rgba(255,255,255,0.06); }
    .footer-logo { width:min(180px,55vw); opacity:0.88; margin-bottom:8px; }
    .footer-sub { font-size:0.75rem; color:rgba(255,255,255,0.35); }
    .footer-years { display:inline-flex; align-items:center; gap:8px; font-size:0.72rem; font-weight:600; color:rgba(255,255,255,0.35); letter-spacing:1.5px; text-transform:uppercase; margin-top:10px; }
    .footer-years::before,.footer-years::after { content:''; width:24px; height:1px; background:rgba(255,255,255,0.15); }
    .insta-link { display:inline-flex; align-items:center; gap:7px; margin-top:16px; color:rgba(255,255,255,0.45); text-decoration:none; font-size:0.8rem; font-weight:600; letter-spacing:1px; transition:color 0.2s; }
    .insta-link:hover { color:var(--yellow); }

    @media (max-width: 640px) {
      .hero {
        padding: 28px 16px 0;
      }

      .hero-tagline {
        font-size: 0.95rem;
        letter-spacing: 2px;
      }

      .badge {
        width: 100%;
        max-width: 340px;
        padding: 10px 14px;
        font-size: 0.68rem;
        letter-spacing: 1.2px;
        line-height: 1.5;
      }

      .mascot-wrap img {
        width: min(190px, 62vw);
      }

      .section,
      .sec-address,
      .sec-cta,
      footer {
        padding-left: 16px;
        padding-right: 16px;
      }

      .section-header,
      .address-title {
        gap: 10px;
      }

      .section-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
      }

      .section-label,
      .address-title,
      .cta-title {
        font-size: 1.55rem;
        line-height: 1;
      }

      .section-sublabel,
      .cta-sub {
        letter-spacing: 1.2px;
      }

      .card,
      .address-card,
      .btn-vip,
      .btn-orcamento {
        padding: 16px;
      }

      .card {
        gap: 12px;
        align-items: flex-start;
      }

      .card-ico,
      .card-arrow {
        flex-shrink: 0;
      }

      .card-num {
        font-size: 1.15rem;
        letter-spacing: 1px;
        line-height: 1.15;
        min-width: 0;
        overflow-wrap: anywhere;
      }

      .address-card {
        gap: 12px;
      }

      .address-tag {
        font-size: 1rem;
        letter-spacing: 1.5px;
      }

      .address-text {
        font-size: 0.78rem;
      }

      .btn-vip,
      .btn-orcamento {
        justify-content: flex-start;
        font-size: 1.2rem;
        letter-spacing: 1.2px;
      }

      .btn-vip {
        padding-top: 22px;
      }

      .btn-vip-badge {
        right: 12px;
      }

      .btn-vip-inner,
      .btn-orcamento-inner {
        align-items: flex-start;
        text-align: left;
      }

      .btn-vip-inner small,
      .btn-orcamento-inner small {
        line-height: 1.4;
      }

      .footer-years {
        font-size: 0.66rem;
        letter-spacing: 1px;
      }
    }

    @media (max-width: 420px) {
      .logo-img {
        width: min(250px, 82vw);
      }

      .badge {
        font-size: 0.64rem;
      }

      .section-label,
      .address-title,
      .cta-title {
        font-size: 1.4rem;
      }

      .card-num {
        font-size: 1.02rem;
      }

      .card-num small,
      .address-gmaps,
      .btn-vip-inner small,
      .btn-orcamento-inner small,
      .footer-sub,
      .insta-link {
        font-size: 0.7rem;
      }

      .footer-years::before,
      .footer-years::after {
        width: 14px;
      }
    }

    @keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
    @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
    @keyframes mascotIn { from{opacity:0;transform:translateY(40px) scale(0.9)} to{opacity:1;transform:translateY(0) scale(1)} }
    .reveal { opacity:0; transform:translateY(24px); transition:opacity 0.5s ease,transform 0.5s ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }
