:root {
  --blue: #3568ad;
  --dark: #061126;
  --purple: #7b36c7;
  --cyan: #2ba8de;
  --green: #58bd63;
  --pink: #e64b86;
  --orange: #ff8428;
  --shadow: 0 14px 28px rgba(47, 101, 164, .16);
  --soft: #f8fbff;
  --line: #e9f0fa
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #050505;
  background: #fff
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  width: min(1180px, 92%);
  margin: auto
}

.section {
  padding: 78px 0
}

.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase
}

.h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1.4px
}

.h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 900
}

.lead {
  font-size: 20px;
  line-height: 1.2;
  margin-top: 22px
}

.lead1 {
  font-size: 20px;
  line-height: 1.2;
  margin-top: 22px;
  text-align: justify;
}
.grad {
  background: linear-gradient(90deg, #8940c8, #239ee5, #69c85c);
  -webkit-background-clip: text;
  color: transparent
}

.purple {
  color: var(--purple)
}

.green {
  color: var(--green)
}

.blue {
  color: var(--blue)
}

.pink {
  color: var(--pink)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .04)
}

.nav-wrap {
  width: min(1180px, 94%);
  margin: auto;
  height: 102px;
  display: flex;
  align-items: center;
  gap: 26px
}

.brand img {
  width: 132px;
  object-fit: contain
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px
}

.nav a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  position: relative
}

.nav a:hover,
.nav a.active {
  color: var(--blue)
}

.nav a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  background: var(--blue)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 215px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  border: 3px solid var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s;
  white-space: nowrap
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(53, 104, 173, .25)
}

.btn-outline {
  background: #fff;
  color: var(--blue)
}

.btn-small {
  min-width: 178px;
  min-height: 38px;
  font-size: 12px;
  padding: 0 18px
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  font-size: 34px;
  color: var(--blue);
  cursor: pointer
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding-top: 70px
}

.hero-actions {
  display: flex;
  gap: 28px;
  margin-top: 35px;
  flex-wrap: wrap
}

.hero-art{
    width:100%;
    height:auto;
}

@media (max-width:768px){

    .hero-art{
        width:100%;
        max-width:400px;
    }

}


.section-title {
  text-align: center;
  margin-bottom: 34px
}

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

.card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow)
}

.service-preview {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center
}

.service-preview img {
  width: 78px;
  height: 78px;
  object-fit: contain
}

.service-preview h3,
.platform-card h3,
.price-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  font-weight: 900
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  text-align: center
}

.member img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid #3173ce;
  box-shadow: var(--shadow);
  margin: auto
}

.member h4 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
  margin-top: 10px;
  text-transform: uppercase
}

.member p {
  font-size: 15px
}

.pill-counter {
  margin: 45px auto 0;
  width: max-content;
  max-width: 100%;
  padding: 18px 50px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 26px
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center
}

.about-stats {
  width: 75%;
  max-width: 550px;
  margin-top: 34px
}

.image-frame img {
  border-radius: 2px;
  box-shadow: var(--shadow)
}

.timeline{
    width: px;
    height:auto;
}

@media (max-width:768px){

    .timeline{
        width:100%;
        max-width:400px;
    }

}

.values-img{
    width: 600px;
    height:auto;
}

@media (max-width:768px){

    .values-img{
        width:100%;
        max-width:400px;
    }

}

.table-img{
    width:100%;
    height:auto;
}

@media (max-width:768px){

    .table-img{
        width:100%;
        max-width:400px;
    }

}

.process-carousel,
.platform-carousel,
.portfolio-carousel,
.info-carousel {
  position: relative
}

.carousel-viewport {
  overflow: hidden;
  padding: 10px
}

.carousel-track {
  display: flex;
  gap: 26px;
  transition: transform .35s ease
}

.process-card {
  flex: 0 0 calc((100% - 52px)/3);
  min-height: 150px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px
}

.process-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 10px
}

.process-card h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d8e1ec;
  background: #fff;
  color: var(--blue);
  font-size: 28px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  cursor: pointer;
  z-index: 5
}

.arrow.prev {
  left: -18px
}

.arrow.next {
  right: -18px
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  text-align: center
}

.cta {
  display: grid;
  grid-template-columns: 220px 1fr 230px;
  gap: 38px;
  align-items: center;
  padding: 55px 0
}

.cta-logo img {
  width: 190px
}

.cta h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  text-transform: uppercase
}

.cta h2 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--blue);
  font-size: 38px;
  line-height: .98
}

.cta-actions {
  display: grid;
  gap: 24px
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.serv-card {
  text-align: center
}

.serv-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin: 0 auto 18px
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex: 0 0 calc((100% - 78px)/4)
}

.info-item img {
  width: 42px;
  height: 42px;
  object-fit: contain
}

.info-item h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  text-transform: uppercase
}

.info-item p {
  font-size: 17px;
  color: #315d9d
}

.package-grid {
  display: grid;
  gap: 20px
}

.package-grid.micro {
  grid-template-columns: repeat(4, 1fr)
}

.package-grid.pymes {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px
}

.price-card {
  position: relative;
  min-height: 360px;
  padding: 18px 14px 60px;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--blue);
  border: 2px solid currentColor;
  overflow: hidden
}

.price-card .level {
  width: max-content;
  margin: 0 auto 18px;
  padding: 6px 13px;
  border-radius: 6px;
  background: currentColor;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase
}

.price-card h3 {
  color: currentColor;
  font-size: 18px;
  text-transform: uppercase
}

.price-card .desc {
  min-height: 44px;
  color: var(--blue);
  font-size: 15px;
  text-align: justify
}

.price-card ul,
.platform-card ul {
  list-style: none;
  margin-top: 12px
}

.price-card li,
.platform-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  color: #22599a;
  font-size: 15px
}

.price-card li:before,
.platform-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
  color: #fff;
  font-size: 10px;
  display: grid;
  place-items: center;
  font-weight: 900
}

