/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #111111;
  background-color: #f7f7f5;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 20px);
}

/* Header */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.header-fixed.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(10px, 2vh, 15px) 0;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-img {
  height: clamp(145px, 5vw, 125px);
  width: auto;
  flex-shrink: 0;
}

.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 8px);
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 20px);
  border-radius: 25px;
  font-weight: 600;
  font-size: clamp(12px, 3vw, 14px);
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
  flex-shrink: 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url(images/pattern.jpg);
  padding: 30px 0;
}

/* .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(images/bannerimg.webp);
  background-size: cover;
} */

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(30px, 8vw, 60px);
  align-items: center;
}

.hero-text {
  max-width: 600px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.hero-logo-mobile {
  display: block;
  margin-bottom: clamp(20px, 5vh, 30px);
}

.hero-headline {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: #111111;
  margin-bottom: clamp(15px, 3vh, 20px);
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 1.2rem;
  color: #111111;
  margin-bottom: clamp(30px, 6vh, 40px);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 3vh, 20px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 2vw, 12px);
  background: #e53935;
  color: #fafafa;
  text-decoration: none;
  padding: clamp(15px, 3vw, 18px);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(16px, 3.5vw, 18px);
  transition: all 0.3s ease;
  align-self: flex-start;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.selo-atendimento {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-style: italic;
}

.hero-image-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.hero-image {
  width: 100%;
}

.hero-image-placeholder svg {
  width: 100%;
  height: auto;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.floating-element-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

.floating-element-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* ===== Serviços (layout responsivo + colunas com mesma altura) ===== */
.servicos {
  padding: clamp(60px, 12vh, 100px) 0;
  background: #f7f7f5;
}

.servicos-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: stretch;
}

@media (min-width: 992px) {
  .servicos-content {
    grid-template-columns: minmax(0, 520px) 1fr;
  }
}

.servicos-text {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.servicos-headline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: clamp(16px, 3vh, 20px);
}

.servicos-list {
  list-style: none;
  display: grid;
  gap: clamp(10px, 2.5vw, 14px);
  margin-bottom: clamp(24px, 5vh, 32px);
  padding: 0;
}

.servicos-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1rem, 3vw, 1.05rem);
  color: #111;
  background: #fff;
  border-radius: 14px;
  padding: 16px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}

.servicos-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  background: #e53935;
}

/* Hover simples */
.servicos-item:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #25d366;
}

.servicos-image {
  height: 100%;
}

.servicos-image-container {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #f7f7f5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.servicos-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991.98px) {
  .servicos-image-container {
    max-height: 60vh;
  }
}

/* Benefícios Section */
.beneficios {
  position: relative;
  padding: clamp(60px, 12vh, 100px) 0;
  overflow: hidden;
}

.beneficios-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e53935;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
}

@keyframes patternMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(40px);
  }
}

.beneficios-scroll {
  display: flex;
  gap: clamp(20px, 4vw, 30px);
  overflow-x: auto;
  padding: clamp(15px, 3vh, 20px) 0 clamp(30px, 6vh, 40px);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
  padding-left: clamp(15px, 4vw, 20px);
  margin-left: calc(-1 * clamp(15px, 4vw, 20px));
  margin-right: calc(-1 * clamp(15px, 4vw, 20px));
}

/* Card principal */
.beneficio-pill {
  width: 100%;

  /* Visual */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;

  /* Espaçamento interno */

  /* Layout interno */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 32px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  justify-content: flex-start;
  /* align-content: center; */
  flex-wrap: wrap;
}

.beneficios-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.beneficio-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* Conteúdo dentro do card */
.beneficio-content {
  flex: 0 1 auto;
}

.beneficio-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

/* Título da seção */
.section-title-white {
  text-align: center;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: clamp(32px, 7vh, 56px);
}

/* Contêiner dos cards (flex) */
.beneficios-scroll {
  display: flex;
  flex-wrap: wrap; /* Quebra linha automaticamente */
  justify-content: center;
  gap: clamp(18px, 4vw, 28px);
  margin: 0 auto clamp(32px, 7vh, 56px);
  padding: 0 16px;
}

/* Ícone dentro do card */
.beneficio-icon {
  width: clamp(52px, 9vw, 60px);
  height: clamp(52px, 9vw, 60px);
  margin-bottom: 12px;
  color: #fff;
}

.beneficio-icon svg {
  width: 100%;
  height: 100%;
}

