/*
 * SEÇÃO DE DEPOIMENTO E GARANTIA
 * Cores e layout exatos do design last-section.png
 */

/* === SEÇÃO CITAÇÃO (Roxa com Cora) === */
.testimonial-quote {
  background: var(--gradient-secondary);
  padding: 4rem 2rem;
  margin: 0;
}

.quote-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.quote-logo {
  flex-shrink: 0;
}

.quote-cora-image {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50%;
  background: var(--white);
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  display: block;
}

.quote-text {
  flex: 1;
}

.quote-main {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  margin: 0 0 0.75rem 0;
  font-weight: 400;
}

.quote-author {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
}

/* === SEÇÃO DEPOIMENTO (Roxa lavanda) === */
.testimonial-section {
  background: #B8A9E8;
  padding: 3rem 2rem;
  color: var(--white);
}

.testimonial-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--white);
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  flex: 1;
  padding-top: 0.5rem;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 400;
}

.testimonial-author {
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
  font-weight: 400;
}

/* === SEÇÃO GARANTIA (Coral) === */
.guarantee-section {
  background: #FF7D52;
  padding: 4rem 2rem 6rem 2rem;
  color: var(--white);
  min-height: 400px;
  display: flex;
  align-items: center;
  margin: 0;
}

.guarantee-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.guarantee-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
  letter-spacing: 4px;
}

.guarantee-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem 4rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--white);
  font-style: italic;
  margin: 0;
  font-weight: 400;
}

/* === BOTÃO GARANTIA === */
.btn-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: #4CAF50;
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.btn-guarantee:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .quote-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .quote-cora-image {
    width: 100px;
    height: 100px;
  }

  .quote-main {
    font-size: 1.25rem;
  }

  .testimonial-box {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-avatar {
    width: 80px;
    height: 80px;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }

  .guarantee-content h2 {
    font-size: 2rem;
  }

  .guarantee-text {
    font-size: 1.1rem;
  }

  .btn-guarantee {
    font-size: 1.1rem;
    padding: 1.1rem 2.2rem;
  }
}

@media (max-width: 480px) {
  .testimonial-quote {
    padding: 3rem 1.5rem;
  }

  .quote-cora-image {
    width: 80px;
    height: 80px;
  }

  .quote-main {
    font-size: 1.1rem;
  }

  .quote-author {
    font-size: 0.9rem;
  }

  .testimonial-section {
    padding: 3rem 0;
  }

  .guarantee-section {
    padding: 3.5rem 0;
  }

  .testimonial-avatar {
    width: 70px;
    height: 70px;
  }

  .guarantee-content h2 {
    font-size: 1.75rem;
  }

  .guarantee-text {
    font-size: 1rem;
  }

  .guarantee-box {
    padding: 1.5rem;
  }

  .btn-guarantee {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}