.price {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 6px 8px 5px;
  border-top: 2px solid currentColor;
  text-align: center;
  background: #fff
}

.price small {
  display: block;
  color: var(--blue);
  font-size: 10px;
  line-height: 1
}

.price strong {
  display: block;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase
}

.price span {
  display: block;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 7px;
  text-transform: uppercase
}

.ribbon {
  position: absolute;
  right: -33px;
  top: 13px;
  background: #6bb9b1;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(45deg);
  padding: 7px 32px
}

.pink-card {
  color: #f05285
}

.blue-card {
  color: #0966bd
}

.green-card {
  color: #36aa55
}

.orange-card {
  color: #ff8428
}

.slate-card {
  color: #547aa6
}

.teal-card {
  color: #62c4c5
}

.magenta-card {
  color: #c05a9a
}

.note {
  margin-top: 20px;
  color: #0f3f91;
  font-size: 12px;
  font-style: italic;
  font-weight: 900
}

.notess {
  margin-top: 15px;
  color: #0f3f91;
  font-size: 13px;
  font-style: italic;
  font-weight: 900
}

.platform-card {
  flex: 0 0 calc((100% - 52px)/3);
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: left
}

.platform-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 10px
}

.platform-card h3 {
  text-align: center;
  text-transform: uppercase
}

.platform-card .sub {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900
}

.platform-card h4 {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  margin-top: 12px
}

.meta {
  color: #2d78df
}

.google {
  color: #31a853
}

.tiktok {
  color: #df4c83
}

.linkedin {
  color: #2777d4
}

.amazon {
  color: #ff8428
}

.spotify {
  color: #1faa4d
}

.platform-card li {
  color: #101010
}

.platform-card li:before {
  background: currentColor
}

.portfolio-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center
}

.logo-slide {
  flex: 0 0 calc((100% - 50px)/6);
  height: 95px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 10px
}

.logo-slide img {
  max-width: 100%;
  max-height: 75px;
  object-fit: contain
}

.logo-placeholder-card {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #9bb0ca;
  font-size: 12px;
  text-align: center;
  border: 2px dashed #d8e3f2
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: auto
}

.form-box,
.contact-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 28px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.input,
textarea {
  width: 100%;
  border: 0;
  background: #fff;
  box-shadow: 0 7px 14px rgba(47, 101, 164, .16);
  height: 42px;
  padding: 0 14px;
  margin-top: 14px;
  font-family: inherit
}

textarea {
  height: 90px;
  padding: 14px
}

.form-title {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  margin: 22px 0 14px
}

.option-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.option-card,
.goal-card {
  position: relative;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 8px;
  min-width: 118px;
  min-height: 48px;
  padding: 8px 15px;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: .25s;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue)
}

.goal-card {
  width: 92px;
  height: 82px;
  border-radius: 18px
}

.goal-card img {
  width: 38px;
  height: 38px;
  object-fit: contain
}

.option-card input,
.goal-card input {
  position: absolute;
  opacity: 0
}

.option-card:has(input:checked),
.goal-card:has(input:checked) {
  border-color: var(--blue);
  transform: translateY(-2px)
}

.submit-wrap {
  text-align: center;
  margin-top: 22px
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px
}

.contact-card img {
  width: 82px;
  height: 82px;
  object-fit: contain
}

.contact-card h4 {
  font-family: Montserrat, sans-serif
}

.contact-card a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 900
}

.email-card a {
  color: #7a35b8
}

.wa-card a {
  color: #2acc61
}

.social-card {
  display: block;
  text-align: center
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 18px
}

.social-icons img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  transition: .25s
}

.social-icons img:hover {
  transform: scale(1.08)
}

.success-msg,
.error-msg {
  display: none;
  margin-top: 15px;
  text-align: center;
  font-weight: 700
}

.success-msg {
  color: #1faa4d
}

.error-msg {
  color: #d34242
}

.site-footer {
  background: #f7faff;
  margin-top: 50px;
  padding: 45px 0 22px;
  border-top: 1px solid var(--line)
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 40px;
  align-items: start
}

.footer-logo {
  width: 140px
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 13px
}

.footer-copy {
  text-align: center;
  margin-top: 25px;
  color: #5d6d83
}

.mobile-only {
  display: none
}

@media(max-width:1050px) {
  .nav {
    display: none;
    position: absolute;
    top: 102px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow);
    flex-direction: column
  }

  .nav.open {
    display: flex
  }

  .menu-btn {
    display: block;
    margin-left: auto
  }

  .nav-wrap>.btn-small {
    display: none
  }

  .hero,
  .split,
  .portfolio-hero {
    grid-template-columns: 1fr;
    text-align: center
  }

  .lead {
    font-size: 20px
  }

  .cards-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .package-grid.micro {
    grid-template-columns: repeat(2, 1fr)
  }

  .package-grid.pymes {
    grid-template-columns: 1fr
  }

  .process-card,
  .platform-card {
    flex-basis: calc((100% - 26px)/2)
  }

  .info-item {
    flex-basis: calc((100% - 26px)/2)
  }

  .philosophy {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center
  }

  .footer-links {
    justify-content: center
  }

  .logo-slide {
    flex-basis: calc((100% - 20px)/3)
  }
}

