/* Reset e configurações básicas */
* {
    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%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    padding: 40px;
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
}

/* Main Content */
.main-content {
    margin-bottom: 40px;
}

.welcome-section {
    margin-bottom: 40px;
}

.welcome-section h2 {
    font-size: 2rem;
    color: #34495e;
    margin-bottom: 15px;
}

.welcome-text {
    font-size: 1.1rem;
    color: #5d6d7e;
    line-height: 1.6;
}

/* Action Section */
.action-section {
    margin-bottom: 30px;
}

.instruction {
    margin-bottom: 25px;
}

.instruction p {
    font-size: 1rem;
    color: #34495e;
    font-weight: 500;
}

/* Botão de Avaliação */
.evaluate-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    text-decoration: none;
    margin-bottom: 20px;
}

.evaluate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #1f618d);
}

.evaluate-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

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

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.evaluate-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Info Text */
.info-text {
    margin-top: 20px;
}

.info-text p {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Footer */
.footer {
    border-top: 1px solid #ecf0f1;
    padding-top: 20px;
}

.footer p {
    font-size: 0.8rem;
    color: #95a5a6;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .welcome-section h2 {
        font-size: 1.6rem;
    }
    
    .evaluate-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.8rem;
    }
    
    .welcome-section h2 {
        font-size: 1.4rem;
    }
    
    .evaluate-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

