.section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 1px 0;
}

.section-title {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #ff8c42);
  border-radius: 2px;
}

/* Policy Cards Section */
.policy-cards-section {
  padding: 6rem 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.policy-card {
  background: linear-gradient(145deg, #111827, #000000);
  border: 1px solid #374151;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-8px);
  border-color: #f97316;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.policy-card:hover::before {
  opacity: 1;
}

.policy-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f97316, #ff8c42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: #fff;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.policy-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.policy-card p {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.policy-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.policy-highlight i {
  color: #f97316;
  font-size: 0.875rem;
}

.policy-highlight span {
  color: #f97316;
  font-weight: 600;
  font-size: 0.875rem;
}

.btn-submit-return {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #f97316, #ff8c42);
  color: #fff;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
  margin-top: 1rem;
  align-self: center;
}

.btn-submit-return:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-submit-return:hover .btn-icon {
  transform: translateX(4px);
}

.btn-submit-return .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-submit-return:hover .btn-glow {
  opacity: 1;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-item {
  background: linear-gradient(145deg, #111827, #000000);
  border: 1px solid #374151;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #f97316;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(249, 115, 22, 0.05);
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.faq-question i {
  color: #f97316;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

.faq-answer p {
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 30px;
  padding: 4rem 3rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.contact-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f97316, #ff8c42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp,
.btn-email,
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-email {
  background: linear-gradient(135deg, #f97316, #ff8c42);
  color: #fff;
}

.btn-email:hover {
  background: linear-gradient(135deg, #ea580c, #f97316);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.btn-phone {
  background: transparent;
  color: #f97316;
  border-color: #f97316;
}

.btn-phone:hover {
  background: #f97316;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

/* Container principal */
.container {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Responsividade */
@media (max-width: 1200px) {
  .returns-container {
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .returns-container {
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    padding: 2rem 4rem;
  }
}

@media (max-width: 768px) {
  .returns-container {
    padding: 2rem 1rem;
    gap: 2rem;
  }  

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .process-steps-section {
    padding: 4rem 2rem;
    margin: 3rem 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-whatsapp,
  .btn-email,
  .btn-phone {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .returns-container {
    padding: 1rem 0.5rem;
    min-height: auto;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .policy-card {
    padding: 2rem;
  }

  .policy-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .btn-submit-return {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }

  .contact-cta-section {
    padding: 3rem 2rem;
  }

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

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 320px) {
  .returns-container {
    padding: 0.5rem;
  }

  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .returns-subtitle-modern {
    font-size: 1rem;
  }
}

@media (min-width: 1400px) {
  .policy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1600px) {
  .returns-container {
    max-width: 1600px;
    padding: 2rem 6rem;
  }
}

@media (min-width: 1920px) {
  .returns-container {
    max-width: 1800px;
    padding: 2rem 8rem;
  }
}

/* Animations */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Previne scroll horizontal */
html,
body {
  overflow-x: hidden;
}

/* Box-sizing global */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .policy-card,
  .btn-submit-return,
  .faq-item,
  .contact-cta-section::before {
    transition: none;
    animation: none;
  }
}
