/* Grupo Magna - Styles */

/* Base */
body {
  background-color: white;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border-bottom: 1px solid #f3f4f6;
}

/* SVG Icons */
.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
}

/* Product Cards SVG Icons */
.product-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  padding: 12px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 12px;
}

.product-icon svg {
  width: 100%;
  height: 100%;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

/* Benefits Section SVG */
.benefit-illustration {
  width: 100%;
  height: 225px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.benefit-illustration svg {
  width: 80%;
  height: 80%;
}

/* Testimonial Avatar */
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar svg {
  width: 36px;
  height: 36px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

/* CTA Section */
.cta-illustration {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-illustration svg {
  width: 70%;
  height: 70%;
}

/* FAQ Styles */
.faq-content {
  display: none;
  padding: 0 1.5rem 1rem;
}

.faq-content.open {
  display: block;
}

.faq-button svg {
  transition: transform 0.2s ease;
}

.faq-button.open svg {
  transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefit-illustration {
    height: 200px;
  }
}
