/* ==========================================================================
   HOME page styles
   ========================================================================== */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 762px;
  background: url('../images/image-import-67.png') center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fe5000 40%, transparent 80%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero__content {
  max-width: 548px;
}

.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 0.98;
  color: #fff;
  letter-spacing: -1.8px;
  margin-bottom: 32px;
}

.hero__lead {
  font-size: 20px;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 32px;
  max-width: 563px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero__actions .btn-dark {
  background: var(--ink);
  color: #fff;
  padding: 22px 40px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero__actions .btn-dark:hover {
  background: #333;
}

.hero__trust {
  border-top: 1px solid rgba(255, 255, 255, 1);
  padding-top: 48px;
  display: flex;
  gap: 48px;
  width: max-content;
  max-width: 960px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__trust-item svg {
  flex: none;
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    padding: 140px 0 64px;
  }

  .hero::after {
    background: linear-gradient(to right, #fe5000 70%, rgba(254, 80, 0, .55) 100%);
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__trust {
    width: auto;
    max-width: none;
    flex-wrap: wrap;
    gap: 24px 32px;
  }

  .hero__trust-item {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 120px 0 48px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* ---------- Section 1: Value Proposition ---------- */
.value-prop {
  background: var(--gray-100);
  padding: 116px 0 144px;
}

.value-prop .container {
  display: flex;
  gap: 64px;
  align-items: center;
}

.value-prop__text {
  flex: 0 0 544px;
}

.value-prop__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 24px;
}

.value-prop__lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.4;
}

.value-prop__cards {
  flex: 0 0 544px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.value-card {
  background: #fff;
  border-left: 4px solid var(--orange);
  padding: 32px;
  box-shadow: 0 1px 1.75px rgba(0, 0, 0, .05);
}

.value-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.value-card__head svg {
  flex: none;
  color: var(--orange);
}

.value-card__head h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

.value-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ---------- Section 2: Services ---------- */
.services {
  padding: 80px 0;
}

.services__header {
  text-align: center;
  margin-bottom: 64px;
}

.services__header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
}

.services__header .accent-bar {
  width: 96px;
  height: 4px;
  background: var(--orange);
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  border: 1px solid rgba(167, 169, 172, .2);
}

.service-card__img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  display: block;
  background: #eee;
}

.service-card__body {
  padding: 32px;
}

.service-card__tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-card__body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  color: var(--ink);
  margin-bottom: 16px;
}

.service-card__list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--ink-soft);
}

.service-card__list li::before {
  content: '\2713';
  width: 16px;
  flex: none;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card__link svg {
  transition: transform .15s;
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

/* ---------- Section 3: Audiences / Client Logos ---------- */
.audiences {
  padding: 35px 0 41px;
  text-align: center;
}

.audiences h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.11;
  color: var(--ink);
  margin-bottom: 40px;
}

.audiences__marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.audiences__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: audiences-scroll 32s linear infinite;
}

.audiences__marquee:hover .audiences__track {
  animation-play-state: paused;
}

.audiences__group {
  display: flex;
  align-items: center;
  gap: 64px;
  flex: none;
}

.audiences__group img {
  height: 40px;
  width: auto;
  flex: none;
  filter: grayscale(100%);
  opacity: .55;
  transition: filter .2s ease, opacity .2s ease;
}

.audiences__group img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes audiences-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .audiences__track {
    animation: none;
  }

  .audiences__marquee {
    overflow-x: auto;
  }
}

@media (max-width: 900px) {
  .audiences__group img {
    height: 30px;
  }

  .audiences__track,
  .audiences__group {
    gap: 40px;
  }
}

/* ---------- Section 4: Operations ---------- */
.operations {
  background: var(--ink);
  padding: 80px 0;
}

.operations__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.11;
  color: #fff;
  text-align: center;
  margin-bottom: 64px;
  max-width: 1008px;
  margin-left: auto;
  margin-right: auto;
}

.operations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 48px;
}

.op-item {
  display: flex;
  gap: 16px;
}

.op-item svg {
  flex: none;
  color: var(--orange);
}

.op-item__text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.56;
  margin-bottom: 8px;
}

.op-item__text p {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.14;
}

/* ---------- Section 5: Differentiation ---------- */
.differentiation {
  padding: 80px 0;
  overflow: hidden;
}

.differentiation .container {
  display: flex;
  gap: 64px;
}

.diff__text {
  flex: 0 0 544px;
  position: relative;
}

.diff__text::before {
  content: '';
  position: absolute;
  left: -48px;
  top: -48px;
  width: 256px;
  height: 256px;
  background: rgba(254, 80, 0, .05);
}

.diff__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 32px;
}

.diff__lead {
  font-size: 18px;
  line-height: 1.625;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.diff__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diff-step {
  display: flex;
  gap: 16px;
}

.diff-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.diff-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 0;
}

.diff-step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.43;
}

.diff__img {
  flex: 0 0 544px;
  background: var(--gray-100);
  padding: 4px;
}

