@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

body {
    background-color: #000;
}

.whatsapp-link {
    position: fixed;
    bottom: 70px;
    right: 50px;
    padding: 10px;
    font-size: 2em;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    z-index: 20;
}

/* ------------- Header ----------------- */

.header {
    width: 100%;
    position: relative;
    color: #fff;
    font-family: "Questrial", sans-serif;
    background-color: #000;
    background-image: url('../images/background-1.png');
    background-size: 140% 50%;
    background-position: top center;
    background-repeat: no-repeat;
}

.header__top {
    display: flex;
    padding: 30px 10%;
    justify-content: space-between;
}

.header__logo {
    max-width: 60px;
    max-height: 40px;
}

.header__toggle {
    background-color: transparent;
    border: none;
    color: #fff;
}

.header__toggle-icon {
    font-size: 2em;
}

.header__toggle {
    display: block;
}

.header__contact-link {
    display: none;
}

/* ------------- Header > Nav ----------------- */

.header__nav {
    display: none;
    position: absolute;
    top: 91px;
    right: 0;
    background: #0c001a;
    padding: 1rem;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    z-index: 10;
}

.header__nav.active {
    display: flex;
}

.nav__list-li {
    padding: 20px 15%;
}

.nav__list-link {
    color: #fff;
    font-family: "Questrial", sans-serif;
    transition: all .7s;
}

