.side-image-component {
  padding: var(--size-8, 32px) 0;
}

@media (min-width: 768px) {
  .side-image-component {
    padding: var(--size-8, 32px) 0;
  }
  .side-image-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--size-16, 64px);
  }
}

.side-image-header {
  text-align: center;
  margin-bottom: var(--size-10, 40px);
}

.side-image-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--size-16, 64px);
}

.side-image-card {
  display: flex;
  flex-direction: column;
  gap: var(--size-8, 32px);
  align-items: center;
}

.side-image-visual {
  width: 100%;
}

.side-image-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.side-image-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tipografia */
.side-image-main-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-primaryMain, #1f8563);
}

.side-image-subtitle {
  font-size: 20px;
  color: #474747;
  margin-bottom: var(--size-2, 8px);
  font-weight: 400;
  line-height: 148%;
  margin: 0;
}

.side-image-title {
  font-size: 32px; /* Desktop */
  font-weight: 700;
  color: #1b1b1b;
  margin: 0;
  margin-bottom: var(--size-2, 8px);
  line-height: 148%;
}

.side-image-description p {
  font-size: 16px;
  font-weight: 400;
  color: #474747;
  margin: 0;
  margin-bottom: var(--size-8, 32px);
}

.side-image-cta {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-color: #1f8563;
  color: #ffffff;
  padding: 9px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.48;
  letter-spacing: 0.05em;
  transition: opacity 0.25s ease, transform 0.12s ease;
  box-shadow: 2px 6px 0 0 #006a4d;
  width: fit-content;
}

.side-image-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.side-image-cta:active {
  opacity: 0.85;
  transform: translateY(0);
}
.side-image-cta:focus {
  outline: 2px solid #1f8563;
  outline-offset: 2px;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: headline-ripple 1.2s ease-out;
  background-color: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
@keyframes headline-ripple {
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}
/* Desktop Styles */
@media (min-width: 992px) {
  .side-image-card {
    flex-direction: row;
    gap: 100px;
  }

  .side-image-visual,
  .side-image-content {
    width: 50%;
  }

  .side-image-card.side-image-card--reverse {
    flex-direction: row-reverse;
  }
}

@media (max-width: 991px) {
  .side-image-title {
    font-size: 24px; /* Mobile font size */
  }
  .side-image-content {
    text-align: center;
  }

  .side-image-cta {
    margin: 0 auto;
  }
}
