.body {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.font-heading {
    font-family: 'Montserrat', sans-serif;
}

.font-body {
    font-family: 'Poppins', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, #067649 0%, #00A759 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #067649 0%, #00A759 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
    transform: translateY(-12px) scale(1.02);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: blob-float 8s ease-in-out infinite;
}

@keyframes blob-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in-up 0.8s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

.animate-delay-6 {
    animation-delay: 0.6s;
}

.service-icon {
    transition: all 0.3s ease;
}

.card-hover:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.btn-glow {
    box-shadow: 0 0 30px rgba(54, 168, 98, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(54, 168, 98, 0.4);
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #067649, #0de28d);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.pattern-dots {
    background-image: radial-gradient(rgba(14, 71, 19, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
}

@view-transition {
    navigation: auto;
}

.wk-card {
    min-width: 280px;
}


@media (min-width: 640px) {
    .wk-card {
        min-width: 340px;
    }
}

@media (min-width: 1024px) {
    .wk-card {
        min-width: 420px;
    }
}

/* Destaques – efeito centro + laterais */
/* .wk-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(860px, 92%);
    transform: translate(-50%, -50%);
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1), opacity 520ms ease, filter 520ms ease;
    will-change: transform, opacity, filter;
} */

.wk-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.wk-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* .wk-prev {
    transform: translate(-50%, -50%) translateX(-46%) scale(.86);
    opacity: .55;
    filter: blur(.2px) saturate(.85);
    z-index: 5;
} */

/* .wk-active {
    transform: translate(-50%, -50%) translateX(0) scale(1);
    opacity: 1;
    filter: none;
    z-index: 10;
}

.wk-next {
    transform: translate(-50%, -50%) translateX(46%) scale(.86);
    opacity: .55;
    filter: blur(.2px) saturate(.85);
    z-index: 5;
} */
/* 
@media (max-width: 640px) {
    .wk-prev {
        transform: translate(-50%, -50%) translateX(-32%) scale(.9);
    }

    .wk-next {
        transform: translate(-50%, -50%) translateX(32%) scale(.9);
    }
} *//* ===== Brands / Carousel ===== */
.brands {
  padding: 64px 0;
}

.brands__container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.brands__header {
  margin-bottom: 22px;
}

.brands__title {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.15;
}

.brands__subtitle {
  margin-top: 10px;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  opacity: 0.85;
  max-width: 70ch;
}

.brands__carousel {
  position: relative;
  overflow: hidden; /* corta o que ultrapassar */
  border-radius: 18px;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* track vira “esteira” */
.brands__track {
  display: flex;
  align-items: center;
  gap: 18px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* item (logo) */
.brands__item {
  flex: 0 0 auto;
  width: clamp(120px, 12vw, 180px);
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brands__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.brands__item img {
  max-width: 82%;
  max-height: 60%;
  object-fit: contain;
  filter: saturate(1.05);
  opacity: 0.95;
}

/* fades laterais */
.brands__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.brands__fade--left {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

.brands__fade--right {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

/* acessibilidade: reduz movimento */
@media (prefers-reduced-motion: reduce) {
  .brands__track {
    transform: none !important;
  }
}
/* ===== Logos em preto e branco ===== */
.brands__item img {
  max-width: 82%;
  max-height: 60%;
  object-fit: contain;

  filter: grayscale(100%) brightness(0.9) contrast(1.1);
  opacity: 0.75;
  transition: all 0.4s ease;
}

/* Quando passar o mouse volta a cor */
.brands__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}