/*
Routefy v2 - CSS
Filosofia: Profissional, limpo, moderno, confiável. Mobile-first.
*/

:root {
  --primary-blue: #0052D4;
  --second-blue: #0044b3;
  --dark-text: #212529;
  --light-text: #555;
  --background-light-gray: #f8f9fa;
  --white: #FFFFFF;
}

/* Reset básico e box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--background-light-gray);
  color: var(--dark-text);
}

/* HEADER (Navbar) */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 82, 212, 0.08);
  z-index: 100;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  position: relative;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
  z-index: 101;
}
.navbar-logo .material-icons {
  font-size: 2rem;
}
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.navbar-toggle .material-icons {
  font-size: 1.8rem;
}
.navbar-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-links a {
  text-decoration: none;
  color: var(--dark-text);
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar-links a .material-icons {
  font-size: 1.1rem;
}
.navbar-links a:hover {
  color: var(--second-blue);
}
.navbar-links a:active,
.navbar-links a.active {
  color: var(--primary-blue);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #81D4FA 0%, #64B5F6 50%, #42A5F5 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Cenário de entrega animado */
.delivery-scene {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

/* Cidade ao fundo */
.city-background {
  position: absolute;
  bottom: 29.5%;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.building {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px 4px 0 0;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
/* Janelas dos prédios - padrão de grade */
.building::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -14px;
  width: 16px;
  height: 18px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}
/* Porta central dos prédios */
.building::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px 4px 0 0;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: none;
}
.building-1 {
  width: 80px;
  height: 120px;
  animation: float 4s ease-in-out infinite;
}
/* Building 1 - 3 andares */
.building-1::before {
  box-shadow: 
    /* Coluna 1 */
    0 26px 0 rgba(255, 255, 255, 0.4),
    0 52px 0 rgba(255, 255, 255, 0.4),
    /* Coluna 2 */
    28px 0 0 rgba(255, 255, 255, 0.4),
    28px 26px 0 rgba(255, 255, 255, 0.4),
    28px 52px 0 rgba(255, 255, 255, 0.4);
}
.building-2 {
  width: 100px;
  height: 160px;
  animation: float 5s ease-in-out infinite 0.5s;
}
/* Building 2 - 4 andares */
.building-2::before {
  box-shadow: 
    /* Coluna 1 */
    0 26px 0 rgba(255, 255, 255, 0.4),
    0 52px 0 rgba(255, 255, 255, 0.4),
    0 78px 0 rgba(255, 255, 255, 0.4),
    /* Coluna 2 */
    28px 0 0 rgba(255, 255, 255, 0.4),
    28px 26px 0 rgba(255, 255, 255, 0.4),
    28px 52px 0 rgba(255, 255, 255, 0.4),
    28px 78px 0 rgba(255, 255, 255, 0.4);
}
.building-3 {
  width: 70px;
  height: 100px;
  animation: float 4.5s ease-in-out infinite 1s;
}
/* Building 3 - 2 andares */
.building-3::before {
  box-shadow: 
    /* Coluna 1 */
    0 26px 0 rgba(255, 255, 255, 0.4),
    /* Coluna 2 */
    28px 0 0 rgba(255, 255, 255, 0.4),
    28px 26px 0 rgba(255, 255, 255, 0.4);
}
.building-4 {
  width: 90px;
  height: 140px;
  animation: float 5.5s ease-in-out infinite 1.5s;
}
/* Building 4 - 3 andares */
.building-4::before {
  box-shadow: 
    /* Coluna 1 */
    0 26px 0 rgba(255, 255, 255, 0.4),
    0 52px 0 rgba(255, 255, 255, 0.4),
    /* Coluna 2 */
    28px 0 0 rgba(255, 255, 255, 0.4),
    28px 26px 0 rgba(255, 255, 255, 0.4),
    28px 52px 0 rgba(255, 255, 255, 0.4);
}

/* Estrada */
.road {
  position: absolute;
  bottom: 18%;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.road-line {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  animation: roadMove 2s linear infinite;
}
.road-line:nth-child(2) {
  animation-delay: 0.5s;
}
.road-line:nth-child(3) {
  animation-delay: 1s;
}

/* Caminhões */
.truck {
  position: absolute;
  bottom: 25%;
  width: 90px;
  height: 50px;
}
.truck-1 {
  animation: truckMove 12s linear infinite;
}
.truck-2 {
  animation: truckMove 15s linear infinite 7s;
}
.truck-body {
  position: absolute;
  left: 5px;
  top: 12px;
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 1);
}
.truck-cabin {
  position: absolute;
  right: 5px;
  top: 10px;
  width: 32px;
  height: 28px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px 6px 2px 2px;
  border: 2px solid rgba(255, 255, 255, 1);
}
.truck-cabin::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  height: 14px;
  background: rgba(100, 165, 220, 0.4);
  border-radius: 3px;
}
.truck-wheel {
  position: absolute;
  bottom: 2px;
  width: 18px;
  height: 18px;
  background: rgba(100, 100, 100, 1);
  border: 3px solid rgba(80, 80, 80, 1);
  border-radius: 50%;
  animation: wheelSpin 0.6s linear infinite;
}
.truck-wheel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: rgba(200, 200, 200, 1);
  border-radius: 50%;
}
.wheel-front {
  right: 12px;
}
.wheel-back {
  left: 18px;
}

/* Carrinhos */
.car {
  position: absolute;
  bottom: 20%;
  width: 60px;
  height: 35px;
}
.car-1 {
  animation: carMove 8s linear infinite;
}
.car-2 {
  animation: carMove 10s linear infinite 5s;
}
.car-body {
  position: absolute;
  left: 5px;
  top: 16px;
  width: 48px;
  height: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px 8px 4px 4px;
  border: 2px solid rgba(255, 255, 255, 1);
}
.car-roof {
  position: absolute;
  left: 18px;
  top: 8px;
  width: 22px;
  height: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px 6px 0 0;
  border: 2px solid rgba(255, 255, 255, 1);
  border-bottom: none;
}
.car-roof::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 6px;
  background: rgba(100, 165, 220, 0.4);
  border-radius: 3px;
}
.car .car-wheel {
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: rgba(100, 100, 100, 1);
  border: 2px solid rgba(80, 80, 80, 1);
  border-radius: 50%;
  animation: wheelSpin 0.4s linear infinite;
}
.car .car-wheel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: rgba(200, 200, 200, 1);
  border-radius: 50%;
}
.car .wheel-front {
  right: 8px;
}
.car .wheel-back {
  left: 12px;
}

