/* Reset CSS com fundo escuro */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    background: none repeat scroll 0 0 transparent;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    outline: 0;
}

html,
body {
    width: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
}

/* Configuração de fundo escuro */
html {
    font-size: 16px;
    font-family: sans-serif;
    height: 100vh;
    background-color: #1a1a1a;
    scroll-behavior: smooth;
}

body {
    color: rgba(255, 255, 255, 0.9);
    height: auto;
    min-width: 320px;
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 16px;
    background-color: #1a1a1a;
}

/* Site principal com fundo escuro */
#site {
    min-width: 980px;
    overflow: hidden;
    background-color: #1a1a1a;
}

/* Todos os blocos principais com fundo escuro */
.gpc-b {
    width: 100%;
    min-height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    background-color: #2d2d2d !important;
    border-width: 0px;
    border-style: solid;
    border-color: rgb(80, 80, 80);
    border-right: 0 none !important;
    border-left: 0 none !important;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 50%;
}

.gpc-b_sobreposicao {
    background-color: #2d2d2d;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
}

.gpc-e {
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.gpc-e .c {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    opacity: 1;
    -o-tab-size: 4;
    tab-size: 4;
    -moz-tab-size: 4;
    white-space: pre-wrap;
    word-wrap: break-word;
    float: left;
    transition-property: background-color, color, opacity, transform;
    will-change: background-color, color, opacity, transform;
    color: rgba(255, 255, 255, 0.9);
}

.gpc-e .c * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
    will-change: background-color, color, opacity, transform;
    color: inherit;
}

/* Textos com cores claras */
.gpc-e .c.e_titulo,
.gpc-e .c.e_texto {
    color: rgba(255, 255, 255, 0.9);
}

.gpc-e .c.e_titulo h1,
.gpc-e .c.e_titulo h2,
.gpc-e .c.e_titulo h3,
.gpc-e .c.e_titulo h4,
.gpc-e .c.e_titulo h5,
.gpc-e .c.e_titulo h6 {
    color: rgba(255, 255, 255, 0.9);
}

/* Botões com melhor contraste */
.gpc-e .c.e_botao {
    cursor: pointer;
    user-select: none;
    -webkit-transition: transform, background-color, color, opacity .25s ease-out;
    -o-transition: transform, background-color, color, opacity .25s ease-out;
    transition: transform, background-color, color, opacity .25s ease-out;
    overflow: hidden;
    line-height: 1.3;
    text-decoration: none;
    background-color: rgb(4, 177, 105);
    background-image: none;
    color: rgb(255, 255, 255);
    border: 0px;
    border-radius: 3px;
    text-align: center;
    white-space: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 8px;
    flex-wrap: nowrap;
    align-content: center;
}

.gpc-e .c.e_botao:hover {
    background-color: rgb(2, 150, 88);
    transform: translateY(-2px);
}

/* Caixas e containers com fundo escuro */
.gpc-e.e_caixa .c {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-background-size: auto auto;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 50%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: #3d3d3d;
    border: 1px solid #555;
}

/* Imagens mantém suas características */
.gpc-e.e_imagem .c .imagem_fundo {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    border: 0px transparent solid;
    border-radius: inherit;
}

/* Centralização */
.centralizar {
    position: relative;
    width: 960px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
}

/* Links com cores claras */
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    color: #4da6ff;
}

a:hover {
    text-decoration: underline;
    color: #66b3ff;
}

/* Elementos de lista */
ol,
ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsividade */
@media all and (max-width:800px) {
    #site {
        min-width: 360px;
    }

    .centralizar {
        width: 360px;
    }
    
    .gpc-e.esconder_desktop,
    .gpc-e.gpc-e.dd.esconder_desktop,
    .gpc-e.gpc-e.dm.esconder_desktop,
    .gpc-b.esconder_desktop {
        display: block;
    }

    .gpc-e.esconder_mobile,
    .gpc-b.esconder_mobile {
        display: none !important
    }

    .gpc-e.dd {
        display: none
    }

    .gpc-e.dm,
    .gpc-e.dd.gpc-e.dm {
        display: block
    }
}

/* Elementos específicos com ID */
.gpc-e.dm {
    display: none
}

.gpc-e.dd,
.gpc-e.dd.gpc-e.dm {
    display: block
}

.gpc-e.esconder_desktop,
.gpc-e.gpc-e.dd.esconder_desktop,
.gpc-e.gpc-e.dm.esconder_desktop,
.gpc-b.esconder_desktop {
    display: none;
}

/* Elementos HTML específicos */
.gpc-e.e_html .c {
    word-break: break-word;
    white-space: normal;
    color: rgba(255, 255, 255, 0.9);
}

/* Formulários */
input,
.select,
textarea,
input:hover,
.select-hover,
textarea:hover,
input:focus,
.select-focus,
textarea:focus,
input:disabled,
.select-disabled,
textarea:disabled {
    background: #3d3d3d;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #555;
    -webkit-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    color: rgba(255, 255, 255, 0.9);
}

form textarea,
form input,
form option {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    background: #3d3d3d;
}

/* Scrollbar escura */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #2d2d2d;
}

::-webkit-scrollbar-track {
    background-color: #2d2d2d;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* IDs específicos com fundo escuro */
#b_654335_1_171882955448472998 {
    height: 44px;
    background-color: #333 !important;
}

#b_654335_1_171885702752388395 {
    height: 1055px;
    background-color: #2d2d2d !important;
    background-image: none;
}

#b_654335_1_171885800344948823 {
    background-color: #1a1a1a !important;
}