@media(max-width:650px) {
  .section {
    padding: 52px 0
  }

  .nav-wrap {
    height: 82px
  }

  .brand img {
    width: 100px
  }

  .nav {
    top: 82px
  }

  .h1 {
    font-size: 34px
  }

  .h2 {
    font-size: 30px
  }

  .lead {
    font-size: 20px
  }

  .hero-actions {
    justify-content: center
  }

  .btn {
    width: 100%;
    min-width: 0
  }

  .cards-grid,
  .services-grid {
    grid-template-columns: 1fr
  }

  .service-preview {
    grid-template-columns: 1fr;
    text-align: center
  }

  .service-preview img {
    margin: auto
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .member img {
    width: 112px;
    height: 112px
  }

  .process-card,
  .platform-card,
  .info-item {
    flex-basis: 100%
  }

  .package-grid.micro {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .contact-card {
    display: block;
    text-align: center
  }

  .contact-card img {
    margin: 0 auto 10px
  }

  .contact-card a {
    font-size: 25px
  }

  .logo-slide {
    flex-basis: calc((100% - 14px)/2)
  }

  .pill-counter {
    font-size: 20px;
    padding: 15px 24px
  }

  .arrow.prev {
    left: -10px
  }

  .arrow.next {
    right: -10px
  }
}


/* Ajuste final: Portafolio compacto para logos de clientes */
.portfolio-compact {
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: center;
}

.portfolio-logo-carousel {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
}

.page-viewport {
  overflow: hidden;
  padding: 12px 10px;
}

.page-track {
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.logo-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
}

.logo-tile {
  height: 92px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(47, 101, 164, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-tile.logo-placeholder-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  color: #8ca4c2;
  border: 2px dashed #d7e3f2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.2;
}

.portfolio-logo-carousel .arrow.prev {
  left: -16px
}

.portfolio-logo-carousel .arrow.next {
  right: -16px
}

@media (max-width:900px) {
  .portfolio-compact {
    grid-template-columns: 1fr;
    text-align: left
  }

  .portfolio-logo-carousel {
    max-width: 100%;
    margin: auto
  }
}

@media (max-width:600px) {
  .logo-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .logo-tile,
  .logo-tile.logo-placeholder-card {
    height: 82px;
    padding: 12px
  }

  .portfolio-logo-carousel .arrow.prev {
    left: -8px
  }

  .portfolio-logo-carousel .arrow.next {
    right: -8px
  }
}

/* Ajustes finales solicitados */
.contact-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 48px;
}

.contact-intro .lead {
  max-width: 620px
}

.contact-extra {
  font-size: 20px;
  margin-top: 24px
}

.contact-hero-img img {
  width: 100%;
  max-width: 650px;
  border-radius: 2px;
  object-fit: cover;
  filter: drop-shadow(0 14px 22px rgba(47, 101, 164, .13));
}

.contact-cta-card {
  display: block !important;
  text-align: center;
  border-radius: 4px;
}

.contact-cta-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  color: #8b33b5;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-cta-card p {
  font-size: 20px;
  line-height: 1.25;
  color: #666;
}

.contact-cta-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-cta-actions .btn {
  min-width: 180px;
  min-height: 44px;
}

.faq-section {
  padding-top: 20px
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px;
}

.faq-card {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px 22px;
  min-height: 96px;
}

.faq-card h4 {
  font-family: Arial, Helvetica, sans-serif;
  color: #8133bf;
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-card p {
  color: #4d5e76;
  font-size: 16px;
  line-height: 1.15;
}

.form-box button.btn,
.submit-wrap .btn {
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 18px rgba(53, 104, 173, .2);
}

.form-box button.btn:hover,
.submit-wrap .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(53, 104, 173, .28);
}

/* Carrusel de servicios/información más amplio y legible */
.info-carousel .carousel-viewport {
  padding: 12px 6px 18px
}

.info-carousel .carousel-track {
  gap: 34px
}

.info-item {
  min-height: 158px;
  align-items: flex-start;
}

.info-item img {
  width: 50px !important;
  height: 50px !important;
}

.info-item h4 {
  font-size: 21px;
  line-height: 1.05;
}

.info-item p {
  font-size: 18px;
  line-height: 1.15;
}

.serv-card {
  padding: 34px 24px !important;
  min-height: 250px;
}

.serv-card img {
  width: 86px !important;
  height: 86px !important;
}

.serv-card h3 {
  font-size: 24px;
  margin-bottom: 12px
}

.serv-card p {
  font-size: 18px;
  line-height: 1.18
}

/* Logo carousel compacto y con navegación cíclica */
.portfolio-logo-carousel .arrow:disabled {
  opacity: 1;
  cursor: pointer
}

.logo-page {
  min-height: 235px
}

.logo-tile {
  height: 96px
}

.logo-tile img {
  max-height: 76px
}

@media(max-width:1050px) {
  .contact-intro {
    grid-template-columns: 1fr;
    text-align: center
  }

  .contact-intro .lead {
    margin-left: auto;
    margin-right: auto
  }

  .faq-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:650px) {
  .contact-intro {
    gap: 28px;
    margin-bottom: 32px
  }

  .contact-extra {
    font-size: 18px
  }

  .faq-grid {
    grid-template-columns: 1fr
  }

  .contact-cta-actions .btn {
    width: 100%
  }

  .info-item {
    min-height: auto
  }
}


/* Correcciones finales: equipo centrado, títulos de tablas y nitidez */
.member img {
  object-position: center 24% !important;
}

.platform-table-title {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 18px;
}

.platform-table-title.second {
  margin-top: 48px;
}


.hero-art img,
.image-frame img,
.timeline img,
.about-stats,
.contact-hero-img img {
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.about-stats {
  max-width: 620px !important;
  object-fit: contain;
}


@media(max-width:650px) {
  .member img {
    object-position: center 22% !important;
  }

  .platform-table-title {
    font-size: 20px;
  }
}


/* ===== AJUSTES FINALES KEVIN ===== */
/* Bullets circulares por color en paquetes y plataformas */
.price-card li::before,
.platform-card li::before {
  content: "" !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  top: 5px !important;
  display: block !important;
  color: transparent !important;
}

.pink-card li::before {
  background: #f05285 !important;
}

.blue-card li::before {
  background: #0966bd !important;
}

.green-card li::before {
  background: #36aa55 !important;
}

.orange-card li::before {
  background: #ff8428 !important;
}

.slate-card li::before {
  background: #547aa6 !important;
}

.teal-card li::before {
  background: #62c4c5 !important;
}

.magenta-card li::before {
  background: #c05a9a !important;
}

.platform-card.meta li::before {
  background: #2d78df !important;
}

.platform-card.google li::before {
  background: #31a853 !important;
}

.platform-card.tiktok li::before {
  background: #df4c83 !important;
}

.platform-card.linkedin li::before {
  background: #2777d4 !important;
}

.platform-card.amazon li::before {
  background: #ff8428 !important;
}

.platform-card.spotify li::before {
  background: #1faa4d !important;
}

.price-card li,
.platform-card li {
  padding-left: 20px !important;
}

/* Contacto: formulario, 3 tarjetas en línea y CTA debajo */
.contact-grid {
  max-width: 1050px !important;
  grid-template-columns: repeat(3, 1fr) !important;
  align-items: stretch !important;
}

.contact-grid .form-box {
  grid-column: 1/-1 !important;
}

.contact-card.email-card,
.contact-card.wa-card,
.contact-card.social-card {
  min-height: 190px;
  flex-direction: column !important;
  text-align: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

.contact-card.email-card img,
.contact-card.wa-card img {
  width: 64px !important;
  height: 64px !important;
}

.contact-card.email-card a,
.contact-card.wa-card a {
  font-size: clamp(24px, 2.6vw, 36px) !important;
  line-height: 1 !important;
}

.social-card strong {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--blue);
  font-size: 26px;
}

.social-icons {
  gap: 22px !important;
}

.social-icons img {
  width: 56px !important;
  height: 56px !important;
}

.contact-cta-card {
  grid-column: 1/-1 !important;
  display: block !important;
  text-align: center !important;
  padding: 28px 34px !important;
}

.contact-cta-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--purple);
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  margin-bottom: 12px;
}

