*{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: white;
}

:root{
  --mainColor: #009dff; 
  --mainColorDark: rgba(10, 160, 180, 1);

  --gradientColor:linear-gradient(to right, rgb(53, 98, 230),rgb(0, 191, 255));

  --darkGray: #2e2e2e;          
  --lightGray: #f5f5f5;                
  --borderGray: #dcdcdc;                 
  --textColor: #333;                
  --white: #ffffff; 
  --borderRadius: 6px; 
}

html{
    scroll-behavior: smooth;
}
body{
    background-color: black;
    scroll-behavior: smooth;
}

header{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    transition: transform 250ms ease, 
    opacity 400ms ease, 
    visibility 400ms ease;
}
header.invisible{
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    pointer-events:none;
}
header .logo{
    margin-left:10px;
}
header .logo p{
    color: white;
    font-weight: bold;
}
header a{
    width: max-content;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    background-image: var(--gradientColor);
    border-radius: 6px;
    font-weight: 900;
    font-size: 14px;
    padding: 5px;
    margin-right: 6px;
}
header a img{
    height: 28px;
}

@media(min-width:750px){
    header{
        padding: 12px 0;
    }
    header .logo{
    margin-left:12px;
    }
    header .logo p{
        font-size: 20px;
    }
    header a{
    gap: 5px;
    font-size: 18px;
    padding: 5px;
    margin-right: 12px;
    }
    header a img{
        height: 32px;
    }
}

.heroSection{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    height: 85vh;
    width: 100%;
    align-items: center;
    background: linear-gradient(135deg, rgba(25, 0, 255, 0.2), rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.heroSection .wrapperHero{
    width: 90%;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.heroSection h1{
    width: 100%;
    text-align: center;
    color: white;
    z-index: 2;
    font-size: clamp(28px,2vw,40px);
    line-height: 1.4;
}
.heroSection h1 strong{
  background: var(--gradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;   
  font-weight: 900;
}
.heroSection h1 span{
  position: relative;
  font-weight: 750;
  color: white;
  z-index: 2;
  padding: 2px 4px;
}
.heroSection h1 span::before{
    content:"";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--mainColor);
    border-radius: 6px;
    z-index: -1;
}

.heroSection p{
    width: 100%;
    text-align: center;
    color: white;
    font-size: clamp(20px,2vw,26px);
    z-index: 2;
    font-weight: 550;
}
.heroSection p span{
    color: var(--mainColor);
    font-weight: 750;
}
.heroSection a{
    z-index: 2;
    text-decoration: none;
    width: max-content;
    font-size: clamp(24px,3vw,30px);
    color: rgb(255, 255, 255);
    background-image: var(--gradientColor);
    padding: 10px 20px;
    border-radius: var(--borderRadius);
    text-align: center;
    font-weight: 900;
    margin-top: 12px;
    transition: all 250ms ease;
}
.heroSection a:hover{
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 10px var(--mainColor);
}

@media(min-width:750px){
    .heroSection{
        height: 90vh;
    }
    .heroSection h1{
        width:max-content;
        max-width: 75%;
    }
    .heroSection p{
    width: 75%;
    text-align: center;
    }
    .heroSection a{
    margin-top: 24px;
    }
}
@media(min-width:1000px){
.heroSection h1{
        max-width: 60%;
    }
}




.bodyWhy{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 32px 0px;
    width:100%;
    align-items: center;
    background-color: var(--mainColor);
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
}
.bodyWhy h2{
    color: white;
    font-size: clamp(28px,3vw,36px);
    position: relative;
}
.bodyWhy .cardWhy{
    width: 90%;
    background-color: rgba(255, 255, 255, 0.25);
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: var(--borderRadius);
    backdrop-filter: blur(10px);
}
.bodyWhy .cardWhy img{
    width: 64px;
}
.bodyWhy .cardWhy h4{
    color: white;
    font-weight: 750;
    margin-bottom: 4px;
}
.bodyWhy .cardWhy p{
    color: white;
    text-align: center;
}
#infoWhy{
    width: max-content;
    padding: 8px 16px;
    border-radius: var(--borderRadius);
    color: white;
    font-weight: bold;
    font-size: clamp(20px,3vw,24px);
    position: relative;
}
@media(min-width:750px){
    .bodyWhy{
        display: grid;
        grid-template-columns: auto auto;
        gap: 40px;
    }
    .bodyWhy h2{
        grid-column: 1/3;
        width: max-content;
        margin: auto;
    }
    .bodyWhy .cardWhy{
        width: 100%;
        max-width: 300px;
        margin: auto;
        gap: 8px;
    }
    #infoWhy{
        grid-column: 1/3;
        margin: auto;
    }
}
@media(min-width:950px){
     .bodyWhy .cardWhy{
        max-width: 450px;
    }
    .bodyWhy .cardWhy p{
        width: 75%;
        font-weight: 550;
    }
    .bodyWhy .cardWhy img{
    width: 72px;
    }
    .bodyWhy .cardWhy h4{
        font-size: 22px;
    }
}
@media(min-width:1150px){
     .bodyWhy .cardWhy{
        max-width: 550px;
    }
}




.bodyHow{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    width:100%;
    align-items: center;
    background-color:rgb(0, 0, 0);
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
    margin-bottom: 64px;
    margin: 32px 0;
}
.bodyHow h2{
    font-size: clamp(28px,3vw,36px);
    font-weight: 750;
    position: relative;
    color: white;
}
.bodyHow h2 span{
    color: var(--mainColor);
}
.bodyHow p{
    font-weight: 500;
    font-size: clamp(20px,2.5vw,24px);
    text-align: center;
    width: 90%;
    margin-bottom: 12px;
}
.card {
  position: sticky;
  top: 0;
}

.card__inner {
  will-change: transform;
  background-image: var(--gradientColor);
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 35%);
  transform-origin: center top;
}

