html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #020024;
  background: linear-gradient(45deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  background-size: contain;
  background-repeat: no-repeat;
}

/* Inputs y textareas (más específico y compatible) */
input::placeholder,
textarea::placeholder {
  font-size: 18px;
  color: #c1c1c1 !important;
  opacity: 1; /* Evita transparencia en Firefox */
}

/* Modern Browsers */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
      font-size: 18px;
  color: #c1c1c1;
}

/* Modern Firefox (19+) */
input::-moz-placeholder,
textarea::-moz-placeholder {
      font-size: 18px;
  color: #c1c1c1;
  opacity: 1;
}

/* Older Firefox (18-) */
input:-moz-placeholder,
textarea:-moz-placeholder {
      font-size: 18px;
  color: #c1c1c1;
}

/* Internet Explorer (10-11) */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
      font-size: 18px;
  color: #c1c1c1;
}

.hero {
  margin: 100px 0 100px;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 46px;
    margin-bottom: 36px;
}

.hero-subtitle {
          font-size: 16px;
      color: #ffffff;
          margin-bottom: 40px;
}

.feature {
      display: flex;
    margin-bottom: 22px;
}

.feature .feature-icon {
    padding-right: 20px;
    display: flex;
}

.feature .feature-icon i {
        font-size: 22px;
    color: #ffbf00;
    padding-top: 6px;
}

.feature .feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffbf00;
}

.feature .feature-subtitle {
          font-size: 16px;
    color: #ffffff;
}

/* CTA */
.hero-cta.card-help {
      background: #ffffff;
        padding: 30px 36px;
    border-radius: 14px;
    margin-top: 70px;
      max-width: 460px;
}

.hero-cta.card-help .card-help-title {
    display: flex;
    align-items: center;
}

.hero-cta.card-help .card-help-text {
        color: #737373;
}

.hero-cta.card-help .card-help-title i {
        font-size: 20px;
    color: #42b6e1;
    padding-right: 16px;
}

.hero-cta.card-help .card-help-title span {
      font-size: 16px;
         font-weight: 700;
}

.hero-cta.card-help .btn-call {
      font-size: 16px;
      font-weight: 600;
      color: #ffffff;
      background: #020024;
      background: linear-gradient(45deg, rgb(0 207 253) 0%, rgb(72 1 165) 35%, rgba(0, 212, 255, 1) 100%);
      width: 100%;
    height: 50px;
    border-radius: 14px;
      border: none;
          margin-top: 20px;
}



.form-label {
      font-size: 12px;
    font-weight: 600;
    color: #8b8b8b;
    margin-bottom: 6px;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #c1c1c1;
  pointer-events: none;
}

.input-icon input {
    border-radius: 10px;
  padding-left: 54px;
  height: 54px;
}





.payment-card {
    background: #ffffff;
    background: linear-gradient(156deg, rgba(255, 255, 255, 1) 0%, rgba(227, 235, 255, 1) 100%);
    padding: 40px 40px;
    border-radius: 30px;
}