/* Animações */
@keyframes truckMove {
  0% {
    right: -100px;
    transform: scaleX(-1) translateX(0);
  }
  100% {
    right: 100%;
    transform: scaleX(-1) translateX(-100px);
  }
}

@keyframes carMove {
  0% {
    right: -80px;
    transform: scaleX(-1) translateX(0);
  }
  100% {
    right: 100%;
    transform: scaleX(-1) translateX(-80px);
  }
}

@keyframes wheelSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes roadMove {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(50px);
    opacity: 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: transparent;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 16px;
}
.hero-content h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-content p {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}
.cta-btn:disabled {
  opacity: 1;
  cursor: not-allowed;
  background: var(--white);
}
.cta-btn:hover:not(:disabled) {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

/* SECTIONS GERAIS */
section {
  padding: 60px 20px;
}
.benefits-section {
  background: var(--white);
}
.about-section {
  background: var(--background-light-gray);
}
.testimonials-section {
  background: var(--white);
}
.download-section {
  background: var(--background-light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin-bottom: 40px;
  text-align: center;
}

h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

p, a {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  color: var(--light-text);
  font-size: 1rem;
}

/* BENEFÍCIOS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.benefit-card {
  background: var(--background-light-gray);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 82, 212, 0.06);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefit-card .material-icons {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

/* SOBRE NÓS GRID */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}
.about-image-placeholder {
  width: 180px;
  height: 180px;
  background: #e0e7ef;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-blue);
  box-shadow: 0 2px 12px rgba(0, 82, 212, 0.06);
}
.about-content {
  flex: 1;
}

/* DEPOIMENTOS (Testimonial Cards) */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 82, 212, 0.10);
  padding: 32px 24px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card p {
  color: var(--dark-text);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.testimonial-author {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 0.95rem;
}
/* Estrelas de avaliação */
.testimonial-card .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.testimonial-card .stars .material-icons {
  color: #FFD700;
  font-size: 1.2rem;
}

/* QR CODE & STORE BUTTONS */
.qr-download-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  width: 100%;
}
.qr-placeholder {
  border: 2px dashed #ccc;
  width: 180px;
  height: 180px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  margin-bottom: 8px;
}
.qr-placeholder .material-icons {
  font-size: 4rem;
  color: var(--primary-blue);
}
/* Botões de loja (App Store e Google Play) - Badges Oficiais */
.store-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.store-btn-link {
  display: inline-block;
  transition: opacity 0.2s;
}
.store-btn-link:hover {
  opacity: 0.85;
}
.store-badge {
  height: 50px;
  width: auto;
}

