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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #151f6d 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.header-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-title {
    color: white;
    margin-bottom: 10px;
}

.company-name {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
}

/* Panel Cards */
.panel-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.panel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--panel-color, #2563eb);
    transition: height 0.3s ease;
}

.panel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.panel-card:hover::before {
    height: 8px;
}

.panel-header {
    text-align: center;
    margin-bottom: 25px;
}

.panel-logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.panel-card:hover .panel-logo-container {
    transform: scale(1.1);
}

.panel-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.panel-content {
    text-align: center;
    margin-bottom: 25px;
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.panel-description {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.panel-actions {
    margin-bottom: 20px;
}

.access-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--panel-color, #2563eb);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.access-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.button-icon {
    font-size: 1.1rem;
}

.button-text {
    font-size: 0.95rem;
}

/* Footer */
.footer {
    margin-top: 40px;
    text-align: center;
}

.footer-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content p {
    color: white;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .panels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .panel-card {
        padding: 20px;
    }
}

/* Logo no header - ADICIONAR ESTAS REGRAS */
.header-logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.1);
}

.main-title {
    color: white;
    margin: 0;
}

/* Responsive para logo no header */
@media (max-width: 768px) {
    .header-logo-title {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .header-logo-title {
        gap: 10px;
    }
    
    .header-logo {
        width: 50px;
        height: 50px;
    }
}

