@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root{

    --bg-color: #000;

    --btn-color: #fdfdfd;/* button color*/
    --btn-bg: #0A8DD3;/* button bg color*/

    --primary-text-color: #0A8DD3;
    --header-link-hover: #0A8DD3;
    --input-hover-bd-color: #0A8DD3;
}


html {
    scroll-behavior: smooth;
    font-family: "Ubuntu", sans-serif;
}

header{
    /* background-color: #fff;
    color: #000; */
    color: #b1b1b1;
}


header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
}

.animated-collapse{
    transition: width 0.3s ease;
}


.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 5px;
    padding: 5px 10px;
    transition: background-color 0.5s, color 0.5s;
}
.slider{
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    height: auto;
    overflow: hidden;
}

.slides{
    width: 400%;
    height: auto;
    display: flex;
}

.slides input{
    display: none;
}

.slide{
    width: 25%;
    position: relative;
    transition: 2s;
}

.slide img{
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.manual-navigation{
    position: absolute;
    width: 100%;
    margin-top: -30px;
    display: flex;
    justify-content: center;
}

.manual-btn{
    border: 2px solid #fff;
    padding: 3px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
    margin: 0 5px;
}

.manual-btn:hover{
    background-color: #fff;
}

#radio1:checked ~ .first{
    margin-left: 0;
}

#radio2:checked ~ .first{
    margin-left: -25%;
}

#radio3:checked ~ .first{
    margin-left: -50%;
}

#radio4:checked ~ .first{
    margin-left: -75%;
}

/*.navigation-auto div{
    border: 2px solid #20a6ff;
    padding: 3px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}*/

.navigation-auto{
    position: absolute;
    width: 100%;  
    margin-top: auto;
    bottom: 20px;
    display: flex;
    justify-content: center;
}

.navigation-auto div{
    margin: 0 5px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
    background-color: #fff;
}

#radio2:checked ~ .navigation-auto .auto-btn2{
    background-color: #fff;
}

#radio3:checked ~ .navigation-auto .auto-btn3{
    background-color: #fff;
}

#radio4:checked ~ .navigation-auto .auto-btn4{
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .slide img {
        max-height: 300px;
    }
    
    .manual-navigation {
        margin-top: -20px;
    }
    
    .manual-btn, .navigation-auto div {
        padding: 2px;
        border-radius: 5px;
    }
    
    .navigation-auto {
        bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .slide img {
        max-height: 250px;
    }
    
    .manual-navigation {
        margin-top: -15px;
    }
}


.header-links:hover {
    color: #ffffff;
    /* background-color: var(--header-link-hover); */
}

.primary-text-color{
    color: var(--primary-text-color);
}

.gradient-text{
    background: rgb(215,215,215);
    background: linear-gradient(90deg, rgba(215,215,215,1) 18%, rgba(136,136,136,1) 71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.signup-img-section{
    background-image: url("../assets/images/home/darkbg.png");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

.hero-img-bg-grad{
    background: rgb(126,34,206);
    background: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%);
    filter: blur(50px);
    opacity: 0.5;
}

#dashboard {
    /* transform-origin: bottom center; */
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.8)
        rotate(0deg) rotateX(70deg);
    transition: transform 0.5;
}

.border-gradient{
    background: rgb(219,215,213);
    background: linear-gradient(180deg, rgba(219,215,213,1) 35%, rgba(214,211,233,0) 71%);
    /* background-image: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%); */
    padding: 2px;
    border-radius: 10px;
}
.border-gradient>div{
    /* background-color: var(--bg-color); */
    background-color: var(--bg-color);
    border-radius: inherit;
}

.opacity-0{
    opacity: 0 !important;
}

.opacity-100{
    opacity: 100 !important;
}

