/* Create & Destroy Section - BEM Methodology with SFC Design System */
.create-destroy {
  padding: 100px 0 var(--sfc-space-3xl);
  background-color: var(--sfc-color-bg-white);
  position: relative;
}

.create-destroy__decoration--dots-bottom {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: auto;
  height: auto;
}

.create-destroy__ball {
  position: absolute;
  left: 0;
    top: -3%;
  width: auto;
  height: auto;
}

.create-destroy__container {
  max-width: var(--sfc-container-max);
  margin: 0 auto;
  padding: 0 var(--sfc-container-padding);
}

.create-destroy__header {
  text-align: center;
  margin-bottom: 60px;
}

.create-destroy__title {
  font-family: var(--sfc-font-primary);
  font-size: 62px;
  font-weight: 700;
  color: var(--sfc-color-primary);
  margin: 0 0 var(--sfc-space-sm) 0;
  line-height: 100%;
  letter-spacing: -1px;
}

.create-destroy__line {
  max-width: 360px;
  width: 100%;
  margin: 0 auto 30px;
  display: block;
}

.create-destroy__description {
  font-family: var(--sfc-font-primary);
  font-size: 22px;
  color: var(--sfc-color-text-black);
  margin: 0;
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
  line-height: 140%;
}

.create-destroy__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 982px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.create-destroy__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
}

.create-destroy__item--left .create-destroy__text {
  text-align: left;
  padding-right: 20px;
}

.create-destroy__item--right .create-destroy__text {
  text-align: left;
  padding-left: 20px;
  max-width: 368px;
}

.create-destroy__text {
  display: flex;
  flex-direction: column;

}

.create-destroy__item-title {
  font-family: var(--sfc-font-primary);
  font-size: 36px;
  font-weight: 700;
  color: var(--sfc-color-primary);
  margin: 0;
  line-height: 120%;
}

.create-destroy__item-description {
  font-family: var(--sfc-font-primary);
  font-size: 18px;
  color: var(--sfc-color-text-black);
  margin: 0;
  line-height: 140%;
}

.create-destroy__badge {
  width: 65px;
  height: 65px;
  border-radius: var(--sfc-radius-round);
  background-color: var(--sfc-color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.create-destroy__badge-number {
  font-family: var(--sfc-font-primary);
  font-size: 36px;
  font-weight: 700;
  color: var(--sfc-color-text-light);
  text-align: center;
}

.create-destroy__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.create-destroy__svg-decoration {
  display: none;
}

.create-destroy__image {
  width: 100%;
  max-width: 350px;
  height: auto;
  /* border-radius: 50%; */
  object-fit: contain;
  aspect-ratio: 1;
  position: relative;
  z-index: 1;
}

.create-destroy__image-wrapper.create-destroy__image-wrapper--left.fixed-height .create-destroy__image{
  min-height: 450px;
}

.create-destroy__decoration {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.create-destroy__decoration--music {
  top: 50%;
  right: -150px;
  width: auto;
  height: 200px;
  transform: translateY(-50%);
}

.create-destroy__decoration--dots {
top: 19%;
    left: 50%;
    width: 545px;
    max-width: none;
    height: 100%;
    transform: translateY(-50%);
}

.create-destroy__decoration--circles {
     top: -15%;
    right: 80%;
    width: 500px;
    max-width: none;
    height: 100%;
    transform: translateY(-35%) rotate(0deg);
}


.create-destroy__cta {
  display: flex;
  justify-content: center;
  max-width: 218px;
  margin: 0 auto;
}

.create-destroy__button {
  font-family: var(--sfc-font-primary);
  background-color: var(--sfc-color-secondary);
  color: var(--sfc-color-text-light);
  padding: 14px 30px;
  border-radius: var(--sfc-radius-pill);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--sfc-transition-base), transform var(--sfc-transition-base);
}

.create-destroy__button:hover {
  transform: translateY(-2px);
}

@media (max-width: 1280px) {
  .create-destroy__container {
    padding: 0 var(--sfc-space-xl);
  }
}

@media (max-width: 1100px) {
  .create-destroy {
    padding: var(--sfc-space-xl) 0;
  }

  .create-destroy__container {
    padding: 0 var(--sfc-space-md);
  }

  .create-destroy__title {
    font-size: 48px;
  }

  .create-destroy__description {
    font-size: 18px;
  }

  .create-destroy__header {
    margin-bottom: 60px;
  }


  .create-destroy__item {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .create-destroy__item--left .create-destroy__text,
  .create-destroy__item--right .create-destroy__text {
    text-align: center;
    padding: 0;
    margin: auto;
  }
  .create-destroy__content {
    gap: 50px;
    overflow: hidden;
  }

  .create-destroy__badge {
    margin: 0 auto;
  }

  .create-destroy__image-wrapper {
    order: -1;
  }

  .create-destroy__decoration--dots,
  .create-destroy__decoration--circles {
    display: none;
  }

  .create-destroy__item-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .create-destroy__ball, .create-destroy__decoration--dots-bottom{
    display: none; 
  }
  .create-destroy {
    padding: var(--sfc-space-lg) 0;
  }

  .create-destroy__container {
    padding: 0 var(--sfc-space-sm);
  }

  .create-destroy__title {
    font-size: 36px;
  }

  .create-destroy__description {
    font-size: 16px;
  }

  .create-destroy__header {
    margin-bottom: 40px;
  }

  .create-destroy__item-title {
    font-size: 24px;
  }

  .create-destroy__item-description {
    font-size: 15px;
  }

  .create-destroy__badge {
    width: 60px;
    height: 60px;
  }

  .create-destroy__badge-number {
    font-size: 24px;
  }

  .create-destroy__image {
    max-width: 280px;
  }

  .create-destroy__decoration--music,
  .create-destroy__decoration--dots,
  .create-destroy__decoration--circles,
  .create-destroy__decoration--star {
    width: 40px;
    height: 40px;
  }

  .create-destroy__button {
    padding: 15px 35px;
    font-size: 16px;
  }
}

@media (max-width: 500px) {
    .create-destroy__svg-decoration {
        display: block;
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }
    
    /* SVG específico para item 01 (Core Activities) */
    .create-destroy__item:nth-child(1) .create-destroy__svg-decoration {
        top: 40%;
        width: 120%;
    }
    
    /* SVG específico para item 02 (Weekly Theme) */
    .create-destroy__item:nth-child(2) .create-destroy__svg-decoration {
        top: 66%;
        width: 100%;
        object-fit: contain;
    }
    
    /* SVG específico para item 03 (Learning Approach) */
    .create-destroy__item:nth-child(3) .create-destroy__svg-decoration {
           top: 59%;
        width: 100%;
    }
}
@media (max-width:390px) {
      .create-destroy__item:nth-child(1) .create-destroy__svg-decoration {
        top: 28%;
        width: 100%;
    }
    
    /* SVG específico para item 02 (Weekly Theme) */
    .create-destroy__item:nth-child(2) .create-destroy__svg-decoration {
        top: 57%;
        left: 46%;
        width: 100%;
        object-fit: contain;
    }
    
    /* SVG específico para item 03 (Learning Approach) */
    .create-destroy__item:nth-child(3) .create-destroy__svg-decoration {
        top: 58%;
        left: 46%;
        width: 100%;
    }
  
}