/* =====================
   IMPORTADORES - Landing B2B
   ===================== */

/* ── Hero ── */
.importadores-hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  padding: 8rem 6% 4rem;
  display: flex;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(4, 115, 240, 0.06),
    rgba(244, 249, 254, 1)
  );
}

.importadores-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/background-hero-triangle.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 420px;
  opacity: 0.1;
  transform: translateX(45px) rotate(12deg);
  animation: driftHero 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.importadores-hero::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(4, 115, 240, 0.16),
    transparent 55%
  );
  filter: blur(30px);
  opacity: 0.9;
  animation: floatGlow 20s ease-in-out infinite alternate;
  pointer-events: none;
}

.importadores-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 1.1fr) minmax(300px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.importadores-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 620px;
}

.importadores-hero .eyebrow {
  font-family: var(--ff-texts);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-light-blue);
  font-size: 0.95rem;
}

.importadores-hero h1 {
  font-family: var(--ff-titles);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.05;
  max-width: 680px;
  margin: 0;
}

.importadores-hero p {
  font-family: var(--ff-texts);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  opacity: 0.8;
}

.importadores-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.importadores-hero .contactoBtn,
.importadores-hero .secondaryBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-family: var(--ff-texts);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.importadores-hero .contactoBtn {
  background: var(--clr-light-blue);
  color: var(--clr-white);
}

.importadores-hero .secondaryBtn {
  border: 1px solid #292827;
  color: #292827;
  background: transparent;
}

.importadores-hero .contactoBtn:hover,
.importadores-hero .secondaryBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(4, 115, 240, 0.18);
}

/* ── Visual Hero ── */
.importadores-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.importadores-visual-stack {
  width: 100%;
  max-width: 480px;
  display: grid;
  gap: 0.85rem;
}

.importadores-visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  box-shadow: 0 30px 70px rgba(4, 115, 240, 0.12);
}

.importadores-visual-card-main {
  min-height: 280px;
  background: linear-gradient(135deg, #e0eeff 0%, #f0f7ff 100%);
}

.importadores-visual-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.importadores-visual-card-main:hover img {
  transform: scale(1.04);
}

.importadores-visual-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.8rem 0;
  width: 100%;
}

.stat-line {
  font-family: var(--ff-texts);
  font-size: 1rem;
  color: #292827;
  opacity: 0.8;
}

.stat-line strong {
  font-family: var(--ff-titles);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--clr-light-blue);
}

.stat-divider-v {
  width: 1px;
  height: 22px;
  background: rgba(41, 40, 39, 0.2);
}

.importadores-visual-card-main .visual-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.5rem;
  opacity: 0.18;
}

.importadores-visual-card-main .card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(3, 29, 65, 0.85) 100%
  );
  color: #fff;
}

.importadores-visual-card-main .card-caption .card-label {
  font-family: var(--ff-texts);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(158, 216, 255, 0.95);
  margin-bottom: 0.4rem;
}

.importadores-visual-card-main .card-caption h3 {
  font-family: var(--ff-titles);
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.15;
}

/* ── Pain Points Section ── */
.painpoints-section {
  position: relative;
  padding: 3.5rem 6%;
  overflow: hidden;
  width: 100%;
}

.painpoints-section::after {
  content: "";
  position: absolute;
  left: -100px;
  top: 40px;
  width: 380px;
  height: 380px;
  background-image: url("../img/background-hero-circle-&-dots.png");
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.2;
  pointer-events: none;
  animation: driftPattern 15s linear infinite alternate;
  z-index: -1;
}

.painpoints-header {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}

.painpoints-header .eyebrow {
  font-family: var(--ff-texts);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-light-blue);
  font-size: 0.82rem;
}

.painpoints-header h2 {
  font-family: var(--ff-titles);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.6rem 0;
  line-height: 1.1;
}

.painpoints-header p {
  font-family: var(--ff-texts);
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.75;
}

.painpoints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  max-width: 820px;
  margin: 0 auto;
}

/* ── Bento Flip Cards ── */

.bento-cell {
  perspective: 1000px;
  cursor: pointer;
  outline: none;
  height: 130px;
}

.bento-cell:focus-visible {
  outline: 2px solid var(--clr-light-blue);
  outline-offset: 2px;
  border-radius: 0.9rem;
}

