:root {
      --azul-nobre: #023864;
      --azul-profundo: #012b4d;
      --dourado-claro: #F5D570;
      --dourado-forte: #E2B72C;
      --creme: #F7F1DF;
      --branco: #ffffff;
      --cinza-claro: #f5f6f8;
      --cinza-texto: #5d6673;
      --texto: #15202b;
      --sombra: 0 20px 60px rgba(2, 56, 100, 0.15);
      --radius: 24px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Georgia, "Times New Roman", serif;
      background: var(--creme);
      color: var(--texto);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a,
    a:visited,
    a:hover,
    a:focus,
    a:active {
      text-decoration: none !important;
      color: inherit;
    }

    .container {
      width: min(1180px, 92%);
      margin: 0 auto;
    }

    /* HEADER */

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 999;
      background: rgba(247, 241, 223, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(2, 56, 100, 0.08);
    }

    .navbar {
      height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 700;
      color: var(--azul-nobre);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .brand img {
      width: 68px;
      height: auto;
    }

    .brand span {
      font-size: 1rem;
      line-height: 1.1;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 28px;
      font-family: Arial, sans-serif;
      font-size: 0.95rem;
      color: var(--azul-nobre);
      font-weight: 600;
    }

    nav a {
      position: relative;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--dourado-forte);
      transition: 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    .nav-cta {
      font-family: Arial, sans-serif;
      background: var(--azul-nobre);
      color: var(--branco);
      padding: 13px 22px;
      border-radius: 999px;
      font-weight: 700;
      box-shadow: 0 10px 25px rgba(2, 56, 100, 0.22);
      transition: 0.3s ease;
    }

    .nav-cta:hover {
      background: var(--azul-profundo);
      transform: translateY(-2px);
    }

    /* HERO */

    .hero {
      padding: 160px 0 90px;
      background:
        radial-gradient(circle at top right, rgba(245, 213, 112, 0.45), transparent 34%),
        linear-gradient(135deg, var(--creme) 0%, #fffaf0 55%, #ffffff 100%);
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 64px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: Arial, sans-serif;
      color: var(--azul-nobre);
      background: rgba(245, 213, 112, 0.42);
      border: 1px solid rgba(226, 183, 44, 0.35);
      padding: 9px 16px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      background: var(--dourado-forte);
      border-radius: 50%;
    }

    h1 {
      font-size: clamp(2.6rem, 6vw, 5.5rem);
      line-height: 0.95;
      color: var(--azul-nobre);
      letter-spacing: -0.06em;
      margin-bottom: 26px;
    }

    h1 span {
      color: var(--dourado-forte);
      display: block;
    }

    .hero p {
      font-family: Arial, sans-serif;
      font-size: 1.16rem;
      color: var(--cinza-texto);
      max-width: 650px;
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 36px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 26px;
      border-radius: 999px;
      font-family: Arial, sans-serif;
      font-weight: 800;
      transition: 0.3s ease;
      border: 2px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--azul-nobre);
      color: var(--branco);
      box-shadow: 0 16px 34px rgba(2, 56, 100, 0.24);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      background: var(--azul-profundo);
    }

    .btn-secondary {
      background: transparent;
      color: var(--azul-nobre);
      border-color: rgba(2, 56, 100, 0.22);
    }

    .btn-secondary:hover {
      background: var(--branco);
      border-color: var(--dourado-forte);
      transform: translateY(-3px);
    }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      font-family: Arial, sans-serif;
    }

    .proof-item {
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(2, 56, 100, 0.08);
      border-radius: 18px;
      padding: 16px 18px;
      min-width: 150px;
      box-shadow: 0 10px 30px rgba(2, 56, 100, 0.07);
    }

    .proof-item strong {
      display: block;
      color: var(--azul-nobre);
      font-size: 1.35rem;
      margin-bottom: 2px;
    }

    .proof-item span {
      color: var(--cinza-texto);
      font-size: 0.9rem;
    }

    .hero-card {
      position: relative;
      background: var(--azul-nobre);
      border-radius: 38px;
      padding: 42px;
      color: var(--branco);
      box-shadow: var(--sombra);
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 2px solid rgba(245, 213, 112, 0.45);
      border-radius: 28px;
      pointer-events: none;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -80px;
      width: 220px;
      height: 220px;
      background: var(--dourado-forte);
      opacity: 0.18;
      border-radius: 50%;
    }

    .logo-frame {
      background: var(--creme);
      border-radius: 28px;
      padding: 34px;
      margin-bottom: 28px;
      position: relative;
      z-index: 2;
    }

    .logo-frame img {
      width: 260px;
      margin: 0 auto;
    }

    .hero-card h2 {
      font-size: 2rem;
      line-height: 1.1;
      margin-bottom: 16px;
      position: relative;
      z-index: 2;
    }

    .hero-card p {
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: 24px;
      position: relative;
      z-index: 2;
    }

    .mini-list {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 12px;
      font-family: Arial, sans-serif;
      font-size: 0.95rem;
    }

    .mini-list div {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .mini-list div::before {
      content: "✓";
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--dourado-claro);
      color: var(--azul-nobre);
      border-radius: 50%;
      font-weight: 900;
      flex: 0 0 auto;
    }

    /* SECTIONS */

    section {
      padding: 92px 0;
    }

    .section-heading {
      max-width: 760px;
      margin-bottom: 48px;
    }

    .section-label {
      font-family: Arial, sans-serif;
      color: var(--dourado-forte);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 900;
      font-size: 0.82rem;
      margin-bottom: 12px;
    }

    .section-heading h2 {
      color: var(--azul-nobre);
      font-size: clamp(2.1rem, 4vw, 3.6rem);
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
    }

    .section-heading p {
      font-family: Arial, sans-serif;
      color: var(--cinza-texto);
      font-size: 1.08rem;
    }

    /* SERVICES */

    .services {
      background: var(--branco);
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .card {
      background: var(--creme);
      border: 1px solid rgba(2, 56, 100, 0.08);
      border-radius: var(--radius);
      padding: 30px;
      transition: 0.3s ease;
      min-height: 270px;
    }

    .card:hover {
      transform: translateY(-7px);
      box-shadow: 0 18px 45px rgba(2, 56, 100, 0.12);
    }

    .icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: var(--azul-nobre);
      color: var(--dourado-claro);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Arial, sans-serif;
      font-weight: 900;
      font-size: 1.3rem;
      margin-bottom: 22px;
    }

    .card h3 {
      color: var(--azul-nobre);
      font-size: 1.5rem;
      margin-bottom: 14px;
      line-height: 1.1;
    }

    .card p {
      font-family: Arial, sans-serif;
      color: var(--cinza-texto);
      font-size: 0.98rem;
    }

    /* PROCESS */

    .process {
      background: linear-gradient(180deg, var(--branco), var(--creme));
    }

    .process-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 52px;
      align-items: center;
    }

    .process-box {
      background: var(--azul-nobre);
      color: var(--branco);
      border-radius: 34px;
      padding: 42px;
      box-shadow: var(--sombra);
    }

    .process-box h3 {
      font-size: 2.5rem;
      line-height: 1;
      margin-bottom: 18px;
    }

    .process-box p {
      font-family: Arial, sans-serif;
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: 26px;
    }

    .highlight {
      background: rgba(245, 213, 112, 0.14);
      border: 1px solid rgba(245, 213, 112, 0.35);
      border-radius: 20px;
      padding: 22px;
      font-family: Arial, sans-serif;
      color: var(--dourado-claro);
      font-weight: 700;
    }

    .steps {
      display: grid;
      gap: 18px;
    }

    .step {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 18px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(2, 56, 100, 0.08);
      border-radius: 22px;
      padding: 22px;
    }

    .step-number {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: var(--dourado-claro);
      color: var(--azul-nobre);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Arial, sans-serif;
      font-weight: 900;
      font-size: 1.2rem;
    }

    .step h4 {
      color: var(--azul-nobre);
      font-size: 1.35rem;
      margin-bottom: 5px;
    }

    .step p {
      font-family: Arial, sans-serif;
      color: var(--cinza-texto);
      font-size: 0.96rem;
    }

    /* REVIEWS */

    .reviews {
      background: var(--azul-nobre);
      color: var(--branco);
      position: relative;
      overflow: hidden;
    }

    .reviews::before {
      content: "";
      position: absolute;
      top: -160px;
      right: -160px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: var(--dourado-forte);
      opacity: 0.14;
    }

    .reviews .section-heading h2 {
      color: var(--branco);
    }

    .reviews .section-heading p {
      color: rgba(255, 255, 255, 0.72);
    }

    .reviews-carousel {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 48px 1fr 48px;
      gap: 18px;
      align-items: center;
    }

    .reviews-summary {
      position: relative;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
      font-family: Arial, sans-serif;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(245, 213, 112, 0.24);
      border-radius: 999px;
      padding: 12px 18px;
      color: rgba(255, 255, 255, 0.84);
    }

    .reviews-summary strong {
      color: var(--branco);
      font-size: 1.05rem;
    }

    .reviews-summary .stars {
      margin: 0;
      font-size: 0.98rem;
      letter-spacing: 1px;
    }

    .reviews-viewport {
      overflow: hidden;
      width: 100%;
      padding: 2px;
    }

    .reviews-track {
      display: flex;
      gap: 22px;
      transition: transform 0.35s ease;
      will-change: transform;
      cursor: grab;
      user-select: none;
      touch-action: pan-y;
    }

    .reviews-track:active {
      cursor: grabbing;
    }

    .review-card {
      flex: 0 0 calc((100% - 44px) / 3);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(245, 213, 112, 0.22);
      border-radius: var(--radius);
      padding: 30px;
      backdrop-filter: blur(10px);
      min-height: 285px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .stars {
      color: var(--dourado-claro);
      font-family: Arial, sans-serif;
      letter-spacing: 2px;
      margin-bottom: 18px;
      font-size: 1.1rem;
    }

    .review-card p {
      font-family: Arial, sans-serif;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 24px;
      font-size: 0.98rem;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
      font-family: Arial, sans-serif;
    }

    .review-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--dourado-claro);
      color: var(--azul-nobre);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .review-author strong {
      display: block;
      color: var(--dourado-claro);
      font-family: Arial, sans-serif;
      line-height: 1.2;
    }

    .review-author span {
      display: block;
      color: rgba(255, 255, 255, 0.58);
      font-size: 0.86rem;
      margin-top: 3px;
    }

    .review-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(245, 213, 112, 0.34);
      background: rgba(255, 255, 255, 0.08);
      color: var(--dourado-claro);
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      transition: 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .review-btn:hover {
      background: var(--dourado-claro);
      color: var(--azul-nobre);
      transform: translateY(-2px);
    }

    .review-btn:disabled {
      opacity: 0.35;
      cursor: not-allowed;
      transform: none;
    }

    .review-dots {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }

    .review-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.35);
      cursor: pointer;
      transition: 0.25s ease;
    }

    .review-dot.active {
      width: 24px;
      border-radius: 999px;
      background: var(--dourado-claro);
    }

    .review-note {
      position: relative;
      z-index: 2;
      margin-top: 22px;
      font-family: Arial, sans-serif;
      color: rgba(255, 255, 255, 0.66);
      font-size: 0.94rem;
    }

    .google-word {
      color: var(--dourado-claro);
      font-weight: 900;
    }

    /* WHY */

    .why {
      background: var(--creme);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .why-item {
      background: var(--branco);
      border-radius: 24px;
      padding: 30px;
      border-left: 6px solid var(--dourado-forte);
      box-shadow: 0 10px 30px rgba(2, 56, 100, 0.06);
    }

    .why-item h3 {
      color: var(--azul-nobre);
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .why-item p {
      font-family: Arial, sans-serif;
      color: var(--cinza-texto);
    }

    /* CTA */

    .cta-section {
      background:
        linear-gradient(rgba(2, 56, 100, 0.92), rgba(2, 56, 100, 0.92)),
        radial-gradient(circle at top left, var(--dourado-claro), transparent 40%);
      color: var(--branco);
      text-align: center;
      padding: 100px 0;
    }

    .cta-box {
      max-width: 820px;
      margin: 0 auto;
    }

    .cta-box h2 {
      font-size: clamp(2.2rem, 5vw, 4.4rem);
      line-height: 1;
      margin-bottom: 22px;
    }

    .cta-box p {
      font-family: Arial, sans-serif;
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.1rem;
      margin-bottom: 34px;
    }

    .cta-section .btn-primary {
      background: var(--dourado-claro);
      color: var(--azul-nobre);
    }

    .cta-section .btn-primary:hover {
      background: var(--dourado-forte);
    }

    /* CONTACT */

    .contact {
      background: var(--branco);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 40px;
      align-items: start;
    }

    .contact-info {
      background: var(--creme);
      border-radius: 30px;
      padding: 36px;
      border: 1px solid rgba(2, 56, 100, 0.08);
    }

    .contact-info h3 {
      color: var(--azul-nobre);
      font-size: 2rem;
      margin-bottom: 16px;
    }

    .contact-info p {
      font-family: Arial, sans-serif;
      color: var(--cinza-texto);
      margin-bottom: 24px;
    }

    .contact-line {
      font-family: Arial, sans-serif;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 16px;
      color: var(--azul-nobre);
      font-weight: 700;
    }

    form {
      background: var(--azul-nobre);
      padding: 36px;
      border-radius: 30px;
      box-shadow: var(--sombra);
    }

    .form-group {
      margin-bottom: 18px;
    }

    label {
      display: block;
      font-family: Arial, sans-serif;
      color: var(--dourado-claro);
      font-weight: 700;
      margin-bottom: 8px;
      font-size: 0.92rem;
    }

    input,
    textarea,
    select {
      width: 100%;
      padding: 16px 18px;
      border-radius: 15px;
      border: 1px solid rgba(245, 213, 112, 0.25);
      background: rgba(255, 255, 255, 0.08);
      color: var(--branco);
      font-family: Arial, sans-serif;
      font-size: 1rem;
      outline: none;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--dourado-claro);
      box-shadow: 0 0 0 3px rgba(245, 213, 112, 0.14);
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(255, 255, 255, 0.48);
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    select {
      background: var(--azul-profundo) !important;
      color: var(--branco) !important;
      appearance: auto;
      cursor: pointer;
    }

    select option {
      background: var(--branco);
      color: var(--azul-nobre);
    }

    .form-message {
      display: none;
      font-family: Arial, sans-serif;
      margin: 0 0 16px;
      padding: 14px 16px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 0.95rem;
      line-height: 1.4;
    }

    .form-message.success {
      display: block;
      background: rgba(245, 213, 112, 0.18);
      border: 1px solid rgba(245, 213, 112, 0.42);
      color: var(--dourado-claro);
    }

    .form-message.error {
      display: block;
      background: rgba(255, 80, 80, 0.12);
      border: 1px solid rgba(255, 80, 80, 0.35);
      color: #ffb3b3;
    }

    form button.btn {
      width: 100%;
      margin-top: 8px;
      background: var(--dourado-claro) !important;
      color: var(--azul-nobre) !important;
      border: none !important;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 14px 30px rgba(245, 213, 112, 0.22);
    }

    form button.btn:hover {
      background: var(--dourado-forte) !important;
      color: var(--azul-nobre) !important;
      transform: translateY(-2px);
    }

    form button.btn:disabled {
      opacity: 0.65;
      cursor: not-allowed;
      transform: none !important;
    }

    /* FOOTER */

    footer {
      background: var(--azul-profundo);
      color: rgba(255, 255, 255, 0.76);
      padding: 34px 0;
      font-family: Arial, sans-serif;
      font-size: 0.92rem;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
    }

    footer strong {
      color: var(--dourado-claro);
    }

    /* RESPONSIVE */

    @media (max-width: 960px) {
      nav ul {
        display: none;
      }

      .hero-grid,
      .process-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 130px;
      }

      .cards-grid,
      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .hero-card {
        padding: 30px;
      }
    }

    @media (max-width: 560px) {
      .navbar {
        height: 76px;
      }

      .brand img {
        width: 56px;
      }

      .brand span {
        font-size: 0.85rem;
      }

      .nav-cta {
        padding: 11px 16px;
        font-size: 0.85rem;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .proof-item {
        width: 100%;
      }

      section {
        padding: 72px 0;
      }

      .step {
        grid-template-columns: 1fr;
      }

      .contact-info,
      form {
        padding: 26px;
      }
    }
    
    /* Corrigir cor dos botões principais no hover */
.nav-cta,
.nav-cta:visited,
.nav-cta:hover,
.nav-cta:focus,
.nav-cta:active,
.hero .btn-primary,
.hero .btn-primary:visited,
.hero .btn-primary:hover,
.hero .btn-primary:focus,
.hero .btn-primary:active {
  color: var(--branco) !important;
}

.nav-cta:hover,
.hero .btn-primary:hover {
  background: var(--azul-profundo) !important;
  color: var(--branco) !important;
}

/* Manter o botão final da CTA com texto azul */
.cta-section .btn-primary,
.cta-section .btn-primary:visited,
.cta-section .btn-primary:hover,
.cta-section .btn-primary:focus,
.cta-section .btn-primary:active {
  color: var(--azul-nobre) !important;
}

.cta-section .btn-primary:hover {
  background: var(--dourado-forte) !important;
  color: var(--azul-nobre) !important;
}


    /* MELHORIA MOBILE DO CARROSSEL DE REVIEWS */
    @media (max-width: 640px) {
      .reviews {
        overflow: hidden;
      }

      .reviews .container {
        width: min(100% - 32px, 1180px);
      }

      .reviews .section-heading {
        margin-bottom: 30px;
      }

      .reviews .section-heading h2 {
        font-size: clamp(2rem, 9vw, 2.7rem);
      }

      .reviews-summary {
        width: 100%;
        justify-content: center;
        gap: 8px;
        padding: 12px 14px;
        border-radius: 18px;
        font-size: 0.95rem;
      }

      .reviews-summary .stars {
        font-size: 0.9rem;
        letter-spacing: 1px;
      }

      .reviews-carousel {
        display: block;
        position: relative;
      }

      .reviews-viewport {
        overflow: hidden;
        padding: 0;
        border-radius: 24px;
      }

      .reviews-track {
        gap: 14px;
      }

      .review-card {
        flex: 0 0 100%;
        min-height: auto;
        padding: 26px 24px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.1);
      }

      .review-card .stars {
        margin-bottom: 14px;
        font-size: 1rem;
        letter-spacing: 1px;
      }

      .review-card p {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 28px;
      }

      .review-author {
        gap: 11px;
      }

      .review-avatar {
        width: 40px;
        height: 40px;
      }

      .review-author strong {
        font-size: 0.98rem;
        line-height: 1.25;
      }

      .review-author span {
        font-size: 0.82rem;
      }

      .review-btn {
        position: absolute;
        top: calc(100% + 18px);
        z-index: 4;
        width: 42px;
        height: 42px;
        border: none;
        background: var(--dourado-claro);
        color: var(--azul-nobre);
        font-size: 1.65rem;
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
      }

      .review-prev {
        left: 50%;
        transform: translateX(-94px);
      }

      .review-next {
        right: 50%;
        transform: translateX(94px);
      }

      .review-btn:hover {
        background: var(--dourado-claro);
        color: var(--azul-nobre);
      }

      .review-prev:hover {
        transform: translateX(-94px);
      }

      .review-next:hover {
        transform: translateX(94px);
      }

      .review-btn:disabled {
        opacity: 0.45;
      }

      .review-dots {
        margin-top: 78px;
      }

      .review-dot {
        width: 8px;
        height: 8px;
      }

      .review-dot.active {
        width: 24px;
      }

      .review-note {
        display: none;
      }
    }
