/*
Theme Name: Inovarsoft - ERP para Varejo
Theme URI: https://inovarsoftsolucoes.com.br
Description: Tema WordPress profissional para Inovarsoft - Revenda Autorizada LC Sistemas
Version: 2.0.0
Author: Inovarsoft
Author URI: https://inovarsoftsolucoes.com.br
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inovarsoft
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0A0F1E;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

#wpadminbar {
    display: none !important;
}

html {
    margin-top: 0 !important;
}

a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #7CB9E8;
}

button, .button, input[type="button"], input[type="submit"] {
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Header & Navigation */
header {
    background-color: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4A90E2 0%, #7CB9E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: #E0E0E0;
    font-size: 0.95rem;
    font-weight: 500;
}

nav a:hover {
    color: #4A90E2;
}

.btn-primary {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #E0E0E0;
    padding: 0.7rem 1.5rem;
    border: 1.5px solid #4A90E2;
    border-radius: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #4A90E2;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A0F1E 0%, #1A2F5F 50%, #0F1A35 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0A0F1E 0%, #1A2F5F 50%, #0F1A35 100%);
    padding: 8rem 2rem;
    text-align: center;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 100px 100px, rgba(74, 144, 226, 0.15) 0%, transparent 200px),
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 300px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero h1 span {
    background: linear-gradient(135deg, #4A90E2 0%, #7CB9E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #B0B0B0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #4A90E2 0%, #7CB9E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stat-label {
    color: #B0B0B0;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.5px;
}

section h2 span {
    background: linear-gradient(135deg, #4A90E2 0%, #7CB9E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section > p {
    color: #B0B0B0;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
}

/* Sistemas Section */
.sistemas {
    background: linear-gradient(180deg, #0F1527 0%, #0A0F1E 100%);
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.sistemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.sistema-card {
    background: linear-gradient(135deg, rgba(26, 47, 95, 0.8) 0%, rgba(15, 21, 39, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.sistema-card:hover {
    border-color: #4A90E2;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.sistema-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.sistema-card .subtitle {
    color: #4A90E2;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sistema-card p {
    color: #B0B0B0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Funcionalidades Grid */
.funcionalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.funcionalidade-item {
    background: linear-gradient(135deg, rgba(26, 47, 95, 0.6) 0%, rgba(15, 21, 39, 0.6) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #4A90E2;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.funcionalidade-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
}

.funcionalidade-item h4 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.funcionalidade-item p {
    color: #B0B0B0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Planos Grid */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.plano-card {
    background: linear-gradient(135deg, rgba(26, 47, 95, 0.8) 0%, rgba(15, 21, 39, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
}

.plano-card:hover {
    border-color: #4A90E2;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.plano-card.destaque {
    border: 2px solid #4A90E2;
    transform: scale(1.05);
}

.plano-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.plano-card .subtitle {
    color: #B0B0B0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plano-preco {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #4A90E2 0%, #7CB9E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0;
    font-weight: 700;
}

.plano-preco small {
    font-size: 1rem;
    color: #B0B0B0;
}

.plano-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    color: #B0B0B0;
}

.plano-card li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
    font-size: 0.95rem;
}

.plano-card li:before {
    content: "✓ ";
    color: #4A90E2;
    font-weight: bold;
    margin-right: 0.8rem;
}

/* Contato Section */
.contato {
    background: linear-gradient(180deg, #0F1527 0%, #0A0F1E 100%);
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.contato-form {
    max-width: 600px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contato-form input,
.contato-form textarea {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(26, 47, 95, 0.6) 0%, rgba(15, 21, 39, 0.6) 100%);
    border: 1px solid rgba(74, 144, 226, 0.2);
    color: white;
    border-radius: 0.6rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: #7B8BA0;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    background: linear-gradient(135deg, rgba(26, 47, 95, 0.9) 0%, rgba(15, 21, 39, 0.9) 100%);
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contato-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 47, 95, 0.4) 0%, rgba(15, 21, 39, 0.4) 100%);
    border-radius: 0.8rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.contato-item h4 {
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contato-item a {
    color: #4A90E2;
    font-weight: 600;
}

.contato-item a:hover {
    color: #7CB9E8;
}

/* Footer */
footer {
    background-color: #050A15;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    color: #B0B0B0;
}

footer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}
