/**
 * Author: Miquéias Rafael | inst. @miqueias.rafael <rafaelh3r@yahoo.com.br> | Gmail: miqueiasrafael35@gmail.com | Skype: mqstrombonist@hotmail.com
 * Face: miqueias.rafael | Whatsapp: +55(41)98877-3233 or +1(407)984-0901
 * Date: 17/06/2016
 * Version: 1.0
 *  _          _ _ _ _ _ _ _   _ _ _ _ _ _ _   _ _ _ _ _ _ _   _ _ _ _ _ _   _
 *  |#|\#\     |#############| |#############| |#############| |###########| |#|          |#|         |#|  #############  |#|\#\
 *  |#|  \#\   |#|         |#| |#|             |#|         |#| |#|           |#|          |#|         |#|              #  |#| \#\
 *  |#|   /#/  |#|         |#| |#|             |#|_ _ _ _ _|#| |#|_ _ _ _ _  |#|          |#|_ _ _ _ _|#|            #    |#|  /#/
 *  |#|  /#/   |#|_ _ _ _ _|#| |#|_ _ _ _ _ _  |#############| |###########| |#|          |#############|         #       |#|/#/
 *  |#|/#/     |#############| |#############| |#|         |#| |#|           |#|          |#|         |#|            #    |#| \#\
 *  |#| \#\    |#|         |#| |#|             |#|         |#| |#|           |#|          |#|         |#|              #  |#|  \#\
 *  |#|  \#\   |#|         |#| |#|             |#|         |#| |#|_ _ _ _ _  |#|_ _ _ _ _ |#|         |#|           #     |#|   \#\
 *  |#|   \#\  |#|         |#| |#|             |#|         |#| |###########| |###########||#|         |#|  ########       |#|    \#\
 *
 */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    height: 100%;
    padding: 0;
}


.bg-motion {
    --bs-bg-opacity: 1;
    background-color: rgb(15 2 38) !important;
}

.faixa-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faixa-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Botão CTA */
.btn-cta {
    background: #FFD700;
    color: #000 !important;
    font-weight: 700;
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;

    /* animação */
    animation: pulse-scale 1.5s infinite, pulse-shadow 2s infinite;
}

/* Hover */
.btn-cta:hover {
    background: #FFC300;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.7);
}

/* Animação de sombra pulsante */
@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(255, 215, 0, 0.6);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5);
    }
}

/* Animação de escala */
@keyframes pulse-scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Seção interativa */
.interactive-bg-section {
    position: relative;
    overflow: hidden;
    background: #0f0226;
    top: 55px;
}

.h-50vh {
    height: 50vh !important;
}

.h-40vh {
    height: 40vh !important;
}

.h-30vh {
    height: 30vh !important;
}

.h-25vh {
    height: 25vh !important;
}

.interactiveCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    z-index: 0;
}

.interactiveCanvas .homestar {
    height: 100%;
}

.interactiveCanvas .planos {
    height: 40%;
}

.interactive-bg-section .container {
    position: relative;
    z-index: 1;
    /* texto acima do canvas */
}



.pricing-table-miq {
    position: relative;
    top: 30px;
    padding: 60px 15px;
}


.card-miq {
    /* border-radius: .25rem !important;  */
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);

    border-radius: 8px 8px 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.card-miq:hover {
    transform: translateY(-8px);
}

.card-header-miq {
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
    border-radius: 8px 8px 0 0;

    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}


.card-body-miq {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    min-height: 1px !important;
    padding: 1.25rem !important;
}

/* dourado */
.ouro {
    background: #ffd700;
    color: #000;
}

/* prata */
.prata {
    background: #c0c0c0;
    color: #000;
}

/* bronze */
.bronze {
    background: #cd7f32;
    color: #fff;
}


.price-geelis {
    font-size: 1.8rem !important;
    font-weight: bold;
    margin: 15px 0;
    color: #42A704;
    text-align: center !important;
}

.btn-sales {
    background: #42A704 !important;
    border-color: #42A704 !important;
    color: #fff !important;
}

.btn-sales:hover {
    background: #317d02 !important;
    border-color: #42A704 !important;
}

.btn-express-bronze,
.btn-express-ouro {
    background: #0589f6;
    border: none;
    color: #fff !important;
    font-weight: 600;
}

.btn-express-bronze:hover,
.btn-express-ouro:hover {
    background: #0172d0;
}

.btn-express-prata {
    background: #c0c0c0;
    border: none;
    color: #111 !important;
    font-weight: 600;
}

.btn-express-prata:hover {
    background: #858585;
}


.plan-options {
    margin-top: 15px;
}

.plan-options select {
    border-radius: 10px;
    padding: 8px;
}

.features-miq {
    text-align: left;
    font-size: 0.9rem;
    margin-top: 15px;
    list-style-type: none;
    margin-left: 7px;
}

.features-miq li {
    margin-bottom: 6px;
}

.currency-select,
.service-select {
    max-width: 200px;
    margin: 0 auto 15px;
}

.t16 {
    font-size: 16px;
}

.mb-20 {
    margin-bottom: 30px;
}

.mt-2,
.my-2 {
    margin-top: .5rem !important;
}

.btn-block {
    display: block;
    width: 100%;
}


.btn-gs {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 2.2;
    border-radius: .25rem;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}




/* === For phones =================================== */
@media (max-width: 767px) {
    .hide-mobile { display: none !important; }
    
    .faixa-title {
        font-size: 2rem !important;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .container {
        height: auto !important;
    }

    .mb-0 {
        margin-bottom: 0 !important;
    }

    .text-left {
        text-align: left !important;
    }
}

.no-underline {
    text-decoration: none !important;
}

/* === For Iphones olds =================================== */
@media only screen and (max-device-width: 767px) {
    .hide-mobile { display: none !important; }

    .faixa-title {
        font-size: 2rem !important;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .container {
        height: auto !important;
    }

    .mb-0 {
        margin-bottom: 0 !important;
    }

    /* Forçar cor no ícone */ 
    .navbar-toggler .fa .text-write,
    .navbar-toggler .fa .text-branco {
        color: #fff !important;
        /* branco */
        -webkit-text-fill-color: #fff;
        /* Safari iOS */
    }

    /* Garante que o botão não sobreponha */
    .navbar-toggler .text-write {
        color: #fff !important;
        border-color: transparent;
        /* se quiser remover borda azul no iOS */
    }

    button i.text-white,
    button i.text-branco {
        color: #ffffff !important;
        --bs-text-opacity: 9 !important;
    }

    .text-left {
        text-align: left !important;
    }

}

/* === For tablets ================================== */
@media (min-width: 768px) and (max-width:991px) {}