:root {

    --bg-color-dark: #141721;
    --bg-color-light: #161b2a;
    --bg-color-light-2: #202F58;
    --bg-color-cards: #1b2747;
    --green: #00ff76;
    --green-light: #99CEAE;
    --green-dark: #03ad61;
    --blue: #0a3fd0;
    --blue-dark: #1E3D8F;
    --light-blue: #8aa9ff;
    --danger-color: #E61948;
    --light-bg: #F4F5F7

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    scroll-behavior: smooth;
    font-family: "Plus Jakarta Sans", serif;
}

body {
    overflow-x: hidden;
    width: 100%;
    background-color: var(--bg-color-dark);
    font-size: 16px;
}

h2{
    font-size: 30px;
    font-weight: 700;
    color: var(--green);
}

h3{
    font-size: 20px;
    font-weight: 700;
    color: white;
}

h4{
    color: white;
}

.table-plans-details th{
    color: white;
}
/* INICIO HEADER */


/* video mobile */
.video-mobile {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

.video-mobile video {
    width: 100%;
    height: 100%;
    margin-top: -35px;

}


/* hero */
.hero{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    margin-bottom: 50px;
}

.hero-text h1 {
    margin-bottom: 30px;
    font-size: 30px;
    color: white;
}

.hero-text span {
    color: var(--green);
}

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
}

.descargar-box,
.descargar-box-2 {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--blue);
    border-radius: 20px;
    padding: 20px 10px;
}

.descargar-box h2 {
    margin: 50px 0 30px 0;
    color: white;
    width: 45%;
    text-align: center;
    text-transform: uppercase;
}

.descargar-box span {
    color: var(--light-blue);
}

.descargar-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.descargar-btns img {
    height: 50px;
}

.ico-descargar {
    width: 80px;
    height: 80px;
    background-color: var(--blue);
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: relative;
    top: 60px;
    margin: 0 auto;
    z-index: 1;
}

.hero-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.hero-img img {
    width: 75%;
}

/* FIN HEADER */