/* FOOTER */
footer {
  background: var(--white);
  border-top: 1px solid #e0e7ef;
  padding: 32px 20px;
  text-align: center;
}
.footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-blue);
}
.footer-logo .material-icons {
  font-size: 1.5rem;
}
.footer-text {
  color: var(--light-text);
  font-size: 1rem;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: var(--primary-blue);
  font-size: 1.5rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #1976D2;
}

/* MOBILE-FIRST: GRID E FLEX EM COLUNA */
@media (min-width: 768px) {
  .navbar {
    padding: 24px 40px;
  }
  .navbar-logo {
    font-size: 2rem;
  }
  .navbar-links {
    gap: 40px;
    font-size: 1.1rem;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content {
    padding: 80px 32px;
  }
  section {
    padding: 80px 40px;
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .about-grid {
    flex-direction: row;
    gap: 40px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .qr-download-grid {
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: center;
    width: auto;
  }
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
  /* Ajuste da animação de fundo para mobile */
  .city-background {
    bottom: 200px;
    height: 150px;
  }
  .building-1, .building-4 {
    width: 60px;
    height: 90px;
  }
  .building-2 {
    width: 75px;
    height: 120px;
  }
  .building-3 {
    width: 50px;
    height: 75px;
  }
  .road {
    bottom: 18%;
    height: 60px;
  }
  .truck {
    bottom: 23%;
    width: 70px;
    height: 40px;
  }
  .truck-body {
    width: 40px;
    height: 20px;
  }
  .truck-cabin {
    width: 26px;
    height: 22px;
  }
  .truck-wheel {
    width: 14px;
    height: 14px;
  }
  .car {
    bottom: 19%;
    width: 50px;
    height: 28px;
  }
  .car-body {
    width: 38px;
    height: 14px;
  }
  .car-roof {
    width: 18px;
    height: 10px;
    left: 14px;
  }
  .car .car-wheel {
    width: 10px;
    height: 10px;
  }
  .car-wheel {
    bottom: -5px;
  }
  
  .navbar {
    padding: 16px 20px;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 20px 20px;
    transition: right 0.3s ease;
    z-index: 100;
  }
  .navbar-links.active {
    right: 0;
  }
  .navbar-links li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .navbar-links a {
    font-size: 1rem;
    padding: 16px 8px;
    width: 100%;
    justify-content: flex-start;
  }
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 14px 32px;
  }
  h2 {
    font-size: 1.5rem;
  }
  .benefit-card {
    padding: 24px 16px;
  }
  .testimonial-card {
    padding: 24px 16px;
  }
  .store-badge {
    height: 45px;
  }
  .qr-placeholder {
    width: 150px;
    height: 150px;
  }
  .qr-placeholder .material-icons {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  /* Ajuste adicional da animação para mobile pequeno */
  .city-background {
    bottom: 200px;
    height: 120px;
  }
  .building-1, .building-4 {
    width: 50px;
    height: 75px;
  }
  .building-2 {
    width: 65px;
    height: 100px;
  }
  .building-3 {
    width: 40px;
    height: 60px;
  }
  .building::before {
    width: 12px;
    height: 14px;
    margin-left: -10px;
  }
  /* Building 1 - ajuste para mobile pequeno (2-3 andares) */
  .building-1::before {
    box-shadow: 
      0 20px 0 rgba(255, 255, 255, 0.4),
      22px 0 0 rgba(255, 255, 255, 0.4),
      22px 20px 0 rgba(255, 255, 255, 0.4);
  }
  
  /* Building 2 - ajuste para mobile pequeno (3 andares) */
  .building-2::before {
    box-shadow: 
      0 20px 0 rgba(255, 255, 255, 0.4),
      0 40px 0 rgba(255, 255, 255, 0.4),
      22px 0 0 rgba(255, 255, 255, 0.4),
      22px 20px 0 rgba(255, 255, 255, 0.4),
      22px 40px 0 rgba(255, 255, 255, 0.4);
  }
  
  /* Building 3 - ajuste para mobile pequeno (1-2 andares) */
  .building-3::before {
    box-shadow: 
      0 20px 0 rgba(255, 255, 255, 0.4),
      22px 0 0 rgba(255, 255, 255, 0.4),
      22px 20px 0 rgba(255, 255, 255, 0.4);
  }
  
  /* Building 4 - ajuste para mobile pequeno (2-3 andares) */
  .building-4::before {
    box-shadow: 
      0 20px 0 rgba(255, 255, 255, 0.4),
      0 40px 0 rgba(255, 255, 255, 0.4),
      22px 0 0 rgba(255, 255, 255, 0.4),
      22px 20px 0 rgba(255, 255, 255, 0.4),
      22px 40px 0 rgba(255, 255, 255, 0.4);
  }
  .building::after {
    width: 18px;
    height: 24px;
  }
  .road {
    bottom: 18%;
    height: 50px;
  }
  .road-line {
    width: 70px;
    height: 3px;
  }
  .truck {
    bottom: 22%;
    width: 60px;
    height: 35px;
  }
  .truck-body {
    width: 35px;
    height: 18px;
    top: 10px;
  }
  .truck-cabin {
    width: 22px;
    height: 20px;
    top: 8px;
  }
  .truck-wheel {
    width: 12px;
    height: 12px;
  }
  .wheel-front {
    right: 10px;
  }
  .wheel-back {
    left: 15px;
  }
  .car {
    bottom: 19%;
    width: 42px;
    height: 24px;
  }
  .car-body {
    width: 32px;
    height: 12px;
    top: 14px;
  }
  .car-roof {
    width: 16px;
    height: 8px;
    left: 11px;
    top: 7px;
  }
  .car .car-wheel {
    width: 8px;
    height: 8px;
    bottom: -5px;
  }
  .car .wheel-front {
    right: 6px;
  }
  .car .wheel-back {
    left: 10px;
  }
  
  .navbar-logo {
    font-size: 1.2rem;
  }
  .navbar-logo .material-icons {
    font-size: 1.5rem;
  }
  .navbar-links {
    gap: 8px;
  }
  .navbar-links a {
    font-size: 0.9rem;
  }
  .navbar-links a .material-icons {
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .hero-content   {
    max-width: 300px;
  }
  .cta-btn {
    font-size: 0.95rem;
    padding: 12px 28px;
  }
  h2 {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }
  .benefit-card, .testimonial-card {
    padding: 20px 16px;
  }
  .store-badge {
    height: 40px;
  }
  .qr-placeholder {
    width: 130px;
    height: 130px;
  }
  .qr-placeholder .material-icons {
    font-size: 2.5rem;
  }
  footer {
    padding: 24px 16px;
  }
  .footer-logo {
    font-size: 1rem;
  }
  .footer-text {
    font-size: 0.9rem;
  }
  .hero-section {
    align-items: flex-start;
  }
}

/* Fim do CSS Routefy v2 */
