/* =========================================
   Variáveis e Reset
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


:root {
  --color-orange: #f5a623;
  --color-orange-dark: #ed9121;
  --color-yellow: #ffc107;
  --color-navy: #2b3a55;
  --color-text: #224562;
  --color-muted: #224562;
  --color-white: #ffffff;
  --color-light: #f7f7f7;
  --color-border: #e3e3e3;
  --color-dark: #1f2733;
  --radius: 6px;
  --maxw: 1200px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-white);
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.section-eyebrow {
  font-style: italic;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
  text-align: center;
}

/* Botões */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.30);

}

.btn-primary:hover {
  background-color: var(--color-orange-dark);
  transform: translateY(-2px);
}

/* Ícones sociais */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.2s ease;
}

.social-icon:hover {
  background-color: var(--color-orange);
}

/* =========================================
   Header
========================================= */
.topbar {
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 0.72rem;
}

.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.topbar-label {
  font-weight: 500;
}

.social-list {
  display: flex;
  gap: 0.4rem;
}

.topbar-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.navbar {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar-inner {
  max-width: var(--maxw);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-image-header {
  /* Responsivo: tamanho mínimo 120px, ideal baseado em viewport, máximo 220px */
  width: clamp(140px, 18vw, 220px);
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* garante proporção correta sem corte */
  flex-shrink: 0; /* evita encolher em contêineres flex */
  margin-right: 150px;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-bar {
  width: 26px;
  height: 3px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Menu Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.is-open {
  display: block;
  opacity: 1;
}

.primary-nav {
  position: fixed;
  top: 0;
  right: -70%;
  width: 70%;
  max-width: 320px;
  height: 100%;
  background-color: var(--color-white);
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.primary-nav.is-open {
  right: 0;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 5rem 1.5rem 1.5rem;
}

.nav-link {
  display: block;
  padding: 0.8rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--color-orange);
}

/* Botão de fechar no menu mobile */
.nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-navy);
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.nav-close:hover {
  color: var(--color-orange);
}

/* =========================================
   Hero
========================================= */
.hero {
  background: linear-gradient(
    115deg,
    rgba(255, 136, 0, 0.76) 65%,
    rgba(255, 121, 0, 1) 58%,
    rgba(255, 105, 0, 0.74) 52%,
    rgba(252, 185, 0, 0.9) 52%
  );
  color: var(--color-muted);
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;

  top: 0;
  left: 0;
}

.hero-eyebrow {
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
}

.hero-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: yellow;
  -webkit-text-stroke: 2px #152F36;
  text-shadow:
        0 0 1px #152F36,
        1px 1px 0 #152F36,
       -1px 1px 0 #152F36,
        1px -2px 0 #152F36,
       -2px -2px 0 #152F36;
}

.hero-tag {
  font-size: 0.9rem;
  margin: 0.4rem 0 1rem;
}

.hero-description {
  font-size: 0.81rem;
  max-width: 36ch;
  margin-bottom: 1.5rem;
  color: var(--color-muted)
}

.hero-brand {
  display: flex;
  justify-content: center;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-weight: 800;
  font-style: italic;
  text-align: center;
}

.hero-logo-image {
  max-width: 100%;
  height: auto;
}

/* =========================================
   Benefits / Stats
========================================= */
.benefits {
  background-color: var(--color-white);
}

.benefits-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-navy);
}

.stat-label {
  font-style: italic;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.benefit-icon {
  font-size: 2rem;
  color: var(--color-navy);
}

.benefit-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy);
}

.benefit-text {
  font-size: 0.88rem;
  color: var(--color-muted);
  max-width: 40ch;
}

.ceo-logo {
  border-radius: 100px;
}

/* =========================================
   Sobre
========================================= */
.about {
  background-color: var(--color-white);
}

.about-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-media {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 280px;
}

.testimonial-card {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin: -4.5rem 1rem 0;
  position: relative;
  box-shadow: var(--shadow);
}

.testimonial-quote {
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-orange);
  font-size: 0.7rem;
  font-weight: 700;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.85rem;
}

.testimonial-role {
  font-size: 0.7rem;
  opacity: 0.85;
}

