/* Garantia de 7 dias - Profissão Inteligente */

/* Estilos para o selo de garantia */
.guarantee-section {
  margin-top: 60px;
  background: rgba(0, 255, 136, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border-left: 4px solid var(--secondary-accent);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee-image {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guarantee-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.guarantee-badge-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto;
  padding: 20px;
  background: rgba(0, 255, 136, 0.08);
  border-radius: 12px;
  border: 2px solid var(--secondary-accent);
  max-width: 300px;
  position: relative;
  overflow: hidden;
}

.guarantee-badge-large::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--secondary-accent);
  transform: rotate(45deg);
  z-index: 1;
}

.guarantee-badge-large i {
  font-size: 3rem;
  color: var(--secondary-accent);
  margin-bottom: 15px;
  z-index: 2;
}

.guarantee-badge-large h4 {
  font-size: 1.5rem;
  color: var(--secondary-accent);
  margin-bottom: 10px;
  z-index: 2;
}

.guarantee-badge-large p {
  font-size: 1rem;
  margin: 0;
  color: var(--text-color);
  z-index: 2;
}

.guarantee-badge-large strong {
  color: var(--secondary-accent);
}

.guarantee-box {
  background: rgba(0, 255, 136, 0.08);
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  text-align: center;
  border-left: 4px solid var(--secondary-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee-box .guarantee-image {
  margin-bottom: 15px;
}

.guarantee-box h4 {
  color: var(--secondary-accent);
  margin-bottom: 15px;
}

/* Responsividade */
@media (max-width: 768px) {
  .guarantee-badge-large {
    padding: 15px;
  }
  
  .guarantee-badge-large i {
    font-size: 2.5rem;
  }
  
  .guarantee-badge-large h4 {
    font-size: 1.3rem;
  }
  
  .guarantee-image {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .guarantee-section {
    padding: 20px;
  }
  
  .guarantee-badge-large {
    padding: 10px;
  }
  
  .guarantee-badge-large i {
    font-size: 2rem;
  }
  
  .guarantee-badge-large h4 {
    font-size: 1.1rem;
  }
  
  .guarantee-image {
    width: 100px;
    height: 100px;
  }
}
