:root {
  --navy: #0b2f5b;
  --blue: #155aa8;
  --sky: #2d8ceb;
  --orange: #f47a20;
  --yellow: #ffc83d;
  --ink: #122033;
  --muted: #617086;
  --light: #f5f8fc;
  --white: #fff;
  --border: #dce5ef;
  --shadow: 0 20px 60px rgba(11, 47, 91, 0.14);
  --radius: 24px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 229, 239, 0.7);
  transition: 0.25s;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(11, 47, 91, 0.08);
}
.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}
.main-nav > a:not(.btn) {
  position: relative;
}
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.2s;
}
.main-nav > a:hover::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ff9d2e);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(244, 122, 32, 0.25);
  border: 0;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-small {
  min-height: 42px;
  padding: 0 18px;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: none;
}
.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 1s ease,
    transform 7s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(4, 22, 43, 0.92) 0%,
    rgba(4, 22, 43, 0.72) 45%,
    rgba(4, 22, 43, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.hero-content h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 1.02;
  max-width: 900px;
  margin: 0.3em 0;
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--orange);
}
.hero .eyebrow,
.section-dark .eyebrow,
.download-section .eyebrow,
.cta-section .eyebrow {
  color: var(--yellow);
}
.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.hero-dot.is-active {
  width: 30px;
  background: #fff;
}
.section {
  padding: 100px 0;
}
.section-light {
  background: var(--light);
}
.section-dark {
  background: linear-gradient(135deg, #071d37, var(--navy));
  color: #fff;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-heading h2,
.split-layout h2,
.app-copy h2,
.download-layout h2,
.faq-layout h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  margin: 0.35em 0;
}
.section-heading p,
.app-copy > p,
.split-layout > div > p,
.download-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}
.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 40px rgba(11, 47, 91, 0.06);
  transition: 0.2s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 18px;
}
.service-card h3,
.benefit-grid h3 {
  margin: 0.2em 0;
}
.service-card p,
.benefit-grid p {
  color: var(--muted);
  margin-bottom: 0;
}
.app-section {
  overflow: hidden;
}
.app-layout,
.split-layout,
.download-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.feature-list div {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
}
.feature-list strong,
.feature-list span {
  display: block;
}
.feature-list span {
  color: var(--muted);
  font-size: 0.94rem;
}
.phone-stage {
  position: relative;
  min-height: 620px;
}
.phone {
  position: absolute;
  max-height: 590px;
  width: auto;
  filter: drop-shadow(0 30px 40px rgba(11, 47, 91, 0.22));
}
.phone-main {
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.phone-back {
  left: 2%;
  top: 60px;
  transform: rotate(-8deg);
  z-index: 1;
}
.phone-front {
  right: 2%;
  top: 75px;
  transform: rotate(8deg);
  z-index: 2;
}
.visual-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 460px;
}
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-visual {
  min-height: 0;
  aspect-ratio: 6/5;
}
.business-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.check-list {
  padding: 0;
  margin: 26px 0;
  list-style: none;
}
.check-list li {
  padding: 10px 0 10px 30px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}
