/* ===== ESTILOS ESPECÍFICOS DA PÁGINA HOME ===== */

.welcome-message {
    text-align: center;
    margin-bottom: 50px;
    color: #2d3748;
}

.welcome-message h2 {
    font-size: 1.8em;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.welcome-message p {
    font-size: 1.1em;
    color: #4a5568;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.option-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2c5282 0%, #1e3a5f 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 82, 130, 0.3);
    border-color: #2c5282;
}

.option-card:hover::before {
    transform: scaleX(1);
}

.option-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #2c5282;
}

.option-card h3 {
    font-size: 1.3em;
    color: #1e3a5f;
    margin-bottom: 15px;
    line-height: 1.4;
}

.option-card p {
    color: #718096;
    font-size: 0.95em;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.btn:hover {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
