:root {
    /* Paleta de Cores Oficial do Comanda+ */
    --color-primary: #ff7f27;
    --color-primary-dark: #e66d1f;
    --color-secondary: #607d8b;
    --color-text: #333;
    --color-bg-light: #f8f9fa;
    --color-white: #fff;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: var(--color-text);
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.text-primary-custom {
    color: var(--color-primary) !important;
}

.bg-primary-custom {
    background-color: var(--color-primary) !important;
    color: white;
}

/* Navbar */
.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand img {
    height: 40px;
}

@media (min-width: 768px) {
    .navbar-brand img {
        height: 50px;
    }
    .navbar-brand span {
        font-size: 1.25em;
    }
}

.nav-link {
    color: #555 !important;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary) !important;
}

.btn-trial {
    background-color: var(--color-primary);
    color: white !important;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(255, 127, 39, 0.3);
}

.btn-trial:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 127, 39, 0.4);
}

/* Botão com efeito pulse */
.btn-pulse {
    position: relative;
    animation: pulse-animation 2s infinite;
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 127, 39, 0.7);
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

/* Variante azul para botões outline-primary */
.btn-outline-primary.btn-pulse::before {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
    animation: pulse-ring-blue 2s infinite;
}

@keyframes pulse-animation {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 127, 39, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 127, 39, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 127, 39, 0);
    }
}

@keyframes pulse-ring-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
}

.hero-title span {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 30px;
}

/* Mockup / Screenshots */
.browser-mockup {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    background: white;
    border: 1px solid #eee;
}

.browser-header {
    background: #f1f1f1;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #ddd;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #bbb;
}

.browser-dot.red { background-color: #ff5f56; }
.browser-dot.yellow { background-color: #ffbd2e; }
.browser-dot.green { background-color: #27c93f; }

.screenshot-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    border-bottom: 4px solid var(--color-primary);
}

/* Features Section */
.feature-card {
    padding: 30px;
    border-radius: 15px;
    background: white;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--color-primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(255, 127, 39, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    padding: 60px 0 30px;
}

footer h5 {
    color: white;
    margin-bottom: 20px;
}

footer ul {
    padding-left: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .browser-mockup {
        margin-top: 40px;
    }
}
