/* ===================== HERO SECTION & CAROUSEL ===================== */
.hero {

  display: flex;
  align-items: center;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 40px;
  box-sizing: border-box;
  width: 100%;
}

.hero-carousel {
  position: relative;
  width: 100%;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.carousel-item.active {
  display: block;
  opacity: 1;
}

.hero-overline {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-green);
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-title span {
  background: var(--gradient-signature);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.vida {
  color: var(--primary, #8B1A1A);
  background: none;
  -webkit-text-fill-color: initial;
  -webkit-background-clip: initial;
}

.hero-title span.financeira {
  color: var(--accent-orange, #D4700A);
  background: none;
  -webkit-text-fill-color: initial;
  -webkit-background-clip: initial;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  opacity: 0.85;
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

.hero-note {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-medium);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-note::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
}

/* Left Side: Portrait composition */
.hero-left-visual {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: clamp(240px, 32vh, 380px);
  aspect-ratio: 4/5;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
  z-index: 2;
}

/* Elegant Frame Accent */
.portrait-frame::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-orange);
  border-radius: 8px;
  z-index: -1;
  pointer-events: none;
  transition: var(--transition);
}

.portrait-frame:hover::before {
  transform: translate(6px, -6px);
  border-color: var(--primary);
}

.portrait-img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  object-fit: cover;
}

.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;
  text-transform: uppercase;
}

.hero-badge-desc {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-green);
}

