.section3-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 120px;
}

.box {
    width: fit-content;
    padding: 10px 30px 10px 30px;
    margin-bottom: 30px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #25A550;
    border-radius: 1px 1px 1px 1px;
    font-size: 16px;
}

.col-left {
    width: 45%;
}

.col-right {
    width: 55%;
}


.card-icon {
    padding-bottom: 10px;
}

.card-icon i {
    font-size: 24px;
    color: #25a550;
}


/* Estilos Lado Esquerdo */
.col-left h2 {
    font-size: 38px;
    line-height: 1.3;
    margin: 20px 0;
    font-weight: 300;
}

.divider {
    width: 95%;
    height: 2px;
    background-color: var(--color-primary);
    margin-bottom: 25px;
}

.sub-about {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.side-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 2px;
}

/* Estilos Lado Direito - Grade 2x3 */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}


.feature-card:hover {
    border-color: #384B3F;
}

.card-icon img {
    height: 35px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 1024px) {
    .section3-wrapper {
        flex-direction: column;
    }
    .col-left, .col-right {
        width: 100%;
    }
    .cards-grid {
        grid-template-columns: 1fr; /* No mobile vira 1 coluna */
    }
    
    .col-left h2 {
    font-size: 24px;
    }
    
    .sub-about {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    }
}

/* keyframes exclusivos da section3 */
@keyframes s3-fade-up {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0,20px,0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0,0,0);
  }
}

/* estado inicial dos cards */
.section3-wrapper .cards-grid > .feature-card {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0,20px,0);
}

/* animação quando a section ativa */
.section3-wrapper .cards-grid > .feature-card.s3-inview {
  animation-name: s3-fade-up;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  animation-delay: var(--s3-delay, 0s);
}

/* delays individuais */
#card-s3-1 { --s3-delay: 0.1s; }
#card-s3-2 { --s3-delay: 0.2s; }
#card-s3-3 { --s3-delay: 0.3s; }
#card-s3-4 { --s3-delay: 0.4s; }
#card-s3-5 { --s3-delay: 0.5s; }
#card-s3-6 { --s3-delay: 0.6s; }

/* mobile sem delay */
@media (max-width: 768px) {
  .section3-wrapper.s3-inview .cards-grid > .feature-card {
    animation-delay: 0s !important;
  }
}