.contact-cta-card p {
  font-size: 21px;
  color: #555;
  max-width: 720px;
  margin: 0 auto 22px;
}

.contact-cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Footer estilo referencia */
.site-footer {
  background: #f8fbff !important;
  padding: 64px 0 22px !important;
  border-top: 1px solid #dce6f3 !important;
  margin-top: 60px !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.45fr .75fr 1fr .95fr !important;
  gap: 64px !important;
  align-items: start !important;
}

.footer-brand-logo {
  width: 128px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 20px;
  line-height: 1.25;
  color: #071c36;
  max-width: 350px;
}

.footer-title {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-list {
  display: grid;
  gap: 12px;
}

.footer-list a,
.footer-list span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  color: #050505;
}

.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-contact a,
.footer-contact p {
  font-size: 18px;
  color: #071c36;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin: 8px 0 8px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.footer-social img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid #dce6f3;
  margin-top: 52px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
  color: #244b7e;
}

.footer-bottom p {
  font-size: 14px;
}

@media(max-width:1050px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    max-width: 760px !important;
  }

  .contact-grid .form-box,
  .contact-cta-card {
    grid-column: auto !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width:620px) {

  .contact-card.email-card,
  .contact-card.wa-card,
  .contact-card.social-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .footer-brand-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-desc {
    margin: auto;
  }

  .footer-social {
    justify-content: center;
  }
}

/* =====================================================
   AJUSTES FINALES DE CONSISTENCIA VISUAL
   - Tipografía Arial
   - Títulos más moderados
   - Iconos proporcionados
   - Bullets por color
   - Portafolio más compacto y legible
   - CTA contacto y footer alineados
===================================================== */

:root {
  --font-main: Arial, Helvetica, sans-serif;
}

html,
body,
button,
input,
textarea,
select,
.h1,
.h2,
.h3,
.eyebrow,
.btn,
.nav a,
.service-preview h3,
.platform-card h3,
.price-card h3,
.process-card h4,
.info-item h4,
.cta h2,
.cta h4,
.footer-title,
.footer-list a,
.footer-list span,
.contact-card h4,
.contact-card a,
.option-card,
.goal-card {
  font-family: var(--font-main) !important;
}

body {
  font-family: var(--font-main) !important;
}

.section {
  padding: 68px 0;
}

.eyebrow {
  font-size: 18px;
  letter-spacing: .1px;
}

