.best-adu-cta-section {
  padding: 60px 0;
}

/* CARD */
.best-adu-cta-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 50px 60px;
  background-size: cover;
  background-position: center;
}

/* OVERLAY */
.best-adu-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 1;
}

/* 🔥 NUEVO LAYOUT */
.best-adu-cta-content {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr auto; /* texto + botones */
  gap: 30px;
  align-items: center;
}

/* TEXTO */
.best-adu-cta-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #F28C38;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.best-adu-cta-title {
  font-size: 28px; /* 🔥 más pequeño */
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.best-adu-cta-title span {
  color: #F28C38;
}

.best-adu-cta-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* AGRUPAMOS TEXTO */
.best-adu-cta-text-wrap {
  max-width: 500px;
}

/* BOTONES */
.best-adu-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

/* PHONE */
.best-adu-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.best-adu-phone-btn:hover {
  background: #fff;
  color: #000;
}

/* HOVER */
.best-adu-cta-card:hover {
  transform: translateY(-3px);
  transition: 0.4s ease;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px){

  .best-adu-cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .best-adu-cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .best-adu-cta-card {
    padding: 35px 20px;
  }

  .best-adu-cta-title {
    font-size: 22px;
  }
}


/* 404 */

.adu-404 {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border-radius: 34px;
  padding: 90px 70px;
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.22), transparent 34%),
    radial-gradient(circle at 85% 70%, rgba(249, 115, 22, 0.18), transparent 32%),
    linear-gradient(135deg, #242424 0%, #363636 48%, #f8f8f8 48%, #ffffff 100%);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.22);
}

.adu-404 * {
  box-sizing: border-box;
}

.adu-404__bg span {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.18);
  filter: blur(20px);
  animation: aduFloat 8s ease-in-out infinite;
}

.adu-404__bg span:nth-child(1) {
  top: -80px;
  left: -80px;
}

.adu-404__bg span:nth-child(2) {
  right: 15%;
  bottom: -120px;
  animation-delay: 1.4s;
}

.adu-404__bg span:nth-child(3) {
  top: 18%;
  right: -100px;
  animation-delay: 2.4s;
}

.adu-404__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 75%);
  pointer-events: none;
}

.adu-404__content {
  position: relative;
  z-index: 3;
  color: #ffffff;
}

.adu-404__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(249, 115, 22, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f97316;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(14px);
  margin-bottom: 22px;
}

.adu-404__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(92px, 14vw, 190px);
  line-height: 0.88;
  margin: 0 0 22px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.adu-404__title span {
  color: #ffffff;
  text-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.adu-404__title strong {
  color: #f97316;
  text-shadow: 0 0 35px rgba(249, 115, 22, 0.75);
  animation: aduPulse 2.6s ease-in-out infinite;
}

.adu-404 h2 {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
  color: #f97316;
  margin: 0 0 18px;
  max-width: 720px;
}

.adu-404 p {
  max-width: 650px;
  color: rgba(43, 42, 42, 0.78);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 34px;
}

.adu-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.adu-404__btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.adu-404__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-105%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: transform 0.7s ease;
}

.adu-404__btn:hover::before {
  transform: translateX(105%);
}

.adu-404__btn:hover {
  transform: translateY(-4px);
}

.adu-404__btn--primary {
  background: #f97316;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(249, 115, 22, 0.42);
}

.adu-404__btn--outline {
  color: #f97316;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.adu-404__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.adu-404__links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.adu-404__links a:hover {
  color: #f97316;
}

