/* Variables for reusable colors */
:root {
  --gold-primary: #daa520;
  --gold-dark: #c48e1e;
  --gray-dark: #333;
  --gray-medium: #444;
  --gray-light: #555;
  --bg-light: #f9f9fa;
  --bg-lighter: #f5f5f5;
  --shadow-soft: rgba(0, 0, 0, 0.06);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --shadow-gold: rgba(218, 165, 32, 0.15);
}

/* Main section */
.ropa-corporativa-section {
  --section-padding: 60px 30px;
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(to right, var(--bg-light), var(--bg-lighter));
  border-radius: 12px;
  margin: 60px auto;
  max-width: 1200px;
  overflow: hidden;
  box-shadow: 0 15px 30px var(--shadow-soft);
}

.ropa-corporativa-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(to bottom, #d79720, var(--gold-primary), #e8c269);
}

/* Section wrapper */
.section-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Image column */
.image-column {
  flex: 1;
  min-width: 300px;
  max-width: 520px;
}

.image-spotlight {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.image-container {
  position: relative;
  border-radius: inherit;
  box-shadow: 0 15px 30px var(--shadow-medium);
  transition: transform 0.4s ease;
  height: auto;
}

.image-container:hover {
  transform: translateY(-6px);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

/* Content column */
.content-column {
  flex: 1;
  min-width: 300px;
}

.section-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 15px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.content-column h2 {
  font-size: 30px;
  color: var(--gray-dark);
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.content-column p {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 25px;
}

.content-column strong {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Benefits list */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-icon {
  width: 34px;
  height: 34px;
  background: rgba(218, 165, 32, 0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
}

.benefit-item span {
  font-size: 15px;
  color: var(--gray-medium);
}

/* CTA button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-primary);
  color: var(--gray-dark);
  padding: 14px 28px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 15px var(--shadow-gold);
}

.cta-button:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.25);
}

.cta-button svg {
  transition: transform 0.3s;
}

.cta-button:hover svg {
  transform: translateX(4px);
}

/* Responsive - Tablets */
@media (max-width: 992px) {
  .ropa-corporativa-section {
    --section-padding: 50px 25px;
  }
  .section-wrapper {
    gap: 40px;
  }
  .content-column h2 {
    font-size: 26px;
  }
}

/* Responsive - Small tablets and large mobiles */
@media (max-width: 768px) {
  .ropa-corporativa-section {
    --section-padding: 40px 25px;
    margin: 40px auto;
  }
  .ropa-corporativa-section::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }
  .section-wrapper {
    flex-direction: column;
    gap: 35px;
  }
  .image-column, .content-column {
    max-width: 100%;
    text-align: center;
  }
  .benefit-item, .section-category, .cta-button {
    justify-content: center;
    display: block;
    width: 100%;
  }
}

/* Responsive - Mobiles */
@media (max-width: 576px) {
  .ropa-corporativa-section {
    --section-padding: 35px 20px;
    border-radius: 10px;
    margin: 30px 15px;
  }
  .content-column h2 {
    font-size: 22px;
  }
  .content-column p {
    font-size: 15px;
  }
  .benefits-list {
    gap: 12px;
    margin-bottom: 25px;
  }
  .benefit-item span {
    font-size: 14px;
  }
}

/* Responsive - Small mobiles */
@media (max-width: 375px) {
  .ropa-corporativa-section {
    --section-padding: 30px 15px;
  }
  .content-column h2 {
    font-size: 20px;
  }
  .benefit-icon {
    width: 30px;
    height: 30px;
  }
  .benefit-icon svg {
    width: 16px;
    height: 16px;
  }
}