/* INICIO FEATURES */
.features {
    background-color: var(--bg-color-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.features-bg-right,
.features-bg-left {
    position: absolute;
    top: 820px;
    height: 400px;
}

.features-bg-right {
    left: 0;
}

.features-bg-left {
    right: 0;
}

.arrow {
    height: 80px;
}

.features h2, .faqs-container h2 {
    margin-bottom: 50px;
    font-size: 30px;
    /* width: 90%; */
    text-align: center;
    color: #00ff76;
}

/* cards */
.cards-features-box {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cards-features-box i {
    font-size: 25px;
    cursor: pointer;
}

/* section feature + cost */

.table-plans {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: auto;
    gap: 36px;
    margin-bottom: 48px;
}

.table-plans h3 {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.table-plans h3 small {
    font-size: 70%;
    color: var(--green);
}

table.table-plans-details {
    margin: 0;
    padding: 0;
    border: 1px solid white;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
}

.table-plans-details th,
.table-plans-details td {
    padding: 8px;
    text-align: center;
    font-size: 13px;
}

.table-plans-details th {
    background: var(--blue-dark);
    font-weight: 700;
}

.table-plans-details td {
    background: var(--bg-color-dark);
}

table.table-plans-details tr th:first-child,
table.table-plans-details tr td:first-child {
    text-align: left;
}

table.table-plans-details tr th:nth-child(2) {
    background: var(--blue);
}

table.table-plans-details tr td:nth-child(2) {
    background: var(--bg-color-cards);
}

.table-plans-details td .feature-table-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 3px 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.table-plans-details td .feature-table-tag img {
    height: 16px;
    width: auto;
}

.feature-table-tag.todos {
    background: var(--green-dark);
}

.feature-table-tag.limitados {
    background: var(--blue-dark);
    opacity: 0.7;
}

.feature-table-tag.nao {
    background: var(--danger-color);
    opacity: 0.7;
}


.card-premium-cost {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 24px;
    margin-top: 50px;
}

.card-premium-cost .premium-cost-text p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 24px;
    text-align: center;
}

.card-premium-cost .premium-cost-text p.premium-cost-title {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 8px;
}

.card-premium-cost .premium-cost-text p.premium-prueba {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    font-weight: 300;
}

.card-premium-cost .card-premium-cost-prices {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
    gap: 20px;
    width: 100%;
}

.card-premium-cost .card-premium-cost-prices span{
    text-align: center;
}

@media screen and (max-width: 768px) {
    .card-premium-cost .card-premium-cost-prices {
        flex-direction: column;
        align-items: center;
    }
    
}

.card-premium-cost .card-premium-cost-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    background: var(--bg-color-dark);
    border: solid 1px var(--bg-color-light-2);
    width: 100%;
    padding: 46px 20px;
    font-size: 16px;
    position: relative;
}

.card-premium-cost .card-premium-cost-price h4 {
    font-size: 18px;
    font-weight: 700;
}

.card-premium-cost .card-premium-cost-price p{
    color: var(--green);
    font-size: 20px;
    text-decoration: line-through;
}

.card-premium-cost .card-premium-cost-price h4,
.card-premium-cost .card-premium-cost-price p {
    margin: 0;
}

.card-premium-cost .card-premium-cost-price.preferida {
    background: var(--bg-color-cards);

}

.card-premium-cost-price-tag {
    position: absolute;
    background-color: var(--green-dark);
    color: fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    padding: 3px 6px;
    top: -15px;
    border-radius: 5px;
}

.oferta{
    background-color: var(--bg-color-light);
    border: 1px solid var(--green);
}

.countdown-container{
    width: 100%;;
}

.card-premium-cost-prices-container{
    width: 100%;
    background-color: var(--bg-color-light-2);
    border: 1px solid var(--green);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

@media screen and (min-width: 768px) {
    .countdown {
        margin: 50px 0;
    }
    
}

.countdown-number{
    color: var(--green);
    font-size: 30px;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .countdown-number {
        font-size: 80px;
    }
    
}

.countdown-label{
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .countdown-label {
        font-size: 24px;
    }
    
}

.countdown-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-premium-cost .descargar-box {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: auto;
    padding: 24px;
    margin-top: 24px;
}

.card-premium-cost .descargar-box h2 {
    font-size: 20px;
    margin: 0;
}

.card-premium-cost .descargar-box img {
    height: 30px;
    margin: 0;
}

.carrusel {
    display: flex;
    gap: 20px;
    /* Espaciado entre tarjetas */
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    margin: 0 15px;
    padding: 0;
    /* Evita padding interno */
    scroll-snap-type: x mandatory;
    /* Activa el snapping */
}

.card {
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--bg-color-cards);
    padding: 0 30px;
    margin: 0;
    border-radius: 10px;
    box-sizing: border-box;
    scroll-snap-align: start;
}

.card hr {
    width: 100%;
    height: 8px;
    background-color: var(--green);
    border: none;
}

.card h3 {
    margin: 30px 0;
    color: var(--green);
}

.card p {
    margin-bottom: 30px;
}


/* features mockup img */
.features-celular {
    /* background-color: var(--bg-color-dark); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    width: 100%;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.features-celular img {
    width: 300px;
    margin-top: 50px;
}

/* FIXEDS */
.btn-slide {
    bottom: 30px;
    right: 30px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    line-height: 50px;
    padding: 0px;
    border-radius: 30px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.7);
    background: var(--green-dark);
    z-index: 1000;
}

.btn-slide:active {
    box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.7);
    -webkit-transform: scale(0.98);
    transform: scale(0.96);
}

.btn-slide:hover {
    background: #151926;
    border: 3px solid var(--green);
    width: 500px;
    border-radius: 30px;
    transition: all .5s ease;
    justify-content: end;


}

.img-hover {
    display: none;
}

.btn-slide:hover .img-hover {
    display: block;
    margin-right: 30px;
    transition: all .5s ease;
}

@media (max-width: 768px) {
    .btn-slide {
        display: none;
    }
}

#click-me {
    color: #fff;
    text-align: center;
    cursor: pointer;
    border: 3px solid var(--green);
    -moz-animation: shakeme 3s infinite;
    -o-animation: shakeme 3s infinite;
    -webkit-animation: shakeme 3s infinite;
    animation: shakeme 3s infinite;
}

@keyframes shakeme {
    0% {
        scale: 1;
    }

    5% {
        scale: 0.7;
    }

    10% {
        scale: 1.5;
    }

    15% {
        scale: 1.1;
    }

    20% {
        scale: 1.4;
    }

    30% {
        scale: 1.1;
    }
}

#click-me:hover {
    animation: none;
    padding: 0 30px;
}