/* Scroll down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-medium);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(139, 26, 26, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: var(--gradient-cta);
  animation: scrollAnim 2s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% {
    top: -15px;
  }

  50% {
    top: 50px;
  }

  100% {
    top: 50px;
  }
}

/* CAROUSEL CONTROLS */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: none;
  color: var(--primary, #8B1A1A);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.carousel-control:hover {
  background: #FFFFFF;
  color: var(--primary, #8B1A1A);
  box-shadow: 0 6px 18px rgba(139, 26, 26, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.carousel-control svg {
  width: 24px;
  height: 24px;
}

.carousel-control.prev {
  left: 2rem;
}

.carousel-control.next {
  right: 2rem;
}

/* CAROUSEL INDICATORS & CONTAINER */
.indicators-container {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  padding: 0 2rem;
  pointer-events: none;
  z-index: 10;
}

.indicators-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .indicators-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .indicators-grid {
    gap: 5rem;
  }
}

.carousel-indicators {
  grid-column: 1;
  display: flex;
  gap: 12px;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .carousel-indicators {
    grid-column: 1;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .carousel-indicators {
    justify-content: center;
    margin: 0 auto;
  }

  .indicators-container {
    bottom: 2rem;
  }
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D5C2B1;
  /* light beige */
  cursor: pointer;
  transition: var(--transition);
}

.carousel-indicator.active {
  background: #8B1A1A;
  /* dark burgundy active */
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .carousel-control {
    width: 40px;
    height: 40px;
  }

  .carousel-control.prev {
    left: 1rem;
  }

  .carousel-control.next {
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .carousel-control {
    display: none;
  }
}

/* ===================== SEÇÃO O PROBLEMA ===================== */
.problema-section {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.destaque-box {
  border-left: 4px solid var(--primary);
  padding: 0.75rem 1.5rem;
  margin-top: 2rem;
  text-align: left;
  background: rgba(158, 31, 31, 0.03);
  border-radius: 0 8px 8px 0;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ===================== SEÇÃO QUEM SOMOS TEASER ===================== */
.about-teaser-section {
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.teaser-credentials-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  z-index: 2;
}

.teaser-decor-border-wrapper {
  position: absolute;
  top: -12px;
  left: -15px;
  right: 15px;
  bottom: -24px;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.teaser-decor-border {
  width: 100%;
  height: 100%;
  border: 2.5px solid var(--accent-orange);
  border-radius: 28px;
  animation: gentleSway 8s ease-in-out infinite;
}

@keyframes gentleSway {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(4px, -4px) rotate(0.5deg);
  }

  50% {
    transform: translate(-3px, 3px) rotate(-0.5deg);
  }

  75% {
    transform: translate(2px, -2px) rotate(0.3deg);
  }
}

.teaser-image-card {
  position: relative;
  width: 82%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

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

.teaser-info-card-wrapper {
  position: absolute;
  right: -10px;
  top: 90%;
  transform: translateY(-50%);
  width: 62%;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.teaser-info-card-border-wrapper {
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.teaser-info-card-border {
  width: 100%;
  height: 100%;
  border: 2.5px solid var(--accent-orange);
  border-radius: 24px;
  animation: gentleSwayAlternate 9s ease-in-out infinite;
}

@keyframes gentleSwayAlternate {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(-3px, 3px) rotate(-0.4deg);
  }

  50% {
    transform: translate(4px, -2px) rotate(0.4deg);
  }

  75% {
    transform: translate(-2px, 2px) rotate(-0.2deg);
  }
}

.teaser-info-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2.2rem 1.8rem;
  z-index: 2;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.teaser-credentials-container:hover .teaser-image-card {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(139, 26, 26, 0.15);
}

.teaser-credentials-container:hover .teaser-decor-border-wrapper {
  transform: translate(-4px, 4px);
}

.teaser-credentials-container:hover .teaser-info-card-wrapper {
  transform: translateY(-50%) translateY(-12px);
}

.teaser-credentials-container:hover .teaser-info-card-border-wrapper {
  transform: translate(4px, -4px);
}

.teaser-info-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.teaser-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.teaser-icon-circle.burgundy {
  background: #8B1A1A;
}

.teaser-icon-circle.orange {
  background: #D4700A;
}

.teaser-icon-circle.green {
  background: #366030;
}

.teaser-text-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.teaser-item-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.2;
}

.teaser-item-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #666666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

/* ===================== SEÇÃO NOSSAS SOLUÇÕES ===================== */
.produtos {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.cards-grid .solution-card {
  flex: 1 1 100%;
  min-width: 0;
}

.solution-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(139, 26, 26, 0.08);
  border-radius: 24px;
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  min-height: 480px;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(139, 26, 26, 0.12);
}

.solution-card-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.solution-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover .solution-icon-circle {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(139, 26, 26, 0.15);
}

.solution-icon-circle.green {
  background: var(--accent-green, #3B6B35);
}

.solution-icon-circle.burgundy {
  background: var(--primary, #8B1A1A);
}

.solution-icon-circle.orange {
  background: var(--accent-orange, #D4700A);
}

.solution-icon-circle.amber {
  background: var(--accent-amber, #E08C20);
}

.solution-icon-circle.teal {
  background: #1A7A6D;
}

.solution-icon-circle svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.solution-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.solution-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.2;
}

.solution-card-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.2;
}

.solution-card-body {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.solution-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.solution-card-footer {
  width: 100%;
}

.solution-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.solution-btn.green {
  background: var(--accent-green, #3B6B35);
}

.solution-btn.green:hover {
  background: #2e5429;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 107, 53, 0.25);
}

.solution-btn.burgundy {
  background: var(--primary, #8B1A1A);
}

.solution-btn.burgundy:hover {
  background: #6e1414;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 26, 26, 0.25);
}

.solution-btn.orange {
  background: var(--accent-orange, #D4700A);
}

.solution-btn.orange:hover {
  background: #b55d04;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 112, 10, 0.25);
}

.solution-btn.amber {
  background: var(--accent-amber, #E08C20);
}

.solution-btn.amber:hover {
  background: #c47818;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 140, 32, 0.25);
}

.solution-btn.teal {
  background: #1A7A6D;
}

.solution-btn.teal:hover {
  background: #14615a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 122, 109, 0.25);
}

/* Service Card Styles */
.service-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-signature);
  transition: var(--transition);
}

.service-card:hover::before {
  height: 6px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-orange);
}

.card-img-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-wrapper svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.5;
  transition: var(--transition);
}

.service-card:hover .card-img-wrapper svg {
  transform: scale(1.1);
}

.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.card-tag-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .card-tag-icon {
  transform: rotate(15deg);
}

.card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.card-link span {
  transition: var(--transition);
}

/* ===================== COMO ATUAMOS TIMELINE ===================== */
.method-section {
  background: var(--bg-cream);
}

/* HORIZONTAL METHODOLOGY FLOW */
.method-section {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.method-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4.5rem;
}

.method-flow {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .method-flow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
}

.method-step {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

@media (min-width: 992px) {
  .method-step {
    width: 22%;
    align-items: flex-start;
    text-align: left;
  }
}

.method-icon-wrapper {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: var(--transition, all 0.4s ease);
}

.method-step:hover .method-icon-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Step-specific colors */
.method-step.step-1 .method-icon-wrapper {
  border: 1.5px solid #3B6B35;
  color: #3B6B35;
}

.method-step.step-1 .step-number {
  color: #3B6B35;
}

.method-step.step-2 .method-icon-wrapper {
  border: 1.5px solid #8B1A1A;
  color: #8B1A1A;
}

.method-step.step-2 .step-number {
  color: #8B1A1A;
}

.method-step.step-3 .method-icon-wrapper {
  border: 1.5px solid #D4700A;
  color: #D4700A;
}

.method-step.step-3 .step-number {
  color: #D4700A;
}

.method-step.step-4 .method-icon-wrapper {
  border: 1.5px solid #3B6B35;
  color: #3B6B35;
}

.method-step.step-4 .step-number {
  color: #3B6B35;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark, #1A1A1A);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted, #555555);
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 992px) {
  .step-desc {
    text-align: left;
  }
}

.step-desc p {
  margin-bottom: 0.5rem;
}

.step-desc .highlight-link {
  color: var(--primary, #8B1A1A);
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition, all 0.4s ease);
  display: inline-block;
  margin-top: 0.5rem;
}

.step-desc .highlight-link:hover {
  color: var(--accent-orange, #D4700A);
}

/* Arrow Connector */
.flow-arrow-col {
  display: none;
}

@media (min-width: 992px) {
  .flow-arrow-col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4%;
    margin-top: 42px;
    /* Center aligned with the 84px icon height */
    transform: translateY(-50%);
    opacity: 0.6;
  }
}

/* ===================== PARTNERS (HOME PREVIEW) ===================== */
.partners-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.partners-left-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.partner-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-orange);
}

.partner-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FDF5EC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.partner-card:nth-child(even) .partner-icon-wrapper {
  color: var(--accent-orange);
}

.partner-card:nth-child(3n) .partner-icon-wrapper {
  color: var(--accent-green);
}

.partner-card span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.partners-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.partners-right h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  font-size: 2.2rem;
}

.partners-right h2 span {
  color: var(--primary);
}

.partners-right p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.partners-separator {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-orange) 50%, var(--accent-green) 100%);
  border-radius: 2px;
}

/* ===================== RESPONSIVE OVERRIDES ===================== */
@media (max-width: 768px) {
  .teaser-credentials-container {
    margin-bottom: 110px;
    max-width: 400px;
  }

  .teaser-image-card {
    width: 85%;
  }

  .teaser-info-card-wrapper {
    right: 0;
    top: auto;
    bottom: -80px;
    transform: none;
    width: 68%;
  }

  .teaser-info-card {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .teaser-icon-circle {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .teaser-item-title {
    font-size: 0.9rem;
  }

  .teaser-item-desc {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .teaser-credentials-container {
    margin-bottom: 95px;
  }

  .teaser-info-card-wrapper {
    bottom: -70px;
    width: 72%;
  }

  .teaser-info-card {
    padding: 1rem 0.75rem;
    gap: 0.75rem;
  }

  .teaser-icon-circle {
    width: 32px;
    height: 32px;
  }

  .teaser-item-title {
    font-size: 0.85rem;
  }

  .teaser-item-desc {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .partners-left-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partners-left-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .cards-grid .solution-card {
    flex: 1 1 calc(50% - 1.25rem);
    max-width: calc(50% - 1.25rem);
  }
}

@media (min-width: 992px) {
  .partners-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 1024px) {
  .hero-home {
    padding: clamp(120px, 15vw, 150px) 0 clamp(50px, 8vw, 80px) 0;
  }

  .hero-container {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .hero-content {
    order: 1;
    padding-right: 20px;
  }

  .hero-media-wrapper {
    order: 2;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-title {
    font-size: 52px;
  }
}

/* ===================== REDESIGN SEÇÃO O PROBLEMA ===================== */
.problema-section {
  background: radial-gradient(circle at 10% 20%, rgba(253, 251, 247, 0.4) 0%, var(--bg-white) 90%);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

/* Radar pulse container & animations */
.radar-pulse-wrapper {
  position: absolute;
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 4;
  pointer-events: none;
}

.radar-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.15;
  animation: radarPulseAnim 3s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.radar-pulse:nth-child(2) {
  animation-delay: 1s;
}

.radar-pulse:nth-child(3) {
  animation-delay: 2s;
}

.radar-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--primary);
}

@keyframes radarPulseAnim {
  0% {
    transform: scale(0.3);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Floating Glass Badges */
.glass-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  z-index: 5;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.glass-badge:hover {
  transform: scale(1.05) !important;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(158, 31, 31, 0.12);
  border-color: rgba(158, 31, 31, 0.2);
}

.glass-badge svg {
  color: var(--primary);
}

.glass-badge.badge-1 {
  top: 15%;
  left: -20px;
  animation: floatSlow 6s ease-in-out infinite alternate;
}

.glass-badge.badge-2 {
  bottom: 12%;
  right: -10px;
  animation: floatMid 5s ease-in-out infinite alternate;
}

.glass-badge.badge-3 {
  top: 55%;
  right: -30px;
  animation: floatFast 7s ease-in-out infinite alternate;
}

/* Keyframes for Floating */
@keyframes floatSlow {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes floatMid {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-8px) rotate(-1.5deg);
  }
}

@keyframes floatFast {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Alert Warning Card */
.problema-alert-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(158, 31, 31, 0.04) 0%, rgba(158, 31, 31, 0.01) 100%);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 16px 16px 0;
  margin-top: 2rem;
  box-shadow: 0 4px 15px rgba(158, 31, 31, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problema-alert-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(158, 31, 31, 0.05);
}

.problema-alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(158, 31, 31, 0.1);
  color: var(--primary);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
  animation: alertPulse 2s infinite;
}

@keyframes alertPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
    background: rgba(158, 31, 31, 0.15);
  }
}

.problema-alert-text {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments for badges on mobile */
@media (max-width: 768px) {
  .glass-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .glass-badge.badge-1 {
    left: 10px;
    top: 10%;
  }

  .glass-badge.badge-2 {
    right: 10px;
    bottom: 5%;
  }

  .glass-badge.badge-3 {
    right: 15px;
    top: 50%;
  }
}