.h1 {
  font-size: clamp(34px, 4.2vw, 50px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.8px !important;
}

.h2 {
  font-size: clamp(28px, 3.2vw, 38px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.5px !important;
}

.lead {
  font-size: 20px;
  line-height: 1.25;
}

.btn {
  min-width: 200px;
  min-height: 46px;
  font-size: 13px;
  padding: 0 26px;
  letter-spacing: .1px;
}

/* Proceso: iconos más pequeños y títulos con color por icono */
.process-card {
  min-height: 140px;
  padding: 20px 18px;
}

.process-card img {
  width: 32px !important;
  height: 32px !important;
  margin-bottom: 10px !important;
}

.process-card h4 {
  font-size: 17px;
  line-height: 1.08;
  margin-bottom: 7px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.16;
}

.process-card:nth-child(1) h4 {
  color: #e64b86;
}

.process-card:nth-child(2) h4 {
  color: #7b36c7;
}

.process-card:nth-child(3) h4 {
  color: #2ba8de;
}

.process-card:nth-child(4) h4 {
  color: #58bd63;
}

.process-card:nth-child(5) h4 {
  color: #ff8428;
}

/* Información importante: iconos y textos más proporcionados */
.info-carousel .carousel-track {
  gap: 28px;
}

.info-item {
  min-height: 136px !important;
  gap: 10px;
}

.info-item img {
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px;
}

.info-item h4 {
  font-size: 17px !important;
  line-height: 1.08 !important;
}

.info-item p {
  font-size: 16px !important;
  line-height: 1.16 !important;
}

.info-item:nth-child(1) h4 {
  color: #e64b86;
}

.info-item:nth-child(2) h4 {
  color: #7b36c7;
}

.info-item:nth-child(3) h4 {
  color: #2ba8de;
}

.info-item:nth-child(4) h4 {
  color: #58bd63;
}

.info-item:nth-child(5) h4 {
  color: #e64b86;
}

.info-item:nth-child(6) h4 {
  color: #7b36c7;
}

.info-item:nth-child(7) h4 {
  color: #2ba8de;
}

.info-item:nth-child(8) h4 {
  color: #ff8428;
}

/* Bullets tipo punto/círculo de color en paquetes */
.price-card li,
.platform-card li {
  padding-left: 18px !important;
}

.price-card li::before,
.platform-card li::before {
  content: "" !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  top: 5px !important;
  display: block !important;
}

.pink-card li::before {
  background: #f05285 !important;
}

.blue-card li::before {
  background: #0966bd !important;
}

.green-card li::before {
  background: #36aa55 !important;
}

.orange-card li::before {
  background: #ff8428 !important;
}

.slate-card li::before {
  background: #547aa6 !important;
}

.teal-card li::before {
  background: #62c4c5 !important;
}

.magenta-card li::before {
  background: #c05a9a !important;
}

.platform-card.meta li::before {
  background: #2d78df !important;
}

.platform-card.google li::before {
  background: #31a853 !important;
}

.platform-card.tiktok li::before {
  background: #df4c83 !important;
}

.platform-card.linkedin li::before {
  background: #2777d4 !important;
}

.platform-card.amazon li::before {
  background: #ff8428 !important;
}

.platform-card.spotify li::before {
  background: #1faa4d !important;
}

/* Portafolio: tarjetas menos vacías y logos más grandes */
.portfolio-logo-carousel .carousel-viewport {
  padding: 8px 4px 18px;
}

.logo-slide,
.logo-tile {
  height: 118px !important;
  padding: 6px !important;
  border-radius: 14px;
}

.logo-slide img,
.logo-tile img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.logo-page {
  min-height: auto !important;
  gap: 14px !important;
}

/* CTA de contacto alineado al estilo general */
.contact-cta-card {
  width: 100%;
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 32px 36px !important;
  border-radius: 4px !important;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-cta-card h3 {
  font-size: 24px !important;
  line-height: 1.08 !important;
  color: var(--purple) !important;
  margin-bottom: 12px !important;
}

.contact-cta-card p {
  font-size: 18px !important;
  line-height: 1.25 !important;
  margin-bottom: 20px !important;
}

.contact-cta-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: wrap;
}

.contact-cta-actions .btn {
  min-width: 180px !important;
  min-height: 44px !important;
  font-size: 13px !important;
}

/* Footer estilo referencia */
.site-footer {
  background: #f7faff !important;
  margin-top: 54px !important;
  padding: 58px 0 24px !important;
  border-top: 1px solid #dbe7f5 !important;
}

.footer-grid {
  width: min(1180px, 92%) !important;
  margin: auto !important;
  display: grid !important;
  grid-template-columns: 1.55fr .9fr 1fr 1.25fr !important;
  gap: 64px !important;
  align-items: start !important;
}

.footer-brand-logo {
  width: 92px !important;
  height: auto !important;
  margin: 0 0 18px !important;
  object-fit: contain !important;
}

.footer-desc {
  font-size: 18px !important;
  line-height: 1.32 !important;
  color: #071c36 !important;
  max-width: 350px !important;
}

.footer-title {
  color: var(--blue) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
}

.footer-list {
  display: grid !important;
  gap: 12px !important;
}

.footer-list a,
.footer-list span {
  color: #000 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

.footer-contact {
  display: grid !important;
  gap: 16px !important;
}

.footer-contact a:not(.btn),
.footer-contact p {
  color: #071c36 !important;
  font-size: 17px !important;
  line-height: 1.25 !important;
  font-weight: 400 !important;
}

.footer-social {
  display: flex !important;
  gap: 14px !important;
  margin: 6px 0 4px !important;
}

.footer-social a {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 10px 22px rgba(47, 101, 164, .13) !important;
  display: grid !important;
  place-items: center !important;
}

.footer-social img {
  width: 25px !important;
  height: 25px !important;
  object-fit: contain !important;
}

.footer-contact .btn {
  width: 230px !important;
  min-width: 230px !important;
  min-height: 46px !important;
  font-size: 13px !important;
  margin-top: 4px !important;
}

.footer-bottom {
  width: min(1180px, 92%) !important;
  margin: 50px auto 0 !important;
  padding-top: 22px !important;
  border-top: 1px solid #dbe7f5 !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 20px !important;
  color: #244b7e !important;
  font-weight: 700 !important;
}

.footer-bottom p {
  font-size: 14px !important;
}

@media(max-width:1050px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 38px !important;
  }

  .footer-brand,
  .footer-grid>div {
    text-align: left;
  }

  .logo-slide,
  .logo-tile {
    height: 105px !important;
  }
}

@media(max-width:650px) {
  .section {
    padding: 48px 0;
  }

  .eyebrow {
    font-size: 16px;
  }

  .h1 {
    font-size: 32px !important;
  }

  .h2 {
    font-size: 28px !important;
  }

  .lead {
    font-size: 20px;
  }

  .process-card img {
    width: 30px !important;
    height: 30px !important;
  }

  .info-item img {
    width: 34px !important;
    height: 34px !important;
  }

  .contact-cta-card {
    padding: 26px 20px !important;
  }

  .contact-cta-actions .btn {
    width: 100% !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
    justify-items: center !important;
  }

  .footer-brand,
  .footer-grid>div {
    text-align: center !important;
  }

  .footer-brand-logo {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-desc {
    margin: auto !important;
  }

  .footer-social {
    justify-content: center !important;
  }

  .footer-contact .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    margin-top: 34px !important;
  }
}

/* ===== AJUSTES FINALES 2: cards, valores, paquetes, portafolio y formulario ===== */
/* Estrategias que impulsan tu marca: imagen arriba, título y texto abajo */
.service-preview {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  gap: 16px !important;
  min-height: 300px;
}

.service-preview img {
  width: 82px !important;
  height: 82px !important;
  margin: 0 auto 4px !important;
  object-fit: contain !important;
}

.service-preview h3 {
  font-size: 22px !important;
  line-height: 1.05 !important;
  margin-bottom: 10px !important;
}

.service-preview p {
  font-size: 17px !important;
  line-height: 1.2 !important;
}

.service-preview a {
  margin-top: 12px !important;
}

/* Imagen de valores más pequeña para evitar pixelado */
.values-img {
  display: flex;
  justify-content: center;
}


/* Etiquetas Nivel 1, 2, 3 y 4 visibles en tarjetas de precios */
.price-card .level {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  color: #fff !important;
  background: currentColor !important;
  border: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 3 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  letter-spacing: .2px !important;
}

.price-card .level::first-line {
  color: #fff !important;
}

.price-card.pink-card .level {
  background: #f05285 !important;
}

.price-card.blue-card .level {
  background: #0966bd !important;
}

.price-card.green-card .level {
  background: #36aa55 !important;
}

.price-card.orange-card .level {
  background: #ff8428 !important;
}

/* Portafolio: que las imágenes/logos aprovechen más el espacio disponible */
.logo-page {
  gap: 10px !important;
}

.logo-tile,
.logo-slide {
  height: 132px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
}

.logo-tile img,
.logo-slide img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  padding: 4px !important;
}

.logo-tile.logo-placeholder-card {
  padding: 10px !important;
}

/* Contacto: tres tarjetas del mismo tamaño debajo del formulario */
.contact-grid {
  width: min(1180px, 92%) !important;
  max-width: 1180px !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  margin: 0 auto !important;
}

.contact-grid .form-box {
  grid-column: 1 / -1 !important;
  max-width: 760px !important;
  width: 100% !important;
  justify-self: center !important;
}

.contact-grid>.contact-card:not(.contact-cta-card) {
  min-height: 230px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 10px !important;
  padding: 24px 18px !important;
}

.contact-grid>.contact-card:not(.contact-cta-card) img {
  width: 62px !important;
  height: 62px !important;
  object-fit: contain !important;
  margin: 0 auto 4px !important;
}

.contact-grid>.contact-card:not(.contact-cta-card) h4 {
  font-size: 18px !important;
  line-height: 1.1 !important;
  margin: 0 !important;
}

.contact-grid>.contact-card:not(.contact-cta-card) p {
  font-size: 15px !important;
  line-height: 1.2 !important;
  color: #59697d !important;
  margin: 0 !important;
}

.contact-grid>.contact-card:not(.contact-cta-card) a,
.contact-grid>.contact-card:not(.contact-cta-card) strong {
  font-size: 18px !important;
  line-height: 1.15 !important;
  word-break: break-word !important;
}

.social-icons {
  gap: 14px !important;
  margin-top: 10px !important;
}

.social-icons img {
  width: 44px !important;
  height: 44px !important;
}

.contact-cta-card {
  grid-column: 1 / -1 !important;
  justify-self: stretch !important;
}

/* Form: objetivo principal solo imagen; la imagen ya trae texto */
.goal-card {
  width: 112px !important;
  height: 92px !important;
  padding: 10px !important;
}

.goal-card span {
  display: none !important;
}

.goal-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Form: servicio por nivel/business con colores de paquete */
.option-grid .option-card:nth-of-type(1) {
  color: #f05285 !important;
  border-color: rgba(240, 82, 133, .16);
}

.option-grid .option-card:nth-of-type(2) {
  color: #0966bd !important;
  border-color: rgba(9, 102, 189, .16);
}

.option-grid .option-card:nth-of-type(3) {
  color: #36aa55 !important;
  border-color: rgba(54, 170, 85, .16);
}

.option-grid .option-card:nth-of-type(4) {
  color: #ff8428 !important;
  border-color: rgba(255, 132, 40, .16);
}

.option-grid .option-card:nth-of-type(5) {
  color: #547aa6 !important;
  border-color: rgba(84, 122, 166, .16);
}

.option-grid .option-card:nth-of-type(6) {
  color: #62c4c5 !important;
  border-color: rgba(98, 196, 197, .16);
}

.option-grid .option-card:nth-of-type(7) {
  color: #c05a9a !important;
  border-color: rgba(192, 90, 154, .16);
}

.option-card:has(input:checked) {
  border-color: currentColor !important;
  box-shadow: 0 10px 22px rgba(47, 101, 164, .20) !important;
}

@media(max-width:1050px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-grid .form-box,
  .contact-cta-card {
    grid-column: auto !important;
  }

  .contact-grid>.contact-card:not(.contact-cta-card) {
    min-height: auto !important;
  }
}

@media(max-width:650px) {
  .service-preview {
    min-height: auto !important;
  }

  .values-img img {
    max-width: 94% !important;
  }

  .logo-tile,
  .logo-slide {
    height: 108px !important;
  }

  .goal-card {
    width: 96px !important;
    height: 82px !important;
  }
}

/* Ajuste de colores solo para opciones de servicio */
.option-grid .option-card {
  color: var(--blue) !important;
}

.service-options .option-card:nth-of-type(1) {
  color: #f05285 !important;
  border-color: rgba(240, 82, 133, .16) !important;
}

.service-options .option-card:nth-of-type(2) {
  color: #0966bd !important;
  border-color: rgba(9, 102, 189, .16) !important;
}

.service-options .option-card:nth-of-type(3) {
  color: #36aa55 !important;
  border-color: rgba(54, 170, 85, .16) !important;
}

.service-options .option-card:nth-of-type(4) {
  color: #ff8428 !important;
  border-color: rgba(255, 132, 40, .16) !important;
}

.service-options .option-card:nth-of-type(5) {
  color: #547aa6 !important;
  border-color: rgba(84, 122, 166, .16) !important;
}

.service-options .option-card:nth-of-type(6) {
  color: #62c4c5 !important;
  border-color: rgba(98, 196, 197, .16) !important;
}

.service-options .option-card:nth-of-type(7) {
  color: #c05a9a !important;
  border-color: rgba(192, 90, 154, .16) !important;
}

/* ===== PORTAFOLIO PREMIUM - CASOS DESTACADOS ===== */
.portfolio-cases-premium {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
  overflow: hidden;
}

.premium-head {
  margin-bottom: 28px
}

.premium-head .h2 {
  font-size: clamp(30px, 3vw, 44px)
}

.cases-shell {
  position: relative;
  margin: 0 auto 28px;
  max-width: 1180px
}

.cases-carousel-premium {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px
}

.cases-viewport-premium {
  width: 100%;
  overflow: hidden;
  padding: 8px 4px 22px
}

.cases-track-premium {
  display: flex;
  gap: 14px;
  transition: transform .45s ease;
  will-change: transform
}

.case-card-premium {
  flex: 0 0 calc((100% - 56px)/5);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(36, 73, 125, .12);
  border: 1px solid rgba(77, 113, 167, .09);
  min-height: 465px;
  display: flex;
  flex-direction: column
}

.case-img {
  height: 128px;
  background: #eef4ff;
  overflow: hidden
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.case-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1
}

.case-category {
  font-size: 11px;
  color: #8a48d8;
  font-weight: 800;
  line-height: 1.15
}

.case-body h3 {
  font-size: 16px;
  line-height: 1.05;
  color: #1f2a44;
  margin: 0 0 2px;
  font-weight: 900
}

.case-label {
  font-size: 10px;
  color: #5b38c8;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 6px
}

.case-text {
  font-size: 12px;
  line-height: 1.3;
  color: #2e3e5c
}

.case-platforms {
  display: flex;
  gap: 8px;
  align-items: center
}

.case-platforms span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 900;
  background: #eef3ff;
  color: #2467d3
}

