
/* ============================================
   SECTION CLIMAT BANNER
   ============================================ */

.climat-banner {
  padding: 80px 5%;
}

.climat-banner-content {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
}

.climat-banner .container {
  max-width: 1200px;
  margin: 0 auto;
}

.climat-banner-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.climat-banner-icon svg {
  width: 42px;
  height: 36px;
  color: #ffffff;
}

.climat-banner-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}

.climat-banner-text p {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.8;
}

.climat-banner-cta {
  flex-shrink: 0;
}

.climat-banner-cta {
  background: var(--white);
  color: var(--primary);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); 
  transition: all 0.3s ease;
}

.climat-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
  background: var(--secondary);
  color: var(--white);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
  
  .climat-banner-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    padding: 40px 32px;
  }
  
  .climat-banner-icon {
    margin: 0 auto;
  }
  
  .climat-banner-cta {
    justify-self: center;
  }
}

@media (max-width: 640px) {

  .climat-banner-content {
    padding: 32px 24px;
    border-radius: 16px;
  }
  
  .climat-banner-text h3 {
    font-size: 22px;
  }
  
  .climat-banner-text p {
    font-size: 14px;
  }
}