.diff__img img {
  width: 100%;
  height: 536px;
  object-fit: cover;
}

/* ---------- Section 6: Mercado Público ---------- */
.mercado-cta {
  position: relative;
  padding: 64px;
  background: var(--orange);
  text-align: center;
  overflow: hidden;
}

.mercado-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/image-import-5.jpg') center/cover;
  opacity: .2;
}

.mercado-cta__inner {
  position: relative;
  z-index: 1;
}

.mercado-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}

.mercado-cta p {
  font-size: 18px;
  line-height: 1.56;
  color: #fff;
  opacity: .9;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.mercado-cta .btn-dark {
  background: var(--ink);
  color: #fff;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 5.25px -4px rgba(0, 0, 0, .1), 0 10px 13.125px -3px rgba(0, 0, 0, .1);
}

/* ---------- Section 7: Catalog Bridge ---------- */
.catalog-bridge {
  padding: 80px 0;
}

.catalog-bridge .container {
  display: flex;
  gap: 64px;
}

.catalog__gallery {
  flex: 0 0 552px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.catalog__gallery img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  background: #eee;
  display: block;
}

.catalog__text {
  flex: 1;
  padding-top: 80px;
}

.catalog__text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.11;
  color: var(--ink);
  margin-bottom: 24px;
}

.catalog__text p {
  font-size: 18px;
  line-height: 1.56;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.catalog__actions {
  display: flex;
  gap: 16px;
}

.catalog__actions .btn-outline-orange {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
}

.catalog__actions .btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

/* ---------- Section 8: Testimonials ---------- */
.testimonials {
  background: var(--gray-100);
  padding: 80px 0;
}

.testimonials__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
  margin-bottom: 64px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border: 1px solid rgba(167, 169, 172, .1);
  box-shadow: 0 1px 1.75px rgba(0, 0, 0, .05);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--orange);
}

.testimonial-card__stars svg {
  width: 20px;
  height: 19px;
}

.testimonial-card blockquote {
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.testimonial-card__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0;
}

.testimonial-card__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
}

/* ---------- Section 9: Conversion Block ---------- */
.conversion {
  background: var(--ink);
  padding: 80px 0;
}

.conversion .container {
  display: flex;
  gap: 64px;
}

.conversion__text {
  flex: 0 0 544px;
  padding-top: 45px;
}

.conversion__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 24px;
}

.conversion__lead {
  font-size: 20px;
  line-height: 1.4;
  color: var(--gray-300);
  margin-bottom: 40px;
}

.conversion__tips {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 32px;
}

.conversion__tips h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}

.conversion__tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.conversion__tips-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-300);
}

.conversion__tips-grid li svg {
  flex: none;
  color: var(--orange);
}

.conversion__form {
  flex: 0 0 544px;
  background: #fff;
  padding: 40px 40px 56px;
  position: relative;
  box-shadow: 0 25px 43.75px -12px rgba(0, 0, 0, .25);
}

.conversion__form h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
}

.conversion__form .form-group {
  margin-bottom: 16px;
}

.conversion__form input,
.conversion__form textarea {
  width: 100%;
  background: #eee;
  border: none;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 18px 16px;
}

.conversion__form textarea {
  height: 128px;
  resize: vertical;
}

.conversion__form input::placeholder,
.conversion__form textarea::placeholder {
  color: #6b7280;
}

.conversion__form .btn-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 5.25px -4px rgba(0, 0, 0, .1), 0 10px 13.125px -3px rgba(0, 0, 0, .1);
}

.conversion__form .btn-submit:hover {
  background: var(--orange-dark);
}

/* ---------- Section 10: FAQ ---------- */
.faq {
  padding: 80px 0;
}

.faq__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
  margin-bottom: 48px;
}

.faq__list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid rgba(167, 169, 172, .2);
  padding-bottom: 16px;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.56;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: '';
}

.faq-item summary svg {
  flex: none;
  transition: transform .2s;
  color: var(--ink);
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 8px 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ---------- Responsive: stack the fixed two-column sections instead of overflowing ---------- */
@media (max-width: 1150px) {

  .value-prop .container,
  .differentiation .container,
  .catalog-bridge .container,
  .conversion .container {
    flex-direction: column;
  }

  .value-prop__text,
  .value-prop__cards,
  .diff__text,
  .diff__img,
  .catalog__gallery,
  .catalog__text,
  .conversion__text,
  .conversion__form {
    flex: 1 1 auto;
    width: 100%;
  }

  .catalog__text {
    padding-top: 0;
  }

  .diff__img img {
    height: auto;
    aspect-ratio: 544 / 536;
  }
}

@media (max-width: 860px) {

  .services__grid,
  .operations__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {

  .value-prop__title,
  .conversion__title {
    font-size: 36px;
  }

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

  .catalog__actions {
    flex-direction: column;
  }

  .catalog__actions .btn {
    width: 100%;
  }
}