/* =========================
   BANNER SECTION
========================= */
.social-section.container {
  border-bottom: 5px solid #f3f3f3;
  padding-bottom:0 80px;
}
.banner-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.banner-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.banner-card::before {
  /* Capa de oscurecimiento sutil sobre la imagen */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.664), rgba(206, 206, 206, 0.196));
  z-index: 0;
  transition: background 0.4s ease;
}

.banner-card:hover {
  transform: scale(1.02);
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  width: 100%;
}
.small-text{
  color: var(--btn-bg);
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(7, 7, 7, 0.606);
}

.banner-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--white);
}

.banner-desc {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 15px;
}


/* Responsive */
@media (max-width: 600px) {
  .banner-section {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .banner-section .container{
    width: 100%;
  }

  .banner-card {
    height: 250px;
  }

  .banner-content {
    padding: 20px;
  }

  .banner-title {
    font-size: 1.5rem;
  }
}

/* =========================
   SECTION MULTIMARCA
========================= */
.social-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 60px 0;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* ====== Informacion Multimarca ====== */
.info-profile {
  background:white;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.301);
  height: 100%;
  transition: background 0.4s ease, color 0.4s ease;
  z-index: 1;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 40px; 
  flex-wrap: wrap;
}

/* ====== COLUMNA PROMOCIONAL ====== */
.social-promo { 
background: #272827;
background: linear-gradient(135deg, #272827, #EA1320);
  color: var(--text);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  height: 100%;
  transition: background 0.4s ease, color 0.4s ease;
}

.promo-top {
  color: bisque;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.social-promo h3 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: bisque;
}

.promo-desc {
  color: bisque;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
/*******************
* BTN
******************/
.social-promo .btn{
  list-style: none;
  padding: 15px 20px;
  cursor: pointer;
  background: #f3f3f3;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
  color: #444;
}

.social-promo .btn:hover {
  background: #be0808;
  color: #fff;
  border-color: #8e0606;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .social-section {
    grid-template-columns: 1fr;
    margin: 40px auto;
    padding: 0 10px;
  }

  .instagram-profile,
  .social-promo {
    height: auto;
  }

  .instagram-profile {
    order: 2;
  }

  .social-promo {
    order: 1;
    text-align: center;
    align-items: center;
  }

  .social-promo h3 {
    font-size: 1.6rem;
  }
  .info-header {
  padding: 20px 0 10px 0;
  gap: 0;
}
}
