:root {
    --verde-gerar: #1b7a3e;
    --verde-escuro: #0f5229;
    --verde-claro: #27ae60;
    --verde-ultra-light: #e8f5ee;
    --amarelo-gerar: #f5a623;
    --amarelo-light: #fef8ec;
    --cinza-dark: #1a2332;
    --cinza-text: #4a5568;
    --branco: #ffffff;
    
    /* Novas cores do Menu */
    --menu-bg: #0d131e;
    --menu-text: #767779;
    --logo-gerar: #0e5d8c;
    --logo-softec: #0b3353;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--cinza-text);
}

.navbar-site {
    background-color: var(--menu-bg) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-family: 'Michroma', sans-serif;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.brand-gerar {
    color: var(--logo-gerar);
}

.brand-softec {
    color: var(--logo-softec);
}

.navbar-site .nav-link {
    color: var(--menu-text) !important;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.navbar-site .nav-link:hover {
    color: var(--branco) !important;
}

.btn-area-cliente {
    background-color: var(--logo-softec);
    color: white !important;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 400; /* Removido o negrito */
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-area-cliente:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 51, 83, 0.2);
}

.btn-whatsapp-demo {
    background-color: var(--logo-gerar);
    color: #767779 !important;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 700; /* Negrito para melhor leitura */
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp-demo:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 93, 140, 0.2);
}

.hero-fullscreen {
    height: calc(100vh - 72px); /* Altura total menos a navbar */
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6)), url('/static/img/img_site2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.hero-phrase-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 2rem 0;
    width: 100%;
}

.hero-phrase {
    font-family: 'Michroma', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    color: var(--branco);
}

.hero-gradient {
    background: linear-gradient(135deg, var(--cinza-dark) 0%, #0f2d1a 100%);
    color: white;
    padding: 100px 0;
}

.logos-strip-premium {
    background-color: #767779;
    color: white;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logos-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.strip-subheadline {
    color: #0b3353 !important; /* Azul escuro forçado */
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    flex: 1;
    text-align: center;
    line-height: 1.5;
}

.strip-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-top: 5px;
    color: #0b3353 !important;
}

.strip-bold-intro {
    font-weight: 700;
    color: #0b3353 !important;
}

.mapa-logo-img {
    height: 50px; /* Voltando para o tamanho padrão para não ficar grande */
    width: auto;
}

/* CARROSSEL DE LOGOS */
.logo-ticker {
    display: flex;
    overflow: hidden;
    user-select: none;
    padding: 30px 0;
    background-color: rgba(255,255,255,0.05);
    border-radius: 12px;
    position: relative;
    /* Máscara de desfoque nas bordas para um efeito mais premium */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.logo-ticker-item {
    padding: 0 40px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-ticker-item img {
    height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: none; /* Cores originais conforme solicitado */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-ticker-item:hover img {
    filter: none;
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CARDS DE CONTEÚDO */
.card-premium-light {
    background-color: var(--branco);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.card-premium-light:hover {
    transform: translateY(-10px);
}

.card-bio {
    background: linear-gradient(135deg, var(--cinza-dark) 0%, #0d1e13 100%);
    color: var(--branco);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.bio-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--amarelo-gerar);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.bio-quote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -40px;
    left: -20px;
    opacity: 0.1;
    color: var(--branco);
}

.bio-founder-info {
    border-left: 3px solid var(--amarelo-gerar);
    padding-left: 20px;
}

/* CTA BANNER */
.cta-banner-dark {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('/static/img/img_site2.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.section-modulos-premium {
    background: linear-gradient(135deg, #0d131f 0%, #0b3353 100%);
    color: white;
}

.card-modulo-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-modulo-premium:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-modulo-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-modulo-content {
    padding: 2rem;
}

.card-modulo-embreve {
    border-style: dashed;
    opacity: 0.8;
}

.card-modulo-embreve:hover {
    opacity: 1;
}

.tag-embreve {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-site {
    background-color: var(--cinza-dark);
    color: #e2e8f0;
    padding: 60px 0 30px;
}

.text-amarelo {
    color: var(--amarelo-gerar);
}

.bg-amarelo {
    background-color: var(--amarelo-gerar);
}

.bg-verde {
    background-color: var(--verde-gerar);
}

.section-oferta-premium {
    background: linear-gradient(115deg, #0e5d8c 0%, #0b3353 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.banner-urgencia-premium {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.banner-urgencia-premium:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.01);
}

.urgencia-icon {
    font-size: 2.5rem;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255, 0, 0, 0.7)); }
    70% { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.5)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255, 0, 0, 0)); }
}

/* EFEITOS SURPRESA: OFERTA PREMIUM */
.glass-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.neon-border-glow {
    position: relative;
}

.neon-border-glow::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #0e5d8c, #6ee89a, #0e5d8c);
    background-size: 400%;
    z-index: -1;
    border-radius: 32px;
    filter: blur(10px);
    opacity: 0.3;
    animation: neon-glow 10s linear infinite;
}

@keyframes neon-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.shiny-sweep {
    position: relative;
    overflow: hidden;
}

.shiny-sweep::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: sweep 4s infinite;
}

@keyframes sweep {
    0% { left: -100%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

.floating-icon {
    position: absolute;
    opacity: 0.05;
    color: white;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.badge-desconto-3d {
    background: linear-gradient(135deg, #ffd700 0%, #f5a623 100%);
    color: #0b3353;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.5rem;
    display: inline-block;
    transform: rotate(-3deg);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
    border: 2px solid white;
}

/* DEMO SECTION PREMIUM */
.demo-card-glass {
    background: rgba(14, 93, 140, 0.25);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.form-control-dark {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.form-control-dark:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #0e5d8c !important;
    box-shadow: 0 0 15px rgba(14, 93, 140, 0.3) !important;
    outline: none;
}

.form-control-dark::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.img-software-hero {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.img-software-hero:hover {
    transform: scale(1.02) translateY(-5px);
}

/* CARDS DE MÓDULOS PREMIUM */
.card-modulo-premium {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    height: 100%;
}

.card-modulo-premium:hover {
    transform: translateY(-10px);
    border-color: #0e5d8c;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-modulo-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-modulo-content {
    padding: 2rem;
}

.price-tag-premium {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 0.9rem;
    color: white;
}

.promo-price {
    color: #ffd700;
    font-weight: 800;
    font-size: 2rem;
}
