/* TRUST */
.trust-bar {
  background: #111;
  padding: 20px 0;
  color: white;
  overflow: hidden;
}

.trust-bar .container {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.trust-bar .marquee-track {
  display: flex;
  width: max-content;
  animation: trust-marquee 20s linear infinite;
}

.trust-bar .marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
  padding: 0 40px;
}

.trust-bar .marquee-track span svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@keyframes trust-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* SERVICES */
.services {
  padding: 20px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

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

.service-card {
  background: #f3f3f3;
  padding: 20px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card li {
  display: flex;
  gap: 8px;
  justify-content: start;
  align-items: center;
}
.service-card svg {
  width: 15px;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #ff3c00;
}

.service-card-price-contact {
  display: flex;
  justify-content: space-between;
}

.service-card-price-contact p{
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.service-card-price-contact p .service-price{
  font-size: 1.5em;
  font-weight: 900;
}

.service-card-price-contact p .additional-info {
  font-size: .9em;
  font-weight: 100;
}

.flat-btn {
  display: inline-flex;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  margin: auto 0;
  padding: 6px 16px;
  font-weight: 400;
  font-size: 0.85rem;
}

/* PROMO */
.promo-banner {
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 45%, rgba(225, 6, 0, 1) 44%);
  padding: 20px 5%;


  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 20px;
}

.promo-info {
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;

  color: white;
  height: auto;
}

.promo-info h2 {
  font-size: clamp(28px, 4vw, 52px);
}

.promo-info p {
  margin: 5px 0 0;
  font-size: clamp(16px, 2vw, 20px);
}

.promo-img img {
  width: 400px;
  height: auto;
}

.promo-btn {
  padding: 7px 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  border: 1px solid #fff;
  transition: background 0.3s ease;
  text-align: center;
  margin-top: 15px;
  width: 200px;
}

.promo-btn:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
}

/* PROCESS */
.process {
  padding: 20px 0;
  width: 100%;
  margin: 0 auto;
}

.steps {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
}

.steps > div {
  position: relative;
}

.steps .step-icon {
  background-color: rgba(225, 6, 0, 1);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.steps .step-number {
  font-weight: 100;
  color: rgb(160, 159, 159); 
  margin: 10px 0 5px;
}
.steps .step-title {
  font-weight: 900;
  font-size: 1.1em;
}
.steps .step-description {
  margin-right: 5px;
  font-size: .9em;
  color: rgb(160, 159, 159); 
}

.icon-conection::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 0;
  top: 15px;
  height: 1px;
  background-color: rgb(178, 178, 178);
}

/* LOCATION BUTTON */
.location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: #25D366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.location-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.location-btn:hover {
  background: #1aab52;
  color: #fff;
  text-decoration: none;
}

/* LOCATIONS */
.locations {
  padding: 20px 0 50px;
}

.locations-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.locations-list {
  margin-top: 30px;
}

.location-row {
  display: grid;
  grid-template-columns: 1fr 5fr auto;
  align-items: center;
  gap: 30px;
  padding: 20px 10px;
  border-bottom: 1px solid #e5e5e5;
}

.location-row:first-child {
  border-top: 1px solid #e5e5e5;
}

.location-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
}

.location-meta {
  display: flex;
  gap: 24px;
  font-size: 0.875rem;
  color: #777;
}

.location-row:hover {
  background: #fafafa;
}

.location-address {
  color: #777;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: #bbb;
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.location-address:hover {
  color: #111;
  text-decoration-color: #111;
}

/* FINAL CTA */
.final-cta {
  background: #000;
  padding: 60px 0;
  text-align: center;
}


@media (max-width: 768px) {
  /* trust-bar usa marquee — no se sobreescribe en mobile */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .location-meta {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 4px;
  }

  .steps {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .steps > div {
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 12px;
    padding-bottom: 30px;
    position: relative;
  }

  .steps > div:last-child {
    padding-bottom: 10px;
  }

  .steps .step-icon {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .steps .step-number {
    grid-column: 2;
    grid-row: 1;
    margin: 4px 0 2px;
    align-self: center;
  }

  .steps .step-title {
    grid-column: 2;
    grid-row: 2;
  }

  .steps .step-description {
    grid-column: 2;
    grid-row: 3;
    margin-right: 0;
  }

  .icon-conection::after {
    width: 1px;
    height: calc(100% - 30px);
    top: 30px;
    left: 14px;
    transform: none;
  }

  .promo-banner {
    grid-template-columns: 1fr;
    background: linear-gradient(180deg, rgba(255,255,255,1) 40%, rgba(225,6,0,1) 40%);
    padding: 0 5% 40px;
    gap: 0;
  }

  .promo-img {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .promo-img img {
    width: 75%;
    max-width: 300px;
  }

  .promo-info {
    padding: 20px 0 0;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}