/* Solaris ERP Landing Page Styles */

:root {
    /* Brand Colors - baseado no logo (laranja/amarelo e azul/teal) */
    --color-primary: hsl(42, 70%, 60%);
    --color-primary-light: hsl(45, 75%, 70%);
    --color-secondary: hsl(190, 65%, 55%);
    --color-secondary-light: hsl(195, 70%, 65%);
    
    /* Neutral Colors */
    --color-foreground: hsl(214, 31%, 14%);
    --color-muted: hsl(214, 16%, 47%);
    --color-background: hsl(0, 0%, 100%);
    --color-accent: hsl(42, 96%, 89%);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(210, 30%, 15%) 0%, hsl(210, 25%, 25%) 100%);
    --gradient-primary: linear-gradient(135deg, hsl(42, 70%, 60%), hsl(45, 75%, 70%));
    --gradient-secondary: linear-gradient(135deg, hsl(190, 65%, 55%), hsl(195, 70%, 65%));
    --gradient-subtle: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(42, 50%, 98%) 100%);
    
    /* Shadows */
    --shadow-primary: 0 10px 30px -10px hsl(42, 70%, 60%, 0.2);
    --shadow-secondary: 0 10px 30px -10px hsl(190, 65%, 55%, 0.2);
    --shadow-glow: 0 0 40px hsl(42, 75%, 70%, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--color-foreground);
    background: var(--color-background);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: hsl(210, 30%, 15%); /* Cor de fundo enquanto carrega */
    background-image: url(/assets/images/back.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0.8;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-logo {
    height: 96px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-hero-primary {
    background: white;
    color: var(--color-foreground);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
    color: var(--color-foreground);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

.scroll-text {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.scroll-circle {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.scroll-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--gradient-subtle);
}

.badge-custom {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(42, 100, 150, 0.1);
    color: var(--color-foreground);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-muted);
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.feature-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: var(--shadow-primary);
    transform: translateY(-4px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(42, 100, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--color-primary);
    color: white;
}

.feature-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: transparent;
    border: 1px solid rgba(42, 100, 150, 0.2);
    color: var(--color-foreground);
    border-radius: 1rem;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-foreground);
}

.feature-description {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.segments-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.segment-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(190, 200, 210, 0.2);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.info-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-card-header i {
    font-size: 1.5rem;
}

.info-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.info-card-subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.doc-badge {
    background: rgba(42, 100, 150, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.doc-badge i {
    color: var(--color-primary);
    font-size: 1rem;
}

.sales-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sales-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sales-feature-item i {
    width: 32px;
    height: 32px;
    background: rgba(190, 200, 210, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.sales-feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.sales-feature-item p {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin: 0;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: rgba(42, 100, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--gradient-subtle);
}

.badge-custom-primary {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(42, 100, 150, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(42, 100, 150, 0.2);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.contact-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-primary);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card-subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 500;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(42, 100, 150, 0.15);
    outline: none;
}

.btn-primary-custom {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(42, 100, 150, 0.3);
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-item i {
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.benefit-item span {
    color: var(--color-muted);
    font-size: 1.125rem;
}

.contact-info-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-secondary);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-muted);
}

.contact-info-item i {
    font-size: 1.25rem;
}

.support-badge {
    background: var(--color-accent);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.support-badge i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.support-badge h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.support-badge p {
    color: var(--color-muted);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--color-foreground);
    color: white;
    padding: 3rem 0;
}

.footer-logo-container {
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-divider {
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem auto;
    max-width: 600px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo {
        height: 64px;
    }
    
    .features-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}
