:root {
      --green: #47b9a3;
      --green-dark: #32927f;
      --black: #111111;
      --dark: #1c1c1c;
      --gray: #666666;
      --light: #f7f7f7;
      --white: #ffffff;
      --border: #e8e8e8;
      --radius: 22px;
      --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial,Helvetica,sans-serif;
      color: var(--black);
      background: var(--white);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(100% - 32px, var(--max));
      margin-inline: auto;
    }

    .topbar {
      background: var(--black);
      color: var(--white);
      font-size: 0.92rem;
      padding: 10px 0;
    }

    .topbar .container {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .topbar strong, .green-text {
      color: var(--green);
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .center {
        text-align: center;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 800;
      letter-spacing: -0.04em;
      font-size: 1.15rem;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--green), #9ee6d8);
      display: grid;
      place-items: center;
      color: var(--black);
      box-shadow: 0 10px 28px rgba(71, 185, 163, 0.35);
      font-size: 1.35rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 0.95rem;
      font-weight: 600;
      color: #333;
    }

    .nav-links a:hover {
      color: var(--green-dark);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 13px 22px;
      border-radius: 999px;
      font-weight: 800;
      border: 2px solid transparent;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      text-align: center;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--green);
      color: var(--black);
      box-shadow: 0 14px 32px rgba(71, 185, 163, 0.35);
    }

    .btn-primary:hover {
      background: #5ed0ba;
    }

    .btn-dark {
      background: var(--black);
      color: var(--white);
    }

    .btn-outline {
      border-color: rgba(255, 255, 255, 0.55);
      color: var(--white);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
    }

    .hero {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background:
        radial-gradient(circle at 78% 20%, rgba(71, 185, 163, 0.32), transparent 34%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.72)),
        url('imagens/taxi-torres-vedras.jpg') center/cover no-repeat;
      min-height: 420px;
      display: flex;
      align-items: center;
      padding: 60px 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 46px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(71, 185, 163, 0.14);
      color: #a9f0e3;
      border: 1px solid rgba(71, 185, 163, 0.38);
      border-radius: 999px;
      padding: 8px 14px;
      font-weight: 800;
      font-size: 0.9rem;
      margin-bottom: 22px;
    }

    h1 {
      font-size: clamp(2.5rem, 5vw, 5rem);
      line-height: 0.98;
      letter-spacing: -0.07em;
      margin-bottom: 24px;
    }

    .hero p {
      font-size: clamp(1.05rem, 1.8vw, 1.28rem);
      color: rgba(255, 255, 255, 0.86);
      max-width: 890px;
      margin: 0 auto;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .trust-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 730px;
    }

    .trust-item {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 18px;
      padding: 14px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.94);
    }

    .hero-card {
      background: var(--white);
      color: var(--black);
      border-radius: 30px;
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .hero-card h2 {
      font-size: 1.7rem;
      line-height: 1.1;
      letter-spacing: -0.04em;
      margin-bottom: 12px;
    }

    .hero-card p {
      color: var(--gray);
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .booking-box {
      display: grid;
      gap: 12px;
    }

    .booking-row {
      padding: 15px;
      background: var(--light);
      border: 1px solid var(--border);
      border-radius: 16px;
    }

    .booking-row strong {
      display: block;
      margin-bottom: 4px;
    }

    .booking-row span {
      color: var(--gray);
      font-size: 0.94rem;
    }

    .section {
      padding: 92px 0;
    }

    .section-title {
      max-width: 780px;
      margin-bottom: 44px;
    }

    .section-title.center {
      margin-inline: auto;
      text-align: center;
      padding: 0 12px;
    }

    .section-title .label {
      color: var(--green-dark);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.8rem;
      margin-bottom: 10px;
    }

    h2 {
      font-size: clamp(2rem, 3.4vw, 3.4rem);
      line-height: 1.05;
      letter-spacing: -0.06em;
      margin-bottom: 16px;
    }

    h2.label-title {
      font-weight: 900;
      color: var(--green-dark);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 1.4rem;
      margin: 50px 0 10px 0;
    }

    ul li {
      list-style-type: none;
    }

    .section-title p {
      color: var(--gray);
      font-size: 1.08rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
      min-height: 255px;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      background: #e2f8f4;
      display: grid;
      place-items: center;
      font-size: 1.45rem;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 1.28rem;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }

    .service-card p {
      color: var(--gray);
    }

    .feature-band {
      background: var(--black);
      color: var(--white);
      border-radius: 34px;
      padding: 54px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .feature-band::after {
      content: '';
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 999px;
      background: rgba(71, 185, 163, 0.18);
      right: -90px;
      top: -90px;
    }

    .feature-band h2,
    .feature-band p,
    .feature-band ul,
    .feature-band a {
      position: relative;
      z-index: 1;
    }

    .feature-band p {
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: 22px;
    }

    .check-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      list-style: none;
    }

    .check-list li {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 16px;
      padding: 14px;
      font-weight: 700;
    }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .area-pill {
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 13px 18px;
      text-align: center;
      font-weight: 800;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      counter-reset: step;
    }

    .step {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      position: relative;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    }

    .step::before {
      counter-increment: step;
      content: counter(step);
      width: 42px;
      height: 42px;
      border-radius: 999px;
      background: var(--green);
      display: grid;
      place-items: center;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .step h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .step p {
      color: var(--gray);
    }

    .contact-section {
      background: linear-gradient(135deg, #171717, #050505);
      color: var(--white);
      padding: 92px 0;
    }


    .contact-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 28px;
      padding: 30px;
    }

    .contact-card h2 {
      margin-bottom: 14px;
    }

    .contact-card p {
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: 24px;
    }

    .contact-methods {
      display: grid;
      gap: 12px;
    }

    .contact-method {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-method span {
      color: rgba(255, 255, 255, 0.65);
      display: block;
      font-size: 0.9rem;
    }

    form {
      background: var(--white);
      color: var(--black);
      border-radius: 28px;
      padding: 30px;
      box-shadow: var(--shadow);
      display: grid;
      gap: 16px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    label {
      display: grid;
      gap: 7px;
      font-weight: 800;
      font-size: 0.92rem;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 14px 15px;
      font: inherit;
      background: #fbfbfb;
      color: var(--black);
    }

    textarea {
      min-height: 126px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: 3px solid rgba(71, 185, 163, 0.28);
      border-color: var(--green-dark);
    }

    .faq {
      display: grid;
      gap: 14px;
      max-width: 900px;
      margin: 0 auto;
    }

    summary::marker {
        color: var(--green-dark);
    }

    details {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 20px 22px;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    }

    summary {
      cursor: pointer;
      font-weight: 900;
      font-size: 1.05rem;
    }

    details p {
      color: var(--gray);
      margin-top: 12px;
    }

    .floating-cta {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 80;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .floating-cta a {
      width: 58px;
      height: 58px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      font-size: 1.45rem;
      box-shadow: var(--shadow);
    }

    .float-phone {
      background: var(--green);
    }

    .float-whatsapp {
      background: #25d366;
      color: var(--white);
    }
    .float-whatsapp svg {
        width: 30px;
    }

    footer {
      background: var(--green-dark);
      color: var(--black);
      padding: 34px 0;
      font-size: 0.92rem;
    }

    footer .container {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    footer a {
      color: var(--black);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .feature-band,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
        padding: 70px 0;
      }

      .services-grid,
      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .areas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .nav-links {
        display: none;
      }
      footer .container {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap-reverse;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 24px, var(--max));
      }

      .topbar {
        display: none;
      }


      .nav {
        min-height: 68px;
      }

      .brand {
        font-size: 1.1rem;
      }

      .brand-mark {
        width: 40px;
        height: 40px;
      }

      .trust-list,
      .services-grid,
      .steps,
      .check-list,
      .areas-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .feature-band,
      .contact-card,
      form {
        padding: 24px;
        border-radius: 24px;
      }

      .section,
      .contact-section {
        padding: 64px 0;
      }

      .floating-cta {
        right: 12px;
        bottom: 12px;
      }
    }