.about-text {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  text-align: center;
}

.about-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
}

.about-checklist li {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-navy);
  position: relative;
  padding-left: 1.4rem;
}

.about-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
}

/* =========================================
   Serviços
========================================= */
.services {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.services-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services-intro .section-eyebrow,
.services-intro .section-title {
  color: var(--color-white);
}

.services-text {
  font-size: 0.9rem;
  opacity: 0.95;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.service-icon {
  font-size: 1.8rem;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.service-text {
  font-size: 0.88rem;
  opacity: 0.95;
  max-width: 34ch;
}

/* =========================================
   Como Funciona
========================================= */
.how {
  background-color: var(--color-light);
}

.how-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  text-align: center;
}

.how-title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.how-icon {
  font-size: 2rem;
  color: var(--color-navy);
}

.how-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
}

/* =========================================
   Qualidade
========================================= */
.quality {
  background-color: var(--color-white);
}

.quality-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stars {
  color: var(--color-orange);
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}

.quality-eyebrow {
  font-style: italic;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1rem;
}

.quality-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
}

.quality-cert-image {
  max-width: 280px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin: 0 auto;
}

/* =========================================
   Clientes
========================================= */
.clients {
  background-color: var(--color-light);
}

.clients-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  text-align: center;
}

.clients-eyebrow {
  margin-bottom: 0.25rem;
}

.clients-title {
  margin-bottom: 2rem;
}

/* Carrossel de Clientes */
.clients-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
}

.clients-carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.clients-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  align-items: center;
  transition: transform 0.35s ease;
  will-change: transform;
  padding: revert-layer;
}

.client-logo {
  flex: 0 0 180px;
  min-width: 180px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  background-color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Botões de seta do carrossel */
.clients-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  background-color: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  box-shadow: var(--shadow);
  z-index: 2;
}

.clients-arrow:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.clients-arrow:disabled,
.clients-arrow.is-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.clients-arrow svg {
  display: block;
}

/* =========================================
   Suporte ao Cliente
========================================= */
.support {
  background-color: var(--color-white);
}

.support-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  text-align: center;
}

.support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.support-title {
  margin-bottom: 1rem;
}

.support-lead {
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.support-text {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.support-email {
  color: var(--color-orange);
  font-weight: 600;
}

.support-whatsapp {
  margin-top: 1rem;
}

.support-whatsapp-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy);
}

.support-phone {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  border: 2px solid var(--color-orange);
  border-radius: 999px;
  padding: 0.25rem 1.25rem;
  margin-top: 0.5rem;
}

/* =========================================
   CTA - Orçamento + Contato
========================================= */
.cta {
  background-color: var(--color-light);
}

.cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

.quote-panel {
  padding: 3rem 1.25rem;
}

.quote-subtitle {
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  background-color: var(--color-white);
  color: var(--color-text);
}

.form-input:focus {
  outline: 2px solid var(--color-orange);
  outline-offset: 1px;
}

.form-textarea {
  resize: vertical;
}

.form-submit {
  align-self: flex-start;
  letter-spacing: 0.2em;
}

.form-feedback {
  font-size: 0.85rem;
  color: #2e7d32;
  font-weight: 600;
  min-height: 1.2rem;
}

.contact-panel {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 3rem 1.25rem;
}