/* Texto do card */
.beneficio-title {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

/* CTA final */
.beneficios-cta {
  text-align: center;
}

/* Botão */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 12px);
  background: #fff;
  color: #e53935;
  text-decoration: none;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 28px);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(14px, 3vw, 16px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Fechamento Section */
.fechamento {
  position: relative;
  padding: clamp(60px, 12vh, 100px) 0;
  overflow: hidden;
}

.fechamento-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 6vw, 60px);
  align-items: center;
  text-align: center;
}

.fechamento-text-side {
  text-align: center;
}

.fechamento-cta-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 4vw, 30px);
}

.fechamento-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #111111 0%, #333333 100%);
}

.fechamento-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.fechamento-headline {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: clamp(20px, 4vh, 30px);
}

.fechamento-text {
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: clamp(35px, 7vh, 50px);
  line-height: 1.6;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, 15px);
  background: #e53935;
  color: white;
  text-decoration: none;
  padding: clamp(16px, 3vw, 20px) clamp(30px, 6vw, 40px);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(16px, 3.5vw, 20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(229, 57, 53, 0.3);
  white-space: nowrap;
}

.btn-primary-large:hover {
  background: #d32f2f;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(229, 57, 53, 0.4);
}

.urgency-indicator {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 12px);
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(12px, 3vw, 14px);
}

.urgency-dot {
  width: clamp(8px, 2vw, 10px);
  height: clamp(8px, 2vw, 10px);
  background: #25d366;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: clamp(15px, 4vw, 30px);
  right: clamp(15px, 4vw, 30px);
  z-index: 1000;
}

.whatsapp-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
}

.whatsapp-float-btn .whatsapp-icon {
  width: 24px;
  height: 24px;
}

/* Highlights */
.highlight-primary {
  color: #ff7043;
  position: relative;
}

.highlight-primary::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff7043, #e53935);
  border-radius: 2px;
}

.highlight-secondary {
  background: linear-gradient(
    120deg,
    rgba(255, 112, 67, 0.2) 0%,
    rgba(255, 112, 67, 0.1) 100%
  );
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.highlight-accent {
  color: #ff7043;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(255, 112, 67, 0.3);
}

.highlight-white {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.highlight-orange {
  color: #ff7043;
  text-shadow: 0 2px 8px rgba(255, 112, 67, 0.4);
}

.highlight-light {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e53935, #ff7043);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer {
  background-color: #2c2c2c;
  color: #f5f5f5;
  text-align: center;
}

.section-decoration {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e53935, #ff7043);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: clamp(25px, 6vw, 40px);
  }

  .servicos-masonry {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  }

  .beneficios-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 25%), 1fr));
  }
}

@media (min-width: 768px) {
  .header-fixed {
    display: none;
  }

  .servicos-content {
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 10vw, 80px);
  }

  .servicos-text {
    order: 1;
  }

  .servicos-image {
    order: 2;
  }

  .servicos-masonry {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fechamento-split {
    grid-template-columns: 1fr 1fr;
  }

  .fechamento-text-side {
    text-align: left;
  }

  .beneficio-pill {
    flex-direction: row;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }

  .container {
    padding: 0 15px;
  }

  .hero-image {
    display: none;
  }

  .hero-text {
    text-align: center;
    align-items: center;
  }

  .beneficios-container {
    flex-direction: column;
  }

  .header-fixed {
    display: none;
  }

  .header-content {
    padding: 8px 0;
    gap: 8px;
  }

  .btn-whatsapp-header {
    font-size: 12px;
    padding: 6px 12px;
    gap: 4px;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  .servicos-content {
    gap: clamp(30px, 6vw, 40px);
  }

  .servicos-text {
    order: 1;
  }

  .servicos-image {
    order: 2;
  }

  .beneficios-scroll {
    padding-left: 15px;
    margin-left: -15px;
    margin-right: -15px;
  }

  .beneficio-pill {
    padding: 20px 15px;
    margin-right: 15px;
  }

  .beneficio-pill:last-child {
    /* margin-right: 30px; */
  }

  .btn-primary,
  .btn-primary-large,
  .btn-whatsapp-header {
    font-size: 20px;
    padding: 12px 20px;
  }

  .whatsapp-float-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float-btn .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .footer {
    font-size: 14px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  .hero-content {
    gap: 80px;
  }

  .servicos-masonry {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .servico-card,
  .beneficio-pill {
    backdrop-filter: blur(20px);
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding-top: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .header-fixed,
  .whatsapp-float,
  .floating-element {
    display: none !important;
  }

  .hero-background,
  .beneficios-background,
  .fechamento-background {
    background: #f5f5f5 !important;
  }

  .hero-headline,
  .section-title-white,
  .fechamento-headline {
    color: #111111 !important;
  }
}
