:root {
    --zs-primary: #6366f1;
    --zs-secondary: #8b5cf6;
    --zs-dark: #1e293b;
    --zs-light: #f8fafc;
    --zs-gradient: linear-gradient(135deg, var(--zs-primary) 0%, var(--zs-secondary) 100%);
}

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

.zs-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--zs-dark);
    background-color: #f8f9fa;
}

.zs-navbar {
    background: var(--zs-gradient) !important;
    box-shadow: 0 2px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.zs-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zs-btn-primary {
    background: var(--zs-gradient);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.zs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: white;
}

.zs-hero {
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.zs-hero-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.zs-hero-default {
    height: 500px;
    background: var(--zs-gradient);
    display: flex;
    align-items: center;
    color: white;
}

.zs-hero-content {
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.zs-search-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.zs-section {
    padding: 4rem 0;
}

.zs-section-alt {
    background: white;
}

.zs-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--zs-dark);
    position: relative;
    padding-bottom: 1rem;
}

.zs-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--zs-gradient);
    border-radius: 2px;
}

.zs-card-empresa {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
}

.zs-card-empresa:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.zs-badge-destaque {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.zs-empresa-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e0e7ff;
}

.zs-empresa-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zs-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    color: var(--zs-primary);
}

.zs-empresa-horizontal {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.zs-empresa-horizontal:hover {
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.15);
}

.zs-empresa-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    color: var(--zs-primary);
}

.zs-empresa-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zs-empresa-info {
    flex: 1;
}

.zs-cta-banner {
    background: var(--zs-gradient);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.zs-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 2rem 0 0;
    margin-top: 4rem;
}

.zs-social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: all 0.3s ease;
}

.zs-social-icons a:hover {
    background: var(--zs-primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .zs-hero-slide,
    .zs-hero-default {
        height: 400px;
    }
    
    .zs-search-box {
        margin-top: -60px;
        padding: 1.5rem;
    }
    
    .zs-section-title {
        font-size: 1.5rem;
    }
}