.contact-title {
  color: var(--color-white);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.contact-icon {
  flex-shrink: 0;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-advantages {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.contact-advantages li {
  position: relative;
  padding-left: 1rem;
}

.contact-advantages li::before {
  content: "\2022";
  position: absolute;
  left: 0;
}

/* =========================================
   Mapa
========================================= */
.map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* =========================================
   Footer
========================================= */
.site-footer {
  background-color: var(--color-light);
  color: var(--color-text);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-orange);
}

.footer-faq dt {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-top: 0.5rem;
}

.footer-faq dd {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.footer-brand {
  text-align: center;
  padding: 1rem 1.25rem;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
}

.logo-image-footer {
  /* Responsivo: tamanho mínimo 120px, ideal baseado em viewport, máximo 220px */
  width: clamp(140px, 18vw, 220px);
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* garante proporção correta sem corte */
  flex-shrink: 0; /* evita encolher em contêineres flex */
}

.footer-bottom {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 0.4rem;
}

/* =========================================
   WhatsApp flutuante
========================================= */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 3.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 60;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* =========================================
   Media Queries - Tablet
========================================= */
@media (min-width: 640px) {
  .form-row {
    flex-direction: row;
  }

  .benefits-grid,
  .services-grid,
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================
   Media Queries - Desktop
========================================= */
@media (min-width: 992px) {
  .topbar-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .topbar-info {
    flex-direction: row;
    gap: 1.5rem;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    padding: 4rem 1.25rem 5rem;
  }

  .hero-content {
    flex: 1;
  }

  .hero-brand {
    flex: 1;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-logo-2 {
    font-size: 4rem;
  }

  .benefits-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 3rem;
  }

  .stat {
    flex-shrink: 0;
  }

  .benefits-grid {
    flex: 1;
  }

  .benefit-card {
    align-items: flex-start;
    text-align: left;
  }

  .about-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .about-media {
    flex: 1;
  }

  .about-content {
    flex: 1.3;
  }

  .about-image {
    height: 320px;
  }

  .services-inner {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    align-items: start;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-inner {
    flex-direction: row;
  }

  .quote-panel {
    flex: 1.2;
    padding: 4rem 3rem;
  }

  .contact-panel {
    flex: 1;
    padding: 4rem 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1.4fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .map-frame {
    height: 420px;
  }

  .navbar-inner {
    height: 100px;
    justify-content: space-between;
  }
}

/* =========================================
   Avaliações do Google
========================================= */
.reviews {
  background-color: #f5f6f8;
  color: var(--color-dark);
  padding: 4rem 0;
  overflow: hidden;
}

.reviews-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.reviews-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 0 1.25rem;
}

.reviews-google {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -1px;
}

.g-blue { color: #4285f4; }
.g-red { color: #ea4335; }
.g-yellow { color: #fbbc05; }
.g-green { color: #34a853; }

.reviews-title {
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.reviews-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2630;
}

.reviews-stars {
  color: #fbbc05;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.reviews-count {
  color: #70757a;
  font-size: 0.85rem;
}

.reviews-write {
  margin-top: 0.5rem;
}

/* Carrossel */
.reviews-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0.75rem;
  animation: reviews-scroll 40s linear infinite;
}

.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    /* Desloca metade da largura total (a lista é duplicada via JS) */
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.review-card {
  position: relative;
  flex: 0 0 auto;
  width: 340px;
  background-color: var(--color-white);
  border: 1px solid #e4e6eb;
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.review-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #70757a;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-right: 1.5rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-weight: 700;
  color: #1f2630;
}

.review-author-meta {
  font-size: 0.8rem;
  color: #70757a;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.review-stars {
  color: #fbbc05;
  font-size: 1rem;
  letter-spacing: 1px;
}

.review-time {
  font-size: 0.8rem;
  color: #70757a;
}

.review-text {
  color: #3c4043;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.review-translate {
  display: inline-block;
  color: #1a73e8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.review-translate:hover {
  text-decoration: underline;
}

.review-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e4e6eb;
}

.review-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: #70757a;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.review-action:hover {
  color: #1f2630;
}

.review-action-icon {
  font-size: 1.1rem;
}

.review-action-share {
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}

@media (min-width: 768px) {
  .reviews-head {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .reviews-rating {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .navbar-inner {
    height: 100px;
    justify-content: space-between;
  }

  /* ===== MENU - Novo comportamento a partir de 768px ===== */
  .nav-toggle {
    display: none;
  }

  .nav-close {
    display: none;
  }

  .menu-overlay {
    display: none !important;
  }

  .primary-nav {
    position: static;
    display: block;
    width: auto;
    height: auto;
    right: auto;
    top: auto;
    box-shadow: none;
    overflow-y: visible;
  }

  .nav-list {
    flex-direction: row;
    gap: 1.5rem;
    padding-top: 0;
    align-items: center;
    white-space: nowrap;
  }

  .navbar-inner {
    height: 100px;
    justify-content: space-between;
  }
  .logo-image-header {
    margin-right: 0;
  }
}