.payment-card .payment-card-header {
          margin-bottom: 32px;
      display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-card .payment-card-header h3 {
    font-size: 20px;
    font-weight: 700;
margin: 0;
}

.payment-card .payment-card-header .payment-card-price {
        font-size: 26px;
    font-weight: 700;
    color: #02a3de;
}

.payment-card .payment-card-methods {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-card .payment-card-methods img {
        height: 26px;
    padding: 0 6px;
}

.btn-send {
      font-size: 16px;
      font-weight: 600;
      color: #ffffff;
      background: #020024;
      background: linear-gradient(270deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
      width: 100%;
    height: 60px;
    border-radius: 14px;
      border: none;
          margin-top: 20px;
}

.btn-send:hover {
    color: #ffffff;
}


/* Testimonials */
.testimonials {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.testimonials__card {
  position: relative;
  padding: 35px;
  border-radius: 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.2),
    0 0 25px rgba(0, 102, 255, 0.25); /* glow azul */
}

/* Header */
.testimonials__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.testimonials__stars {
  color: #f7c948;
  font-size: 18px;
}

.testimonials__label {
  font-size: 12px;
font-weight: 700;
color: #ffffff;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* Slides */
.testimonials__slides {
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

/* Text */
.testimonials__text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

/* Author */
.testimonials__author {
      color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonials__avatar {
      width: 40px;
    height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #1e3c72;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Dots */
.testimonials__dots {
  text-align: center;
  margin-top: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.dot.active {
  width: 18px;
  border-radius: 10px;
  background: #fff;
}


/* Payment Confirmation */
.payment-status {
    background: #ffffff;
    background: linear-gradient(156deg, rgba(255, 255, 255, 1) 0%, rgba(227, 235, 255, 1) 100%);
    padding: 40px 40px;
    border-radius: 30px;
}

.payment-status__card {
  border-radius: 25px;
  padding: 32px 0px;
  text-align: center;
  max-width: 520px;
  margin: auto;
}

/* Icon Base */
.payment-status__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  font-weight: bold;
}

/* Success */
.payment-status--success .payment-status__icon {
  background: #c7f0d8;
  color: #1f9d68;
}

.payment-status--success .payment-status__title {
    font-size: 30px;
    font-weight: 700;
}

/* Error */
.payment-status--error .payment-status__icon {
  background: #ffd6d6;
  color: #d93025;
}

.payment-status__box {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;

  backdrop-filter: blur(6px);
}

.payment-status__info {
    margin-top: 32px;
}

.payment-status__info a {
    color: #2a62cb;
    font-weight: 700;
    text-decoration: none;
}

/* LISTA */
.payment-status__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ITEM */
.payment-status__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* ICONO */
.payment-status__list-icon {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  color: white;

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

  font-size: 12px;
  font-weight: bold;
  margin-top: 2px;
}

/* TEXTO */
.payment-status__list-text {
  font-size: 14px;
  color: #555;
  line-height: normal;
  text-align: left;
}





/* Header */
#header-main {
    background: #ffffff;
    padding: 12px 0;
}

#header-main-top {
    border-bottom: 1px solid #e0edf6;
    padding-bottom: 15px;
    padding-top: 15px; 
}

#header-main #header-main-navigation nav {
    padding-left: 0;
    padding-right: 0;
}

#header-main #header-main-navigation nav.bg-light {
    background: none!important;
}

@media (min-width: 992px) {
    #header-main #header-main-navigation nav .navbar-collapse {
        display: flex!important;
        justify-content: flex-end;
    }
}

#header-main #header-main-navigation nav .navbar-nav {
    display: flex;
    align-items: center;
}

#header-main #header-main-navigation nav .navbar-nav .nav-link {
    color: #00353f;
    font-weight: 600;
    margin-right: 20px;
}

#header-main .slider {
    height: calc(100vh - 105px);
    background: linear-gradient(rgb(233 236 239), rgb(0 0 0 / 68%)), url(img/bg-header.jpg) center center no-repeat;
    background-size: cover;
    display: flex
    ;
        justify-content: center;
}

#header-main .slider .text-box {
    display: flex;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    margin-top: -300px;
}
    
#header-main .slider .text-box .text-tile, .text-sub {
    display: block;
    text-align: center;
}
    
#header-main .slider .text-box .text-tile {
    font-size: 58px;
    color: #ffffff;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: 0px;
    animation: moveLeft 1.5s ease-in;
    text-shadow: 0px 0px 12px #000000;
}
    
#header-main .slider .text-box .text-sub {
    font-size: 32px;
    color: #ffffff;
    animation: moveRight 1.5s ease-in;
    text-shadow: -2px 2px 5px #000000;
    margin-top: 26px;
}    


@keyframes moveLeft {
    0% {
        opacity: 0;
        transform: translatex(-100px);
    }
    80% {
        transform: translatex(10px);
    }
    100% {
        opacity:1;
        transform: translatex(0);
    }
}
  
@keyframes moveRight {
    0% {
        opacity: 0;
        transform: translatex(100px);
    }
    80% {
    transform: translatex(-10px);
    }
    100% {
        opacity:1;
        transform: translatex(0);
    }
}