.bento-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.bento-cell.flipped .bento-inner {
  transform: rotateY(180deg);
}

.bento-front,
.bento-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 0.9rem;
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.bento-front {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 0.35rem;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.bento-front::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 0.9rem 0 0 0.9rem;
  background: var(--card-color, #f04e4e);
  opacity: 0.55;
}

.bento-cell:hover .bento-front {
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.06);
  border-color: var(--card-color, rgba(240, 78, 78, 0.2));
}

.bento-back {
  background: #0473f0;
  transform: rotateY(180deg);
}

.bento-back p {
  font-family: var(--ff-texts);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.bento-icon {
  font-size: 2rem;
  line-height: 1;
}

.bento-front h3 {
  font-family: var(--ff-titles);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.bento-hint {
  font-family: var(--ff-texts);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--card-color, #f04e4e);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  margin-top: 0.1rem;
}

.bento-cell:hover .bento-hint {
  opacity: 0.75;
}

.bento-cell.flipped .bento-hint {
  opacity: 0;
}

/* ── Solution Section ── */
.solution-section {
  position: relative;
  padding: 4rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.solution-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 480px;
  height: 480px;
  background-image: url("../img/background-triangle-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  transform: translate(60px, -40px);
}

.solution-copy {
  max-width: 560px;
}

.solution-copy .eyebrow {
  font-family: var(--ff-texts);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-light-blue);
  font-size: 0.82rem;
}

.solution-copy h2 {
  font-family: var(--ff-titles);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.6rem 0;
  line-height: 1.1;
}

.solution-copy > p {
  font-family: var(--ff-texts);
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 1.2rem;
}

.solution-features {
  display: grid;
  gap: 0.7rem;
}

.solution-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(4, 115, 240, 0.1);
  box-shadow: 0 16px 32px rgba(4, 115, 240, 0.05);
  transition: all 0.3s ease;
}

.solution-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(4, 115, 240, 0.08);
  border-color: rgba(4, 115, 240, 0.18);
}

.solution-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(4, 115, 240, 0.08);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.solution-feature h3 {
  font-family: var(--ff-titles);
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.2rem;
}

.solution-feature p {
  font-family: var(--ff-texts);
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0.68;
  margin: 0;
}

.solution-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-mockup {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: linear-gradient(145deg, #e0eeff 0%, #f0f7ff 50%, #e8f4ff 100%);
  border-radius: 1.6rem;
  padding: 2rem;
  box-shadow: 0 32px 64px rgba(4, 115, 240, 0.1);
}

.solution-mockup-inner {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1.2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.solution-mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.solution-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
}

.solution-mockup-dot:nth-child(1) {
  background: #ff5f57;
}
.solution-mockup-dot:nth-child(2) {
  background: #ffbd2e;
}
.solution-mockup-dot:nth-child(3) {
  background: #28c840;
}

.solution-mockup-title {
  font-family: var(--ff-texts);
  font-size: 0.75rem;
  color: #999;
  margin-left: auto;
}

.solution-mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-family: var(--ff-texts);
  font-size: 0.82rem;
}

.solution-mockup-row:last-child {
  border-bottom: none;
}

.solution-mockup-row .label {
  color: #666;
}

.solution-mockup-row .value {
  font-weight: 700;
  color: #1a1a2e;
}

.solution-mockup-row .value.blue {
  color: var(--clr-light-blue);
}

.solution-mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.solution-mockup-stat {
  background: rgba(4, 115, 240, 0.04);
  border-radius: 0.6rem;
  padding: 0.7rem;
  text-align: center;
}

.solution-mockup-stat .stat-val {
  font-family: var(--ff-titles);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-light-blue);
}

.solution-mockup-stat .stat-lbl {
  font-family: var(--ff-texts);
  font-size: 0.68rem;
  color: #888;
  margin-top: 0.15rem;
}

/* ── Target Audience Chips ── */
.audience-section {
  position: relative;
  padding: 3rem 6% 4rem;
  overflow: hidden;
  width: 100%;
}

.audience-header {
  max-width: 650px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.audience-header .eyebrow {
  font-family: var(--ff-texts);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-light-blue);
  font-size: 0.82rem;
}

.audience-header h2 {
  font-family: var(--ff-titles);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  margin: 0.6rem 0 0;
  line-height: 1.15;
}

.audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.audience-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(4, 115, 240, 0.12);
  box-shadow: 0 8px 14px rgba(4, 115, 240, 0.05);
  font-family: var(--ff-texts);
  font-size: 0.82rem;
  color: #292827;
  transition: all 0.25s ease;
}

.audience-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 115, 240, 0.22);
  box-shadow: 0 14px 26px rgba(4, 115, 240, 0.1);
}

.audience-chip .chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: rgba(4, 115, 240, 0.08);
  font-size: 0.9rem;
}

.audience-chip strong {
  font-family: var(--ff-titles);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
  padding: 4rem 6%;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/background-hero-triangle.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 400px;
  opacity: 0.04;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--ff-titles);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 0.8rem;
  line-height: 1.12;
}

.cta-content p {
  font-family: var(--ff-texts);
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.78;
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-buttons .contactoBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--ff-texts);
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--clr-light-blue);
  color: var(--clr-white);
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-buttons .secondaryBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--ff-texts);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid #292827;
  color: #292827;
  background: transparent;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-buttons .contactoBtn:hover,
.cta-buttons .secondaryBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(4, 115, 240, 0.18);
}

/* ── Footer (reuses main.css .footerContainer) ── */
.importadores-footer .footerContainer {
  padding: 5rem 6% 6rem;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1024px) {
  .importadores-hero-content {
    grid-template-columns: 1fr;
  }

  .importadores-hero-visual {
    justify-content: center;
    order: -1;
  }

  .importadores-visual-stack {
    max-width: 400px;
  }

  .solution-section {
    grid-template-columns: 1fr;
  }

  .solution-visual {
    order: -1;
  }

  .solution-mockup {
    max-width: 380px;
  }

  .painpoints-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    max-width: 720px;
  }

  .bento-cell {
    height: 120px;
  }

  .bento-front,
  .bento-back {
    padding: 1rem 0.8rem;
  }

  .bento-icon {
    font-size: 1.7rem;
  }

  .bento-front h3 {
    font-size: 0.85rem;
  }

  .bento-hint {
    font-size: 0.52rem;
  }

  .bento-back p {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .importadores-hero,
  .painpoints-section,
  .solution-section,
  .audience-section,
  .cta-section {
    padding: 3rem 4%;
  }

  .importadores-hero {
    min-height: auto;
    padding: 7rem 4% 3rem;
    padding-bottom: 0;
  }

  .importadores-hero h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .importadores-hero-visual {
    order: 1;
  }

  .importadores-visual-stack {
    max-width: 100%;
  }

  .painpoints-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    max-width: 100%;
  }

  .bento-cell {
    height: 110px;
  }

  .bento-front,
  .bento-back {
    padding: 0.8rem 0.6rem;
  }

  .bento-icon {
    font-size: 1.4rem;
  }

  .bento-front h3 {
    font-size: 0.7rem;
  }

  .bento-back p {
    font-size: 0.65rem;
    line-height: 1.4;
  }

  .bento-hint {
    font-size: 0.48rem;
  }

  .solution-mockup {
    display: none;
  }

  .solution-section {
    gap: 0;
  }

  .audience-chips {
    justify-content: center;
  }

  .audience-chip {
    flex: 1 1 140px;
    min-width: 130px;
    justify-content: center;
  }

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

  .cta-buttons .contactoBtn,
  .cta-buttons .secondaryBtn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .importadores-hero h1 {
    font-size: 1.9rem;
  }

  .painpoints-header h2,
  .solution-copy h2,
  .audience-header h2,
  .cta-content h2 {
    font-size: 1.7rem;
  }

  .painpoints-grid {
    gap: 0.35rem;
  }

  .bento-cell {
    height: 100px;
  }

  .bento-front,
  .bento-back {
    padding: 0.7rem 0.5rem;
    border-radius: 0.6rem;
  }

  .bento-icon {
    font-size: 1.2rem;
  }

  .bento-front h3 {
    font-size: 0.62rem;
  }

  .bento-hint {
    font-size: 0.45rem;
  }

  .bento-back p {
    font-size: 0.58rem;
  }

  .solution-mockup-stats {
    grid-template-columns: 1fr;
  }

  .stat-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }

  .stat-line strong {
    font-size: 2.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bento-inner {
    transition: none;
  }
}