.case-platforms span:nth-child(2) {
  background: #eaf2ff;
  color: #1877f2
}

.case-platforms span:nth-child(3) {
  background: #f1fff4;
  color: #34a853
}

.case-platforms span:nth-child(4) {
  background: #fff1f1;
  color: #ff0000
}

.case-results {
  list-style: none;
  margin: 0;
  padding: 0
}

.case-results li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.35;
  color: #22395c;
  border-bottom: 1px solid #f0f3f8;
  padding: 3px 0
}

.case-results strong {
  color: #20a05b;
  font-weight: 900;
  white-space: nowrap
}

.case-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e3e9f4;
  background: #fff;
  color: #5b38c8;
  box-shadow: 0 10px 24px rgba(48, 78, 126, .16);
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1
}

.case-arrow:hover {
  transform: translateY(-50%) scale(1.06)
}

.case-prev {
  left: -20px
}

.case-next {
  right: -20px
}

.case-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: -6px;
  margin-bottom: 8px
}

.case-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #d4c9f8;
  cursor: pointer
}

.case-dots button.active {
  width: 24px;
  border-radius: 999px;
  background: #8062df
}

.second-row {
  margin-top: 8px
}

.cases-more {
  text-align: center;
  margin: 6px 0 34px
}

.cases-more .btn {
  min-height: 36px;
  font-size: 12px;
  min-width: 190px
}

