* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f4f6f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

/* HERO */
/* HERO PREMIUM */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("img/maquina.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 61, 98, 0.92),
    rgba(30, 144, 255, 0.85)
  );
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 900px;
}

.hero-top {
  margin-bottom: 20px;
}

.badge {
  background: #25d366;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #25d366;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.badge {
  background: #25d366;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap; /* impede quebra feia */
}

.company-name {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
  color: #fff;
  position: relative;
}

/* Destaque da segunda parte */
.company-name span {
  color: #25d366;
}

/* Linha premium abaixo */
.company-name::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #25d366;
  margin: 8px auto 0;
  border-radius: 2px;
}




/* BOTÕES */
.btn-primary {
  background: #25d366;
  color: #fff;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.05rem;
  text-decoration: none;
}


.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 16px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* PULSE */
/* CTA ULTRA */
.cta-main {
  position: relative;
  overflow: hidden;
  animation: breathe 2.8s infinite;
}

/* Respiração */
@keyframes breathe {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* Ripple */
.cta-main {
  animation: breathe 1.8s infinite;
}

.cta-main .ripple {
  animation: ripple 1.1s infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Hover vibração sutil */
.cta-main:hover {
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-1px); }
  50% { transform: translateX(1px); }
  75% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

/* CTA secundário */
.cta-sec {
  transition: all 0.3s ease;
}

.cta-sec:hover {
  background: #fff;
  color: #0a3d62;
}


/* TRUST */
.hero-trust {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.trust-item {
  background: rgba(255,255,255,0.15);
  padding: 14px;
  border-radius: 8px;
  font-size: 0.95rem;
}


/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background: #25d366;
  color: #fff;
}

.btn-secondary {
  background: #0a3d62;
  color: #fff;
}

/* TRUST */
.trust {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* PROOF */
/* PROOF PREMIUM */
.proof {
  background: #ffffff;
  padding: 70px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.proof-card {
  background: #f9fbfd;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.proof-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 15px;
}

.proof-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #0a3d62;
}

.proof-card p {
  font-size: 0.95rem;
  color: #555;
}

.proof-card.destaque {
  border: 2px solid #25d366;
}

.proof-card {
  opacity: 0;
  transform: translateY(20px);
}

.proof-card.visible {
  opacity: 1;
  transform: translateY(0);
}


/* SERVICES */
/* SERVICES PREMIUM */
.services {
  background: #f4f6f9;
  padding: 90px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #0a3d62;
}

.section-subtitle {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card.premium {
  background: #fff;
  padding: 45px 35px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
}

.service-card.premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.15);
}

.service-card.highlight {
  border: 3px solid #25d366;
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  color: #0a3d62;
}

.service-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.service-card li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

/* BOTÃO DO CARD */
.btn-service {
  display: inline-block;
  background: #0a3d62;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-service:hover {
  background: #08314f;
}

/* reaproveita o pulse que você já tem */
.btn-service.pulse {
  background: #25d366;
}


/* STEPS */
/* STEPS PREMIUM */
.steps {
  background: linear-gradient(135deg, #0a3d62, #1e90ff);
  padding: 90px 0;
  color: #fff;
}

.section-title.light {
  color: #fff;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.85);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.step-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.22);
}

.step-card.destaque {
  border: 2px solid #25d366;
}

.step-number {
  position: absolute;
  top: -14px;
  right: -14px;
  background: #25d366;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}


/* LOCAL */
/* LOCAL PREMIUM */
.local {
  background: #ffffff;
  padding: 90px 0;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}

.local-text h2 {
  font-size: 2.1rem;
  color: #0a3d62;
  margin-bottom: 20px;
}

.local-desc {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.local-list {
  list-style: none;
  margin-bottom: 30px;
}

.local-list li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* MAPA VISUAL */
.local-map {
  display: flex;
  justify-content: center;
}

.map-placeholder {
  width: 100%;
  max-width: 420px;
  height: 280px;
  background: linear-gradient(135deg, #0a3d62, #1e90ff);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #0a3d62, #1e90ff);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  padding: 16px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}



/* REVIEWS */
.reviews {
  background: #f4f6f9;
  padding: 80px 0;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.avatar {
  background: #0a3d62;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.stars {
  color: #f1c40f;
  font-size: 0.9rem;
}

.review-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.reviews-btn {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}