.cards{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-auto-rows: auto;
    gap: 12px 0;
}

.card__image-container{
  display: flex;
  width: 40%;
  flex-shrink: 0;
  justify-content: center;

}
.card__image-container svg{
    height: 50px;
    width: 50px;
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(5px);
    padding: 4px;
    margin-top: 12px;
    border-radius: 6px;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.card__content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.card__title {
  padding: 0;
  margin: 0;
  font-size: 24px !important;
  font-weight: 750;
  color: #ffffff;
  text-align: center;
}

.card__description {
  line-height: 1.4;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}

@media (max-width: 600px) {
  .card__inner {
    flex-direction: column;
  }

  .card__image-container {
    width: 100%;
  }

  .card__image {
    aspect-ratio: 16 / 9;
  }

  .card__title {
    font-size: 32px;
  }

  .card__description {
    font-size: 16px;
  }

  .card__content {
    padding: 30px 20px;
  }
}

@media(min-width:650px){
    .card__inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .card__image-container{
        display: flex;
        width: 40%;
        flex-shrink: 0;
        justify-content: center;
        margin-top: 12px;
    }
    .card__image-container svg{
        height: 64px;
        width: 64px;
        background-color: rgb(255, 255, 255);
        backdrop-filter: blur(5px);
        padding: 4px;
        margin-top: 12px;
        border-radius: 6px;
    }

    .card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    }

    .card__content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    }

    .card__title {
    padding: 0;
    margin: 0;
    font-size: clamp(24px,3vw,30px) !important;
    font-weight: 750;
    color: #ffffff;
    text-align: center;
    }

    .card__description {
    line-height: 1.4;
    font-size: clamp(24px,3vw,26px) !important;
    width: 75% !important;
    color: #ffffff;
    text-align: center;
    }
}



.newsletterBody{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 20px;
    align-items: center;
    background-color:black;
    width:100%;
    margin-top: 32px;
    height: 70vh;
    background-color: var(--mainColor);
}
.newsletterContainer{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 32px 12px;
    align-items: center;
    background-color:black;
    width: calc(90% - 24px);
    margin: 32px auto;
    overflow: hidden;
    height: 65vh;
    background-color:rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}
.newsletterContainer .containerTitle{
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.newsletterContainer .containerTitle h2{
    font-weight: 750;
    font-size: clamp(28px,3vw,36px);
    color: var(--mainColor);
    text-align: center;
    line-height: 1.25;
}
.newsletterContainer .containerTitle h2 span {
    position: relative;
    background: var(--gradientColor);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}
.newsletterContainer .containerTitle p{
    color: rgba(0, 0, 0, 0.9);
    font-weight: 550;
    text-align: center;
    width: 75%;
}



.newsletter_Status_Info{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2;
}
.loadingContainer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex; 
    align-items: center;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);

    transition: all 350ms ease;
}
.loadingContainer.visible{
    opacity: 1;
    visibility: visible;
}
.loadingSpinner{
    padding: 8px;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    align-items: center;
    box-shadow:0 0 10px black;
    z-index: 1000;
}
.spinner{
    width: 34px;
    height: 34px;
    border: 4px solid #000000;
    border-top: 4px solid #33333300;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.newsletter_Status_Info img{
    width: 150px;
    margin-top: -120px;
}
.newsletter_Status_Info .titluMSG{
    font-size: clamp(26px,3vw,30px);
    font-weight: bold;
    text-align: center;
    color: rgb(0, 0, 0);
    line-height: 1.25;
    margin-bottom: 4px;
    margin-top: -100px;
}
.newsletter_Status_Info .subtitluMSG{
    font-size: clamp(16px,2vw,18px);
    font-weight: 600;
    color: rgb(0, 0, 0);
    text-align: center;
    width: 90%;
}
.newsletter_Status_Info button{
    width: max-content;
    font-size: 20px;
    font-weight: 600;
    background-color: black;
    color: white;
    border-radius: 5px;
    padding: 6px 12px;
    border: none;
    margin-top: 4px;
}