.portfolio-premium-cta {
  margin: 52px auto 0;
  max-width: 1060px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(110deg, #fff 0%, #fbf8ff 52%, #f1f7ff 100%);
  border: 1px solid #eee9ff;
  border-radius: 20px;
  padding: 34px 42px;
  box-shadow: 0 20px 48px rgba(90, 73, 160, .12)
}

.portfolio-premium-cta h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  margin: 6px 0 12px;
  color: #1d2c50
}

.portfolio-premium-cta p {
  font-size: 16px;
  color: #2b3c5d
}

.portfolio-cta-visual img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block
}

@media(max-width:1100px) {
  .case-card-premium {
    flex-basis: calc((100% - 28px)/3)
  }

  .case-img {
    height: 135px
  }

  .portfolio-premium-cta {
    grid-template-columns: 1fr;
    text-align: center
  }

  .portfolio-premium-cta .hero-actions {
    justify-content: center
  }
}

@media(max-width:720px) {
  .case-card-premium {
    flex-basis: calc((100% - 14px)/2);
    min-height: 430px
  }

  .case-prev {
    left: -10px
  }

  .case-next {
    right: -10px
  }

  .portfolio-premium-cta {
    padding: 28px 20px
  }

  .case-body h3 {
    font-size: 15px
  }
}

@media(max-width:480px) {
  .case-card-premium {
    flex-basis: 100%
  }

  .case-img {
    height: 155px
  }

  .cases-carousel-premium {
    gap: 0
  }

  .case-arrow {
    width: 34px;
    height: 34px;
    font-size: 22px
  }
}


/* ===== Últimos ajustes solicitados ===== */
/* Home: mantener equipo alineado con la persona nueva */
.team-grid {
  grid-template-columns: repeat(9, minmax(90px, 1fr)) !important;
  gap: 14px !important;
  align-items: start !important;
}

.member img {
  width: 116px !important;
  height: 116px !important;
  object-position: center 18% !important;
}

.member h4 {
  font-size: 14px !important;
}

.member p {
  font-size: 13px !important;
  line-height: 1.15 !important;
}

/* Contacto: que el formulario tenga el mismo ancho visual que las tarjetas inferiores */
.contact-grid .form-box {
  max-width: 1180px !important;
  width: 100% !important;
  justify-self: stretch !important;
}

.contact-grid {
  align-items: stretch !important;
}

@media(max-width:1180px) {
  .team-grid {
    grid-template-columns: repeat(5, minmax(110px, 1fr)) !important;
  }
}

@media(max-width:760px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .member img {
    width: 105px !important;
    height: 105px !important;
  }
}