.reverse > div:first-child {
  order: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.stats-grid div {
  background: var(--light);
  padding: 20px;
  border-radius: 18px;
}
.stats-grid strong,
.stats-grid span {
  display: block;
}
.stats-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.benefit-grid article {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--border);
}
.benefit-grid img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.download-section {
  background: linear-gradient(135deg, var(--navy), #0a457e);
  color: #fff;
  overflow: hidden;
}
.download-layout p {
  color: rgba(255, 255, 255, 0.72);
}
.store-buttons {
  display: flex;
  justify-content: left;
  align-items: left;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.store-buttons a {
  display: flex;
  align-items: left;
  justify-content: left;
  color: var(--navy);
  padding: 14px 12px;
  border-radius: 14px;
  font-weight: 800;
}
.download-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}
.download-phones img {
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.28));
}
.download-phones img:first-child {
  transform: translateY(40px);
}
.faq-layout {
  align-items: start;
}
.faq-mascots {
  max-width: 360px;
  margin-top: 30px;
}
.accordion {
  display: grid;
  gap: 12px;
}
.accordion details {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  background: #fff;
}
.accordion summary {
  font-weight: 800;
  cursor: pointer;
}
.accordion p {
  color: var(--muted);
}
.cta-section {
  padding-top: 30px;
}
.cta-card {
  background: linear-gradient(135deg, #0b2f5b, #155aa8);
  color: #fff;
  border-radius: 32px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-card h2 {
  margin-bottom: 0;
  max-width: 760px;
}
.site-footer {
  background: #06182d;
  color: rgba(255, 255, 255, 0.76);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}
.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
}
.footer-grid h3 {
  color: #fff;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
}
.placeholder-note {
  font-size: 0.85rem;
  color: var(--muted);
}
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav .btn {
    width: 100%;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-layout,
  .split-layout,
  .download-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .reverse > div:first-child {
    order: 0;
  }
  .phone-stage {
    min-height: 570px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .header-inner {
    height: 68px;
  }
  .brand img {
    height: 40px;
  }
  .hero {
    min-height: 720px;
  }
  .hero-content {
    padding-top: 90px;
  }
  .hero-content h1 {
    font-size: 2.65rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .section {
    padding: 72px 0;
  }
  .service-grid,
  .benefit-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .phone-stage {
    min-height: 460px;
  }
  .phone {
    max-height: 430px;
  }
  .phone-back {
    left: -8%;
  }
  .phone-front {
    right: -8%;
  }
  .download-phones img {
    max-height: 360px;
  }
  .cta-card {
    padding: 32px;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .visual-card {
    min-height: 320px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ==============================
   Slider de motoristas parceiros
   ============================== */

.drivers-slider-section {
      overflow: hidden;
    }

    .drivers-slider-heading {
      max-width: 760px;
      margin-bottom: 3.5rem;
    }

    .drivers-slider-heading p {
      max-width: 680px;
      margin-inline: auto;
    }

    .drivers-slider {
      position: relative;
    }

    .drivers-slides {
      position: relative;
      min-height: 650px;
    }

    .driver-slide {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      align-items: center;
      gap: clamp(2rem, 5vw, 5rem);
      opacity: 0;
      visibility: hidden;
      transform: translateX(28px);
      transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
      pointer-events: none;
    }

    .driver-slide.is-active {
      position: relative;
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
      pointer-events: auto;
    }

    .driver-slide__media {
      overflow: hidden;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
      aspect-ratio: 4 / 5;
    }

    .driver-slide__media img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .driver-slide__content {
      max-width: 560px;
    }

    .driver-slide__content h3 {
      margin: 0 0 1.25rem;
      font-size: clamp(2rem, 4vw, 3.35rem);
      line-height: 1.08;
    }

    .driver-slide__content p {
      margin: 0 0 1.5rem;
    }

    .driver-slide__content .check-list {
      margin-top: 1.75rem;
    }

    .drivers-slider__arrow {
      position: absolute;
      top: 50%;
      z-index: 5;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 50%;
      background: rgba(6, 24, 45, 0.58);
      color: #fff;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      transform: translateY(-50%);
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
      backdrop-filter: blur(8px);
    }

    .drivers-slider__arrow:hover,
    .drivers-slider__arrow:focus-visible {
      background: rgba(244, 122, 32, 0.9);
      border-color: rgba(255, 255, 255, 0.7);
    }

    .drivers-slider__arrow--prev { left: -24px; }
    .drivers-slider__arrow--next { right: -24px; }

    .drivers-slider__dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
    }

    .drivers-slider__dot {
      width: 10px;
      height: 10px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.38);
      cursor: pointer;
      transition: width 0.25s ease, background 0.25s ease;
    }

    .drivers-slider__dot.is-active {
      width: 30px;
      background: #fff;
    }

    @media (max-width: 980px) {
      .drivers-slides { min-height: 0; }
      .driver-slide { grid-template-columns: 1fr; gap: 2rem; }
      .driver-slide__media { width: min(100%, 620px); margin-inline: auto; }
      .driver-slide__content { max-width: none; }
      .drivers-slider__arrow { top: 34%; }
      .drivers-slider__arrow--prev { left: 12px; }
      .drivers-slider__arrow--next { right: 12px; }
    }

    @media (max-width: 640px) {
      .drivers-slider-heading { margin-bottom: 2.5rem; }
      .driver-slide__media { border-radius: 22px; }
      .drivers-slider__arrow { width: 42px; height: 42px; font-size: 1.65rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      .driver-slide,
      .drivers-slider__arrow,
      .drivers-slider__dot { transition: none; }
    }

/* Contato */
.contact-section {
  background: var(--light);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(40px, 7vw, 90px);
}

.contact-copy {
  position: sticky;
  top: 118px;
}

.contact-copy h2 {
  margin: 0.35em 0;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
}

.contact-copy > p {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(11, 47, 91, 0.06);
}

.contact-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
}

.contact-card a {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: var(--blue);
  font-weight: 800;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

.contact-card p {
  margin: 22px 0 0;
  color: var(--muted);
}

.contact-form {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 800;
}

.form-field .optional {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cdd9e7;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 150px;
  padding: 13px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 90, 168, 0.12);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #b42318;
}

.form-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-submit {
  min-width: 190px;
  cursor: pointer;
}

.form-status {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.form-status.is-success {
  border: 1px solid #86c79c;
  background: #edf9f1;
  color: #176b36;
}

.form-status.is-error {
  border: 1px solid #e6a6a1;
  background: #fff1f0;
  color: #8f2018;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .contact-submit {
    width: 100%;
  }
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}
/* =========================================================
   BANNER DE CONSENTIMENTO DE COOKIES
   ========================================================= */

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 9999;

  width: calc(100% - 48px);
  max-width: 980px;
  margin: 0 auto;

  background: #ffffff;
  border: 1px solid rgba(11, 47, 91, 0.14);
  border-top: 4px solid #f7931e;
  border-radius: 16px;

  box-shadow:
    0 18px 50px rgba(11, 47, 91, 0.18),
    0 4px 14px rgba(11, 47, 91, 0.08);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  padding: 22px 24px;
}

.cookie-banner__text {
  flex: 1;
  min-width: 0;
}

.cookie-banner__text h2 {
  margin: 0 0 7px;
  color: #0b2f5b;
  font-size: 1.05rem;
  line-height: 1.3;
}

.cookie-banner__text p {
  max-width: 690px;
  margin: 0 0 8px;

  color: #40546b;
  font-size: 0.94rem;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: #0b2f5b;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #f7931e;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cookie-banner__text a:hover {
  color: #f7931e;
}

.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.cookie-button {
  min-width: 112px;
  min-height: 44px;
  padding: 11px 20px;

  border-radius: 10px;

  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.cookie-button:hover {
  transform: translateY(-1px);
}

.cookie-button:focus-visible {
  outline: 3px solid rgba(247, 147, 30, 0.4);
  outline-offset: 3px;
}

.cookie-button--decline {
  color: #0b2f5b;
  background: #ffffff;
  border: 1px solid #0b2f5b;
}

.cookie-button--decline:hover {
  color: #ffffff;
  background: #0b2f5b;
}

.cookie-button--accept {
  color: #ffffff;
  background: #0b2f5b;
  border: 1px solid #0b2f5b;
}

.cookie-button--accept:hover {
  color: #ffffff;
  background: #f7931e;
  border-color: #f7931e;
}

/* Entrada suave do banner */
.cookie-banner.is-visible {
  animation: cookieBannerEnter 320ms ease both;
}

@keyframes cookieBannerEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablets e celulares */
@media (max-width: 760px) {
  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;

    width: calc(100% - 28px);
    border-radius: 14px;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;

    padding: 20px;
  }

  .cookie-banner__text h2 {
    font-size: 1rem;
  }

  .cookie-banner__text p {
    font-size: 0.9rem;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-button {
    flex: 1;
    min-width: 0;
  }
}

/* Celulares estreitos */
@media (max-width: 390px) {
  .cookie-banner__actions {
    flex-direction: column-reverse;
  }

  .cookie-button {
    width: 100%;
  }
}

/* Respeita a preferência por menos animações */
@media (prefers-reduced-motion: reduce) {
  .cookie-banner.is-visible {
    animation: none;
  }

  .cookie-button {
    transition: none;
  }

  .cookie-button:hover {
    transform: none;
  }
}