.adu-404__visual {
  position: relative;
  z-index: 3;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.adu-404__house {
  position: relative;
  width: min(380px, 80vw);
  height: 310px;
  transform-style: preserve-3d;
  animation: aduHouseFloat 5s ease-in-out infinite;
}

.house-roof {
  position: absolute;
  top: 20px;
  left: 42px;
  width: 295px;
  height: 145px;
  background: linear-gradient(135deg, #f97316, #c95108);
  clip-path: polygon(50% 0%, 100% 85%, 0% 85%);
  filter: drop-shadow(0 24px 28px rgba(249, 115, 22, 0.35));
}

.house-body {
  position: absolute;
  left: 64px;
  bottom: 38px;
  width: 252px;
  height: 178px;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #e8e8e8);
  box-shadow: 0 35px 75px rgba(0,0,0,0.25);
}

.window {
  position: absolute;
  top: 44px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f97316, #ffb36b);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.75);
}

.window-1 {
  left: 42px;
}

.window-2 {
  right: 42px;
}

.door {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 58px;
  height: 88px;
  transform: translateX(-50%);
  border-radius: 18px 18px 0 0;
  background: #333333;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.1);
}

.house-base {
  position: absolute;
  left: 24px;
  bottom: 16px;
  width: 330px;
  height: 28px;
  border-radius: 999px;
  background: rgba(36,36,36,0.9);
  filter: blur(0.2px);
}

.adu-404__orbit {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 50%;
  animation: aduSpin 18s linear infinite;
}

.adu-404__orbit span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.9);
}

.adu-404__orbit span:nth-child(1) {
  top: 32px;
  left: 72px;
}

.adu-404__orbit span:nth-child(2) {
  right: 24px;
  top: 190px;
}

.adu-404__orbit span:nth-child(3) {
  left: 170px;
  bottom: 18px;
}

.adu-404.is-moving .adu-404__house {
  transform: translateY(-12px) rotateX(8deg) rotateY(var(--tilt, 0deg));
}

@keyframes aduFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(35px) scale(1.08); }
}

@keyframes aduPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.07); filter: brightness(1.2); }
}

@keyframes aduHouseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes aduSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 991px) {
  .adu-404 {
    grid-template-columns: 1fr;
    padding: 70px 28px;
    text-align: center;
  }

  .adu-404__content,
  .adu-404 p {
    margin-left: auto;
    margin-right: auto;
  }

  .adu-404__title,
  .adu-404__actions,
  .adu-404__links {
    justify-content: center;
  }

  .adu-404__visual {
    min-height: 350px;
  }
}

@media (max-width: 575px) {
  .adu-404 {
    border-radius: 22px;
    padding: 55px 20px;
  }

  .adu-404__actions {
    flex-direction: column;
  }

  .adu-404__btn {
    justify-content: center;
  }

  .adu-404__orbit {
    width: 310px;
    height: 310px;
  }

  .adu-404__house {
    transform: scale(0.82);
  }
}


@media (max-width: 768px) {
  .banner-content .banner-title, h1{
    font-size: 40px;
  }

  h2{
    font-size: 35px;
  }
}

@media (max-width: 426px) {
      .banner-content .banner-title, h1 {
        font-size: 34px;
    }

    h2{
      font-size: 29px;
    }

        .service-content-wrap .service-content{
          padding-left: 30px;
        }
}

@media (max-width: 376px) {
  .banner-content .banner-title, h1{
    font-size: 29px;
  }
  h2{
    font-size: 25px;
  }

  .title a{
    font-size: 20px;
  }

  .service-content-wrap{
    flex-direction: column;
  }

  .service-title{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100% !important;
  }
}


@media (max-width: 320px) {
  p{
    font-size: 14px !important;
  }

      .banner-content .banner-title, h1 {
        font-size: 24px;
    }

  h2{
    font-size: 20px;
  }

      .title a,
      h3 {
        font-size: 18px;
    }

    .tj-faq .accordion-item .faq-title{
      font-size: 16px;
    }
}

.service-icon {
  background: rgba(242, 140, 56, 0.1);
  border-radius: 12px;
  padding: 10px;
}

.service-icon img {
  width: 32px;
  height: 32px;
}
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5900, #ff5900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px #ff59002f;
}

.service-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* icono blanco 🔥 */
}
.rating-img {
  border-radius:20px ;
  overflow: hidden;
}
.testimonial-slider .testimonial-item .rating-wrap .rating-img img {
  width: 70px !important;
  height: 100% !important;
}
.chose-icon.chose-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chose-icon.chose-img img {
  width: 60px;   /* 🔥 tamaño del icono */
  height: 60px;
  object-fit: contain;
}

.testimonial-author .author-img{
  width: 90px;
  height: 90px;
  border-radius: 100%;
  overflow: hidden;
}
.about-content .about-info .author-area .author-img{
  width: 90px;
  height: 90px;
  border-radius: 100%;
   overflow: hidden;
}