@media(max-width:480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* === Ajustes finales solicitados === */
/* Objetivo principal: mostrar únicamente la imagen que ya contiene texto */
.goal-options {
  gap: 25px !important;
  align-items: center;
}

.goal-options .goal-card {
  width: 120px !important;
  height: 120px !important;
  min-width: 120px !important;
  min-height: 120px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 2px solid transparent !important;
  border-radius: 18px !important;
  overflow: visible !important;

  display: flex;
  justify-content: center;
  align-items: center;
}

.goal-options .goal-card span {
  display: none !important;
}

.goal-options .goal-card img {
  width: 150px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.goal-options .goal-card:hover {
  transform: translateY(-2px);
}

.goal-options .goal-card:has(input:checked) {
  border-color: var(--blue) !important;
  background: #fff !important;
  box-shadow: 0 15px 30px rgba(47, 101, 164, .18) !important;
}

/* Servicios del formulario: al seleccionar, el contorno toma el color de su paquete */
.service-options .option-card {
  border-width: 2px !important;
  transition: .25s ease !important;
}

.service-options .option-card:has(input:checked) {
  border-color: currentColor !important;
  box-shadow: 0 8px 22px rgba(47, 101, 164, .18) !important;
  background: #fff !important;
  transform: translateY(-2px);
}

/* Casos destacados: sin botón de ver más, más aire y cards un poco más grandes */
.portfolio-cases-premium {
  padding: 110px 0 105px !important;
  margin-top: 40px !important;
}

.portfolio-cases-premium .section-title {
  margin-bottom: 34px !important;
}

.cases-shell {
  max-width: 1240px !important;
  margin: 0 auto 42px !important;
}

.cases-carousel-premium {
  gap: 18px !important;
}

.cases-viewport-premium {
  padding: 16px 8px 34px !important;
}

.cases-track-premium {
  gap: 18px !important;
}

.case-card-premium {
  flex-basis: calc((100% - 72px)/5) !important;
  min-height: 520px !important;
  border-radius: 16px !important;
}

.case-img {
  height: 125px !important;
}

.case-body {
  padding: 17px 16px 18px !important;
  gap: 8px !important;
}

.case-body h3 {
  font-size: 17px !important;
}

.case-text {
  font-size: 12.5px !important;
}

.case-results li {
  font-size: 12px !important;
  padding: 4px 0 !important;
}

.cases-more {
  display: none !important;
}

@media(max-width:1100px) {
  .case-card-premium {
    flex-basis: calc((100% - 36px)/3) !important;
  }
}

@media(max-width:720px) {
  .portfolio-cases-premium {
    padding: 80px 0 !important;
  }

  .case-card-premium {
    flex-basis: calc((100% - 18px)/2) !important;
    min-height: 470px !important;
  }
}

@media(max-width:480px) {
  .case-card-premium {
    flex-basis: 100% !important;
  }
}

.case-category-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.case-category {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #9c27b0;
  /* Ajusta al color que estés utilizando */
}

.case-category-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.case-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-platforms img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.pill-counter {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pill-counter img {
  width: 45px;
  /* ajusta el tamaño */
  height: auto;
  flex-shrink: 0;
}

.pill-counter span {
  line-height: 1.4;
}

/* === Correcciones WordPress / Layout === */
body{
  width:100%;
  overflow-x:hidden;
}

.site-header,
main,
.site-footer{
  width:100%;
}

.hero-art{
  width:100% !important;
  max-width:680px;
  justify-self:center;
}

.hero-art img{
  width:100%;
  height:auto;
  object-fit:contain;
}

.timeline,
.table-img{
  width:100% !important;
}

.timeline img,
.table-img img{
  width:100%;
  height:auto;
  object-fit:contain;
}

.values-img{
  max-width:560px;
  width:100%;
  margin-left:auto;
  margin-right:auto;
}

.values-img img{
  width:100%;
  height:auto;
  object-fit:contain;
}

/* Evita que WordPress o reglas viejas achiquen las imágenes del hero */
.hero .hero-art img{
  max-width:680px;
}

/* Menú responsive */
@media (max-width: 980px){
  .nav-wrap{
    height:auto;
    min-height:86px;
    padding:16px 0;
    flex-wrap:wrap;
  }

  .brand img{
    width:112px;
  }

  .menu-btn{
    display:block;
    margin-left:auto;
  }

  .nav{
    display:none;
    width:100%;
    order:4;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    padding:20px 0;
  }

  .nav.open{
    display:flex;
  }

  .btn-small{
    margin-left:auto;
  }

  .hero,
  .split,
  .contact-hero{
    grid-template-columns:1fr !important;
  }

  .hero-art{
    max-width:520px;
  }
}

@media (max-width: 640px){
  .container{
    width:min(100% - 32px, 1180px);
  }

  .h1{
    font-size:clamp(34px, 11vw, 46px);
  }

  .h2{
    font-size:clamp(28px, 9vw, 38px);
  }

  .hero-actions{
    gap:16px;
  }

  .btn{
    width:100%;
    min-width:0;
  }

  .btn-small{
    width:auto;
  }
}

/* ===== FIX WORDPRESS LAYOUT ===== */

html,
body{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
}

body{
  background:#fff;
}

.site-main,
.wp-site-blocks,
.entry-content,
.wp-block-post-content{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
}

.container{
  width:min(1180px, 92%);
  max-width:1180px;
  margin-left:auto;
  margin-right:auto;
}

.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
  padding:80px 0;
}

.hero-art img{
  width:100%;
  max-width:620px;
  height:auto;
  object-fit:contain;
}

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

.service-preview{
  display:flex;
  align-items:center;
  gap:24px;
  text-align:left;
}

.service-preview img{
  width:78px;
  height:78px;
  object-fit:contain;
  flex-shrink:0;
}

@media(max-width:900px){
  .hero{
    grid-template-columns:1fr;
    text-align:center;
  }

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

  .service-preview{
    justify-content:flex-start;
  }
}
