/* ===================== BADGES ON PORTRAIT ===================== */
.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--bg-white);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 2rem;
  border-radius: 4px;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}

.hero-badge-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 0.25rem;
}

.hero-badge-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ===================== SOLUTIONS PAGE CARD LAYOUT ===================== */
.solutions-list-section {
  background: radial-gradient(circle at 50% 50%, #fbfbfc 0%, #f4f5f7 100%);
  padding: 2.5rem 0 3.5rem 0;
  overflow-x: hidden;
}

.solutions-list-section .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 32px;
  padding: 2.2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02), 0 5px 15px rgba(0, 0, 0, 0.01);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  justify-content: flex-start;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07), 0 12px 24px rgba(0, 0, 0, 0.02);
}

.product-card-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 230px;
  width: 100%;
  display: flex;
  margin-bottom: 1.8rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.product-card-visual-left {
  width: 70px;
  background-color: var(--card-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 0.5rem;
  color: #FFFFFF;
  text-align: center;
  z-index: 2;
  position: relative;
  flex-shrink: 0;
  clip-path: ellipse(115% 100% at 0% 50%);
}

.product-card-visual-left::after {
  display: none;
}

.product-card-visual-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  flex-shrink: 0;
}

.product-card-visual-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.product-card-visual-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: auto 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  opacity: 0.9;
}

.product-card-visual-image {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 55px);
  height: 100%;
  z-index: 1;
}

.product-card-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Middle Content styling */
.product-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
  margin-bottom: 1.8rem;
}

.product-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--card-color);
  margin: 0;
  line-height: 1.25;
}

.product-card-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin: 0;
}

.product-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.65;
  margin: 0;
}

.product-card-cta {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 600;
  color: var(--accent-orange);
  border-left: 3px solid var(--accent-orange);
  padding-left: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0.5rem 0;
}

/* Button outline styling */
.product-card-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  background: transparent;
  border: 1.5px solid var(--card-color);
  color: var(--card-color);
  transition: all 0.3s ease;
  margin-top: auto; /* Push button to the bottom of content area */
}

.product-card-btn:hover {
  background: var(--card-color);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

/* Bottom checklist styling */
.product-card-checklist {
  border-left: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-left: 0;
  padding-top: 1.5rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
}

.product-card-list-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--card-color);
}

.product-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-card-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #333333;
  line-height: 1.4;
}

.product-card-list-item svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .solutions-list-section .container {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .solutions-list-section {
    padding: 4rem 0;
  }
  .product-card {
    padding: 1.6rem;
    border-radius: 24px;
  }
  .product-card-visual {
    height: 180px;
    margin-bottom: 1.5rem;
  }
  .product-card-checklist {
    padding-top: 1.25rem;
  }
}

/* ===================== CONTEXTUAL ENTRANCE ANIMATIONS ===================== */
/* 1. Growth 360: Scale & Slide (Growth) */
.reveal-growth {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-growth.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 2. Monitoramento: Staggered list items & Radar pulse icon */
.reveal-monitoring {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-monitoring.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-monitoring .product-card-list-item {
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-monitoring.visible .product-card-list-item {
  opacity: 1;
  transform: translateX(0);
}
.reveal-monitoring.visible .product-card-list-item:nth-child(1) { transition-delay: 0.15s; }
.reveal-monitoring.visible .product-card-list-item:nth-child(2) { transition-delay: 0.25s; }
.reveal-monitoring.visible .product-card-list-item:nth-child(3) { transition-delay: 0.35s; }
.reveal-monitoring.visible .product-card-list-item:nth-child(4) { transition-delay: 0.45s; }
.reveal-monitoring.visible .product-card-list-item:nth-child(5) { transition-delay: 0.55s; }
.reveal-monitoring.visible .product-card-list-item:nth-child(6) { transition-delay: 0.65s; }

@keyframes radar-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.reveal-monitoring.visible .product-card-visual-icon {
  animation: radar-pulse 2s infinite ease-out;
}

/* 3. Negociações: Left & Right columns meeting in the center */
.reveal-negotiations {
  opacity: 0;
  transform: translateY(0) !important;
  transition: opacity 0.8s ease;
}
.reveal-negotiations.visible {
  opacity: 1;
  transform: translateY(0) !important;
}
.reveal-negotiations .product-card-visual {
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s ease;
}
.reveal-negotiations.visible .product-card-visual {
  transform: translateX(0);
  opacity: 1;
}
.reveal-negotiations .product-card-content {
  transform: translateX(40px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s ease;
}
.reveal-negotiations.visible .product-card-content {
  transform: translateX(0);
  opacity: 1;
}

/* 4. Cobranças: Springy bounce-up (Recovery of capital) */
.reveal-recovery {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.45, 1.25);
}
.reveal-recovery.visible {
  opacity: 1;
  transform: translateY(0);
}