.nav__list-link:hover {
    background: linear-gradient(90deg, #0063A3, #D58DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ------------- Header > Hero ----------------- */

.hero {
    padding: 50px 30px 0px;
}

.hero__title {
    text-align: center;
    font-size: 3em;
    background: linear-gradient(90deg, #fff, grey);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    text-align: center;
    font-size: 1.1em;
    margin-top: 15px;
}

.hero__buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 35px;
}

.cta-button {
  background: linear-gradient(90deg, #0063A3, #D58DFF);
  color: #fff;
  padding: 1rem 1rem;
  border: none;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(163, 85, 255, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  font-size: .85em;
  min-width: 34%;
  max-width: 40%;
  text-align: center;
}

.cta-button--primary {
    border-radius: 8px 0 8px 0;
}

.cta-button--secondary {
  background: transparent;
  border-radius: 0 8px 0 8px;
  border: 1px solid #D58DFF;
  color: #fff;
}

/* ------------- Header > Caracteristics ----------------- */
.caracteristics {
    margin: 15px auto 0px;
    padding: 15px 25px 40px;
    display: flex;
    flex-wrap: wrap;
}

.caracteristic {
    padding: 20px;
    width: 85%;
    background-color: rgba(0, 99, 163, 0.2);
    margin: 14px auto;
    border-radius: 10px;
    border: 2px solid #0063A3;
    box-shadow: 0 0 10px rgba(0, 99, 163, 0.7);
    display: flex;
    justify-content: space-between;
}

.caracteristic__info {
    width: 80%;
}

.caracteristic__title {
    font-size: 1.1em;
}

.caracteristic__text {
    margin-top: 15px;
    font-size: .8em;
    color: #ccc;
}

.caracteristic__link {
    margin-top: 15px;
    display: block;
    font-size: .7em;
    color: #eeeeee;
}

.caracteristic__icon {
    font-size: 2.3em;
    background: linear-gradient(90deg, #0063A3, #D58DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ------------- Main ----------------- */
.main {
    font-family: "Questrial", sans-serif;
}

/* ------------- Main > Help ----------------- */
.help {
    background-color: #000;
    padding: 20px;
    background:
    linear-gradient(circle at center, #0063A3 0%, #0063A3 60%, #000 100%) top no-repeat,
    #000;

    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.help-article {
    padding: 0 30px;
    text-align: center;
}

.help-article__title {
    font-family: "Questrial", sans-serif;
    text-align: center;
    font-size: 3em;
    background: linear-gradient(90deg, #fff, #3097EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.help-article__text {
    margin-top: 20px;
    color: #fff;
    line-height: 1.4;
}

.help-article__link {
  background: #0063A3;
  color: #fff;
  padding: 1rem 1rem;
  border: none;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(163, 85, 255, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: .85em;
  text-align: center;
  margin: 20px auto;
}

.help-points {

}

.help-points__point {
    min-width: 250px;
    min-height: 120px;
    background-color: rgba(0, 99, 163, 0.1);
    border: 2px solid #0063A3;
    box-shadow: 0 0 10px rgba(0, 99, 163, 0.7);
    margin: 20px auto;
    max-width: 70%;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ------------- Main > Companies ----------------- */
.companies {
    margin: 30px auto;
    padding: 0 30px;
    position: relative;
    overflow: hidden;
}

.companies__line {
    width: 60px;
    height: 1px;
    background-color: #fff;
    margin: 0 15px;
    display: inline-block;
}

.companies__title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5em;
    background: linear-gradient(90deg,#fff, #3097EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.companies-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1800px;
  margin: 100px auto;
}

.companies-container {
  display: flex;
  gap: 2rem;
  animation: scroll 25s linear infinite;
}

.companies-container img {
  max-height: 130px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
}


/* Animación continua */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); /* Se mueve justo la mitad */
  }
}

/* ------------- Main > Services ----------------- */
.services {
    margin: 30px auto;
    padding: 20px 30px;
    background:
        radial-gradient(circle at center, #3f00a3 0%, #0c001a 60%, #000 100%) top no-repeat,
        #000;

    background-size: 100% 100%;
    background-repeat: no-repeat;
    max-width: 1400px;

}

.services__line {
    width: 60px;
    height: 1px;
    background-color: #fff;
    margin: 0 15px;
    display: inline-block;
}

.services__text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 20px;
}

.services__title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5em;
    background: linear-gradient(90deg,#fff, #3097EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services__subtitle {
    text-align: center;
    color: #fff;
    margin: 20px 0;
}

.services-container {
    margin: 40px auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.service-container {
    width: 220px;
    height: 290px;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    margin: 15px;
    border-radius: 15px;
}

.service__title {
    text-align: center;
    font-size: 1.2em;
    color: #fff;
}

.service-container--1 {
    background-image: url('../images/service-1.WEBP');
}

.service-container--2 {
    background-image: url('../images/service-2.WEBP');
}

.service-container--3 {
    background-image: url('../images/service-3.WEBP');
}

.service-container--4 {
    background-image: url('../images/service-4.WEBP');
}

.service-container--5 {
    background-image: url('../images/service-5.WEBP');
}

.service-container--6 {
    background-image: url('../images/service-6.WEBP');
}

.service-container--7 {
    background-image: url('../images/service-7.WEBP');
}

.service__link {
    background: transparent;
    padding: 7px 20px;
    border-radius: 10px;
    border: 1px solid rgb(213, 141, 255);
    color: #fff;
    box-shadow: 0 0 12px rgba(213, 141, 255, 0.7);
}


/* --------------------- Footer ---------------------- */
.footer {
    padding: 30px 50px;
    font-family: "Questrial", sans-serif;
}

.footer__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 95%;
    margin: 0 auto;
}

.footer-info__container {
    margin: 30px 20px;
}

.footer-info__container--4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__image {
    max-height: 120px;
}

.footer__title {
    font-size: 1.5em;
    color: white;
    margin-bottom: 50px;
    text-align: center;
}

.footer__title--4 {
    margin-top: 50px;
}

.footer__link {
    display: block;
    font-size: 1.1em;
    margin-top: 18px;
    color: #dfdfdf;
    transition: all .6s;
    text-align: center;
}

.footer__link:hover {
    background: linear-gradient(90deg, #0063A3, #D58DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer__social {
    padding: 10px;
    background: linear-gradient(90deg, #0063A3, #D58DFF);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.3em;
}

.footer__copyright {
    margin-top: 50px;
    border-top: 2px solid #fff;
    padding: 40px 0 20px;
    text-align: center;
    color: #fff;
    font-size: 1.1em;
}

@media (min-width: 768px) {

    /* ----------------------- Header ----------------------- */
    .header {
        background-size: 140% 100%;
        background-position: top;
    }

    .header__top {
        justify-content: space-around;
        padding: 30px 40px;
    }

    .header__nav {
        position: relative;
        top: 0;
        display: flex;
        flex-direction: row;
        padding: 0;
        height: auto;
        width: auto;
        background-color: transparent;
    }

    .nav__list {
        display: flex;
        text-decoration: none;
    }

    .nav__list-li {
        padding: 10px 20px;
        text-decoration: none;
        font-size: .7em;
    }

    .header__contact-link {
        display: block;
        padding: 10px 20px;
        border: 1px solid #D58DFF;
        border-radius: 7px;
        font-size: .7em;
        color: #fff;
    }

    .header__toggle {
        display: none;
        font-size: 2rem;
        background: none;
        border: none;
        color: white;
    }

    .hero {
        max-width: 70%;
        margin: 0 auto;
    }

    .caracteristic {
        max-width: 270px;
    }

/* ------------- Main ----------------- */

/* ------------- Main > Help ----------------- */
.help { 
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.help-article {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.help__container--1 {
    width: 40%;
}

.help__container--2 {
    width: 35%;
}

.help-article__title {
    text-align: left;
}

.help-article__text {
    text-align: left;
}

.help-article__link {
    padding: 15px 40px;
    margin: 20px 0;
    border-radius: 8px 0 8px 0;
}

/* ------------- Main > Companies ----------------- */
.companies__title {
    font-size: 2.8em;
}

.companies-container {
    gap: 4rem;
}

/* --------------------- Footer ---------------------- */
.footer__title {
    text-align: left;
}

.footer__link {
    text-align: left;
}

}

@media (min-width: 1000px) {

    /* ----------------------- Header ----------------------- */
    .header {
        background-size: 120% 100%;
        background-position: top;
    }

    .hero {
        max-width: 65%;
        padding: 100px 30px 0px;
    }

    .hero__title {
        font-size: 3.8em;
    }

    .hero__buttons {
        width: 70%;
        margin: 30px auto;
    }

    .caracteristics {
        padding: 15px 25px 100px;
    }

    .caracteristic {
        max-width: 260px;
    }

/* ------------- Main > Help ----------------- */

    .help-article__title {
        font-size: 3.5em;
    }

    .help-article__text {
        font-size: 1.1em;
    }

/* ------------- Main > Companies ----------------- */

    .companies {
        margin: 70px auto;
    }

    .companies__line {
        width: 120px;
    }

    .companies__title {
        font-size: 3.5em;
    }

    .companies-container {
        gap: 6rem;
    }

}

@media (min-width: 1400px) {

    /* ----------------------- Header ----------------------- */
    .nav__list-li {
        font-size: .9em;
        padding: 10px 30px;
    }

    .header__contact-link {
        font-size: .9em;
    }

    .hero {
        max-width: 800px;
        padding: 120px 30px 0px;
    }

    .hero__title {
        font-size: 4.2em;
    }

    .hero__subtitle {
        font-size: 1.2em;
    }

    .hero__buttons {
        margin: 30px auto;
    }

    .cta-button {
        width: 55%;
        font-size: 1.1em;
    }

    .caracteristics {
        padding: 15px 25px 100px;
        max-width: 1450px;
    }

    .caracteristic {
        max-width: 320px;
    }

    .caracteristic__title {
        font-size: 1.2em;
    }

    .caracteristic__text {
        font-size: .9em;
    }

    .caracteristic__link {
        font-size: 1em;
    }

    .caracteristic__icon {
        font-size: 3em;
    }

/* ------------- Main > Help ----------------- */

    .help {
        width: 1250px;
        margin: 0 auto;
    }

    .help-article__title {
        font-size: 4.3em;
    }

    .help-article__text {
        font-size: 1.4em;
    }

    .help-article__link {
        font-size: 1.3em;
    }

    .help-points__point {
        font-size: 2em;
        max-width: 85%;
        min-height: 180px;
    }

/* ------------- Main > Companies ----------------- */

    .companies-container {
        gap: 8rem;
    }

}


@media (min-width: 2000px) {

    /* ----------------------- Header ----------------------- */

    .nav__list-li {
        font-size: 1em;
        padding: 10px 40px;
    }

    .header__contact-link {
        font-size: 1em;
    }

    .hero {
        max-width: 1200px;
    }

    .hero__title {
        font-size: 5.5em;
        margin-bottom: 30px;
    }

    .hero__subtitle {
        margin-bottom: 30px;
        font-size: 1.5em;
        width: 70%;
        margin: 0 auto;
    }

    .hero__buttons {
        width: 50%;
    }

    .cta-button {
        width: 30%;
        font-size: 1.2em;
        padding: 1.3rem;
    }


    .caracteristic {
        padding: 40px;
        max-width: 350px;
    }

    .caracteristic__title {
        font-size: 1.5em;
    }

    .caracteristic__text {
        font-size: 1em;
    }

    .caracteristic__link {
        font-size: 1.2em;
    }

    .caracteristic__icon {
        font-size: 4em;
    }

/* ------------- Main > Companies ----------------- */
    .companies__line {
        width: 200px;
        margin: 0 40px;
    }

    .companies__title {
        font-size: 4.5em;
    }

    .companies-container {
        gap: 10rem;
    }

}