/* INICIO BANNER */
.banner-ico-descargar {
    width: 100px;
    height: 100px;
    background-color: var(--green-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: relative;
    top: -45px;
    margin: 0 auto;
    z-index: 1;
}


.banner-ico-descargar img {
    width: 40px;
    margin: 0;
}

.banner-text-box {
    width: 100%;
    background-color: var(--blue);
    position: relative;
    top: -90px;
}

.banner-text-box h2 {
    text-align: center;
    font-weight: 100;
    margin: 0 auto;
    width: 50%;
    margin-top: 80px;
    margin-bottom: 40px;
}

.banner-text-box strong {
    font-weight: 700;
}

.descargar-box-container {
    padding: 20px;
}

.descargar-box-container h2 {
    margin: 10px 0 30px 0;
}

.ico-bottom {
    width: 100%;
}

/* INICIO FIXED MOBILE */
.fixed-mobile {
    background-color: var(--bg-color-light);
    border-top: 3px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 15px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-mobile.visible {
    visibility: visible;
    opacity: 1;
}

.store {
    display: none;
}

.fixed-mobile h2 span {
    color: var(--light-blue);
}

.fixed-mobile h2 {
    font-size: 30px;
}

.ico-descargar-2 {
    width: 80px;
    height: 80px;
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: fixed;
    bottom: 90px;
    left: 40%;
    margin: 0 auto;
    z-index: 1001;
}

.fixed-mobile-stores {
    display: flex;
    gap: 20px;
}

.fixed-mobile-stores img {
    width: 150px;
}

/* FAQs */
.faqs-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-carousel {
    width: 90%;
    max-width: 760px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid #ddd;
}
.faq-item {
    border-bottom: 1px solid #ddd;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    padding: 15px 20px;
    background: var(--blue-dark);
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover {
    background: var(--blue);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 35px;
    background: var(--bg-color-light);
    transition: max-height 0.3s ease;
}
.faq-answer p {
    margin: 15px 0;
    font-size: 14px;
    color: #fff;
}

.faq-answer ol{
    margin-left: 20px;
    font-size: 14px;
}

.faq-answer ol li{
    margin-bottom: 15px;
}

.faq-answer video, .faq-answer img{
    max-height: 500px;
    margin: 25px 0;
}

.faq-question .icon {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}
.faq-question.active .icon {
    transform: rotate(90deg);
}
.faq-answer.active {
    max-height: 1000px;
}

/* RESPONSIVE */
.desktop {
    display: none;
}

@media screen and (min-width: 769px) {
    .mobile {
        display: none;
    }

    .desktop {
        display: flex;
    }

    .hero {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
    }

    .hero-text {
        width: 50%;
    }

    .hero-text h1 {
        font-size: 50px;
        line-height: 1.2;
    }

    .descargar-box {
        max-width: 450px;
        align-items: start;
        margin: 0 0 50px 0;
        display: flex;
    }

    .descargar-box h2 {
        text-align: start;
        margin-top: 0;
        font-size: 30px;
        width: 100%;
    }

    .ico-descargar {
        top: 125px;
        right: -135px;
        display: flex;
    }

    .hero-img {
        width: 40%;
        margin: 0;
    }

    .hero-img img {
        width: 65%;
        margin-bottom: 35px;
    }

    .features-bg-right,
    .features-bg-left {
        top: 1200px;
        scale: 1.3;
        height: 500px;
    }

    .arrow {
        height: 150px;
    }

    .features h2, .faqs-container h2 {
        font-size: 50px;
    }

    .cards-features-box {
        gap: 50px;
        flex-wrap: wrap;
        align-items: start;
        max-width: 1280px;
    }
    
    .cards-features-box i {
        display: none;
    }
    
    .table-plans {
        width: 100%;
        max-width: 1000px;
    }
    
    .table-plans h3 {
        font-size: 30px;
    }

    .table-plans-details th,
    .table-plans-details td {
        padding: 20px;
        font-size: 20px;
        color: white;
    }
    
    .table-plans-details td .feature-table-tag {
        font-size: 14px;
        padding: 5px 10px;
    }
    
    .card-premium-cost {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 1280px;
        gap: 24px;
        align-items: center;
    }
    
    .card-premium-cost .premium-cost-text p {
        font-size: 18px;

    }
    
    .card-premium-cost .premium-cost-text p.premium-cost-title {
        font-size: 23px;
    }
    
    .card-premium-cost .card-premium-cost-price {
        font-size: 18px;
    }
    
    .card-premium-cost .card-premium-cost-price h4 {
        font-size: 24px;
        color: white;
    }
    
    .card-premium-cost-price-tag {
        font-size: 16px;
        padding: 5px 10px;
    }
    
    .card-premium-cost .descargar-box {
        max-width: 625px;
        width: 100%;
        display: flex;
        flex-direction: row;
    }
    
    .card-premium-cost .descargar-box img {
        height: 50px;
    }
    
    .carrusel {
        display: flex;
        justify-content: space-between;
        gap: 50px;
        overflow-x: hidden;
        flex-wrap: wrap;
        margin: 0 15px;
    }
    
    .card {
        flex: none;
        width: 350px;
        height: 350px;
        text-align: center;
    }
    
    .features-celular {
        width: 100%;
        border-radius: 0%;
        height: 100%;
    }
    
    
    .banner-ico-descargar {
        top: -50px;
    }
    
    .banner-text-box {
        width: 100%;
        top: -100px;
    }
    
    .descargar-box-container {
        width: 100%;
        max-width: 800px;
    }

    .descargar-box-2 {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .descargar-box-container h2 {
        margin: 0;
        font-size: 30px;
    }
    
    .ico-bottom {
        width: 30%;
        margin-top: 50px;
    }
}