.btn{
    padding: 10px 15px;
    width: max-content;
    border-radius: 5px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.btn:hover{

}

.btn:disabled{
    cursor: default;
}

.input{
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    /* outline: none; */
    min-width: 100px;
    border: 1px solid #818080;
    /* transition: border 0.3s; */
}

.input:active, .input:focus, .input:focus-within{
    border: 1px solid var(--input-hover-bd-color) !important;
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 800px;
}
  
.carousel {
    display: inline-block;
    animation: scroll 10s linear infinite;
}
  
.carousel-img {
    display: inline-block;
    margin: 0 20px;
}
  
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer-link{
    color: #c7c6c6;
    transition: color 0.3s;
}

.footer-link:hover{
    color: #fff;
}


/* Style for the collapsible content such as faq commonly known as: accordion */

.faq-accordion {
    background-color: inherit;
    color: #f2f2f2;
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: #e4e4e4;
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition: max-height 0.4s, padding 0.4s;
}

.faq-accordion .active,
.faq-accordion:hover {
    /* background-color: #2e2c2c; */
}

.vip-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background-color: #000000;
    border-radius: 15px;
    border: 2px solid #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

.vip-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid #ffffff;
    border-radius: 16px;
    pointer-events: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.vip-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333333;
}

.vip-header h1 {
    color: #ffffff;
    font-size: 28px;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.vip-header h2 {
    font-size: 22px;
    margin: 10px 0 5px;
    color: #f8f8f8;
}

.promo-tag {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 5px;
}

.vip-features ul, .vip-bonus ul {
    padding-left: 20px;
    margin: 15px 0;
}

.vip-features li, .vip-bonus li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.vip-bonus {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #333333;
}

.vip-bonus h3 {
    margin-top: 0;
    color: #ffffff;
    font-size: 18px;
}

.vip-pricing {
    text-align: center;
    margin-top: 25px;
}

.old-price {
    text-decoration: line-through;
    color: #aaaaaa;
    font-size: 16px;
}

.current-price {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin: 5px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.buy-button {
    background-color: #000000;
    color: white;
    border: 2px solid #ffffff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease;
}

.buy-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsividade */
@media (max-width: 650px) {
    .vip-container {
        margin: 20px 15px;
        padding: 20px;
    }
    
    .vip-header h1 {
        font-size: 24px;
    }
    
    .vip-header h2 {
        font-size: 20px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .buy-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

.steps-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    gap: 20px;
    padding: 0 20px;
}

.step-card {
    flex: 1;
    background-color: #000000;
    border: 2px solid #ffffff;
    border-radius: 15px;
    padding: 25px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.step-number {
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-content {
    margin-top: auto;
}

.step-content h3 {
    color: #ffffff;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-content p {
    line-height: 1.6;
    margin-bottom: 0;
}

/*Alerta*/
.video-alert-header { 
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    padding: 12px 0;
    z-index: 1000; /* Garante que fique acima de outros elementos */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #000000;
    font-family: 'Arial', sans-serif;
}

.alert-message {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    animation: pulse 2s infinite;
}

.alert-icon {
    margin-right: 10px;
    font-size: 20px;
}


.cta-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 0;
    background-color: transparent;
}

.cta-text {
    font-size: 32px; /* Texto grande */
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.cta-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-button {
    background-color: #ffffff; /* Botão branco */
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
    background-color: #f8f8f8;
}

html {
  scroll-behavior: smooth;
}

@keyframes grow {
  to { width: 100%; }
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-text {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .cta-button {
        font-size: 20px;
        padding: 16px 40px;
    }
}

@media (max-width: 480px) {
    .cta-text {
        font-size: 20px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 14px 30px;
    }
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Responsividade */
@media (max-width: 768px) {
    .alert-message {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .alert-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .alert-message {
        font-size: 12px;
        flex-wrap: wrap;
        padding: 5px;
    }
    
    .alert-icon {
        margin-right: 5px;
        font-size: 16px;
    }
}

/* Responsividade */
@media (max-width: 900px) {
    .steps-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-card {
        min-height: auto;
        padding: 20px;
    }
    
    .step-number {
        font-size: 40px;
    }
}

@media (max-width: 500px) {
    .steps-container {
        padding: 0 10px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
}
@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: #040404;
        color: #ffffff;
        overflow-y: auto;
        box-shadow: 3px 0px 3px 2px #9f9f9f;
    }

    .header-links{
        color: rgb(255, 255, 255);
    }
    
}