@import url('https://cdn.jsdelivr.net/npm/myriad-font@0.0.2/css/myriad.min.css');
 
    :root {
      --gold: #edb100;
      --dark: #1a1a1a;
      --darker: #111;
      --white: #ffffff;
      --gray-light: #f5f5f5;
      --text: #333;
    }
 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
 
    body {
      font-family: 'Myriad Pro', sans-serif;
      color: var(--text);
      background: var(--white);
    }
 
    h1, h2, h3, h4 {
      font-family: 'Myriad Pro', sans-serif;
      text-transform: uppercase;
    }
 
    /* ─── HEADER ─────────────────────────────────── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 100px;
      background: rgba(20, 20, 20, 0.92);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 8%;
    }
 
    header .logo {
      height: 80px;
      cursor: pointer;
      transition: transform 0.3s;
    }
    header .logo:hover { transform: scale(1.05); }
 
    header nav ul {
      display: flex;
      list-style: none;
      gap: 32px;
    }
 
    header nav ul li {
      cursor: pointer;
      color: var(--gold);
      font-family: 'Myriad Pro', sans-serif;
      font-size: 13pt;
      transition: color 0.2s, text-shadow 0.2s;
      position: relative;
      padding-bottom: 4px;
    }
 
    header nav ul li::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--white);
      transition: width 0.3s;
    }
 
    header nav ul li:hover {
      color: var(--white);
      text-shadow: 0 0 12px rgba(255,255,255,0.5);
    }
    header nav ul li:hover::after { width: 100%; }
 
    .nav-highlight {
      color: var(--gold);
    }
 
    /* ─── S1 BANNER ──────────────────────────────── */
    #s1 {
      width: 100%;
      position: relative;
      padding-top: 100px;
    }
 
    #s1 img.banner {
      width: 100%;
      display: block;
    }
 
    /* ─── S2 SOBRE NÓS ───────────────────────────── */
    #s2 {
      width: 100%;
      padding: 72px 8%;
      padding-right: 0;
      display: flex;
      align-items: center;
      gap: 5%;
      background: var(--white);
    }
 
    #s2 .text-col {
      flex: 1;
    }
 
    #s2 h1 {
      margin-bottom: 28px;
      color: var(--dark);
      text-align: right;
    }
 
    #s2 p {
      font-size: 12pt;
      color: #000;
      margin-bottom: 14px;
      text-align: right;
    }
    #s2 .al-right{
      width: 100%;
      text-align: right;
    }
 
    #s2 .btn-cotacao {
      display: inline-block;
      margin-top: 24px;
      background: var(--dark);
      color: var(--white);
      font-family: 'Myriad Pro', sans-serif;
      font-size: 12pt;
      text-transform: uppercase;
      padding: 14px 40px;
      border-radius: 40px;
      text-decoration: none;
      transition: background 0.3s, transform 0.3s;
      font-weight: 900;
    }
 
    #s2 .btn-cotacao:hover {
      background: var(--gold);
      transform: scale(1.04);
    }
 
    #s2 .img-col {
      flex: 1;
    }
 
    #s2 .img-col img {
      width: 100%;
      border-radius: 12px;
      display: block;
    }
 
    /* ─── S3 POR QUE A AUTO REPAIR ───────────────── */
    #s3 {
      background: url(img/s3-back.png);
      background-size: 100% 100%;
      color: var(--white);
      padding: 72px 8%;
      text-align: center;
      padding-bottom: 300px;
    }
 
    #s3 h1 {
      margin-bottom: 12px;
    }
 
    #s3 .subtitle {
      font-size: 12pt;
      color: #fff;
      max-width: 640px;
      margin: 0 auto 48px;
      line-height: 1.7;
    }
 
    #s3 .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto 40px;
    }
 
    #s3 .card {
      text-align: left;
      transition: transform 0.3s;
      background-color: #141613;
      border-radius: 16px;
      text-align: center;
    }
 
    #s3 .card:hover { transform: translateY(-4px); }
 
    #s3 .card img {
      width: 100%;
      border-radius: 8px;
      display: block;
      margin-bottom: 14px;
      object-fit: cover;
    }
 
    #s3 .card h3 {
      font-size: 14pt;
      margin-bottom: 10px;
      font-weight: 900;
      width: 90%;
      margin-left: 5%;
    }
 
    #s3 .card p {
      font-size: 12pt;
      line-height: 1.7;
      color: #fff;
      width: 90%;
      margin-left: 5%;
      margin-bottom: 16px;
    }
 
    #s3 .btn-fale {
      display: inline-block;
      background: var(--gold);
      color: var(--dark);
      font-family: 'Myriad Pro', sans-serif;
      font-size: 12pt;
      font-weight: 900;
      text-transform: uppercase;
      padding: 14px 52px;
      border-radius: 40px;
      text-decoration: none;
      transition: transform 0.3s, background 0.3s;
    }
 
    #s3 .btn-fale:hover {
      transform: scale(1.05);
      background: #e0bb6a;
    }
 
    /* ─── S4 BANNER CTA ──────────────────────────── */
    #s4 {
      width: 100%;
      position: relative;
      margin-top: -200px;
    }
 
    #s4 img {
      width: 92%;
      margin-left: 4%;
      display: block;
    }
 
    /* ─── S5 NOSSOS SERVIÇOS ─────────────────────── */
    #s5 {
      padding: 72px 8%;
      background: var(--white);
      text-align: center;
    }
 
    #s5 h1 {
      font-size: 30px;
      margin-bottom: 48px;
      color: var(--dark);
    }
 
    #s5 .cards {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 52px;
    }
 
    #s5 .scard {
      flex: 1;
      max-width: 320px;
      border: 2px solid #000;
      border-radius: 16px;
      padding: 16px 28px;
      text-align: center;
      transition: border-color 0.3s, transform 0.3s;
    }
 
    #s5 .scard:hover {
      transform: translateY(-4px);
    }
 
    #s5 .scard img {
      width: 80px;
      margin-bottom: 16px;
    }
 
    #s5 .scard h3 {
      font-size: 18px;
      margin-bottom: 12px;
      color: var(--dark);
      font-weight: 900;
    }
 
    #s5 .scard p {
      font-size: 13px;
      color: #000;
    }
 
    #s5 .btn-cot {
      display: inline-block;
      background: var(--dark);
      color: var(--white);
      font-family: 'Myriad Pro', sans-serif;
      font-size: 12pt;
      font-weight: 900;
      text-transform: uppercase;
      padding: 14px 52px;
      border-radius: 40px;
      text-decoration: none;
      transition: transform 0.3s, background 0.3s;
    }
 
    #s5 .btn-cot:hover {
      background: var(--gold);
      transform: scale(1.05);
    }
 
    /* ─── FOOTER ─────────────────────────────────── */
    footer {
      width: 100%;
    }
 
    footer .top {
      background: var(--darker);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 8%;
      border-radius: 60px;
      gap: 32px;
    }
 
    footer .top .logo {
      height: 60px;
    }
 
    footer .top .socials p,
    footer .top .contact p.label,
    footer .top .email p.label {
      font-family: 'Myriad Pro', sans-serif;
      font-size: 13px;
      margin-bottom: 10px;
      color: #ccc;
    }
 
    footer .top .socials .icons {
      display: flex;
      gap: 10px;
      align-items: center;
    }
 
    footer .top .socials .icons a img {
      width: 30px;
      transition: transform 0.3s;
    }
 
    footer .top .socials .icons a img:hover { transform: scale(1.1); }
 
    footer .top p {
      font-size: 13px;
      color: #ccc;
      margin-bottom: 4px;
    }
 
    footer .bottom {
      background: #fff;
      text-align: center;
      padding: 16px 8%;
    }
 
    footer .bottom p {
      font-size: 12pt;
      color: #000;
    }
 
    footer .bottom a {
      color: #000;
      text-decoration: none;
      font-weight: 600;
    }
 
 
    /* ─── RESPONSIVE ─────────────────────────────── */
    #menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }
 
    #menu-btn span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: 0.3s;
    }
 
    @media (max-width: 1024px) {
      #menu-btn { display: flex; }
 
      header nav {
        display: none;
        position: fixed;
        top: 70px; right: 0;
        width: 65%;
        background: #111;
        padding: 24px 32px;
        border-bottom-left-radius: 16px;
        box-shadow: -4px 8px 24px rgba(0,0,0,0.6);
      }
 
      header nav.open { display: block; }
 
      header nav ul {
        flex-direction: column;
        gap: 24px;
      }
 
      #s2 { flex-direction: column; }
      #s2 .img-col { order: -1; }
 
      #s3 .grid { grid-template-columns: repeat(2, 1fr); }
 
      #s5 .cards { flex-direction: column; align-items: center; }
 
      footer .top {
        flex-direction: column;
        text-align: center;
        border-radius: 40px 40px 0 0;
      }
 
      footer .top .socials .icons { justify-content: center; }
    }
 
    @media (max-width: 600px) {
      #s3 .grid { grid-template-columns: 1fr; }
    }