/* Footer */
#footer {
    background-color: #2d3032;
    background: linear-gradient(#00272f, #001316d1), url(img/bg-footer.jpg) center center no-repeat;
    background-size: cover;
    border-top: 8px solid #cd9300;
    padding-top: 60px;
}

.footer-about-company {
  position: relative;
}

#footer h1 {
    font-size: 36px;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 10px;
}

#footer hr {
    border: 1px solid #fff;
}

#footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    #footer h5 {
        margin-top: 30px;
        margin-bottom: 10px;
    }
}

#footer ul li a {
    color: #ffffff;
}

@media (max-width: 575px) {
    #footer .footer-about-company {
        display: none;
    }
}

#footer .footer-about-company .company-logo {
    margin-bottom: 20px;
}

#footer .footer-about-company .company-logo img {
    width: 190px;
    position: absolute;
    left: 16px;
    top: 16px;
}

#footer .footer-about-company p {
    font-size: 16px;
}

@media (max-width: 575px) {
    #footer .footer-nav-link {
        padding-left: 30px;
    }
}

@media (max-width: 575px) {
    #footer li.nav-item {
        list-style: disc;
    }
}

#footer .nav-item-fp {
    border-top: 1px solid #254753;
    padding-top: 14px;
}

#footer .nav-item-fp a {
    color: #ffb700;
}

#footer .footer-contact {
    color: #ffffff;
}
@media (max-width: 575px) {
    #footer .footer-contact {
        padding-left: 30px;
        margin-top: 70px;
    }
}

#footer .footer-contact .nav .nav-item {
    line-height: 22px;
    position: relative;
    text-decoration: none;
}

#footer .footer-contact .nav .nav-item i {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    width: 20px;
    position: absolute;
    top: 4px;
    left: -28px;
}

@media (max-width: 991px) {
    #footer .footer-contact .nav .nav-item i {
        display: none;
    }
}

#footer .footer-contact .nav .nav-item .line {
    color: #ffffff;
}



#footer .legal {
    font-size: 15px;
    color: #ffffff;
    width: 50%;
    margin-top: 130px;
    margin-bottom: 70px;
}

@media (max-width: 575px) {
    #footer .legal {
        color: #a3a3a3;
        text-align: justify;
        padding-right: 15px;
        padding-left: 15px;
        margin-top: 64px;
        margin-bottom: 80px;
        width: 100%;
        line-height: normal;
    }
}

#footer .legal a {
    color: #ffb700;
}

#footer .copyright {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: #000f12;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 2px solid #cd9300;
}

@media (max-width: 575px) {
    #footer .copyright {
        font-size: 14px;
    }
    
    #footer .copyright .rights-reserved {
        display: block;
        line-height: normal;
    }
}





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

/* Tablets */
@media (max-width: 992px) {

  .hero-title {
    font-size: 36px;
    line-height: 42px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .hero-cta.card-help {
    margin-top: 40px;
  }

  .payment-card {
    padding: 30px;
  }

}


/* Mobile */
@media (max-width: 768px) {

  body {
    display: block; /* 🔥 clave */
    height: auto;
  }

  .hero {
    padding: 40px 20px;
  }

  .row {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .hero-title {
    font-size: 28px;
    line-height: 34px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .feature {
    margin-bottom: 16px;
  }

  .feature .feature-title {
    font-size: 16px;
  }

  .feature .feature-subtitle {
    font-size: 14px;
  }

  .hero-cta.card-help {
    padding: 20px;
  }

  .payment-card {
    margin-top: 30px;
    padding: 20px;
    border-radius: 20px;
  }

  .payment-card .payment-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .payment-card .payment-card-price {
    font-size: 22px;
  }

  .btn-send {
    height: 50px;
  }

  .input-icon input {
    height: 48px;
  }

  .testimonials__card {
    padding: 20px;
  }

}


/* Small phones */
@media (max-width: 480px) {

  .hero-title {
    font-size: 24px;
    line-height: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .payment-card {
    padding: 16px;
  }

  .btn-send {
    font-size: 14px;
  }

}