/* Força todos os elementos com background branco para escuro */
*[style*="background-color: rgb(255, 255, 255)"],
*[style*="background-color: #fff"],
*[style*="background-color: white"] {
    background-color: #2d2d2d !important;
}

/* Força textos escuros para claros */
*[style*="color: rgb(0, 0, 0)"],
*[style*="color: #000"],
*[style*="color: black"] {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Tema escuro para o body */
body.dark-theme {
    background-color: #1a1a1a !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Headers e navegação escura */
.header {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #444 !important;
}

.header .logo h1 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navmenu ul li a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navmenu ul li a:hover {
    color: #66b3ff !important;
}

/* Seções escuras */
section {
    background-color: #1a1a1a !important;
}

.container,
.container-fluid {
    background-color: transparent !important;
}

/* Cards e elementos com background */
.card,
.card-body,
.bg-white {
    background-color: #2d2d2d !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-color: #444 !important;
}

/* Botões */
.btn-primary {
    background-color: #4da6ff !important;
    border-color: #4da6ff !important;
}

.btn-primary:hover {
    background-color: #66b3ff !important;
    border-color: #66b3ff !important;
}

/* Hero section */
#hero {
    background-color: #1a1a1a !important;
}

/* Footer */
.footer {
    background-color: #2d2d2d !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-top: 1px solid #444 !important;
}

/* Services Section - Cards de Produtos */
.services .service-item {
    background-color: #2d2d2d !important;
    border: 1px solid #444 !important;
    min-height: 300px !important;
    padding: 25px !important;
    border-radius: 15px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 25px !important;
    transition: all 0.3s ease !important;
}

.services .service-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    border-color: #4da6ff !important;
}

.services .service-item .service-image-side {
    width: 140px;
    height: 140px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4da6ff 0%, #66b3ff 100%);
    flex-shrink: 0;
    position: relative;
}

.services .service-item .service-img-large {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.services .service-item:hover .service-img-large {
    transform: scale(1.05);
}

.services .service-item .service-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
}

.services .service-item h3 {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 26px !important;
    margin-bottom: 15px !important;
    text-align: left !important;
    transition: color 0.3s ease !important;
    line-height: 1.3;
}

.services .service-item:hover h3 {
    color: #66b3ff !important;
}

.services .service-item p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    flex: 1 !important;
    text-align: left !important;
    font-size: 16px !important;
}

.services .service-item .read-more {
    color: #4da6ff !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 12px 25px !important;
    border: 2px solid #4da6ff !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    align-self: flex-start !important;
    display: inline-flex !important;
    align-items: center !important;
}

.services .service-item .read-more:hover {
    background-color: #4da6ff !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
}

.services .service-item .read-more i {
    margin-left: 8px !important;
}

/* Classes específicas de cores para os items */
.services .service-item.item-cyan .service-image-side {
    background: linear-gradient(135deg, #0dcaf0 0%, #17a2b8 100%);
}

.services .service-item.item-orange .service-image-side {
    background: linear-gradient(135deg, #fd7e14 0%, #ff9500 100%);
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .services .service-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
        padding: 20px !important;
        margin-bottom: 30px;
        min-height: auto !important;
    }
    
    .services .service-item .service-image-side {
        width: 120px;
        height: 120px;
        align-self: center;
    }
    
    .services .service-item .service-img-large {
        width: 100px;
        height: 100px;
    }
    
    .services .service-item .service-content-side {
        padding-left: 0;
        text-align: center;
    }
    
    .services .service-item h3 {
        text-align: center !important;
        font-size: 22px !important;
    }
    
    .services .service-item p {
        text-align: center !important;
    }
    
    .services .service-item .read-more {
        align-self: center !important;
    }

    .hero h1 {
        font-size: 2.2em !important;
        line-height: 1.3 !important;
    }
    
    .hero p {
        font-size: 1.1em !important;
    }
    
    .stats-container {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .btn-get-started {
        font-size: 1.1em !important;
        padding: 15px 30px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-content-side {
        padding: 15px !important;
    }
    
    .final-countdown {
        font-size: 1.5em !important;
    }
}

/* Estilos otimizados para conversão */

/* Animações e efeitos visuais */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0,-30px,0); }
    70% { transform: translate3d(0,-15px,0); }
    90% { transform: translate3d(0,-4px,0); }
}

/* Botões CTAs otimizados */
.btn-get-started,
.read-more {
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.btn-get-started:hover,
.read-more:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-get-started:hover::before {
    left: 100%;
}

/* Cards de produtos responsivos */
.service-item {
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.service-item:hover {
    transform: translateY(-8px) !important;
    border-color: #28a745 !important;
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.15) !important;
}

/* Badges e elementos de urgência */
.service-item .badge {
    animation: pulse 2s infinite;
}

/* Melhorias de usabilidade */
.service-item a {
    text-decoration: none !important;
}

.urgency-timer {
    animation: bounce 2s infinite;
}

.social-proof-badge {
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading states */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #28a745;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Melhorias para acessibilidade */
.btn-get-started:focus,
.read-more:focus {
    outline: 3px solid #28a745;
    outline-offset: 2px;
}

/* Otimizações para conversão */
.price-highlight {
    position: relative;
}

.price-highlight::after {
    content: '🔥';
    position: absolute;
    top: -10px;
    right: -10px;
    animation: bounce 1.5s infinite;
}

/* Hover states para mobile */
@media (hover: none) {
    .service-item:hover {
        transform: none !important;
    }
    
    .btn-get-started:hover {
        transform: none !important;
    }
}

/* Microinterações */
.info-item {
    transition: transform 0.2s ease;
}

.info-item:hover {
    transform: scale(1.02);
}