/* ============================================
   Inconnect Smart - CloudFront Test Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

header h1 {
    color: #667eea;
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    color: #666;
    font-size: 1.1em;
}

main {
    display: grid;
    gap: 30px;
}

section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.info {
    border-left: 4px solid #667eea;
}

#status-container {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.features li {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #764ba2;
    padding-left: 15px;
}

.image-section {
    text-align: center;
    border-left: 4px solid #764ba2;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 20px;
    max-height: 300px;
}

.log-container {
    background: #1e1e1e;
    color: #00ff00;
    padding: 15px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    max-height: 300px;
    overflow-y: auto;
    line-height: 1.4;
}

.log-container p {
    color: #00ff00;
    margin: 5px 0;
}

footer {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #666;
    margin-top: 30px;
}

footer p {
    margin: 5px 0;
}

/* ============================================
   Animações e Efeitos
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.5s ease-in-out;
}

/* ============================================
   Responsivo
   ============================================ */

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    .features ul {
        grid-template-columns: 1fr;
    }

    section {
        padding: 20px;
    }
}