.newsletterBody form{
    width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
    gap: 20px;
    padding: 8px;
    box-sizing: border-box;
}
.input-container{
    position: relative;
    width: 100%;
}
.input-container:last-of-type{
    margin-top: 8px;
}

  .input-container input[type="text"],
  .input-container input[type="email"] {
    width: 100%;
    padding: 12px 10px;
    box-sizing: border-box;
    font-size: 16px;
    border: 2px solid #aaa;
    border-radius: 8px;
    outline: none;
    background: none;
    transition: border-color 0.3s;
    z-index: 2;
    font-weight: 550;
    color: black;
  }

  .input-container label {
    position: absolute;
    left: 10px;
    top: 12px;
    color: #000000;
    background: #d6ebff;  
    font-weight: 550;       
    padding: 0 4px;
    font-size: 16px;
    pointer-events: none;
    transition:all 0.2s ease-in-out;
    z-index: 1;
  }

  .input-container input:focus + label,
  .input-container input:not(:placeholder-shown) + label {
    top: -14px;
    left: 8px;
    font-size: 16px;
    font-weight: 750;
    color: var(--mainColor);
  }

  .input-container input:focus {
    border-color:var(--mainColor);
  }
.newsletterBody form input:focus:not([name="submitBTN"]) {
  border-bottom: 2.5px solid var(--mainColor);
}
.newsletterBody form input[name="submitBTN"]{
    padding: 6px 12px;
    outline: none;
    border: none;
    width: max-content;
    background: var(--gradientColor);
    color: white;
    border-radius: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 20px;
    margin-top: 8px;
    cursor: pointer;
    transition: all 250ms ease;
}
.newsletterBody form input[name="submitBTN"]:hover{
    transform: translateY(-4px) scale(1.02);
    background-color: var(--mainColor);
    box-shadow: 0 0 10px var(--mainColor);
}
.newsletterBody form label{
    grid-column: 1/3;
    grid-row: 2/3;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(0, 0, 0, 0.75);
    width: max-content;
    white-space: nowrap;
}
.newsletterBody form label a{
  color: rgba(0, 0, 0, 0.75);
}

 #checkBox{
        font-size: 17px;
        overflow: visible;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
}


@media(min-width:750px){
    .newsletterContainer .containerTitle p{
    color: rgba(0, 0, 0, 0.9);
    font-weight: 550;
    text-align: center;
    width: 100%;
    font-size: 20px;
    }
    .newsletterBody form{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 16px;
        padding: 8px;
        box-sizing: border-box;
    }
    #checkBox{
        font-size: 18px;
    }
    .newsletterBody form label input[type='checkbox']{
        height: 22px;
        width: 22px;
    }
    .newsletterBody form label a{
        color: rgba(0, 0, 0, 0.75);
        width: max-content;
    }
    .newsletterBody form input[name="submitBTN"]{
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 24px;
    }
}


footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
}
.containerFooter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.containerFooter h6{
    font-size: 18px;
    margin-left: 6px;
}
footer h4{
    color: var(--mainColor);
    font-size: 24px;
}
footer .containerSocial{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
footer .containerSocial a{
    text-decoration: none;
    background-color: var(--mainColor);
    padding: 8px;
    border-radius: 5px;
}
footer .containerSocial a i{
    color:white;
    font-size: 24px;
}
footer .containerLegalFooter{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.footerLine{
    width: 90%;
    height: 1.5px;
    background-color: var(--darkGray);
}
footer .containerLegalFooter a{
    font-weight: 600;
    margin-left: 12px;
}
footer .autor {
    font-size:clamp(14px,4vw,20px);
    text-align: center;
    opacity: 0.8;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    line-height: 1.35;
    color: white;
    margin-bottom: 8px;
    margin-top: 20px;
}

@media(min-width:750px){
    .containerFooter h6{
        font-size: 20px;
        margin-left: 10px;
    }
    footer .containerSocial{
        display: flex;
        gap: 14px;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
    }
    footer .containerSocial a{
        text-decoration: none;
        background-color: var(--mainColor);
        padding: 9px;
        border-radius: 6px;
    }
    footer .containerSocial a i{
        color:white;
        font-size: 26px;
    }
}